/* ============================================
   CSS Variables
============================================ */
:root {
  --color-logo: #5c4a3a;
  --color-accent: #c0874a;
  --color-text: #2c2420;
  --color-border: #ddd5cc;
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --header-height-pc: 72px;
  --header-max-width: 1120px;
  --header-padding-pc: 40px;
}

/* ============================================
   Reset
============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Site Header
============================================ */
.site-header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--header-max-width);
  height: var(--header-height-pc);
  margin: 0 auto;
  padding: 0 var(--header-padding-pc);
}

/* Logo */
.site-header__logo-link {
  color: var(--color-logo);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-decoration: none;
}

/* Nav */
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.site-header__nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-decoration: none;
  padding: 0 4px 2px;
  border-bottom: 1px solid transparent;
}

.site-header__nav-item.is-active .site-header__nav-link {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Hamburger（SPのみ表示） */
.site-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 27px;
  color: var(--color-logo);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* ============================================
   SP Navigation
============================================ */
.sp-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 0.73px solid #e5ddd6;
  z-index: 100;
}

.sp-nav.is-open {
  display: block;
}

.sp-nav__list {
  list-style: none;
  padding: 8.73px 16px 0;
}

.sp-nav__item {
  height: 44.73px;
  position: relative;
  border-bottom: 0.73px solid #f7f3ee;
}

.sp-nav__link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-left: 4px;
  color: #2c2420;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.sp-nav__item.is-active .sp-nav__link {
  color: #a87139;
}

/* ============================================
   Responsive
============================================ */
@media (min-width: 769px) {
  .sp-nav {
    display: none !important;
  }

  /* PC: ボタンアイコン非表示 */
  .columns__more-btn__icon {
    display: none;
  }
}

