@charset "UTF-8";
@keyframes outlineTraceHover {
  0% {
    background-size: 0 var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 0, 0 var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 0;
  }
  25% {
    background-size: 100% var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 0, 0 var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 0;
  }
  50% {
    background-size: 100% var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 100%, 0 var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 0;
  }
  75% {
    background-size: 100% var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 100%, 100% var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 0;
  }
  100% {
    background-size: 100% var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 100%, 100% var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 100%;
  }
}
@keyframes outlineTraceHoverSimultaneous {
  0% {
    background-size: 0 var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 0, 0 var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 0;
  }
  100% {
    background-size: 100% var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 100%, 100% var(--outline-trace-thickness, 1px), var(--outline-trace-thickness, 1px) 100%;
  }
}
.shop-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.shop-card:hover {
  border-color: #fff;
}
.shop-card__link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.shop-card__link:hover {
  text-decoration: none;
}
.shop-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}
.shop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.shop-card:hover .shop-card__image img {
  filter: brightness(1.2);
}
.shop-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.3);
}
.shop-card__cat {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
}
.shop-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 768px) {
  .shop-card__body {
    padding: 12px;
  }
}
.shop-card__catch {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}
@media (min-width: 768px) {
  .shop-card__catch {
    text-align: left;
  }
}
.shop-card__title {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .shop-card__title {
    text-align: left;
  }
}

.cat--izakaya .shop-card__cat {
  --cat-neon: #00fefc;
}

.cat--snack .shop-card__cat {
  --cat-neon: #fe0094;
}

.cat--pub .shop-card__cat {
  --cat-neon: #fe9000;
}

.cat--rounge .shop-card__cat {
  --cat-neon: #c300fe;
}

.cat--bar .shop-card__cat {
  --cat-neon: #fefe00;
}

.cat--other .shop-card__cat {
  --cat-neon: #9ea6b2;
}

