* {
  box-sizing: border-box;
}

/* body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.55;
} */

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.wide-container {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.page-container {
  width: 1180px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.top-header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 62px;
  padding: 0 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 222px;
  height: auto;
}

.header-links {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  flex: 1;
  color: #7f8195;
  font-weight: 700;
  font-size: 14px;
}

.header-links a::before {
  content: "▶";
  margin-right: 6px;
  font-size: 11px;
}

.header-actions {
  display: flex;
  gap: 18px;
}

.header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 38px;
  border-radius: 4px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.header-actions a:hover,
.header-actions a:focus-visible {
  background: #0f8fa3;
}

.main-nav {
  background: #f8f8f8;
}

.main-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-right: 1px solid var(--line);
  color: #444444;
  font-weight: 700;
  transition: background-color 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #e5e7eb;
}

.kv {
  padding-top: 24px;
}

.banner-frame {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-banner {
  display: block;
}

.main-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-frame {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.banner-frame .swiper-button-prev::after,
.banner-frame .swiper-button-next::after{
  display: none;
}
.banner-frame .swiper-button-prev,.banner-frame .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 0;
  border-left: 4px solid #333333;
  border-bottom: 4px solid #333333;
  background: transparent;
  transition: border-color 0.18s ease;
  cursor: pointer;
}
.banner-frame .swiper-button-prev:hover,
.banner-frame .swiper-button-prev:focus-visible,
.banner-frame .swiper-button-next:hover,
.banner-frame .swiper-button-next:focus-visible {
  border-color: var(--teal);
}

.banner-frame .swiper-button-prev {
  left: 18px;
  transform: translateY(-50%) rotate(45deg);
}

.banner-frame .swiper-button-next {
  right: 18px;
  transform: translateY(-50%) rotate(225deg);
}

.banner-frame .swiper-pagination {
  position: relative !important;
  display: flex;
  justify-content: center;
  padding: 18px 0 0 0;
  bottom: 0 !important;
}

.banner-frame .swiper-pagination .swiper-pagination-bullet-active {
  background: #777777;
}

.banner-frame .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px !important;
}

.intro-search {
  padding: 0 0 50px;
}

.intro-search > .page-container > h1 {
  margin: 6px 0 34px;
  text-align: center;
  color: var(--orange);
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
  align-items: start;
}

.search-box {
  margin-bottom: 32px;
  padding: 22px 20px;
  background: var(--pale);
}

.search-form {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 180px;
  gap: 0;
  align-items: center;
}

.search-label {
  color: #555555;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.search-form input {
  height: 44px;
  border: 1px solid #cccccc;
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: #ffffff;
  color: #444444;
  font-size: 14px;
  min-width: 0;
  padding: 0 20px;
}

.search-form button {
  height: 44px;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--teal);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-left: 42px;
  transition: background-color 0.18s ease;
}

.search-form button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
  box-sizing: content-box;
}

.search-form button::after {
  content: "";
  position: absolute;
  top: calc(50% + 7px);
  left: 34px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
  box-sizing: content-box;
}

.search-form button:hover,
.search-form button:focus-visible {
  background: #0f8fa3;
}

.keyword-area p {
  margin: 12px 0 10px;
  color: #555555;
  font-size: 13px;
  font-weight: 400;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.keyword-list a,
.mini-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 13px;
  border: 1px solid var(--teal);
  border-radius: 2px;
  background: #ffffff;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.2;
}