/* ============================================
   Hero Section
============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  padding: 0 80px;
  background: linear-gradient(
    to right,
    rgba(204, 169, 139, 0.6) 57%,
    transparent 50%
  );
}

.hero__text-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__subtitle {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

.hero__heading {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  max-width: 686px;
  word-wrap: break-word;
}

.hero__description {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Breadcrumb
============================================ */
.breadcrumb {
  width: 100%;
  background: #fff;
  border-bottom: 1.15px solid #e5ddd6;
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: var(--header-max-width);
  height: 44px;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb__link {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  text-decoration: none;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__separator {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.breadcrumb__current {
  color: #a87139;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
}

/* ============================================
   Archive Hero
============================================ */
.archive-hero {
  width: 100%;
  background: #f7f3ee;
  border-bottom: 1.15px solid #e5ddd6;
  padding: 64px 32px 32px;
  display: flex;
  justify-content: center;
}

.archive-hero__inner {
  width: 100%;
  max-width: var(--header-max-width);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.archive-hero__title {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 43.2px;
}

.archive-hero__desc {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 26.25px;
}

/* ============================================
   Archive Section
============================================ */
.archive-section {
  width: 100%;
  background: #fff;
  padding: 32px;
  display: flex;
  justify-content: center;
}

.archive-section__inner {
  width: 100%;
  max-width: var(--header-max-width);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.archive-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  align-content: flex-start;
  align-items: flex-start;
}

.archive-card {
  width: 311px;
  background: #fff;
  border-radius: 4px;
  border: 0.73px solid #e5ddd6;
  overflow: hidden;
  flex-shrink: 0;
}

.archive-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}

.archive-card__image {
  width: 100%;
  padding: 8px;
  flex-shrink: 0;
}

.archive-card__img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.archive-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.archive-card__category {
  display: inline-block;
  background: #f7f3ee;
  border: 0.73px solid #e5ddd6;
  border-radius: 4px;
  padding: 1px 9px;
  color: #756457;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
  width: 80px;
  text-align: center;
}

.archive-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.archive-card__title {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 20.8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-card__excerpt {
  color: #2c2420;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-card__date {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}

/* Pagination */
.archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border-radius: 4px;
  color: #756457;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.2s;
}

.archive-pagination .page-numbers.current {
  background: #756457;
  color: #fff;
  font-weight: 500;
}

.archive-pagination .page-numbers.dots {
  background: none;
  cursor: default;
  pointer-events: none;
}

.archive-pagination .page-numbers:not(.current):not(.dots):hover {
  background: #f7f3ee;
}

.archive-pagination .prev,
.archive-pagination .next {
  font-size: 16px;
}

/* ============================================
   Ranking Section
============================================ */
.ranking {
  width: 100%;
  padding: 64px 64px 0 64px;
  background: #f7f3ee;
  display: flex;
  justify-content: center;
}

.ranking__box {
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.ranking__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.ranking__title {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: center;
}

.ranking__subtitle {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: center;
}

.ranking__cards {
  width: 100%;
  max-width: var(--header-max-width);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

/* Card */
.ranking__card {
  position: relative;
  flex: 1;
  max-width: 362px;
  padding: 12px;
  background: #fff;
  border-radius: 4px;
  border: 1.15px solid #e5ddd6;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Badge */
.ranking__card-badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 9px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 16.8px;
  z-index: 1;
}

.ranking__card-badge--1st {
  background: #a87139;
  color: #fff;
}

.ranking__card-badge--2nd,
.ranking__card-badge--3rd {
  background: #f7f3ee;
  color: #a87139;
  border-right: 1px solid #e5ddd6;
  border-bottom: 1px solid #e5ddd6;
}

/* Image */
.ranking__card-image {
  width: 100%;
  height: 190px;
  border-radius: 6px;
  overflow: hidden;
}

.ranking__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Name */
.ranking__card-name {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
  padding-right: 32px;
}

/* Rating */
.ranking__card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ranking__card-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ranking__card-stars img {
  width: 16px;
  height: 16px;
}

.ranking__card-score {
  color: #2c2420;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

/* Price */
.ranking__card-price {
  font-size: 13px;
  line-height: 20.8px;
}

.ranking__card-price-label {
  color: #756457;
  font-family: var(--font-sans);
  font-weight: 400;
}

.ranking__card-price-value {
  color: #2c2420;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Tags */
.ranking__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ranking__card-tag {
  height: 28px;
  padding: 1px 10px;
  border-radius: 4px;
  border: 1.15px solid #e5ddd6;
  display: flex;
  align-items: center;
  color: #756457;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 20.8px;
}

/* Description */
.ranking__card-desc {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 24.5px;
}

/* ============================================
   Featured Store Section
============================================ */
.featured-store {
  width: 100%;
  background: #fff;
  padding: 64px 32px;
  display: flex;
  justify-content: center;
}

.featured-store__inner {
  width: 100%;
  max-width: var(--header-max-width);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.featured-store__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  flex: 1;
}

.featured-store__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-store__title {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: center;
}

.featured-store__subtitle {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: center;
}

.featured-store__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  align-self: stretch;
  flex: 1;
}

.featured-store__name {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: center;
}

.featured-store__points {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.featured-store__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.featured-store__point-label {
  color: #2c2420;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 22.5px;
  text-align: center;
}

.featured-store__point-title {
  color: #a87139;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 22.5px;
  text-align: center;
}

.featured-store__point-desc {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 24.5px;
  text-align: center;
}

.featured-store__image-wrap {
  flex-shrink: 0;
}

.featured-store__image {
  width: 654px;
  height: 572px;
  object-fit: cover;
  display: block;
}

/* ============================================
   Article Body（single.php）
============================================ */
.article-body table {
  width: 100%;
  border-collapse: collapse;
}

@media (max-width: 768px) {
  .article-body table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================
   Trust Section
============================================ */
.trust {
  width: 100%;
  background: #fff;
  border-top: 0.73px solid #e5ddd6;
  border-bottom: 0.73px solid #e5ddd6;
  padding: 64px 32px;
  display: flex;
  justify-content: center;
}

.trust__inner {
  width: 100%;
  max-width: var(--header-max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.trust__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust__title {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: center;
}

.trust__subtitle {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: center;
}

.trust__features {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  border: 0.73px solid #e5ddd6;
  display: flex;
}

.trust__feature {
  flex: 1;
  padding: 24px 16px;
  border-right: 0.73px solid #e5ddd6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.trust__feature:last-child {
  border-right: none;
}

.trust__feature-icon {
  width: 32px;
  height: 32px;
}

.trust__feature-title {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  text-align: center;
}

.trust__feature-desc {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: center;
}

.trust__note {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust__note-icon {
  width: 14px;
  height: 14px;
}

.trust__note-text {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: center;
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

/* ============================================
   Columns Section
============================================ */
.columns {
  width: 100%;
  background: #f7f3ee;
  padding: 64px 32px;
  display: flex;
  justify-content: center;
}

.columns__inner {
  width: 100%;
  max-width: var(--header-max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.columns__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.columns__title {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 33.6px;
}

.columns__subtitle {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 19.5px;
}

/* Grid */
.columns__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 29px;
  row-gap: 25px;
  align-items: start;
}

/* Card */
.column-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.column-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.column-card__image {
  width: 100%;
  flex-shrink: 0;
}

.column-card__img {
  width: 100%;
  height: 199px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.column-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Category badge */
.column-card__category {
  display: inline-block;
  background: #f7f3ee;
  border: 0.73px solid #e5ddd6;
  border-radius: 4px;
  padding: 0 9px;
  color: #756457;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  line-height: 22px;
  width: 80px;
  text-align: center;
}

.column-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.column-card__title {
  color: #2c2420;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 20.8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-card__excerpt {
  color: #2c2420;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-card__date {
  color: #756457;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}

/* More button */
.columns__more {
  display: flex;
  justify-content: center;
}

/* ============================================
   Site Footer
============================================ */
.site-footer {
  width: 100%;
  background: #2c2420;
  border-top: 0.73px solid #3d332d;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.site-footer__inner {
  width: 100%;
  max-width: var(--header-max-width);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Brand */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__logo {
  color: #f7f3ee;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-decoration: none;
}

.site-footer__desc {
  color: rgba(247, 243, 238, 0.55);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  width: 291px;
}

/* Nav */
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__nav-category {
  color: rgba(247, 243, 238, 0.4);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16.5px;
  letter-spacing: 0.66px;
}

.site-footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__nav-link {
  color: rgba(247, 243, 238, 0.75);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  text-decoration: none;
}

/* Divider */
.site-footer__divider {
  width: 100%;
  max-width: var(--header-max-width);
  height: 0.73px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

/* Bottom */
.site-footer__bottom {
  width: 100%;
  max-width: var(--header-max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 40px;
}

.site-footer__copyright {
  color: rgba(247, 243, 238, 0.35);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.site-footer__legal {
  list-style: none;
  display: flex;
  gap: 20px;
}

.site-footer__legal-link {
  color: rgba(247, 243, 238, 0.35);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
}

.sp-only {
  display: none;
}

/* ============================================
   Responsive（必ずベーススタイルの後に記述）
============================================ */
@media (max-width: 768px) {
  /* Header */
  .site-header__nav {
    display: none;
  }

  .site-header__hamburger {
    display: flex;
  }

  .site-header__inner {
    padding: 0 24px;
  }

  /* Hero SP版 */
  .hero {
    height: 350px;
  }

  .hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78%;
    transform: none;
  }

  .hero__content {
    width: 100%;
    background:
      radial-gradient(
        ellipse 52.27% 55.78% at 70.4% 38.64%,
        rgba(244, 188, 128, 0) 43%,
        rgba(226, 168, 106, 0.26) 100%
      ),
      linear-gradient(
        90deg,
        rgba(180, 139, 104, 0.5) 0%,
        rgba(204, 169, 139, 0.38) 74%,
        rgba(204, 169, 139, 0.2) 100%
      );
    padding: 45px 16px 16px 25px;
    gap: 0;
    justify-content: space-between;
  }

  .hero__text-group {
    gap: 8px;
  }

  .hero__subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 20.8px;
    color: #f7f3ee;
  }

  .hero__heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 41.6px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
    max-width: 335px;
    letter-spacing: normal;
  }

  .hero__description {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  /* Ranking SP版 */
  .ranking {
    padding: 48px 24px;
  }

  .ranking__box {
    border: none;
    box-shadow: none;
    padding-bottom: 0;
    width: 100%;
    gap: 24px;
  }

  .ranking__header {
    gap: 8px;
    width: 100%;
  }

  .ranking__title {
    font-size: 28px;
    line-height: 33.6px;
  }

  .ranking__subtitle {
    font-size: 15px;
    line-height: 19.5px;
  }

  .ranking__cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .ranking__card {
    flex-shrink: 0;
  }

  /* Featured Store SP版 */
  .featured-store {
    padding: 48px 0 0 0;
  }

  .featured-store__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .featured-store__content {
    gap: 30px;
  }

  .featured-store__title {
    font-size: 28px;
  }

  .featured-store__subtitle {
    font-size: 15px;
  }

  .featured-store__name {
    font-size: 48px;
    line-height: 48px;
  }

  .featured-store__point-label {
    font-size: 15px;
  }

  .featured-store__point-title {
    font-size: 20px;
  }

  .featured-store__points {
    gap: 24px;
  }

  .featured-store__image-wrap {
    width: 100%;
    padding: 8px;
  }

  .featured-store__image {
    width: 100%;
    height: 326px;
    object-fit: cover;
  }

  /* Trust SP版 */
  .trust {
    padding: 64px 32px;
    border-top: none;
  }

  .trust__title {
    font-size: 24px;
    line-height: 33.6px;
    padding: 0 32px;
  }

  .trust__subtitle {
    font-size: 15px;
    line-height: 22.5px;
    padding: 0 16px;
  }

  .trust__features {
    flex-direction: column;
    width: 100%;
  }

  .trust__feature {
    border-right: none;
    border-bottom: 0.73px solid #e5ddd6;
  }

  .trust__feature:last-child {
    border-bottom: none;
  }

  .trust__note-text {
    font-size: 12px;
    line-height: 19.5px;
  }

  /* Archive SP版 */
  .archive-section {
    padding: 64px 32px;
  }

  .archive-section__inner {
    padding: 0;
  }

  .archive-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .archive-card {
    width: 100%;
    box-shadow:
      0px 1px 3px rgba(0, 0, 0, 0.05),
      0px 0px 2px rgba(0, 0, 0, 0.06);
  }

  /* Breadcrumb SP版 */
  .breadcrumb__current {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 11em;
  }

  /* Archive Hero SP版 */
  .archive-hero {
    padding: 48px 32px 32px;
  }

  .archive-hero__title {
    font-size: 24px;
    line-height: 33.6px;
  }

  .archive-hero__desc {
    font-size: 13px;
    line-height: 22.75px;
  }

  /* Columns SP版 */
  .columns {
    padding: 64px 32px;
  }

  .columns__inner {
    gap: 28px;
  }

  .columns__title {
    font-size: 32px;
    line-height: 33.6px;
  }

  .columns__subtitle {
    font-size: 15px;
    line-height: 19.5px;
  }

  .columns__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* SP: border-bottomのみ */
  .column-card {
    border-bottom: 0.73px solid #e5ddd6;
  }

  /* SP: 11件目以降を非表示（10件のみ表示） */
  .column-card:nth-child(n + 11) {
    display: none;
  }

  .columns__more-btn {
    width: 100%;
    max-width: 310px;
    height: 40px;
    padding: 12px;
    border: 1.5px solid #5c4a3a;
    border-radius: 6px;
    color: #5c4a3a;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    background: transparent;
  }

  .columns__more-btn:hover {
    background: #5c4a3a;
    color: #fff;
  }

  /* SP: アイコン表示（右向き矢印） */
  .columns__more-btn__icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("../images/icon-chevron-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
  }

  /* Footer SP版 */
  .site-footer {
    padding: 56px 32px;
  }

  .site-footer__inner {
    width: 100%;
  }

  .site-footer__desc {
    width: 100%;
  }

  .site-footer__bottom {
    padding: 8px 0;
  }

  .sp-only {
    display: block;
  }
}

.columns__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  border: 1px solid #2c2420;
  border-radius: 2px;
  color: #2c2420;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.columns__more-btn:hover {
  background: #2c2420;
  color: #fff;
}
