﻿@charset "UTF-8";
#breadcrumb_list_wrap {
  display: none;
}

.home_hub {
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
}
.home_hub .hub_item {
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.home_hub .hub_item:hover {
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.home_hub .hub_item > a {
  text-decoration: none;
  display: block;
}
.home_hub .hub_item > a::before {
  content: "";
  position: absolute;
  inset: 0;
}
.home_hub .hub_item h2 {
  font-size: 1.2em;
}
.home_hub .hub_item h2 a {
  text-decoration: none;
}
.home_hub .hub_item p {
  color: #666;
  font-size: 0.9em;
}
.home_hub .hub_item:not(.photos) {
  padding-right: 44px;
}
.home_hub .hub_item:not(.photos)::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3em;
  color: #999;
  transition: color 0.2s, transform 0.2s;
  pointer-events: none;
}
.home_hub .hub_item:not(.photos):hover::after {
  color: #333;
  transform: translateY(-50%) translateX(3px);
}
.home_hub .hub_item.photos .pgl-grid-item:nth-child(n+4) {
  display: none;
}