.shop-card--ad {
  cursor: default;
  transition: none;
}
.shop-card--ad:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.shop-card--ad .shop-card__ad-inner {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shop-card--ad .shop-card__ad-inner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.shop-ad-inpost {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-ad-inpost .c-pickup-visual a {
  width: 100%;
  margin: 0;
}
.shop-ad-inpost .c-pickup-visual img:not([width="1"]):not([height="1"]):not([src*="0.gif"]) {
  width: 100%;
  height: auto;
}

.card-grid--shops {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 768px) {
  .card-grid--shops {
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .card-grid--shops {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .card-grid--shops {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shop-ad-grid-fallback {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border: 2px solid;
  padding: 12px 10px;
  text-align: center;
  box-sizing: border-box;
  height: 100%;
}
.shop-ad-grid-fallback p {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.6;
  word-break: break-word;
  white-space: pre-wrap;
}

@media (max-width: calc(768px - 1px)) {
  .archive-shops .shop-card__catch {
    display: none;
  }
}
.c-badge {
  display: inline-block;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  padding: 3px 10px;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.43);
  border: 1px solid #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.53);
  backdrop-filter: blur(2px);
}

@keyframes badge-neon-flicker {
  0% {
    box-shadow: none;
    text-shadow: none;
    opacity: 0.2;
  }
  5% {
    box-shadow: inset 0 0 6px var(--cat-neon), inset 0 0 5px var(--cat-neon), 0 0 2px var(--cat-neon), 0 0 2px var(--cat-neon);
    text-shadow: 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    opacity: 1;
  }
  8% {
    box-shadow: none;
    text-shadow: none;
    opacity: 0.2;
  }
  12% {
    box-shadow: inset 0 0 6px var(--cat-neon), inset 0 0 5px var(--cat-neon), 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    text-shadow: 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    opacity: 1;
  }
  14% {
    box-shadow: none;
    text-shadow: none;
    opacity: 0.2;
  }
  18% {
    box-shadow: inset 0 0 6px var(--cat-neon), inset 0 0 5px var(--cat-neon), 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    text-shadow: 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    opacity: 1;
  }
  22% {
    box-shadow: none;
    text-shadow: none;
    opacity: 0.2;
  }
  24% {
    box-shadow: inset 0 0 6px var(--cat-neon), inset 0 0 5px var(--cat-neon), 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    text-shadow: 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    opacity: 1;
  }
  26% {
    box-shadow: none;
    text-shadow: none;
    opacity: 0.2;
  }
  32% {
    box-shadow: inset 0 0 6px var(--cat-neon), inset 0 0 5px var(--cat-neon), 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    text-shadow: 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    opacity: 1;
  }
  60% {
    box-shadow: inset 0 0 6px var(--cat-neon), inset 0 0 5px var(--cat-neon), 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    text-shadow: 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    opacity: 1;
  }
  63% {
    box-shadow: none;
    text-shadow: none;
    opacity: 0.2;
  }
  66% {
    box-shadow: inset 0 0 6px var(--cat-neon), inset 0 0 5px var(--cat-neon), 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    text-shadow: 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    opacity: 1;
  }
  100% {
    box-shadow: inset 0 0 6px var(--cat-neon), inset 0 0 5px var(--cat-neon), 0 0 6px var(--cat-neon), 0 0 12px var(--cat-neon);
    text-shadow: 0 0 2px var(--cat-neon), 0 0 6px var(--cat-neon);
    opacity: 1;
  }
}
.c-badge--neon {
  --cat-neon: #00fefc;
}
.c-badge--neon[data-cat=izakaya] {
  --cat-neon: #00fefc;
}
.c-badge--neon[data-cat=snack] {
  --cat-neon: #fe0094;
}
.c-badge--neon[data-cat=pub] {
  --cat-neon: #fe9000;
}
.c-badge--neon[data-cat=rounge] {
  --cat-neon: #c300fe;
}
.c-badge--neon[data-cat=bar] {
  --cat-neon: #fefe00;
}
.c-badge--neon[data-cat=other] {
  --cat-neon: #9ea6b2;
}
.c-badge--neon {
  font-size: 1.6rem;
  font-weight: 300;
  padding: 3px 24px;
  line-height: 1.3;
  border: 2px solid #fff;
  border-radius: 2px;
  background: color-mix(in srgb, var(--cat-neon) 40%, transparent);
  backdrop-filter: none;
  opacity: 0.4;
  box-shadow: none;
  text-shadow: none;
  animation: badge-neon-flicker 1s steps(1, end) 0.8s 1 forwards;
}

/**
 * Sidebar / Shops / Single
 * shops single ページのサイドバー（aside パネル）関連スタイル
 * - .shops-aside-trigger / overlay / close（SP ドロワー制御）
 * - .single-shop__body（aside パネル本体）
 * - .single-shop__table（店舗情報テーブル）
 * - .single-shop__body-sns / sns-item（SNS リンク）
 * - .like-area / .like-btn（いいねボタン）
 * - .shops-panel-scroll-hint（SP スクロールヒント）
 */
/**
 * Sidebar / Shops / Drawer（共通）
 * shops single・archive 共通の SP ドロワー制御スタイル
 * - .shops-aside-trigger（縦書きトリガー）
 * - .shops-aside-overlay（暗幕）
 * - .shops-aside-close（閉じるボタン）
 * - .shops-panel-scroll-hint（SP スクロールヒント）
 *
 * パネル本体（single: .single-shop__body / archive: .shops-aside-panel）は
 * PC 挙動が異なるため各ファイルで保持。共通クラス .shops-aside-panel.is-open を
 * 閉じるボタンの表示フックとして両者に付与する。
 */
@keyframes asideTriggerEnter {
  from {
    transform: translateX(110%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes asideTriggerGlow {
  0%, 100% {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5), 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 255, 255, 0.8);
  }
}
.shops-aside-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: var(--shops-aside-trigger-bottom, 132px);
  right: 0;
  background: #fff;
  color: #001727;
  border: 1px solid #fff;
  border-right: none;
  border-radius: 4px 0 0 4px;
  width: 46px;
  padding: 16px 0;
  font-family: "DotGothic16", "BIZ UDGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  pointer-events: auto;
  letter-spacing: 0.1em;
  transform: translateX(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1199;
  text-shadow: 0 0 2px #013030;
  animation: asideTriggerEnter 0.4s ease 0.2s backwards, asideTriggerGlow 3.6s ease-in-out 0.6s infinite;
}
.shops-aside-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(transparent 0, transparent 1px, rgba(0, 0, 0, 0.5) 1px);
  background-size: 2px 2px;
  pointer-events: none;
  z-index: 1;
}
.shops-aside-trigger__label {
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
}
.shops-aside-trigger.is-hidden {
  pointer-events: none;
  transform: translateX(106%);
  opacity: 0;
  animation-play-state: paused;
}
.shops-aside-trigger.is-panel-open {
  pointer-events: none;
  transform: translateX(110%);
  animation-play-state: paused;
}
@media (min-width: 1000px) {
  .shops-aside-trigger {
    display: none;
  }
}

.archive-empty-reset {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: var(--archive-empty-reset-bottom, 124px);
  right: 0;
  background: #dc3545;
  color: #fff;
  border: 2px solid #fff;
  border-right: none;
  border-radius: 4px 0 0 4px;
  width: 46px;
  padding: 8px 0;
  font-size: 1.6rem;
  cursor: pointer;
  pointer-events: none;
  letter-spacing: 0.1em;
  transform: translateX(110%);
  transition: all 0.4s ease 0.2s;
  will-change: transform;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  z-index: 1199;
}
.archive-empty-reset__label {
  margin: 4px 0 0;
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0;
}
.archive-empty-reset.is-visible {
  pointer-events: auto;
  transform: translateX(0);
}
.archive-empty-reset.is-hidden {
  pointer-events: none;
  transform: translateX(106%);
  opacity: 0;
}
.archive-empty-reset.is-panel-open {
  pointer-events: none;
  transform: translateX(110%);
}
@media (min-width: 1000px) {
  .archive-empty-reset {
    display: none;
  }
}

.shops-aside-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1209;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: calc(1000px - 1px)) {
  .shops-aside-overlay {
    display: block;
  }
}
.shops-aside-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.shops-aside-scroll {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  padding: 16px;
}
@media (min-width: 1000px) {
  .shops-aside-scroll {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  }
  .shops-aside-scroll::-webkit-scrollbar {
    width: 4px;
  }
  .shops-aside-scroll::-webkit-scrollbar-track {
    background: transparent;
  }
  .shops-aside-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 2px;
  }
  .shops-aside-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  .shops-aside-scroll {
    padding: 0;
  }
}

.shops-aside-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1000px) {
  .shops-aside-close {
    display: none;
  }
}

@media (max-width: calc(1000px - 1px)) {
  .shops-aside-panel.is-open .shops-aside-close,
  .single-shop__body.is-open .shops-aside-close {
    opacity: 1;
    pointer-events: auto;
  }
}
.shops-aside-close-bar {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding: 8px 8px 0;
}
@media (min-width: 1000px) {
  .shops-aside-close-bar {
    display: none;
  }
}

@keyframes shops-hint-angle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
@keyframes shops-hint-angle-glow {
  0%, 100% {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3), 0 0 8px rgba(255, 255, 255, 0.1);
  }
  50% {
    text-shadow: 0 0 6px white, 0 0 14px rgba(255, 255, 255, 0.7), 0 0 28px rgba(255, 255, 255, 0.3);
  }
}
.shops-panel-scroll-hint {
  display: none;
}
@media (max-width: calc(1000px - 1px)) {
  .shops-panel-scroll-hint {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1211;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s ease;
  }
  .shops-panel-scroll-hint.is-active {
    opacity: 1;
  }
  .shops-panel-scroll-hint.is-scrolled {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .shops-panel-scroll-hint.is-scrolled .shops-panel-scroll-hint__angle {
    animation: none;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
}
.shops-panel-scroll-hint__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
}
.shops-panel-scroll-hint__content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}
.is-active .shops-panel-scroll-hint__content {
  opacity: 1;
  transition-delay: 0.1s;
}
.is-scrolled .shops-panel-scroll-hint__content {
  transition-delay: 0s;
}
.shops-panel-scroll-hint__angle {
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  animation: shops-hint-angle-float 3s ease infinite, shops-hint-angle-glow 3s ease infinite;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.single-shop {
  --shops-aside-trigger-bottom: calc(30px + var(--shop-sp-contact-bar-height, 0px));
}
.single-shop:not(:has(.shop-sp-contact-bar)) {
  --shops-aside-trigger-bottom: 16px;
}

.single-shop__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
  padding: 20px;
  min-width: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media (max-width: calc(1000px - 1px)) {
  .single-shop__body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hn-bg, #001727);
    padding: 0;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1210;
  }
  .single-shop__body.is-open {
    transform: translateX(0);
  }
}
@media (min-width: 1000px) {
  .single-shop__body {
    border: 1px solid #dee2e6;
    grid-column: 2;
    grid-row: 1/span 2;
    position: sticky;
    top: 16px;
    margin: 0 16px 0 0;
    height: calc(100svh - 32px);
    overflow: hidden;
    padding: 24px 20px 18px;
    min-width: 0;
  }
}

.single-shop__body-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
  color: #fff;
}

