* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #222;
  background: #fff;
  line-height: 1.6;
  font-size:14px;
}

h1,h2{
  font-size:20px;
}

h3{
  font-size:18px;
}

h4{
  font-size:16px;
}

h5{
  font-size:14px;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(800px, calc(100% - 32px));
  margin: 0 auto;
}

.admin-header,
.site-header {
  background: #fff;
  border-bottom: 1px solid #000;
  margin-bottom: 24px;
}

.header-inner,
.admin-nav,
.site-nav,
.page-actions,
.actions,
.stats-grid,
.tag-list,
.link-list {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.header-inner,
.page-actions {
  justify-content: space-between;
}

.page-actions > *,
.actions > * {
  min-width: 0;
}

.logo {
  display: inline-block;
  padding: 18px 0;
  font-weight: 700;
  max-width:150px;
}

.card {
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.narrow {
  max-width: 440px;
  margin: 40px auto;
}

.form-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.form-grid label,
.ranking-edit-card,
.search-product-card {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.full {
  grid-column: 1 / -1;
  min-width: 0;
}

input,
textarea,
select,
button {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #cfc4b7;
  border-radius: 8px;
  max-width: 100%;
}

input:not([type='checkbox']):not([type='radio']),
textarea,
select {
  width: 100%;
}

input[type='file'] {
  width: 100%;
}

button,
.button-link {
  background: #000;
  color: #fff;
  cursor: pointer;
}

button {
  width: fit-content;
  max-width: 100%;
}

.button-link {
  padding: 10px 14px;
  border-radius: 8px;
}

.link-button {
  background: transparent;
  color: #000;
  padding: 0;
  border: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid #eee4d6;
  padding: 12px 8px;
  text-align: left;
  vertical-align: top;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.admin-pagination-link,
.admin-pagination-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
}

.admin-pagination-link {
  border: 1px solid #d9c9b4;
  border-radius: 999px;
  background: #fff;
  color: #222;
  text-decoration: none;
}

.admin-pagination-link.is-disabled {
  color: #bbb;
  border-color: #e7ddd0;
  pointer-events: none;
}

.admin-pagination-status {
  font-weight: 700;
}

.inline,
.inline-form,
.inline-search {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.flash {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.flash-success {
  background: #ecf8ef;
  border: 1px solid #b9dfc1;
}

.flash-error {
  background: #fff0f0;
  border: 1px solid #e4b9b9;
}

.image-preview {
  display: grid;
  gap: 8px;
}

.admin-thumb {
  width: 180px;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd2c3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 20px;
}

.stats-grid .card strong {
  display: block;
  font-size: 28px;
}

.list-item + .list-item,
.section-block + .section-block,
.ranking-item + .ranking-item,
.ranking-edit-card + .inline-form {
  margin-top: 16px;
}

.editor-panel,
.editor-subpanel {
  border-top: 1px solid #eee4d6;
  padding-top: 20px;
  margin-top: 20px;
}

.editor-subform {
  background: #faf7f2;
  border: 1px solid #eee4d6;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  min-width: 0;
}

.section-builder {
  position: relative;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.section-builder-list {
  display: grid;
  gap: 18px;
}

.section-builder-menu[hidden] {
  display: none;
}

.section-builder-block {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 6px 40px 6px 0;
  background: transparent;
  min-width: 0;
  border-radius: 10px;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.section-builder-block-text {
  border-bottom: 1px solid #f1e7d8;
}

.section-builder-block.is-selected {
  background: #fcf7f0;
  box-shadow: inset 0 0 0 1px #e3d5c2;
}

.section-builder-mode-toggle {
  display: none;
  gap: 4px;
  align-items: center;
  padding: 4px;
  border: 1px solid #e3d5c2;
  border-radius: 999px;
  background: #fff;
  position: relative;
  z-index: 3;
}

.section-builder-block.is-selected .section-builder-mode-toggle {
  display: inline-flex;
}

.section-builder-mode-button {
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #555;
}

.section-builder-mode-button.is-active {
  background: #f2eadf;
  color: #222;
}

.section-builder-block-body {
  min-width: 0;
}

.section-builder-textarea {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #222;
  line-height: 1.9;
  resize: none;
  overflow: hidden;
  box-shadow: none;
}

.section-builder-textarea:focus {
  outline: none;
}

.section-builder-inline-status,
.section-builder-note {
  font-size: 13px;
}

.section-builder-plus-wrap {
  position: absolute;
  top: 6px;
  right: 0;
}

.section-builder-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #d9c9b4;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.section-builder-block:hover .section-builder-plus,
.section-builder-block:focus-within .section-builder-plus {
  opacity: 1;
}

.section-builder-plus:hover {
  background: #f6efe5;
}

.section-builder-menu {
  position: absolute;
  z-index: 20;
  display: grid;
  gap: 6px;
  min-width: 140px;
  padding: 8px;
  border: 1px solid #d9c9b4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  pointer-events: auto;
}

.section-builder-menu-item {
  justify-content: flex-start;
  background: transparent;
  color: #222;
  border: 0;
  padding: 8px 10px;
}

.section-builder-menu-item:hover {
  background: #f6efe5;
}

.section-builder-image-preview {
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

.section-builder-preview-image {
  display: block;
  max-width: min(100%, 520px);
  border-radius: 12px;
}

.section-builder-image-fields {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.section-builder-block-image .section-builder-image-fields {
  display: none;
}

.section-builder-block-image.is-selected .section-builder-image-fields {
  display: grid;
}

.section-builder-caption-preview {
  margin: 8px 0 0;
  color: #666;
  font-size: 14px;
}

.section-builder-inline-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.section-builder-html-textarea {
  min-height: 120px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: #fff;
}

.article-edit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.article-edit-main,
.article-edit-sidebar {
  min-width: 0;
}

.article-sidebar-card {
  position: sticky;
  top: 20px;
}

.article-sidebar-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.legacy-faq-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2eadf;
  border: 1px solid #e3d5c2;
  font-size: 12px;
  font-weight: 700;
}

.article-sidebar-meta {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid #eee4d6;
  border-radius: 10px;
  background: #faf7f2;
  min-width: 0;
}

.article-sidebar-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.legacy-faq-section {
  background: #fcfaf6;
  border-left: 4px solid #d9c9b4;
  padding-left: 16px;
}

.article-faq-footer {
  margin-top: 40px;
  background: #fcfaf6;
  border: 1px solid #e3d5c2;
}

.article-faq-footer-head {
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9ddcf;
}

.faq-footer-subform {
  background: #fff;
}

.faq-footer-item {
  padding: 18px 0;
  border-top: 1px solid #e9ddcf;
  min-width: 0;
}

.ranking-manager {
  margin-top: 20px;
  padding: 16px;
  background: #faf7f2;
  border-radius: 10px;
  min-width: 0;
}

.editor-panel,
.editor-subpanel,
.article-sidebar-card,
.article-sidebar-header,
.inline-upload-form,
.form-grid > * {
  min-width: 0;
}

.muted {
  color: #666;
}

.top-gap {
  margin-top: 12px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 16px 0;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 20px;
}

.ranking-rank {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.ranking-rank-image {
  display: block;
  width: 44px;
  height: auto;
}

.ranking-product-meta {
  margin: 0 0 0px !important;
}

.ranking-shop-buttons {
  margin: 16px 0 0;
}

.ranking-shop-buttons a{
  color:#fff !important;
  text-decoration:none !important;
}

.product-thumb {
  width: 200px;
  max-width:100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.inline-upload-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.faq-item + .faq-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee4d6;
}


.article-toc-list,
.article-toc-sublist {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.article-toc-sublist {
  margin-top: 8px;
  padding-left: 16px; /* 子階層だけ少しインデントしたい場合 */
}

.article-toc-list > li > a {
  font-weight: 600;
  color:#4c4c4c;
}

.article-toc-sublist li a {
  font-weight: 400;
  color:#4c4c4c;
}

.article-cover-image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  margin: 16px 0 20px;
}

.article-updated-at {
  margin: -6px 0 18px;
  color: #666;
  font-size: 11px !important;
}

.article-toc {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid #e3d5c2;
  border-radius: 12px;
  background: #fcfaf6;
  font-size:13px;
}

.article-toc h2 {
  margin: 0 0 14px !important;
  padding: 0;
  border: none !important;
  font-size:15px;
  background: none;
  padding:0px !important;
}

.article-toc-list,
.article-toc-sublist {
  margin: 0;
  padding-left: 20px;
}

.article-toc-sublist {
  margin-top: 8px;
}

.article-toc li + li {
  margin-top: 8px;
}

.article-toc a {
  color: #222;
  text-decoration: none;
}

.article-toc a:hover {
  text-decoration: underline;
}

.article-index-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #000;
}

.article-index-thumb-link {
  display: block;
}

.article-index-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background: #f6efe5;
}

.article-index-thumb-placeholder {
  display: grid;
  place-items: center;
  color: #8a8176;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.article-index-content {
  min-width: 0;
}

.article-index-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.4;
}

.article-index-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.4;
}

.article-index-intro {
  margin: 0 0 10px;
  color: #5f5a54;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.public-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.public-pagination-link,
.public-pagination-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
}

.public-pagination-link {
  border: 1px solid #d9c9b4;
  border-radius: 999px;
  background: #fff;
  color: #222;
  text-decoration: none;
}

.public-pagination-link.is-disabled {
  color: #bbb;
  border-color: #e7ddd0;
  pointer-events: none;
}

.public-pagination-status {
  font-weight: 700;
}

.article-detail{
  border:none;
  padding:5px;
  max-width:800px;
  margin:0 auto;
}

.article-detail p,
.article-detail div{
  font-size:14px;
}

.article-detail p a,
.article-detail div a{
  color:#c48437;
  text-decoration:underline;
}


.article-detail h2,
.article-detail h3,
.article-detail h4,
.article-detail h5 {
  scroll-margin-top: 96px;
}

.article-detail h2 {
  margin: 40px 0 16px;
  padding: 14px 18px;
  border-left: 6px solid #e3d5c2;
  background: #fcfaf6;
  border-radius: 0 12px 12px 0;
}

.article-body-content h3,
.faq-item h3{
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e3d5c2;
}

.ranking-content h3 {
  margin: 0px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

.article-body-content h4 {
  margin: 24px 0 10px;
  padding-left: 12px;
  border-left: 4px solid #e3d5c2;
}

.article-body-content h5 {
  margin: 20px 0 8px;
  color: #6c6256;
  letter-spacing: 0.04em;
}

.article-image img{
  width:100%;
  max-width:500px;
}

.article-image .caption{
  font-size:10px;
  margin-top:0px;
  color:#999999;
}

.home-banner-section {
  margin-bottom: 24px;
}

.home-banner-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f5;
}

.home-banner-track {
  position: relative;
  min-height: 180px;
}

.home-banner-slide {
  display: none;
}

.home-banner-slide.is-active {
  display: block;
}

.home-banner-link,
.home-banner-image {
  display: block;
  width: 100%;
}

.home-banner-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-banner-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;

  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.home-banner-button span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
  opacity:0.9;
}

.home-banner-button.prev {
  left: 12px;
}

.home-banner-button.next {
  right: 12px;
}

.home-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.home-banner-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: #fff;
  border:1px solid rgba(0, 0, 0, 0.6);
}

.home-banner-dot.is-active {
  background: rgba(0, 0, 0, 0.6);
  border:none;
}

.hero {
  padding: 20px 0 16px;
}

.tag-list a {
  display: inline-flex;
  padding: 8px 12px;
  background: #f2eadf;
  border-radius: 999px;
}

.hero-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid #000;
  border-radius: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.hero-link-card:hover {
  background: #f8f3eb;
}

.hero-link-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.category-tree-item + .category-tree-item,
.brand-group + .brand-group {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #000;
}

.child-link-list {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
}

.child-link-list li {
  display: inline-flex;
  align-items: center;
}

.child-link-list li:not(:last-child)::after {
  content: '｜';
  margin: 0 10px;
  color: #8a8176;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.selected-notes-box {
  padding: 10px 12px;
  border: 1px solid #e3d5c2;
  border-radius: 10px;
  background: #faf7f2;
}

.selected-notes-title {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.selected-notes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selected-note-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f2eadf;
  border: 1px solid #d9c9b4;
  font-size: 13px;
}

.selected-note-empty {
  color: #666;
  font-size: 13px;
}

.site-footer {
  background: #f2eadf;
  margin-top: 48px;
  padding: 40px 0;
  border-top: 1px solid #e3d5c2;
  font-size:12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

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

.footer-links li + li {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 20px 20px;
  margin-top:40px;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

.static-page h2 {
  margin-top: 28px;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list div {
  display: grid;
  gap: 4px;
}

.info-list dt {
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.product-list {
  display: grid;
}

.product-list-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #000;
}

.product-list-thumb-link {
  display: block;
}

.product-list-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background: #f2eadf;
}

.product-list-thumb-placeholder {
  display: grid;
  place-items: center;
  color: #8a8176;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.product-list-content {
  min-width: 0;
}

.product-list-content h2,
.product-list-content h3 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.4;
}

.product-card {
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.product-card-link {
  display: block;
  height: 100%;
}

.product-card-image,
.product-detail-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.product-card-image {
  aspect-ratio: 4 / 3;
}

.product-card-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  background: #f2eadf;
  color: #666;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.product-card-body {
  padding: 16px;
}

.product-card-more {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 700;
}

.product-meta {
  color: #666;
  font-size: 14px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 24px;
}

.product-detail-image {
  aspect-ratio: 4 / 4;
  border-radius: 10px;
}

.product-detail-main h1 {
  margin-top: 0;
}

.product-shop-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  border: none;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.shop-button-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.shop-button:hover {
  filter: brightness(0.92);
}

.shop-button.is-amazon {
  background: #e58817;
}

.shop-button.is-rakuten {
  background: #b72722;
}

.shop-button.is-yahoo {
  background: #5aaaf2;
}

.shop-button.is-official {
  background: #9b9b9b;
}

.product-info-list {
  margin-top: 20px;
}

@media (max-width: 720px) {
  .ranking-item {
    grid-template-columns: 1fr;
  }

  .home-banner-image {
    aspect-ratio: 16 / 9;
  }

  .home-banner-button {
    width: 34px;
    height: 34px;
  }

  .article-index-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .article-index-thumb-link {
    width: 88px;
  }

  .article-index-thumb {
    width: 88px;
  }

  .article-index-content h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .article-index-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .article-index-intro {
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
  }

  .ranking-content-img{
    text-align:center;
  }
  .ranking-content-img img{
    width:100%;
  }

  .product-list-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .product-list-thumb-link {
    width: 88px;
  }

  .product-list-thumb {
    width: 88px;
  }

  .product-list-content h2,
  .product-list-content h3 {
    font-size: 18px;
  }

  .product-shop-buttons {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 0;
  }

  .footer-links li {
    display: inline-flex;
    align-items: center;
  }

  .footer-links li + li {
    margin-top: 0;
  }

  .footer-links li:not(:last-child)::after {
    content: '｜';
    margin: 0 10px;
    color: #8a8176;
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .hero-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-link-card {
    min-height: 56px;
    padding: 12px 14px;
  }

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

  .article-sidebar-card {
    position: static;
  }
}
