/* 基本設定：サイト全体の読みやすさを整えます */
:root {
  --color-text: #2f261d;
  --color-muted: #7a6a5d;
  --color-border: #e2e2e2;
  --color-border-soft: #eeeeee;
  --color-bg: #ffffff;
  --color-soft: #f5f5f5;
  --color-accent: #f28c28;
  --color-accent-dark: #f06f00;
  --color-title-bg: #ffffff;
  --color-nav-bar: #f57400;
  --color-panel: #f6f6f6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* WordPress記事内の文字サイズ：ブロック編集画面の文字サイズ選択に対応します */
.has-small-font-size {
  font-size: 0.875rem;
}

.has-normal-font-size {
  font-size: 1rem;
}

.has-medium-font-size {
  font-size: 1.125rem;
}

.has-large-font-size {
  font-size: 1.375rem;
}

.has-huge-font-size {
  font-size: 1.75rem;
}

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

/* ヘッダーとナビゲーション */
.site-header {
  background: var(--color-title-bg);
  text-align: left;
}

.site-header .container {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  justify-content: flex-start;
  padding: 8px 0 7px;
}

.site-title {
  display: inline-block;
  line-height: 1;
}

.site-title img {
  width: min(190px, 46vw);
  height: auto;
  margin: 0;
}

.site-title:hover {
  text-decoration: none;
}

.site-tagline {
  margin: 0 0 7px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.2;
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-top: 0;
  border-bottom: 0;
  background: var(--color-nav-bar);
}

.nav-inner {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 0;
  scrollbar-width: thin;
}

.nav-inner li {
  display: flex;
  list-style: none;
}

.nav-inner a {
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  height: 38px;
  line-height: 1;
  min-width: 128px;
  padding: 0 24px;
  text-align: center;
  white-space: nowrap;
}

.nav-inner a::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.nav-inner a[href$="index.html"]::before {
  background-image: url("../img/home.png");
}

.nav-inner a[href$="new-release-articles.html"]::before {
  background-image: url("../img/book.png");
  width: 24px;
  height: 24px;
}

.nav-inner a[href$="sales.html"]::before {
  background-image: url("../img/sale.png");
}

.nav-inner a[href$="about.html"]::before {
  background-image: url("../img/info.png");
}

.nav-inner a:hover,
.nav-inner a:focus,
.nav-inner a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
}

.nav-inner a[aria-current="page"] {
  font-weight: 900;
}

/* ページ共通レイアウト */
.page-layout {
  padding: 24px 0 64px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading > a {
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 800;
}

.section-heading h1,
.section-heading h2,
.page-head h1 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.35;
}

.page-head {
  border-bottom: 1px solid var(--color-border-soft);
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.page-head p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.price-note {
  margin: 0 0 12px;
  color: var(--color-muted);
  font-size: 0.88rem;
}

/* セール一覧ボックス */
.sale-box {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-panel);
  margin-bottom: 18px;
  padding: 16px 24px 18px;
}

.sale-box .section-heading,
.book-showcase .section-heading {
  margin-bottom: 10px;
}

.sale-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.35em;
  font-size: 1.05rem;
  line-height: 1.45;
}

.sale-list a {
  font-weight: 700;
}

.sale-list-period {
  margin-left: 6px;
}

/* 横スクロールの表紙カード */
.book-showcase {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-panel);
  margin-bottom: 24px;
  padding: 16px 24px 8px;
}

.book-scroll {
  display: grid;
  grid-auto-columns: minmax(150px, 174px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.cover-only-scroll {
  grid-auto-columns: minmax(116px, 132px);
  gap: 12px;
}

.book-card,
.cover-only-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--color-border-soft);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  scroll-snap-align: start;
}

.cover-only-card {
  aspect-ratio: 3 / 4;
}

.cover-only-card:hover,
.cover-only-card:focus {
  border-color: var(--color-accent);
  text-decoration: none;
  transform: translateY(-2px);
}