.single-shop__body-catch {
  font-size: 1.3rem;
  opacity: 0.75;
  margin: 0 0 20px;
}

.single-shop__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 12px;
}
.single-shop__table th,
.single-shop__table td {
  padding: 7px 8px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  line-height: 1.5;
}
.single-shop__table th {
  white-space: nowrap;
  width: 1%;
  font-weight: 500;
  vertical-align: middle;
}
.single-shop__table th span {
  vertical-align: middle;
}
.single-shop__table td {
  vertical-align: middle;
  color: #fff;
}
.single-shop__table a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.85;
}
.single-shop__table a:hover {
  opacity: 1;
}

.shop-info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
}
.shop-info-link i {
  flex-shrink: 0;
  font-size: 1.3rem;
  opacity: 0.75;
}
.shop-info-link--map {
  text-decoration: underline;
  opacity: 0.85;
}
.shop-info-link--map:hover {
  opacity: 1;
}
.shop-info-link--tel {
  text-decoration: none;
}
.shop-info-link--tel:hover {
  text-decoration: underline;
  opacity: 1;
}

.single-shop__bottom {
  margin: auto 0 0;
}

.single-shop__body-sns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: auto 0 12px;
  margin-top: auto;
}

.single-shop__sns-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.single-shop__sns-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.single-shop__sns-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 1.6rem;
  text-align: center;
}