.keyword-list a {
  min-height: 28px;
  padding: 3px 11px;
  font-size: 13px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.keyword-list a:hover,
.keyword-list a:focus-visible {
  background: #e5f6f9;
}

.section-block {
  margin-top: 32px;
}

.section-block > h2 {
  margin: 0 0 20px;
  text-align: center;
  color: var(--teal);
  font-size: 30px;
  line-height: 1.35;
}

.table-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.table-heading::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 4px;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 3px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 3px no-repeat;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.mini-tags span {
  min-height: 22px;
  padding: 3px 8px;
  font-size: 12px;
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.category-route-section .route-card-grid + .route-card-grid {
  margin-top: 12px;
}

.route-card {
  padding: 18px;
  border: 1px solid var(--soft-line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.route-card-head {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.route-thumb {
  display: grid;
  place-items: center;
  width: 82px;
  height: 74px;
  overflow: hidden;
  background: transparent;
}

.route-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.route-card-head h3 {
  margin: 0;
  font-size: 18px;
}

.route-main-link {
  display: block;
  margin-bottom: 14px;
  padding: 9px 12px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.route-main-link:hover,
.route-main-link:focus-visible {
  background: #e5f6f9;
}

.route-price-summary {
  margin: 0 0 12px;
  padding: 10px 0 12px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.route-price-summary p {
  margin: 0;
}

.route-high-price {
  color: #444444;
  font-size: 13px;
  font-weight: 700;
}

.route-high-price strong {
  color: #c94b38;
  font-size: 20px;
  line-height: 1.2;
}

.route-card-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.route-group {
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
}

.route-group + .route-group {
  margin-top: 12px;
}

.route-group > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  color: #555555;
  font-size: 13px;
  font-weight: 700;
}

.route-group > p::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--teal);
  border-radius: 2px;
  background:
    linear-gradient(var(--teal), var(--teal)) 50% 0 / 2px 100% no-repeat,
    linear-gradient(var(--teal), var(--teal)) 0 50% / 100% 2px no-repeat;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.route-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid var(--teal);
  border-radius: 2px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.route-tags a:hover,
.route-tags a:focus-visible {
  background: #e5f6f9;
}

.route-price-links {
  display: grid;
  gap: 6px;
}

.route-price-links a {
  position: relative;
  display: block;
  padding: 8px 24px 8px 10px;
  border: 1px solid #eeeeee;
  background: #fafafa;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.route-price-links a:hover,
.route-price-links a:focus-visible {
  border-color: #d1d5db;
  background: #e5e7eb;
}

.route-price-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #cccccc;
  border-right: 2px solid #cccccc;
  transform: translateY(-50%) rotate(45deg);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tab-button {
  min-width: 120px;
  padding: 10px 18px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  color: #333333;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.tab-button:hover,
.tab-button:focus-visible {
  background: #e5e7eb;
}

.tab-button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.tab-button.active:hover,
.tab-button.active:focus-visible {
  background: #0f8fa3;
  border-color: #0f8fa3;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.list-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.list-cards a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px 12px 16px;
  border: 1px solid var(--soft-line);
  background: #ffffff;
  box-shadow: var(--shadow);
  color: #333333;
  font-weight: 700;
  font-size: 14px;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.list-cards a:hover,
.list-cards a:focus-visible {
  border-color: #d1d5db;
  background: #e5e7eb;
}

.list-cards a::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #cccccc;
  border-right: 2px solid #cccccc;
  transform: rotate(45deg);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.item-card {
  border: 1px solid var(--soft-line);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 14px;
}

/* .item-thumb {
  display: grid;
  place-items: center;
  /* height: 120px; 
  margin-bottom: 12px;
  border: 1px solid #dddddd;
  background: #f6f6f6;
  color: #999999;
  font-weight: 700;
} */

/* .item-thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
} */

.item-card .item-thumb {
  height: 104px;
  border: 0;
  background: transparent;
}

.item-card .item-thumb img {
  width: 86px;
  height: 86px;
}

.item-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.35;
}

.item-card h3 a {
  color: #12a3bf;
  text-decoration: underline;
  transition: color 0.18s ease;
}

.item-card h3 a:hover,
.item-card h3 a:focus-visible {
  color: #0f8fa3;
}

.item-card p {
  margin: 0 0 4px;
  color: #444444;
}

.item-card strong {
  color: #c94b38;
  font-size: 20px;
}

.item-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.searched-item-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.searched-item-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 12px;
}

.searched-item-card .item-thumb {
  height: 112px;
  margin-bottom: 10px;
  border: 1px solid #eeeeee;
  background: #fafafa;
}

.searched-item-card .item-thumb img {
  width: 92px;
  height: 92px;
}

.searched-item-category {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.searched-item-card h3 {
  display: -webkit-box;
  min-height: 0;
  margin: 0 0 8px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.searched-item-card h3 a {
  color: #12a3bf;
  text-decoration: underline;
  transition: color 0.18s ease;
}

.searched-item-card h3 a:hover,
.searched-item-card h3 a:focus-visible {
  color: #0f8fa3;
}

.searched-item-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
  font-size: 12px;
}

.searched-item-card dl div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
}

.searched-item-card dl div:last-child {
  grid-template-columns: 1fr;
  gap: 2px;
  padding-top: 2px;
}

.searched-item-card dt {
  color: #555555;
  font-weight: 700;
}

.searched-item-card dd {
  min-width: 0;
  margin: 0;
  color: #333333;
  overflow-wrap: anywhere;
}

.searched-item-card dl div:last-child dd {
  color: #c94b38;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.pickup-item-list {
  display: grid;
  gap: 28px;
}

.pickup-item-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 32px;
  align-items: center;
  padding: 24px 32px;
}

.pickup-item-info {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 14px 22px;
  align-items: center;
}

.pickup-item-info h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--teal);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.pickup-item-info .item-thumb {
  height: 124px;
  margin-bottom: 0;
}

.pickup-item-info .item-thumb img {
  width: 112px;
  height: 112px;
}

.pickup-price-summary p {
  margin: 0;
  color: #444444;
  font-size: 14px;
  font-weight: 400;
}

.pickup-price-summary .pickup-price-value {
  margin-top: 2px;
  color: #c94b38;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
}

.pickup-price-summary span {
  color: #666666;
  font-size: 12px;
  font-weight: 400;
}

.inline-trend-chart {
  position: relative;
  padding: 14px 16px 18px;
  border: 1px solid #82c9d7;
  border-radius: 6px;
  background: #ffffff;
}

.inline-trend-chart h4 {
  margin: 0 0 12px;
  color: #444444;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.inline-trend-range-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin: 0 auto 14px;
  padding: 3px;
  border-radius: 5px;
  background: #eeeeee;
}

.inline-trend-range-tabs button {
  min-height: 28px;
  border: 0;
  border-radius: 4px;
  outline: 0;
  background: transparent;
  color: #222222;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.inline-trend-range-tabs button:hover,
.inline-trend-range-tabs button:focus-visible {
  background: #f8fafc;
  box-shadow: inset 0 0 0 2px rgba(18, 164, 186, 0.25);
}

.inline-trend-range-tabs button.active {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.inline-trend-plot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 34px 0 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.inline-trend-plot:disabled {
  cursor: default;
}

.inline-trend-plot:disabled .trend-zoom-icon {
  display: none;
}

.inline-trend-plot svg {
  display: block;
  width: 100%;
  height: auto;
}

.inline-trend-area {
  fill: rgba(18, 164, 186, 0.2);
}

.inline-trend-line {
  fill: none;
  stroke: #12a4ba;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inline-trend-points circle {
  fill: #ffffff;
  stroke: #12a4ba;
  stroke-width: 2.4;
}

.trend-zoom-icon {
  position: absolute;
  right: 2px;
  bottom: 22px;
  width: 28px;
  height: 28px;
  border: 3px solid #888888;
  border-radius: 50%;
  background:
    linear-gradient(#888888, #888888) 50% 50% / 12px 3px no-repeat,
    linear-gradient(#888888, #888888) 50% 50% / 3px 12px no-repeat;
}

.trend-zoom-icon::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -8px;
  width: 13px;
  height: 4px;
  border-radius: 999px;
  background: #888888;
  transform: rotate(45deg);
  transform-origin: center;
}

.trend-preview {
  display: grid;
  gap: 6px;
}

.trend-preview > p {
  margin: 0;
  color: #555555;
  font-size: 13px;
  font-weight: 700;
}

.trend-thumb-button {
  display: block;
  width: 100%;
  padding: 10px 10px 0;
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background: #ffffff;
  color: #777777;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.trend-thumb-button:hover,
.trend-thumb-button:focus-visible {
  border-color: var(--teal);
  background: #e5f6f9;
  box-shadow: 0 2px 8px rgba(18, 164, 186, 0.14);
}

.trend-thumb-button img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.trend-thumb-chart {
  display: block;
  padding: 8px 8px 6px;
  border-radius: 5px;
  background: linear-gradient(180deg, #fbfdfe 0%, #ffffff 100%);
}

.trend-thumb-chart svg {
  display: block;
  width: 100%;
  height: 118px;
}

.trend-thumb-chart .thumb-grid {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 1;
}

.trend-thumb-chart .thumb-area {
  fill: rgba(18, 164, 186, 0.2);
}

.trend-thumb-chart .thumb-line {
  fill: none;
  stroke: #12a4ba;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-thumb-chart circle {
  fill: #ffffff;
  stroke: #12a4ba;
  stroke-width: 1.8;
}

.trend-thumb-caption {
  display: block;
  margin: 0 -10px;
  padding: 6px 10px;
  border-top: 1px solid #eeeeee;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.price-trend-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 6px 14px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  background: #ffffff;
  color: var(--teal-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.price-trend-button:hover,
.price-trend-button:focus-visible {
  background: var(--pale);
}







.promo-info-block > h2 {
  margin-bottom: 16px;
}

.promo-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.coupon-card,
.info-card {
  padding: 18px;
  border: 1px solid var(--soft-line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.small-label {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
}

.coupon-card h3,
.info-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.coupon-card p:not(.small-label) {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.coupon-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.coupon-card a:hover,
.coupon-card a:focus-visible {
  background: #e5f6f9;
}

.info-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid #eeeeee;
  font-size: 13px;
}

.info-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list time {
  color: #777777;
  font-weight: 700;
}

.info-list a {
  color: #444444;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.text-list a {
  color: #444444;
  text-decoration: underline;
}

.lower-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lower-block h2 {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 22px;
  text-align: left;
}

.text-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-list li,
details {
  margin-bottom: 8px;
  padding: 12px 14px;
  border: 1px solid var(--soft-line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 8px 0 0;
  color: var(--muted);
}

.side-column {
  position: sticky;
  top: 18px;
}

.side-column h2 {
  margin: 14px 0 14px;
  text-align: center;
  color: var(--teal);
  font-size: 18px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
}

.rank-thumb {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid #dddddd;
  background: #f6f6f6;
  color: #999999;
  font-size: 12px;
  font-weight: 700;
}

.ranking-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.ranking-card h3 a {
  color: #12a3bf;
  text-decoration: underline;
  transition: color 0.18s ease;
}

.ranking-card h3 a:hover,
.ranking-card h3 a:focus-visible {
  color: #0f8fa3;
}

.ranking-card p {
  margin: 2px 0 6px;
  color: var(--muted);
  font-size: 12px;
}

.ranking-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 6px;
  margin: 0;
  font-size: 12px;
}

.ranking-card dt {
  color: #555555;
}

.ranking-card dd {
  margin: 0;
  color: #c94b38;
  font-weight: 700;
}

.site-footer {
  margin-top: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #f8f8f8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #666666;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.price-trend-modal[hidden] {
  display: none;
}

.price-trend-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.price-trend-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.price-trend-dialog {
  position: relative;
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: hidden;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.price-trend-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 16px 20px;
  border-bottom: 1px solid #eeeeee;
}

.price-trend-header h2 {
  margin: 0;
  color: #444444;
  font-size: 24px;
  line-height: 1.3;
}

.price-trend-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #777777;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.price-trend-close:hover,
.price-trend-close:focus-visible {
  background: #e5e7eb;
  color: #333333;
}

.price-trend-body {
  padding: 22px;
  overflow: auto;
}

.price-trend-body img {
  display: block;
  width: 100%;
  height: auto;
}

.trend-chart-card {
  padding: 2px 0 6px;
}

.trend-chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.trend-chart-kicker {
  margin: 0 0 6px;
  color: #777777;
  font-size: 13px;
  font-weight: 700;
}

.trend-chart-head h3 {
  margin: 0;
  color: #222222;
  font-size: 26px;
  line-height: 1.3;
}

.trend-chart-head p:not(.trend-chart-kicker) {
  margin: 8px 0 0;
  color: #777777;
  font-size: 13px;
}

.trend-current-price {
  flex: 0 0 auto;
  min-width: 172px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fafafa;
  text-align: right;
}

.trend-current-price span {
  display: block;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
}

.trend-current-price strong {
  display: block;
  margin-top: 2px;
  color: #c94b38;
  font-size: 24px;
  line-height: 1.2;
}

.trend-range-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 20px;
  padding: 4px;
  border-radius: 8px;
  background: #eeeeee;
}

.trend-range-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  outline: 0;
  background: transparent;
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.trend-range-tabs button:hover,
.trend-range-tabs button:focus-visible {
  background: #f8fafc;
  box-shadow: inset 0 0 0 2px rgba(18, 164, 186, 0.35);
}

.trend-range-tabs button.active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
}

.trend-chart-plot {
  padding: 4px 0 0;
}

.trend-chart-plot svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
}

.trend-grid line {
  stroke: #dfe3e8;
  stroke-width: 1.2;
}

.trend-axis-labels text {
  fill: #666666;
  font-size: 16px;
  font-weight: 400;
}

.trend-y-labels text {
  text-anchor: start;
}

.trend-x-labels text {
  text-anchor: middle;
}

.trend-area-path {
  fill: url("#trend-area-gradient");
}

.trend-line-path {
  fill: none;
  stroke: #12a4ba;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-point-layer circle {
  fill: #ffffff;
  stroke: #12a4ba;
  stroke-width: 2.4;
}

.price-page {
  padding: 28px 0 56px;
  background: #ffffff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #777777;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.breadcrumb a::after {
  content: ">";
  margin-left: 8px;
  color: #999999;
  text-decoration: none;
}

.price-hero {
  margin-bottom: 22px;
  padding: 26px 28px;
  border: 1px solid var(--soft-line);
  background: var(--pale);
}

.price-kicker {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-weight: 700;
}

.price-hero h1 {
  margin: 0;
  color: #333333;
  font-size: 34px;
  line-height: 1.35;
}

.price-hero > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.price-search-box {
  margin-bottom: 32px;
}

.price-table-section {
  margin-top: 24px;
}

.price-table-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.price-table-heading h1,
.price-table-heading h2 {
  margin: 0;
  color: var(--teal);
  font-size: 28px;
  line-height: 1.35;
}

.price-table-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.price-table-heading > a {
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
}

.price-table-wrapper {
  overflow-x: auto;
  border: 1px solid #12a4ba;
  border-radius: 8px 8px 0 0;
  background: #f8f5e8;
  box-shadow: none;
}

.shop-comparison-wrapper {
  padding-bottom: 6px;
  scrollbar-color: #12a4ba #dceff3;
  scrollbar-width: thin;
}

.shop-transposed-wrapper {
  overflow-x: scroll;
  border-color: #d1d5db;
  border-radius: 0;
  scrollbar-gutter: stable;
}

.shop-comparison-wrapper::-webkit-scrollbar {
  height: 12px;
}

.shop-comparison-wrapper::-webkit-scrollbar-track {
  background: #dceff3;
}

.shop-comparison-wrapper::-webkit-scrollbar-thumb {
  border: 2px solid #dceff3;
  border-radius: 999px;
  background: #12a4ba;
}

.mock-price-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  background: #f8f5e8;
  font-size: 14px;
}

.shop-comparison-table {
  min-width: 1480px;
  font-size: 13px;
  font-weight: 400;
}

.mock-price-table th,
.mock-price-table td {
  border: 1px solid #12a4ba;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.mock-price-table th {
  background: #12a4ba;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.mock-price-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.22);
}

.shop-comparison-table th,
.shop-comparison-table td {
  font-weight: 400;
}

.shop-comparison-table th {
  border-color: #ffffff;
  font-weight: 700;
}

.shop-comparison-table th:nth-child(n + 3) {
  background: #0f8fa3;
}

.shop-comparison-table th a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-comparison-table tbody tr {
  background: #f8f5e8;
}

.shop-comparison-table tbody tr:nth-child(even) {
  background: #ffffff;
}

.shop-comparison-table th:nth-child(1),
.shop-comparison-table td:nth-child(1) {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 84px;
  width: 84px;
}

.shop-comparison-table th:nth-child(2),
.shop-comparison-table td:nth-child(2) {
  position: sticky;
  left: 84px;
  z-index: 2;
  min-width: 116px;
  width: 116px;
}

.shop-comparison-table th:nth-child(1),
.shop-comparison-table th:nth-child(2) {
  z-index: 4;
  background: #12a4ba;
}

.shop-comparison-table tbody tr:nth-child(odd) td:nth-child(-n + 2) {
  background: #f8f5e8;
}

.shop-comparison-table tbody tr:nth-child(even) td:nth-child(-n + 2) {
  background: #ffffff;
}

.price-category {
  width: 12%;
  font-weight: 700;
  white-space: nowrap;
}

.price-type {
  width: 13%;
  white-space: nowrap;
}

.price-product-name {
  width: 34%;
  font-weight: 700;
  line-height: 1.55;
}

.price-jan {
  width: 15%;
  white-space: nowrap;
}

.price-normal,
.shop {
  width: 13%;
  font-weight: 700;
  white-space: nowrap;
}

.price-normal {
  color: #c94b38;
}

.shop a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-comparison-table .item-capacity,
.shop-comparison-table .item-color {
  white-space: nowrap;
}

.shop-comparison-table .shop-price {
  white-space: nowrap;
  text-align: right;
}

.shop-comparison-table .shop-price a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-comparison-table .shop-price.empty {
  color: #999999;
  text-align: center;
}

.shop-transposed-table {
  width: max-content;
  min-width: 100%;
  table-layout: auto;
  font-size: 12px;
  font-weight: 400;
}

.shop-transposed-table th,
.shop-transposed-table td {
  border-color: #d1d5db;
  font-weight: 400;
}

.shop-transposed-table th {
  border-color: #ffffff;
  font-weight: 400;
}

.shop-transposed-table th:nth-child(n + 2) {
  background: #d9eef2;
  color: #334f56;
}

.shop-transposed-table th:nth-child(n + 2),
.shop-transposed-table td:nth-child(n + 2) {
  min-width: 8em;
}

.product-spec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
  min-width: 11em;
  text-align: left;
  line-height: 1.45;
}

.product-spec-head span {
  color: #334f56;
  font-weight: 400;
}

.product-spec-head b {
  color: #334f56;
  font-weight: 400;
}

.price-head-product-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-head-product-link:hover,
.price-head-product-link:focus-visible {
  color: var(--teal);
}

.product-spec-labels,
.product-spec-values {
  grid-template-columns: 1fr;
  min-width: 8em;
}

.product-spec-labels span,
.product-spec-values b {
  display: block;
}

.shop-transposed-table tbody tr {
  background: #f8f5e8;
}

.shop-transposed-table tbody tr:nth-child(even) {
  background: #ffffff;
}

.shop-transposed-table th:first-child,
.shop-transposed-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 9em;
  min-width: 9em;
}

.shop-transposed-table th:first-child {
  z-index: 4;
  background: #2f363b;
  color: #ffffff;
  text-align: left;
}

.shop-transposed-table tbody td:first-child {
  background: #2f363b;
  color: #ffffff;
  text-align: left;
}

.shop-transposed-table .shop-name,
.shop-transposed-table .shop-price {
  white-space: nowrap;
}

.shop-transposed-table .shop-name a,
.shop-transposed-table .shop-price a {
  color: inherit;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-transposed-table .shop-price {
  text-align: right;
}

.shop-transposed-table .shop-price.empty {
  color: #999999;
  text-align: center;
}

.shop-transposed-table .shop-price.is-max a {
  color: #c94b38;
  font-weight: 700;
}

.price-value {
  font-weight: 700;
}

.price-value span {
  display: block;
}

/* 高額買取アイテム start */
.pc-show{
  display: block;
}
.sp-show{ 
  display: none;
}

.high-value-slide-con{
  justify-items: center;
}

.high-value-slide-con .high-value-silde-title{
    color: #12A3BF;
    background-color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding: 15px 0px 12px;
    font-weight: bold;
}
.high-value-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.high-value-item {
  max-width: 269px;
  width: 100%;
  /* height: 160px; */
  border-radius: 4px;
  padding: 16px;
  align-items: flex-start;
  border: solid;
  color: #CCCCCC;
  border-width: 1px;
}
.item-up{
  display: flex;
}

.item-image-box {
  width: 57px; 
  /* height: 57px;  */
  flex-shrink: 0; 
  margin-right: 15px; 
  position: relative;
  display: inline-block;
}

.item-image-box img {
  width: 53px;
  height: 53px;
  object-fit: contain;
  background-color: #fff; 
  border-radius: 4px;
  display: block; 
  width: 100%; 
  height: auto;
}
.star.favorite-btn {
  position: absolute; 
  top: 0px;          
  left: 0px;         
  z-index: 10;        
  width: 18px;
  height: 18px;
  background-image:  url(../img/icon_star-grey-deep.svg);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}


.star.favorite-btn.active {
  background-image:  url(../img/icon_star-solid.svg);
}


.item-header {
  justify-items: flex-start;
}

.item-name {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  color: #454545;
  line-height: 19px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-brand {
  font-size: 8.9px;
  color: #454545;
  line-height: 14px;
}

.item-details {
  font-size: 12px;
  line-height: 15px;
  color: #454545;
  justify-items: flex-start;
}

.item-model,
.item-jan,
.item-price {
  margin: 3px 0;
  line-height: 1.5;
  display: flex;
}

.item-model span,
.item-jan span,
.item-price span{
  margin-left: 15px;
}
/* 高額買取アイテム end */

/*ニュース start*/
#page-news {
  padding: 30px 0 90px;
  width: 100%;
}
.more-link{
  text-align: center;
  margin: 40px auto;
}
.more-link a{
  display: inline-block;
  background-color: #12A3BF;
  width: 168px;
  height: 58px;
  line-height: 58px;
  border: 1px solid #12A3BF;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  text-decoration: none;
}
.more-link a:hover{
  background-color: #CAE7EA;
  color: #12A3BF;
}
.news-child {
  border-bottom: 1px solid #8588A1;
}

.news-child a {
  padding: 29px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.news-child a:hover h2{
  text-decoration: underline;
}

strong.news-time {
  font-size: 16px;
  color: #12A3BF;
  flex-shrink: 0;
}

.news-child h3 {
  font-size: 16px;
  font-weight: normal;
  margin-left: 13px;
  line-height: 21px;
  flex: 1;
  color: #454545;
  overflow: hidden;
}

.news-child h3 span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-text {
  margin: 24px 0 64px 50px;
  line-height: 21px;
}

.news-link {
  text-align: center;
}

.news-link a {
  display: inline-block;
  border: 1px solid #12A3BF;
  color: #12A3BF;
  font-size: 14px;
  padding: 4px 11px;
  border-radius: 4px;
}

.news-link a:hover {
  background: #C1E4E8;
}
/*ニュース end*/

/* コラム start */
.user-slide .silde-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  padding-bottom: 5px;
  border-bottom: 2px solid #12A3BF;
}
.user-slide .silde-title .icon {
  margin-right: 8px;
}
.user-slide .slide-list li {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #8588A1;
}
.user-slide .slide-list .pic {
  width: 101px;
  height: 81px;
  flex-shrink: 0;
  margin-right: 16px;
}
.user-slide .slide-list .pic a{
  display: inline-block;
  width: 100%;
  height: 100%;
}
.user-slide .slide-list .pic img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.user-slide .slide-list .message .title {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 8px;
  font-weight: bold;
}
.user-slide .slide-list .message .text {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 12px;
}
.user-slide .slide-list .message .date {
  font-size: 12px;
  line-height: 16px;
}
.user-slide.home-featured .slide-list .category{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.user-slide.home-featured .slide-list .category strong{
  min-width: 44px;
  height: 22px;
  line-height: 22px;
  background-color: #FFF2CE;
  border-radius: 11px;
  font-size: 14px;
  padding: 0 8px;
  margin-right: 12px;
  flex-shrink: 0;
}
/* コラム end */

/* 高額買取アイテム start*/
@media (max-width: 1024px) {
  .pc-show{
    display: none;
  }
  .sp-show{ 
    display: block;
  }
  /* 高額買取アイテム start*/
  .high-value-items {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 8px;
     width: 100%;
     box-sizing: border-box; 
  }

  .high-value-item {
    width: 100%;
    max-width:492px;
    padding: 8px;
  }
  
  .item-image-box {
    width: 100px;
    height: auto;
    max-height: 200px;
    margin-right: 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }
  
  .item-image-box img {
    /* width: 100px; */
    height: 110px;
    margin-top: 10px;
  }
  .item-details > * {
    margin-bottom: 10px;
  }

  .item-up {
    justify-content: center;
  }
  .star.favorite-btn {
    right:-10px;
    left: auto;
  }
  .item-jan,
  .item-price {
    display: grid;
  }
  .item-jan span, .item-price span {
    margin-left: 0px; 
    margin-top: 10px;
    font-size:14px;
  }
  
  .item-model span {
      margin-left: 30px;
      font-size:14px;
  }

  .item-jan span {
    font-size:11.3px
  }

  .item-model span{
    font-size:13.2px
  }

  .item-name {
    font-size: 16px;
    line-height: 21px;
    height: 42px;
    font-weight: bold;
    color: #12A3BF;
	}
  .item-brand {
    font-size: 12px;
    line-height: 24px;
    height: 24px;
  }
  span.price-text {
    display: flex;
  }
  /* 高額買取アイテム end  */

  /*ニュース start*/
  #page-news {
    padding: 20px 8px;
  }

  #page-news h2{
    border: 2px solid #12A3BF;
    height: 42px;
    line-height: 42px;
  }
  .news-child a {
    padding: 13px 0;
    align-items: baseline;
  }
  strong.news-time {
    font-size: 14px;
    line-height: 19px;
  }
  .news-child h3{
    margin-left: 0;
    margin: 0 0 0 16px;
    font-size: 14px;
  }
  .news-text {
    margin: 24px 0 60px 0;
  }

  .more-link{
    margin: 24px auto;
  }
  .more-link a{
    background-color: #fff;
    color: #12A3BF;
  }
  /*ニュース end*/
  /* コラム start */
  .user-slide .slide-list .pic {
    width: 80px;
    margin-right: 10px;
  }
  .user-slide .slide-list .message .title {
    margin-bottom: 4px;
  }
  .user-slide .slide-list .message .text {
    margin-bottom: 8px;
  }
  .user-slide.home-featured h2, .dis-pc+.user-cont h2, #page-news h2 {
    border: 2px solid #12A3BF;
    height: 42px;
    line-height: 42px;
  }
/*コラム end */
}
/* 高額買取アイテム end*/

@media (max-width: 1100px) {
  .header-links {
    display: none;
  }

  .top-header-inner {
    justify-content: space-between;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-column {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .side-column h2 {
    grid-column: 1 / -1;
  }

  .pickup-item-card {
    grid-template-columns: 1fr;
  }

  .pickup-item-info {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .pickup-item-info .item-thumb {
    height: 126px;
  }

  .pickup-item-info .item-thumb img {
    width: 112px;
    height: 112px;
  }

  .trend-thumb-button img {
    height: 84px;
  }
}

@media (max-width: 820px) {
  .top-header-inner {
    height: auto;
    padding: 12px 16px;
  }

  .logo img {
    width: 180px;
  }

  .header-actions a {
    min-width: auto;
    padding: 0 18px;
  }

  .main-nav-inner {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

  .banner-frame {
    padding: 0;
  }

  .intro-search > .page-container > h1 {
    font-size: 22px;
  }

  .search-form,
  .category-grid,
  .route-card-grid,
  .list-cards,
  .item-grid,
  .promo-info-grid,
  .lower-block,
  .side-column {
    grid-template-columns: 1fr;
  }

  .search-form {
    grid-template-columns: minmax(0, 1fr) 48px;
    row-gap: 8px;
  }

  .search-label {
    grid-column: 1 / -1;
  }

  .search-form input {
    width: 100%;
    border-right: 0;
    border-radius: 6px 0 0 6px;
  }

  .search-form button {
    width: 48px;
    height: 44px;
    padding: 0;
    border-radius: 0 6px 6px 0;
    font-size: 0;
  }

  .search-form button::before {
    left: calc(50% - 2px);
    transform: translate(-50%, -50%);
  }

  .search-form button::after {
    top: calc(50% + 6px);
    left: calc(50% + 7px);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .keyword-area p {
    margin: 8px 0 6px;
    font-size: 12px;
  }

  .keyword-list {
    gap: 6px 8px;
  }

  .keyword-list a {
    min-height: 24px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.15;
  }

  .searched-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .searched-item-card {
    min-height: 286px;
    padding: 10px;
  }

  .searched-item-card .item-thumb {
    height: 94px;
    margin-bottom: 8px;
  }

  .searched-item-card .item-thumb img {
    width: 74px;
    height: 74px;
  }

  .searched-item-category {
    font-size: 10px;
  }

  .searched-item-card h3 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .searched-item-card dl {
    gap: 8px;
    font-size: 11px;
  }

  .searched-item-card dl div {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px;
  }

  .searched-item-card dl div:last-child {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 520px) {
  .page-container {
    max-width: calc(100% - 20px);
  }

  .top-header-inner {
    display: grid;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions a {
    flex: 1;
  }

  .banner-frame {
    min-height: 0;
  }

  .section-block > h2 {
    font-size: 24px;
  }


  .route-card-grid {
    gap: 8px;
  }

  .route-card {
    position: relative;
    padding: 10px 12px;
  }

  .route-card-head {
    grid-template-columns: 54px 1fr;
    gap: 8px;
    min-height: 48px;
    margin-bottom: 8px;
    padding-right: 122px;
  }

  .route-thumb {
    width: 54px;
    height: 48px;
  }

  .route-card-head h3 {
    font-size: 16px;
  }

  .route-main-link {
    position: absolute;
    top: 10px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    min-width: 112px;
    margin-bottom: 0;
    padding: 5px 10px;
    font-size: 12px;
  }

  .route-price-summary {
    margin-bottom: 8px;
    padding: 8px 0;
  }

  .route-high-price {
    font-size: 12px;
  }

  .route-high-price strong {
    font-size: 18px;
  }

  .route-card-meta {
    font-size: 11px;
  }

  .route-group {
    padding-top: 8px;
  }

  .route-group + .route-group {
    margin-top: 8px;
  }

  .route-group > p {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .route-group > p::before {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .route-tags {
    gap: 5px;
  }

  .route-tags a {
    min-height: 22px;
    padding: 2px 7px;
    font-size: 11px;
  }

  .route-price-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .route-price-links a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 22px 5px 8px;
    font-size: 12px;
  }

  .tabs {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .tab-button {
    flex: 0 0 auto;
  }

  .pickup-item-info {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }

  .pickup-item-list {
    gap: 16px;
  }

  .pickup-item-card {
    display: block;
    padding: 20px 18px 24px;
  }

  .pickup-item-card + .pickup-item-card {
    margin-top: 0;
  }

  .pickup-item-info h3 {
    grid-column: 2;
    font-size: 16px;
    line-height: 1.35;
  }

  .pickup-price-summary {
    grid-column: 2;
  }

  .pickup-price-summary p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
  }

  .pickup-price-summary .pickup-price-value {
    /* display: block; */
    font-size: 20px;
  }

  .pickup-price-summary span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
  }

  .pickup-item-info .item-thumb {
    grid-row: 1 / span 2;
    height: 94px;
  }

  .pickup-item-info .item-thumb img {
    width: 82px;
    height: 82px;
  }

  .trend-preview {
    gap: 5px;
  }

  .inline-trend-chart {
    margin-top: 22px;
    padding: 12px 10px 16px;
  }

  .inline-trend-chart h4 {
    font-size: 18px;
  }

  .inline-trend-range-tabs {
    margin-bottom: 10px;
  }

  .inline-trend-range-tabs button {
    min-height: 30px;
    font-size: 10px;
  }

  .inline-trend-plot {
    overflow: visible;
    padding-right: 0;
  }

  .inline-trend-plot svg {
    min-width: 0;
    max-width: 100%;
  }

  .trend-zoom-icon {
    display: none;
  }

  .trend-thumb-button img {
    height: 72px;
  }

  .price-trend-dialog {
    width: calc(100% - 20px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
  }

  .price-trend-header {
    min-height: 54px;
    padding: 12px 14px;
  }

  .price-trend-header h2 {
    font-size: 20px;
  }

  .price-trend-body {
    padding: 14px;
  }

  .trend-chart-head {
    display: block;
    margin-bottom: 14px;
  }

  .trend-chart-head h3 {
    font-size: 20px;
  }

  .trend-current-price {
    margin-top: 12px;
    text-align: left;
  }

  .trend-range-tabs {
    gap: 3px;
    margin-bottom: 14px;
    padding: 3px;
  }

  .trend-range-tabs button {
    min-height: 36px;
    font-size: 13px;
  }

  .trend-chart-plot svg {
    min-width: 620px;
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .price-page {
    padding-top: 18px;
  }

  .price-hero {
    padding: 20px 18px;
  }

  .price-hero h1 {
    font-size: 26px;
  }

  .price-table-heading {
    display: block;
  }

  .price-table-heading h2 {
    font-size: 24px;
  }

  .price-table-heading > a {
    display: inline-block;
    margin-top: 10px;
  }

  .price-table-wrapper {
    overflow-x: auto;
    border: 1px solid #12a4ba;
    border-radius: 8px 8px 0 0;
    background: #f8f5e8;
    box-shadow: none;
  }

  .mock-price-table {
    min-width: 980px;
    display: table;
    table-layout: auto;
    font-size: 13px;
  }

  .mock-price-table thead {
    display: table-header-group;
  }

  .mock-price-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.22);
  }

  .mock-price-table th,
  .mock-price-table td {
    display: table-cell;
    width: auto;
    padding: 8px 7px;
    border: 1px solid #12a4ba;
    word-break: break-word;
  }

  .mock-price-table th {
    font-size: 15px;
    line-height: 1.35;
  }

  .shop-comparison-table {
    min-width: 1480px;
  }

  .shop-comparison-table th {
    border-color: #ffffff;
  }

  .shop-comparison-table th:nth-child(n + 3) {
    background: #0f8fa3;
  }

  .shop-transposed-wrapper {
    border-color: #d1d5db;
    border-radius: 0;
  }

  .shop-transposed-table th,
  .shop-transposed-table td {
    border-color: #d1d5db;
    font-size: 12px;
  }

  .shop-transposed-table th {
    border-color: #ffffff;
    font-size: 12px;
  }

  .shop-transposed-table {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
  }

  .price-category,
  .price-type,
  .price-jan,
  .price-normal,
  .shop {
    white-space: nowrap;
  }
  /*コラム start*/
   .user-slide {
    width: 100%;
  }
  .user-slide .silde-title {
    font-size: 18px;
  }
  .user-slide .slide-list .pic {
    width: 101px;
    margin-right: 16px;
  }
  .user-slide .slide-list .message .title {
    font-size: 16px;
    line-height: 24px;
    width: 90%;
    margin-bottom: 6px;
  }
  .user-slide .slide-list .message .text {
    font-size: 14px;
    width: 93%;
  }
  .user-slide .slide-list .message .date {
    font-size: 12px;
    line-height: 24px;
  }
  /* コラム end */
}