.cover-only-card .cover-wrap {
  height: 100%;
}

.book-cover-link {
  display: block;
  color: inherit;
}

.book-cover-link:hover,
.book-cover-link:focus {
  text-decoration: none;
}

.book-cover-link:hover .cover-wrap,
.book-cover-link:focus .cover-wrap {
  opacity: 0.9;
}

.cover-wrap {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  background: #ffffff;
}

.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-cover {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  color: var(--color-muted);
  font-weight: 800;
  font-size: 1.12rem;
  text-align: center;
}

.book-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}

.book-title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.book-author,
.book-price {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.book-price strong {
  color: var(--color-text);
}

.amazon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 6px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 800;
  margin-top: auto;
  padding: 8px 12px;
}

.amazon-button:hover,
.amazon-button:focus {
  background: var(--color-accent-dark);
  color: #ffffff;
  text-decoration: none;
}

.amazon-link-button-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.amazon-link-button,
.article-content .amazon-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66.666%;
  min-height: 44px;
  border-radius: 6px;
  background: #e66a00 !important;
  color: #ffffff !important;
  font-weight: 900;
  line-height: 1.35;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none !important;
}

.amazon-link-button:hover,
.amazon-link-button:focus,
.article-content .amazon-link-button:hover,
.article-content .amazon-link-button:focus {
  background: #c95a00 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* 記事一覧とサイドバー */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.main-column {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-panel);
  padding: 22px;
}

.sales-main-column,
.about-main-column,
.sales-main-column .sale-box,
.about-main-column .about-panel {
  background: #ffffff;
}

.article-heading {
  align-items: flex-start;
  justify-content: space-between;
}

.article-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.article-tabs button,
.article-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  padding: 9px 14px;
}

.article-tabs button:hover,
.article-tabs button:focus,
.article-tabs button.is-active,
.article-tabs a:hover,
.article-tabs a:focus,
.article-tabs a.is-active {
  background: var(--color-accent-dark);
  color: #ffffff;
  text-decoration: none;
}

.article-list {
  display: grid;
  gap: 10px;
}

.article-card {
  display: flex;
  gap: 18px;
  max-width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px 26px;
}

.article-card[hidden],
.article-filter-empty[hidden] {
  display: none !important;
}

.article-card-body {
  min-width: 0;
  width: 100%;
}

.article-thumb {
  flex: 0 0 180px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-soft);
  aspect-ratio: 16 / 9;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-head {
  margin-bottom: 8px;
  max-width: 100%;
  min-width: 0;
}

.article-card h3 {
  min-width: 0;
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.35;
}

.article-card h3 a {
  color: var(--color-text);
  overflow-wrap: anywhere;
}

.article-card h3 a:hover,
.article-card h3 a:focus {
  color: var(--color-accent-dark);
}

.article-tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  padding: 5px 10px;
}

.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.article-tag-list .article-tag {
  margin-bottom: 0;
}

.article-tag:hover,
.article-tag:focus {
  background: var(--color-accent-dark);
  color: #ffffff;
  text-decoration: none;
}