.single-shop__sns-label {
  font-size: 1.4rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
  text-align: center;
}

.single-shop__sns-external {
  font-size: 1rem;
  flex-shrink: 0;
}

.like-area {
  margin: 18px 0;
  gap: 20px;
  flex-wrap: nowrap;
}
@media (min-width: 1000px) {
  .like-area {
    justify-content: center;
    gap: 12px;
    margin: 32px 0 12px;
  }
}

.like-btn {
  width: 42%;
  justify-content: center;
}

.shop-tel-link {
  color: inherit;
  text-decoration: underline;
}
.shop-tel-link:hover {
  opacity: 0.7;
}

.shop-address-map-link {
  color: inherit;
  text-decoration: none;
}
.shop-address-map-link:hover {
  text-decoration: underline;
}
.shop-address-map-link::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f08e";
  margin-left: 0.35em;
  font-size: 0.85em;
  color: #fff;
  vertical-align: middle;
}

body.single-shops #main-content {
  z-index: auto;
}

.single-shop {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .single-shop {
    overflow: visible;
  }
}

.single-page__title {
  position: relative;
  z-index: 1;
  margin: 0 0 4px;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.single-page__subtitle {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  text-align: center;
}
.single-page__description {
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .single-page__description {
    font-size: 1.6rem;
  }
}

.single-shop__header {
  margin: 66px 0 16px;
}
@media (min-width: 1200px) {
  .single-shop__header {
    margin: 80px 0 16px;
  }
}

.single-shop__layout {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 0 24px;
}
@media (min-width: 1000px) {
  .single-shop__layout {
    grid-template-columns: 4fr 3fr;
  }
}
@media (min-width: 1200px) {
  .single-shop__layout {
    grid-template-columns: 5fr 2fr;
    grid-template-rows: auto auto;
  }
}

.single-shop__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .single-shop__main {
    grid-column: 1;
    grid-row: 1;
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .single-shop__layout > .c-btn--back {
    grid-column: 1;
    grid-row: 4;
  }
}

.shop-sp-contact-bar {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  .shop-sp-contact-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 0;
    bottom: 22px;
    z-index: 997;
  }
}
.shop-sp-contact-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 4px 0 0 4px;
  background: #fff;
  border: 1px solid #fff;
  border-right: none;
  color: #102534;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateX(0);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  will-change: transform;
}
.shop-sp-contact-bar__item.is-hidden {
  pointer-events: none;
  transform: translateX(106%);
  opacity: 0;
}
.shop-sp-contact-bar__item--tel.is-hidden {
  transition-delay: 0;
}
.shop-sp-contact-bar__item--map.is-hidden {
  transition-delay: 0.04s;
}
.shop-sp-contact-bar__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(transparent 0, transparent 1px, rgba(0, 0, 0, 0.5) 1px);
  background-size: 2px 2px;
  pointer-events: none;
  z-index: 1;
}
.shop-sp-contact-bar__item i {
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
}