.article-meta {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.article-meta a {
  color: var(--color-accent-dark);
  font-weight: 800;
}

.article-meta a:hover,
.article-meta a:focus {
  text-decoration: underline;
}

.article-cover-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  max-width: 100%;
  overflow: hidden;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.article-cover-row:hover,
.article-cover-row:focus {
  color: inherit;
  text-decoration: none;
}

.article-cover-item {
  display: block;
  flex: 0 0 106px;
  width: 106px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.article-cover-item.is-overflow-hidden {
  display: none;
}

.article-cover-item .cover-wrap {
  height: 100%;
}

.article-share {
  display: flex;
  justify-content: flex-start;
  margin: 3px 0 0;
}

.article-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  background: var(--color-text);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  padding: 0 11px;
}

.article-share-button:hover,
.article-share-button:focus {
  background: var(--color-text);
  color: #ffffff;
  text-decoration: none;
}

.article-content + .article-share {
  margin-top: 20px;
}

.article-card p {
  margin: 0;
}

.sidebar {
  display: grid;
  gap: 14px;
}

.sidebar-box {
  min-height: 168px;
  border: 1px solid #eadfd4;
  border-radius: 8px;
  background: var(--color-panel);
  padding: 20px;
}

.sidebar-box h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.sidebar-box p {
  margin: 0;
  color: var(--color-muted);
}

.recommended-box {
  background: #ffffff;
}

.recommended-box .compact-list a {
  font-weight: 800;
}

.recommended-box h2,
.sidebar-popular h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.recommended-box h2::before,
.sidebar-popular h2::before {
  content: "";
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.recommended-box h2::before {
  background-image: url("../img/osusume.png");
}

.sidebar-popular h2::before {
  background-image: url("../img/ninki.png");
}

.about-panel {
  background: transparent;
  padding: 0;
}

.about-panel h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.about-panel p {
  margin: 0 0 22px;
}

.about-panel ul {
  margin: 0 0 22px;
  padding-left: 1.3em;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.article-page {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 34px;
}

.article-page-head {
  border-bottom: 1px solid var(--color-border-soft);
  margin-bottom: 26px;
  padding-bottom: 20px;
}

.article-page-head h1 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.45;
}

.article-page-head p:last-child,
.article-page section p,
.article-content p {
  margin: 0;
}

.article-page section {
  margin-bottom: 26px;
}

.article-page h2,
.article-content h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.article-main-image {
  margin: 0 0 26px;
}

.article-main-image img {
  width: 100%;
  border-radius: 8px;
}

.article-content p + h2 {
  margin-top: 26px;
}

.article-notice {
  border: 1px solid var(--color-border-soft);
  border-radius: 8px;
  background: var(--color-soft);
  color: var(--color-muted);
  font-size: 0.74rem;
  line-height: 1.35;
  margin: 6px 0 0;
  padding: 4px 8px;
}

.article-notice p {
  margin: 0;
}

.amazon-product-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  margin: 20px 0;
  padding: 14px;
}

.amazon-product-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: 6px;
  background: #ffffff;
}

.amazon-product-image:hover,
.amazon-product-image:focus {
  border-color: var(--color-accent);
}

.amazon-product-image img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: contain;
}

.amazon-product-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.amazon-product-title {
  color: var(--color-text);
  font-size: 1.02rem;
  line-height: 1.45;
}