.shop-notice {
  padding: 8px;
  margin: 16px 0 0;
  text-align: left;
}
@media (min-width: 768px) {
  .shop-notice {
    padding: 8px 20px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
.shop-notice__title {
  text-align: center;
  background: #fdfcf5;
  color: #001727;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 4px 2px;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 auto 6px;
}
@media (min-width: 768px) {
  .shop-notice__title {
    font-size: 1.6rem;
  }
}
.shop-notice__text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 0;
}
.shop-notice__text .c-link {
  color: #fff;
}
.shop-notice__text p {
  margin: 0 0 8px;
}
.shop-notice__text p:last-child {
  margin-bottom: 0;
}

@keyframes shop-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--ticker-width, 100%)));
  }
}
.shop-ticker {
  position: relative;
  width: 100%;
  height: 30px;
  overflow: hidden;
  background: linear-gradient(90deg, #202020 0%, #080808 50%, #202020 100%);
  border-top: 1px dotted #00fefc;
  border-bottom: 1px dotted #00fefc;
}
@media (min-width: 768px) {
  .shop-ticker {
    height: 44px;
  }
}
.shop-ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(transparent 0, transparent 0.8px, rgba(0, 0, 0, 0.5) 0.8px);
  background-size: 2px 2px;
  pointer-events: none;
  z-index: 2;
}
.shop-ticker__track {
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 184px;
  white-space: nowrap;
  animation: shop-ticker-scroll 20s steps(200) 0s infinite;
  z-index: 1;
}
.shop-ticker__text {
  flex-shrink: 0;
  font-family: "DotGothic16", "BIZ UDGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: rgb(0, 254, 252);
  text-shadow: 0 0 2px #00fefc, 0 0 6px #00fefc;
}
@media (min-width: 768px) {
  .shop-ticker__text {
    font-size: 2rem;
  }
}

.shop-section {
  background: none;
  margin: 0 0 24px;
}
.shop-section:last-child {
  margin: 0;
}
.shop-section.shop-section--ad-sidebar {
  margin: 0;
}
@media (min-width: 1000px) {
  .shop-section {
    margin: 0 0 48px;
  }
}
.shop-section__title {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0 0 16px;
  text-align: center;
  opacity: 0.9;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 0 4px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.2), 0 0 8px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .shop-section__title {
    font-size: 2.8rem;
    margin: 0 0 16px;
  }
}
.shop-section__title i {
  margin-right: 8px;
}
.shop-section__content {
  line-height: 1.8;
}
.shop-section--gallery {
  overflow: hidden;
}
.shop-section--hashtags {
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .shop-section--hashtags {
    margin: 8px 0;
  }
}

.shop-section--interview {
  padding: 0 8px 12px;
}
@media (min-width: 768px) {
  .shop-section--interview {
    grid-column: 1;
    grid-row: 2;
    padding: 0 24px 24px;
  }
}

.shop-section--related-shops {
  padding: 0 8px;
  margin-top: 72px;
}
@media (min-width: 768px) {
  .shop-section--related-shops {
    grid-column: 1;
    grid-row: 3;
    padding: 0 24px 24px;
  }
}

.shop-hashtags {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shop-hashtags__group {
  display: flex;
  flex-direction: column;
}
.shop-hashtags__group:has(.shop-hashtags__group-label) {
  gap: 8px;
}
.shop-hashtags__group-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.shop-hashtags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-hashtags__list li {
  white-space: nowrap;
}
.shop-hashtags__item {
  display: inline-block;
  text-align: center;
}
.shop-hashtags__tag {
  display: inline-block;
  background: transparent;
  border-radius: 2px;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-recommendations {
  display: grid;
  gap: 8px;
}
@media (min-width: 768px) {
  .shop-recommendations {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
.shop-recommendations__item {
  position: relative;
  background: none;
  border: 1px solid #fff;
  overflow: hidden;
}
.shop-recommendations__image img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .shop-recommendations__image img {
    aspect-ratio: 1/1;
  }
}
.shop-recommendations--few .shop-recommendations__image img {
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .shop-recommendations--few .shop-recommendations__image img {
    aspect-ratio: 16/9;
  }
}
.shop-recommendations__body {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 100%;
  z-index: 1;
  padding: 8px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.shop-recommendations__name {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin: 0 0 4px;
}
.shop-recommendations__desc {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.shop-gallery-single {
  overflow: hidden;
  position: relative;
  border-radius: 0;
}
.shop-gallery-single img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .shop-gallery-single img {
    height: 640px;
  }
}
.shop-gallery-single__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}
.shop-gallery-single__caption {
  margin: 8px 0 0;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.5;
}

.shop-gallery-single,
.shop-gallery-carousel {
  margin: 0 0 36px;
}
@media (min-width: 768px) {
  .shop-gallery-single,
  .shop-gallery-carousel {
    margin: 0 0 80px;
  }
}

.shop-gallery-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
  --gallery-peek-space: clamp(32px, 6vw, 60px);
}
.shop-gallery-carousel:not(.is-initialized) .shop-gallery-carousel__track {
  opacity: 0;
}
.shop-gallery-carousel.is-initialized .shop-gallery-carousel__track {
  opacity: 1;
  transition: opacity 0.6s ease;
}
.shop-gallery-carousel.is-dragging .shop-gallery-slide {
  transition: none;
}
.shop-gallery-carousel__track {
  display: flex;
  gap: 12px;
  will-change: transform;
}
.shop-gallery-carousel__footer .c-progress {
  margin: 4px 0 0;
}
@media (min-width: 768px) {
  .shop-gallery-carousel__footer .c-progress {
    margin: 8px 0 0;
  }
}

.shop-gallery-slide {
  overflow: hidden;
  position: relative;
  width: 100%;
  flex-shrink: 0;
  opacity: 0.55;
  filter: blur(1px);
  transition: opacity 0.4s ease, filter 0.6s ease;
  user-select: none;
}
.shop-gallery-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .shop-gallery-slide img {
    height: 500px;
  }
}
@media (min-width: 1000px) {
  .shop-gallery-slide img {
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .shop-gallery-slide img {
    height: 850px;
  }
}
.shop-gallery-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}
.shop-gallery-slide.is-active {
  opacity: 1;
  filter: blur(0);
  width: 100%;
}
.shop-gallery-slide.is-right-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}
.shop-gallery-slide.no-transition, .shop-gallery-slide.no-transition * {
  transition: none !important;
}
.shop-gallery-slide__caption {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #fdfcf5;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0);
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: 0.6s;
  filter: blur(2px);
}
.is-active .shop-gallery-slide__caption {
  text-shadow: 0 0 4px black, 0 0 8px black, 0 0 12px black;
  bottom: 4px;
  opacity: 1;
  filter: blur(0);
}
@media (min-width: 768px) {
  .is-active .shop-gallery-slide__caption {
    bottom: 8px;
  }
}
@media (min-width: 768px) {
  .shop-gallery-slide__caption {
    font-size: 1.8rem;
  }
}

.shop-interview-link {
  position: relative;
}
.shop-interview-link:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 8px;
  font-size: 1.6rem;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.shop-interview-link:hover {
  opacity: 1;
}
.shop-interview-link:hover:after {
  transform: translateY(-50%) translateX(4px);
}
.shop-interview-link__card {
  display: flex;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}