.amazon-product-meta {
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.amazon-product-price {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.amazon-product-benefit {
  display: inline-flex;
  width: fit-content;
  border-radius: 6px;
  background: #fff2dc;
  color: var(--color-accent-dark);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
  padding: 3px 8px;
}

.article-back-link {
  margin: 30px 0 0;
  font-weight: 800;
}

.sidebar-popular {
  min-height: 0;
  padding-bottom: 24px;
  background: #ffffff;
}

.sidebar-heading {
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.sidebar-heading h2 {
  margin: 0;
}

.popular-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sidebar-popular .cover-only-card {
  min-height: auto;
  border-color: var(--color-border);
}

.sale-calendar-box {
  min-height: 0;
  background: #ffffff;
}

.sale-calendar-box .sidebar-heading {
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
}

.sale-calendar-box h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sale-calendar-box h2::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../img/calendar.png") center / contain no-repeat;
}

.sale-calendar-box .sidebar-heading a {
  color: var(--color-accent-dark);
}

.calendar-controls {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  gap: 8px;
  margin-bottom: 12px;
}

.calendar-move {
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--color-accent-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0;
}

.calendar-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  color: var(--color-text);
  font-weight: 800;
}

.calendar-year,
.calendar-month {
  min-height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #ffffff;
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.calendar-year {
  width: 74px;
}

.calendar-month {
  width: 54px;
}

.calendar-year,
.calendar-month {
  padding: 0 6px;
  text-align: center;
  text-align-last: center;
}

.calendar-move:hover,
.calendar-move:focus {
  color: var(--color-accent);
}

.calendar-year:hover,
.calendar-year:focus,
.calendar-month:hover,
.calendar-month:focus {
  border-color: var(--color-accent);
}

.calendar-move:disabled {
  color: var(--color-border);
  cursor: default;
}

.calendar-move:disabled:hover,
.calendar-move:disabled:focus {
  color: var(--color-border);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid #dedede;
  border-left: 1px solid #dedede;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.calendar-weekday,
.calendar-day {
  display: grid;
  place-items: center;
  min-height: 32px;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  font-size: 0.78rem;
}

.calendar-weekday {
  color: var(--color-text);
  font-weight: 800;
}

.calendar-weekday:first-child,
.calendar-day:nth-child(7n + 1) {
  color: var(--color-accent-dark);
}

.calendar-day {
  background: #ffffff;
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 2px #000000;
}

.calendar-day.is-sale {
  background: #ffcf91;
  color: var(--color-text);
  font-weight: 900;
}

.calendar-day.is-empty {
  background: #fafafa;
  color: transparent;
}

.calendar-sale-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 800;
}

.calendar-legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.calendar-legend::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid #dedede;
  background: #ffcf91;
}

.sale-calendar-note {
  border-top: 1px solid var(--color-border-soft);
  margin: 8px 0 0;
  padding-top: 8px;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.calendar-empty {
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  margin: 0;
}

.calendar-sale-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.calendar-sale-item a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--color-accent-dark);
}

.calendar-sale-item input {
  appearance: none;
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border: 1px solid var(--color-text);
  background: #ffffff;
  margin: 3px 0 0;
}

.calendar-sale-item input:checked::before {
  content: "✓";
  color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.text-link {
  display: inline-block;
  font-weight: 800;
  margin-top: 10px;
}

.tab-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-links a {
  border: 1px solid var(--color-border-soft);
  border-radius: 6px;
  color: var(--color-text);
  font-size: 0.88rem;
  padding: 6px 10px;
}

.tab-links a:hover,
.tab-links a:focus {
  border-color: var(--color-accent);
  color: var(--color-accent);
  text-decoration: none;
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.1em;
}

/* 一覧ページ */
.sale-card-grid,
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.cover-grid {
  grid-template-columns: repeat(auto-fit, minmax(132px, 160px));
  justify-content: start;
}

.cover-grid .cover-only-card {
  aspect-ratio: 3 / 4;
}

.article-section-heading {
  margin-top: 28px;
}

.sale-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.sale-card h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.sale-card p {
  margin: 0 0 10px;
  color: var(--color-muted);
}

.sale-period {
  display: inline-block;
  border-radius: 6px;
  background: var(--color-soft);
  color: var(--color-text);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 4px 8px;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-muted);
  padding: 22px 0;
  text-align: center;
}

.site-footer p {
  margin: 4px 0;
}

/* スマホ表示：1カラムにして横幅を使いやすくします */
@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1040px);
  }

  .site-header .container {
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4px 12px;
    padding: 6px 0;
  }

  .site-title img {
    width: min(150px, 48vw);
  }

  .site-tagline {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .nav-inner {
    justify-content: flex-start;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    align-items: baseline;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .article-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-tabs {
    justify-content: flex-start;
  }

  .book-scroll {
    grid-auto-columns: minmax(148px, 64vw);
  }

  .cover-only-scroll {
    grid-auto-columns: minmax(104px, 38vw);
    gap: 10px;
  }

  .sale-box,
  .book-showcase,
  .main-column,
  .article-card,
  .sidebar-box {
    padding: 20px;
  }

  .article-card {
    flex-direction: column;
  }

  .article-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .article-thumb {
    flex-basis: auto;
  }

  .article-cover-item {
    flex-basis: min(106px, 28vw);
    width: min(106px, 28vw);
  }

  .amazon-link-button {
    width: 100%;
  }
}