.shop-interview-link__card:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .shop-interview-link__card {
    flex-direction: column;
  }
}
.shop-interview-link__thumbnail {
  flex-shrink: 0;
  width: 200px;
}
.shop-interview-link__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .shop-interview-link__thumbnail {
    width: 100%;
  }
  .shop-interview-link__thumbnail img {
    aspect-ratio: 16/9;
    height: auto;
  }
}
.shop-interview-link__content {
  gap: 4px;
  min-width: 0;
  padding: 36px 24px;
}
@media (max-width: 767px) {
  .shop-interview-link__content {
    padding: 16px;
  }
}
.shop-interview-link__label {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: inline;
  font-size: 1.4rem;
  color: #fff;
}
.shop-interview-link__label:before {
  font-family: "Font Awesome 6 Free";
  content: "\f2bd";
  font-weight: 300;
  font-size: 1.5rem;
  margin: 0 4px 0 0;
  display: inline-block;
  transform: scale(-1, 1);
}
.shop-interview-link__title {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 8px 0 0;
  line-height: 1.5;
  color: #fff;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .shop-interview-link__title {
    width: 100%;
  }
}
.shop-interview-link__title-sub {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  opacity: 0.8;
  margin-bottom: 2px;
}
.shop-interview-link__title-main {
  display: block;
}
.shop-interview-link__excerpt {
  font-size: 1.2rem;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bh-cell {
  line-height: 1;
}

.bh-group {
  display: block;
}
.bh-group + .bh-group {
  margin-top: 12px;
}

.bh-days {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 1;
}

.bh-time {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1.5rem;
  margin-top: 2px;
}

.bh-slot {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 8px;
}

.bh-slot-note {
  font-size: 1.5rem;
  opacity: 1;
  white-space: nowrap;
}
.bh-slot-note:empty {
  display: none;
}

.bh-slot-hour {
  white-space: nowrap;
}

.bh-slot-lo {
  font-size: 1.5rem;
  opacity: 0.75;
  white-space: nowrap;
}

.is-en .bh-days {
  display: inline;
}
.is-en .bh-time {
  display: inline;
}
.is-en .bh-slot {
  display: inline-flex;
}

.shop-gallery-modal-trigger {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  z-index: 2;
  font-size: 1.2rem;
  padding: 0;
  transition: background 0.2s ease;
}
.shop-gallery-modal-trigger:hover {
  background: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .shop-gallery-modal-trigger {
    right: 8px;
    bottom: 8px;
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}

.shop-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.shop-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.shop-gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}
.shop-gallery-lightbox__inner {
  position: relative;
  z-index: 1;
}
.shop-gallery-lightbox__img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .shop-gallery-lightbox__img {
    max-width: 80vw;
  }
}
.shop-gallery-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  padding: 0;
  transition: background 0.2s ease;
}
.shop-gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.shop-section--videos {
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shop-section--videos .c-video-player {
  border: 1px solid #fff;
}
@media (min-width: 1000px) {
  .shop-section--videos--single {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.shop-section--videos .c-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}
.shop-section--videos .c-video__player, .shop-section--videos .c-video__overlay, .shop-section--videos .c-video__loader, .shop-section--videos .c-video__play {
  position: absolute;
}
.shop-section--videos .c-video__player {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: none;
}

.shop-video-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-video-wrap__desc {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.8;
  text-align: center;
  margin: 0;
}

.shop-osusume-groups {
  margin: 0 auto;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .shop-osusume-groups {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
  }
}
@media (min-width: 768px) {
  .shop-osusume-groups--single {
    max-width: 400px;
  }
}

.shop-osusume-group {
  border: 1px solid #fff;
}
@media (min-width: 1000px) {
  .shop-osusume-group {
    width: 100%;
  }
}
.shop-osusume-group__label {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  padding: 12px;
  border-bottom: 1px solid currentColor;
  text-align: center;
}

.shop-osusume {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 24px;
}
.shop-osusume__item {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .shop-osusume__item {
    font-size: 1.5rem;
  }
}
.shop-osusume__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
}
.shop-osusume__subtext {
  display: block;
  font-size: 1.2rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
  margin-bottom: 1px;
  line-height: 1.4;
}

.related-shops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 768px) {
  .related-shops {
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.shop-cat__wrapper {
  text-align: center;
}
.shop-cat__wrapper .c-badge--neon {
  margin: 0 0 8px;
}

/*# sourceMappingURL=single.css.map */
