:root {
  --orange: #FF9900;
  --orange-dark: #805426;
  --orange-soft: #fff1e8;
  --ink: #222326;
  --muted: #6f7075;
  --line: #e7e2dc;
  --bg: #fbfaf8;
  --max: 1180px;
  --text-base: 16px;
  --text-card: 15px;
  --text-note: 14px;
}

/* --------------------------------
  Base
-------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: .02em;
}

/* 日本語の一文字落ちや、不自然に短い最終行を抑える */
p,
li,
dd,
td,
th,
figcaption,
.flow-support-description {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  p,
  li,
  dd,
  td,
  th,
  figcaption,
  .flow-support-description {
    word-break: auto-phrase;
  }
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 153, 0, .45);
  outline-offset: 3px;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.page-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}

.page-icon .icon {
  width: 70px;
  height: 70px;
  margin: 0;
}

.page-icon .icon-sell-item {
  width: 112px;
  height: 112px;
  margin: -21px 0;
}


/* WP自動整形対策用 */
.wp-grid-clean > p:empty,
.wp-grid-clean > br {
  display: none !important;
}

/* --------------------------------
  Header
-------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 226, 220, .75);
}

.header-inner {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  flex: 0 0 auto;
}

.header-logo .custom-logo-link {
  display: block;
}

.header-logo .custom-logo {
  display: block;
  width: auto;
  height: 50px;
  max-width: 280px;
  object-fit: contain;
}


.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
}

.logo-main {
  font-size: clamp(24px, 3vw, 34px);
}

.nav {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-menu li {
  margin: 0;
}

.nav a {
  position: relative;
  padding: 30px 0 25px;
  transition: color .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav a:hover,
.nav a.is-active,
.nav .current-menu-item > a,
.nav .current_page_item > a {
  color: var(--orange);
}

.nav a:hover::after,
.nav a.is-active::after,
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

/* --------------------------------
  Hero
-------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  border-bottom: 1px solid var(--line);
}

.hero--fallback {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 35%, rgba(255, 255, 255, .22) 66%, rgba(255, 255, 255, .08) 100%),
    url('https://images.unsplash.com/photo-1556906781-9a412961c28c?auto=format&fit=crop&w=1800&q=82') center right / cover;
}

.hero-slider {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-slider > *,
.hero-slider [id^="metaslider_container_"],
.hero-slider .metaslider {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.hero-slider img {
  width: 100% !important;
  height: 520px !important;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  align-items: center;
  background: transparent;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(0deg, rgba(251, 250, 248, 1), rgba(251, 250, 248, 0));
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 86px 0 96px;
}

.hero-inner a {
  pointer-events: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 7.2vw, 72px);
  line-height: 1.23;
  letter-spacing: .04em;
  font-weight: 900;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 34px;
  color: #424348;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 600;
}

/* ヒーロー：文字を読みやすくする白グラデーション */
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .98) 0%,
    rgba(255, 255, 255, .92) 32%,
    rgba(255, 255, 255, .40) 58%,
    rgba(255, 255, 255, 0) 78%
  );
}

/* --------------------------------
  Buttons
-------------------------------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(240, 90, 18, .18);
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(240, 90, 18, .22);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, .92);
  border-color: #bab5ae;
  color: var(--ink);
}

/* --------------------------------
  Common section
-------------------------------- */
.section {
  padding: 78px 0;
  
}

.section-title {
  text-align: center;
  margin: 0 0 42px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .05em;
}

.section-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 0;
  border-radius: 99px;
}

.section-lead {
  max-width: 720px;
  margin: -24px auto 42px;
  padding: 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.8;
  text-align: center;
}

/* --------------------------------
  Flow steps
-------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}

.step {
  position: relative;
  text-align: center;
  padding: 10px 26px 0;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 58px;
  right: -18px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 14px solid #d5d2cf;
}

.step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(240, 90, 18, .20);
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  color: var(--ink);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.8;
}

/* --------------------------------
  Flow support cards
-------------------------------- */
.flow-support {
  max-width: 980px;
  margin: 42px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.flow-support-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.flow-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.flow-support-item {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 35, 38, .06);
}

.flow-support-item strong {
  display: block;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.flow-support-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.flow-support-item .flow-support-label {
  display: block;
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.flow-support-item .flow-support-value {
  display: block;
  margin: 0;
  color: var(--orange);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.flow-support-item .flow-support-description {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--text-card);
  line-height: 1.8;
  text-wrap: balance;
}


/* --------------------------------
  News
  角丸カードではなく、上下線だけの告知枠
-------------------------------- */
.top-news-section {
  margin: 28px 0;
}

.top-news-box {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.top-news-title {
  margin: 0;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.top-news-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-news-item a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: var(--text-card);
}

.top-news-item time {
  color: var(--muted);
  font-weight: 700;
}

.top-news-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-news-item a:hover span {
  color: var(--orange);
}

.top-news-empty {
  color: var(--muted);
  font-size: var(--text-card);
}

/* --------------------------------
  Marquee
-------------------------------- */
.brand-marquee {
  overflow: hidden;
  padding: 14px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 55s linear infinite;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-marquee-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--ink);
}

.brand-marquee-item::after {
  content: "│";
  display: inline-block;
  margin: 0 28px;
  color: var(--orange);
  font-weight: 400;
  opacity: .75;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

/* =========================
  Contact Form 7 共通フォーム
========================= */

.cf7-form {
  display: grid;
  gap: 18px;
}

.cf7-row {
  display: grid;
  gap: 7px;
}

.cf7-row label,
.cf7-label {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.cf7-row input,
.cf7-row select,
.cf7-row textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #ded9d3;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-base);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.cf7-row textarea {
  min-height: 140px;
  resize: vertical;
}

.cf7-row input:focus,
.cf7-row select:focus,
.cf7-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 90, 18, .10);
}

.cf7-row input::placeholder,
.cf7-row textarea::placeholder {
  color: #aaa39b;
}

/* 必須マーク */
.asterisk-mark,
.required-mark {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

/* 補足テキスト */
.cf7-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--text-note);
  line-height: 1.7;
}

/* 送信ボタン */
.cf7-submit {
  margin-top: 8px;
}

.cf7-submit input[type="submit"],
.wpcf7-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-size: var(--text-base);
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, opacity .25s ease;
}

.cf7-submit input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(240, 90, 18, .18);
}

.wpcf7-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* CF7のメッセージ */
.wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 7px;
  font-size: var(--text-card);
  line-height: 1.7;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #d93025;
  font-size: var(--text-note);
  font-weight: 800;
}

.contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;

}

.form-page-section .contact-form-wrap {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.cf7-text-link {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.cf7-text-link:hover {
  color: var(--orange-dark);
}

.cf7-file-control {
  display: grid;
  gap: 8px;
}

.cf7-file-clear {
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid #bbb;
  border-radius: 4px;
  background: #fff;
  color: #555;
  font-size: 13px;
  cursor: pointer;
}

.cf7-file-clear:hover {
  border-color: #ff9e20;
  color: #d87400;
}

.cf7-file-clear[hidden] {
  display: none;
}

/* =========================
  発送方法選択
========================= */

.shipping-method-box {
  margin: 0 0 24px;
  padding: 22px;
  border: 2px solid var(--orange);
  border-radius: 18px;
  background: #fff;
}

.shipping-method-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

/* CF7 radio 全体 */
.shipping-method-radio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* CF7の余白リセット */
.shipping-method-radio .wpcf7-list-item {
  display: block;
  margin: 0;
}

/* ラベルをカード化 */
.shipping-method-radio .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 90, 18, .35);
  border-radius: 14px;
  background: #fff7f2;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

/* ラジオボタン本体は隠す */
.shipping-method-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 選択中 */
.shipping-method-radio .wpcf7-list-item label:has(input[type="radio"]:checked) {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(240, 90, 18, .18);
}

/* hover */
.shipping-method-radio .wpcf7-list-item label:hover {
  transform: translateY(-1px);
  border-color: var(--orange);
}

/* =========================
  自分の箱で送る案内
========================= */


.self-ship-info {
  margin-top: 18px;
  padding: 24px;
  border-radius: 16px;
  background: #fff7f2;
  border: 1px solid rgba(240, 90, 18, .22);
}

.self-ship-info h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.self-ship-info p {
  margin: 10px 0 0;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.8;
}

.self-ship-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
}

.self-ship-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0;
  line-height: 1;
}

.ship-address-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.9;
}

.ship-address-box strong {
  color: var(--orange);
  font-weight: 900;
}


/* =========================
  宅配キット数量チェック
========================= */

.kit-limit-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--text-note);
  line-height: 1.7;
}

.kit-total-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--text-note);
}

.kit-total-error {
  margin: 8px 0 0;
  color: #d93025;
  font-size: var(--text-note);
  font-weight: 900;
}

/* JS表示切り替え用 */
.self-ship-info[hidden],
.kit-form-fields[hidden] {
  display: none !important;
}


/* --------------------------------
  Page hero
  ACF画像を独立レイヤーで表示
-------------------------------- */
.page-hero {
  position: relative;
  min-height: 300px;
  display: grid;
  align-items: center;
  overflow: hidden;

  /* 画像を縮めた時に見える土台の色 */
  background: var(--bg);

  border-bottom: 1px solid var(--line);
}

/* ACFで選択した画像だけを載せるレイヤー */
.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: var(--page-hero-image);
  background-repeat: no-repeat;

  /*
    PC：ここで画像の見え方を調整
    100%より小さくすると、画像全体が少し小さく表示される
  */
 background-size: 70% auto;
  background-position: right center;
}

.page-hero--no-image .page-hero-image {
  display: none;
}

/* 左側を読みやすくする白グラデーション */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

background: linear-gradient(
  90deg,
  rgba(255, 255, 255, 1) 0%,
  rgba(255, 255, 255, .96) 45%,
  rgba(255, 255, 255, .35) 100%
);
	
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 64px 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.35;
  font-weight: 900;
}

.page-hero-text {
  max-width: 560px;
  margin: 14px 0 0;
  color: #424348;
  font-size: 15px;
  font-weight: 600;
}


/* --------------------------------
  Footer
-------------------------------- */

.footer {
  background: var(--orange-dark);
  color: #fff;
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .76);
  font-size: var(--text-note);
}

.footer .logo-main {
  color: #fff;
}

.footer-nav {
  display: block;
}

.footer-nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-menu li {
  margin: 0;
}

.footer-nav a:hover {
  color: #fff;
}

.site-main {
  min-height: 50vh;
  padding: 70px 0;
}

/* --------------------------------
  Category cards
-------------------------------- */

.category-section {
  padding: 80px 0;
}


.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}


.category-card {
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.category-card:hover {
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(34,35,38,.12);
}


.category-image {
 height: 180px;
 overflow: hidden;
 padding: 16px 20px;
}


.category-image img {
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .4s ease;
}


.category-card:hover img {
  transform:scale(1.05);
}


.category-body {
  padding:24px;
}


.category-body h3 {
  margin:0 0 10px;
  font-size:20px;
  font-weight:900;
}


.category-body p {
  margin:0;
  color:var(--muted);
  font-size:var(--text-base);
  line-height:1.7;
}




/* --------------------------------
  Animation
-------------------------------- */
.fade-up {
  opacity: 1;
  transform: none;
}

.reveal-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps .fade-up:nth-child(2) {
  transition-delay: .08s;
}

.steps .fade-up:nth-child(3) {
  transition-delay: .16s;
}


/* 会社概要・店舗案内 */

.company-section,
.shop-section {
  max-width: 960px;
  margin: 0 auto;

}

.company-list {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  margin: 32px auto 0;
  border-top: 1px solid var(--line);
}

.company-list dt,
.company-list dd {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.company-list dd {
  margin: 0;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.8;
}

.company-list a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Googleマップ */
.map-wrap {
  width: min(100%, 900px);
  margin: 36px auto 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* =========================
  LINE査定ページ
========================= */

.line-assessment-section {
  background: #fff;
}

.line-assessment-hero {
  max-width: 980px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: stretch;
}

.line-assessment-text {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #fff 0%, var(--orange-soft) 160%);
  box-shadow: 0 14px 32px rgba(34, 35, 38, .07);
}

.line-assessment-text h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
  font-weight: 900;
}

.line-assessment-text p {
  margin: 0 0 24px;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.9;
}

.line-button-wrap {
  display: flex;
  justify-content: center;
}

.line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  margin-inline: auto;
  padding: 0 28px;
  border-radius: 7px;
  background: #06c755;
  color: #fff;
  font-size: var(--text-base);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(6, 199, 85, .18);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.line-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(6, 199, 85, .24);
  opacity: .92;
}

.line-qr-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 32px rgba(34, 35, 38, .06);
}

.line-qr-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.line-qr-box img {
  width: min(100%, 180px);
  margin: 0 auto;
}

/* LINE査定・店舗査定 共通3ステップ */
.assessment-flow-grid {
  max-width: 980px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.assessment-flow-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(34, 35, 38, .05);
}

.assessment-flow-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.assessment-flow-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.assessment-flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-card);
  line-height: 1.8;
}

.line-photo-guide,
.line-note-box {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 28px;
  border-radius: 18px;
}

.line-photo-guide {
  border: 1px solid rgba(240, 90, 18, .22);
  background: #fff7f2;
}

.line-note-box {
  border: 1px solid var(--line);
  background: #fff;
}

.line-photo-guide h3,
.line-note-box h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.line-photo-guide ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.line-photo-guide li {
  position: relative;
  padding-left: 26px;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.8;
  font-weight: 700;
}

.line-photo-guide li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.line-note-box p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-card);
  line-height: 1.9;
}

.line-note-box .line-note-link {
  margin-top: 12px;
}

/* =========================
  FAQ
========================= */

.faq-section {
  background: #fff;
}

.faq-section .section-lead,
.cannot-buy-section .section-lead {
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: 34px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 18px 54px 18px 22px;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 auto;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 20px 60px;
}

.faq-answer p {
  margin: 0;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.9;
}

.faq-answer a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
  買取できない商品
========================= */

.cannot-buy-section {
  background: #fff7f2;
}

.cannot-buy-box {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid rgba(240, 90, 18, .22);
  border-radius: 18px;
  background: #fff;
}

.cannot-buy-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cannot-buy-list li {
  position: relative;
  padding-left: 28px;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.8;
  font-weight: 700;
}

.cannot-buy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.cannot-buy-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-note);
  line-height: 1.8;
}




/* =========================
  店舗査定
========================= */

.store-cta-box {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(240, 90, 18, .22);
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 35, 38, .06);
  text-align: center;
}

.store-cta-box h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.store-cta-box p {
  margin: 0;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.9;
}

.store-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}


/* =========================
  店頭買取
========================= */

.store-buy-section {
  margin-top: 72px;
}

.store-buy-box,
.store-info-box {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid rgba(240, 90, 18, .22);
  border-radius: 18px;
  background: #fff;
}

.store-buy-list,
.store-info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-buy-list li,
.store-info-list li {
  position: relative;
  padding-left: 28px;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.8;
  font-weight: 700;
}

.store-buy-list li::before,
.store-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.store-buy-note,
.store-info-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-note);
  line-height: 1.8;
}

/* =========================
  買取・査定方法
========================= */

.assessment-method-section {
  background: #fff;
}

.assessment-method-grid {
  width: 100%;
  max-width: 1040px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.assessment-method-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(34, 35, 38, .07);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.assessment-method-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 90, 18, .35);
  box-shadow: 0 20px 44px rgba(34, 35, 38, .11);
}

/* 宅配買取を少し目立たせる */
.assessment-method-card--main {
  border: 2px solid var(--orange);
}

.assessment-method-head {
  padding: 28px 28px 22px;
  background:
    linear-gradient(180deg, var(--orange-soft) 0%, #fff 100%);
}

.assessment-method-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.assessment-method-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 29px);
  line-height: 1.4;
  font-weight: 900;
}

.assessment-method-catch {
  margin: 7px 0 0;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.assessment-method-body {
  flex: 1;
  padding: 4px 28px 26px;
}

.assessment-method-body > p {
  margin: 0 0 18px;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.9;
}

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

.assessment-method-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: var(--text-card);
  font-weight: 700;
  line-height: 1.7;
}

.assessment-method-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
}

.assessment-method-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 62px;
  margin: 0 28px 28px;
  padding: 14px 18px;
  border: 1px solid rgba(240, 90, 18, .30);
  border-radius: 10px;
  background: #fff7f2;
  color: var(--orange);
  font-size: var(--text-card);
  font-weight: 900;
  text-decoration: none;
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.assessment-method-button span {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  line-height: 1;
}

.assessment-method-button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.assessment-method-help {
  max-width: 900px;
  margin: 38px auto 0;
  padding: 28px;
  border: 1px solid rgba(240, 90, 18, .22);
  border-radius: 18px;
  background: #fff7f2;
  text-align: center;
}

.assessment-method-help h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.assessment-method-help p {
  margin: 0;
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.9;
}

/* WordPress自動整形対策 */
.assessment-method-grid > p,
.assessment-method-grid > br {
  display: none !important;
}

/* =========================
  TOP 選べる4つの買取・査定方法
========================= */

.buying-method-top-grid {
  max-width: 1040px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* WordPress自動整形対策 */
.buying-method-top-grid > p:empty,
.buying-method-top-grid > br {
  display: none !important;
}

.buying-method-top-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 35, 38, .06);
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.buying-method-top-card h3,
.buying-method-top-card p,
.buying-method-top-card .buying-method-top-link,
.buying-method-top-card .buying-method-top-label,
.buying-method-top-card .buying-method-top-icon {
  transition:
    color .25s ease,
    background .25s ease;
}

.buying-method-top-card:hover,
.buying-method-top-card:focus-visible {
  transform: translateY(-4px);
  background: #FF8F00;
  border-color: #FF8F00;
  box-shadow: 0 18px 36px rgba(34, 35, 38, .12);
}

/* hover・キーボードフォーカス時：タイトル・本文を白に */
.buying-method-top-card:hover h3,
.buying-method-top-card:hover p,
.buying-method-top-card:hover .buying-method-top-link,
.buying-method-top-card:focus-visible h3,
.buying-method-top-card:focus-visible p,
.buying-method-top-card:focus-visible .buying-method-top-link {
  color: #fff;
}

/* 上の小さいラベルは白背景＋オレンジ文字に反転 */
.buying-method-top-card:hover .buying-method-top-label,
.buying-method-top-card:focus-visible .buying-method-top-label {
  background: #fff;
  color: #FF8F00;
}

.buying-method-top-label {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.buying-method-top-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 2px 0 18px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
}

.buying-method-top-icon .icon {
  width: 34px;
  height: 34px;
  margin: 0;
}

.buying-method-top-card:hover .buying-method-top-icon,
.buying-method-top-card:focus-visible .buying-method-top-icon {
  background: #fff;
  color: #FF8F00;
}

.buying-method-top-card h3 {
  margin: 0 0 9px;
  font-size: 21px;
  font-weight: 900;
}

.buying-method-top-card p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: var(--text-card);
  line-height: 1.8;
}

.buying-method-top-link {
  color: var(--orange);
  font-size: var(--text-note);
  font-weight: 900;
}

/* 査定ルールへの横長バナー */
.assessment-rules-banner {
  max-width: 1040px;
  min-height: 76px;
  margin: 18px auto 0;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 143, 0, .38);
  border-radius: 14px;
  background: linear-gradient(100deg, #fff7ec 0%, #fff 72%);
  box-shadow: 0 10px 24px rgba(34, 35, 38, .05);
  color: var(--ink);
  text-decoration: none;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.assessment-rules-banner-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.assessment-rules-banner-copy small {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
}

.assessment-rules-banner-copy strong {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.assessment-rules-banner-more {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.assessment-rules-banner:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 143, 0, .2);
  color: #fff;
}

.assessment-rules-banner:hover small {
  background: #fff;
  color: var(--orange);
}

.assessment-rules-banner:hover .assessment-rules-banner-more {
  color: #fff;
}

/* =========================
  投稿詳細 Instagram風
========================= */

.single-post-page {
  padding: 70px 0;
  background: var(--bg);
}

.insta-post-card {
  width: min(100%, 680px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(34, 35, 38, .08);
}

.insta-post-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.insta-post-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.insta-post-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.insta-post-meta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.insta-post-meta time {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.insta-post-image {
  background: #f5f5f5;
}

.insta-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.insta-post-body {
  padding: 24px 26px 28px;
}

.insta-post-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.45;
  font-weight: 900;
}

.insta-post-content {
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.9;
}

.insta-post-content p:first-child {
  margin-top: 0;
}

.insta-post-content p:last-child {
  margin-bottom: 0;
}

.insta-post-content img {
  width: calc(100% + 52px);
  max-width: none;
  height: auto;
  margin: 22px -26px;
}

.insta-post-content figure {
  margin: 22px -26px;
}

.insta-post-content figure img {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.insta-post-content .alignnone,
.insta-post-content .aligncenter,
.insta-post-content .alignleft,
.insta-post-content .alignright {
  float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.insta-post-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-post-back {
  width: min(100%, 680px);
  margin: 22px auto 0;
  text-align: center;
}

.single-post-back a {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.page-back {
  margin: 48px auto 0;
  text-align: center;
}

.page-back-section {
  padding: 0 0 78px;
}

.page-back-section .page-back {
  margin-top: 0;
}

.page-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border: 1px solid var(--orange);
  border-radius: 7px;
  color: var(--orange);
  font-size: var(--text-card);
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.page-back a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}


/* =========================
  ブログ月別アーカイブ
  Instagram風
========================= */

.archive-blog-page {
  padding: 64px 0 80px;
  background: var(--bg);
}

.archive-blog-header {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.archive-blog-header .eyebrow {
  justify-content: center;
}

.archive-blog-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.4;
  font-weight: 900;
}

.archive-blog-lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--text-base);
}

.archive-insta-feed {
  display: grid;
  gap: 34px;
}

.archive-insta-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(34, 35, 38, .08);
}

.archive-insta-card-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.archive-insta-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.archive-insta-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.archive-insta-meta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.archive-insta-meta time {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.archive-insta-main-image {
  background: #f5f5f5;
}

.archive-insta-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.archive-insta-body {
  padding: 24px 26px 28px;
}

.archive-insta-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.5;
  font-weight: 900;
}

.archive-insta-content {
  color: #4a4b50;
  font-size: var(--text-base);
  line-height: 1.9;
}

.archive-insta-content p:first-child {
  margin-top: 0;
}

.archive-insta-content p:last-child {
  margin-bottom: 0;
}

/* 過去ブログ本文に直接入っている画像も
   Instagramっぽくカード横いっぱいに */
.archive-insta-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 22px 0;
  object-fit: contain;
}

.archive-insta-content figure {
  margin: 22px -26px;
}

.archive-insta-content figure img {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.archive-insta-content .alignnone,
.archive-insta-content .aligncenter,
.archive-insta-content .alignleft,
.archive-insta-content .alignright {
  float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.archive-insta-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ページ送り */
.archive-pagination {
  width: min(100%, 680px);
  margin: 42px auto 0;
}

.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: var(--text-note);
  font-weight: 800;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.archive-blog-empty {
  text-align: center;
  color: var(--muted);
}


/* =========================
  ブログ アーカイブレイアウト
========================= */

.archive-blog-layout {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px) 260px;
  gap: 36px;
  align-items: start;
}

.archive-blog-main {
  min-width: 0;
}

/* =========================
  月別アーカイブ
========================= */

.archive-blog-sidebar {
  position: sticky;
  top: 110px;
}

.archive-sidebar-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 35, 38, .06);
}

.archive-sidebar-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

/* =========================
  ブログアーカイブ
  年 → 月 折りたたみ
========================= */

.archive-year-list {
  display: grid;
  gap: 8px;
}

.archive-year-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.archive-year-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  transition:
    color .2s ease,
    background .2s ease;
}

/* 標準の三角を消す */
.archive-year-title::-webkit-details-marker {
  display: none;
}

.archive-year-title::marker {
  display: none;
  content: "";
}

.archive-year-title:hover {
  background: var(--orange-soft);
  color: var(--orange);
}

.archive-year-arrow {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

/* 開いたら＋→− */
.archive-year-item[open] .archive-year-arrow {
  font-size: 0;
}

.archive-year-item[open] .archive-year-arrow::after {
  content: "−";
  font-size: 18px;
}


/* 月 */
.archive-month-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 12px 10px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.archive-month-list li {
  border-bottom: 1px solid var(--line);
}

.archive-month-list li:last-child {
  border-bottom: 0;
}

.archive-month-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 5px;
  color: #4a4b50;
  font-size: var(--text-note);
  font-weight: 700;
  transition:
    color .2s ease,
    padding-left .2s ease;
}

.archive-month-list a:hover {
  padding-left: 9px;
  color: var(--orange);
}

.archive-month-list a[aria-current="page"] {
  color: var(--orange);
}

/* 記事数 */
.archive-month-list small {
  min-width: 26px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}


/* =========================
  ブログアーカイブ TOP
========================= */

.blog-archive-index {
  padding: 70px 0 90px;
  background: var(--bg);
}

.blog-archive-index-header {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.blog-archive-index-header .eyebrow {
  justify-content: center;
}

.blog-archive-index-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.4;
  font-weight: 900;
}

.blog-archive-index-header p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--text-base);
}

.blog-archive-index-box {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(34, 35, 38, .07);
}

.blog-archive-empty {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

/* =========================
  査定・仮査定の注意事項
========================= */

.assessment-guide-section {
  background: #fff;
}

.assessment-guide-section > .container > .eyebrow {
  display: flex;
  justify-content: center;
}

.assessment-guide-hero,
.assessment-guide-nav,
.assessment-guide-content,
.assessment-guide-closing {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.assessment-guide-hero {
  overflow: hidden;
  margin-top: 44px;
  border: 1px solid rgba(255, 153, 0, .28);
  border-radius: 22px;
  background: var(--orange-dark);
  box-shadow: 0 18px 42px rgba(34, 35, 38, .08);
}

/* WordPressの自動整形で末尾に空要素が入っても、下に白い帯を作らない */
.assessment-guide-hero > p:empty,
.assessment-guide-hero > br {
  display: none !important;
}

.assessment-guide-intro {
  padding: 40px 42px;
  background: linear-gradient(135deg, #fff 0%, var(--orange-soft) 130%);
}

.assessment-guide-label,
.assessment-guide-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.assessment-guide-intro h3 {
  margin: 14px 0 16px;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.45;
  font-weight: 900;
}

.assessment-guide-intro p {
  margin: 0;
  color: #4a4b50;
  line-height: 1.9;
}

.assessment-guide-intro p + p {
  margin-top: 10px;
}

.assessment-guide-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 0 0 21px 21px;
  background: var(--orange-dark);
  color: #fff;
}

.assessment-guide-fact {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 124px;
  padding: 22px;
  text-align: left;
}

.assessment-guide-fact + .assessment-guide-fact {
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.assessment-guide-fact strong,
.assessment-guide-large-number {
  color: #fff;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.assessment-guide-fact strong small,
.assessment-guide-large-number small {
  margin-left: 3px;
  font-size: 14px;
  letter-spacing: 0;
}

.assessment-guide-fact span {
  font-size: var(--text-note);
  font-weight: 800;
  line-height: 1.6;
}

.assessment-guide-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.assessment-guide-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #4a4b50;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.assessment-guide-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.assessment-guide-nav a span {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .05em;
}

.assessment-guide-content {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.assessment-guide-block {
  padding: 36px;
  scroll-margin-top: 110px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(34, 35, 38, .055);
}

.assessment-guide-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.assessment-guide-heading > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255, 153, 0, .2);
}

.assessment-guide-heading p {
  margin: 0 0 3px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.assessment-guide-heading h3 {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.45;
  font-weight: 900;
}

.assessment-guide-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 12px 30px;
  padding: 28px;
  border: 2px solid rgba(255, 153, 0, .46);
  border-radius: 16px;
  background: #fffaf5;
}

.assessment-guide-feature-title {
  grid-column: 1;
}

.assessment-guide-feature-title > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.assessment-guide-feature-title h4,
.assessment-guide-card h4,
.assessment-guide-warning h4,
.assessment-guide-example h4,
.assessment-guide-danger h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 900;
}

.assessment-guide-feature-title h4 {
  margin-top: 4px;
  font-size: clamp(19px, 2.4vw, 23px);
}

.assessment-guide-feature > p {
  grid-column: 1;
  margin: 0;
  color: #4a4b50;
  line-height: 1.85;
}

.assessment-guide-required {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 20px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--line);
}

.assessment-guide-required > p {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.assessment-guide-required ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assessment-guide-required li,
.assessment-guide-example li,
.assessment-guide-danger li,
.assessment-guide-campaign li,
.assessment-guide-warning li {
  position: relative;
  padding-left: 20px;
  color: #4a4b50;
  font-size: var(--text-card);
  line-height: 1.75;
}

.assessment-guide-required li::before,
.assessment-guide-example li::before,
.assessment-guide-campaign li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.assessment-guide-card-grid,
.assessment-guide-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.assessment-guide-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.assessment-guide-card-tag {
  margin-bottom: 12px;
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.assessment-guide-card h4 {
  margin-bottom: 9px;
}

.assessment-guide-card p {
  margin: 0;
  color: #4a4b50;
  font-size: var(--text-card);
  line-height: 1.85;
}

.assessment-guide-card .assessment-guide-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-note);
}

.assessment-guide-card--accent {
  border-color: var(--orange);
  background: var(--orange-dark);
  color: #fff;
}

.assessment-guide-card--accent .assessment-guide-large-number {
  display: block;
  margin-bottom: 14px;
}

.assessment-guide-card--accent h4,
.assessment-guide-card--accent p {
  color: #fff;
}

.assessment-guide-warning {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(255, 153, 0, .42);
  border-radius: 16px;
  background: #fff8e7;
}

.assessment-guide-warning-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.assessment-guide-warning h4 {
  margin-bottom: 12px;
}

.assessment-guide-warning ul,
.assessment-guide-example ul,
.assessment-guide-danger ul,
.assessment-guide-campaign ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assessment-guide-warning li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange-dark);
  font-weight: 900;
}

.assessment-guide-block-lead {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
  background: var(--orange-soft);
  color: #4a4b50;
  font-weight: 700;
}

.assessment-guide-example {
  padding: 24px;
  border-radius: 15px;
  background: #fbfaf8;
  border: 1px solid var(--line);
}

.assessment-guide-example-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.assessment-guide-example h4 {
  margin-bottom: 12px;
}

.assessment-guide-info {
  margin: 18px 0 0;
  padding: 17px 20px;
  border-radius: 12px;
  background: #f5f3f0;
  color: var(--muted);
  font-size: var(--text-note);
  line-height: 1.8;
}

.assessment-guide-danger {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(190, 50, 44, .35);
  border-left: 5px solid #be322c;
  border-radius: 14px;
  background: #fff7f6;
}

.assessment-guide-danger h4 {
  margin-bottom: 12px;
  color: #9d2723;
}

.assessment-guide-danger li::before {
  content: "!";
  position: absolute;
  left: 2px;
  color: #be322c;
  font-weight: 900;
}

.assessment-guide-campaign {
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fffaf5 0%, #fff 100%);
  border: 1px solid rgba(255, 153, 0, .32);
}

.assessment-guide-closing {
  margin-top: 30px;
  padding: 32px;
  border-radius: 20px;
  background: var(--orange-dark);
  color: #fff;
  text-align: center;
}

.assessment-guide-closing > span {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.assessment-guide-closing > p {
  max-width: 720px;
  margin: 12px auto 0;
  line-height: 1.85;
}

.assessment-guide-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.assessment-guide-actions .btn {
  min-width: 210px;
}

/* --------------------------------
  Responsive
  メディアクエリはここにまとめる
-------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand-marquee-track {
    animation: none;
  }

  .buying-method-top-card,
  .buying-method-top-icon,
  .assessment-guide-nav a,
  .category-card,
  .category-card img,
  .btn {
    transition: none;
  }
}

@media (max-width: 980px) {
  .buying-method-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .header-inner {
    min-height: 74px;
  }

  .nav-ready .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease, background .2s ease;
  }

  .nav-toggle-icon {
    position: relative;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-icon::before {
    top: -6px;
  }

  .nav-toggle-icon::after {
    top: 6px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    padding: 8px 20px 18px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 30px rgba(34, 35, 38, .12);
  }

  .nav-ready .nav {
    display: none;
  }

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

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    white-space: normal;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav a {
    display: block;
    padding: 13px 0;
  }

  .nav a::after {
    bottom: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero--fallback {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .90) 46%, rgba(255, 255, 255, .42) 100%),
      url('https://images.unsplash.com/photo-1556906781-9a412961c28c?auto=format&fit=crop&w=1400&q=82') center / cover;
  }

  .hero-content {
    min-height: 470px;
    background: transparent;
  }

  .hero-slider img {
    height: 470px !important;
  }

  .hero-inner {
    padding: 70px 0 84px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step:not(:last-child)::after {
    display: none;
  }


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

  .archive-blog-sidebar {
    position: static;
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .archive-sidebar-box {
    padding: 20px;
  }

  .archive-month-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  /* スマホは上から下へグラデーション */
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(255, 255, 255, .82) 48%,
      rgba(255, 255, 255, .35) 100%
    );
  }
}


@media (max-width: 768px) {
  .assessment-guide-intro {
    padding: 30px;
  }

  .assessment-guide-fact {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .assessment-guide-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assessment-guide-block {
    padding: 28px;
  }

  .assessment-guide-feature {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .assessment-guide-feature-title,
  .assessment-guide-feature > p,
  .assessment-guide-required {
    grid-column: 1;
  }

  .assessment-guide-required {
    grid-row: auto;
    margin-top: 6px;
  }

  .assessment-guide-card-grid,
  .assessment-guide-example-grid {
    grid-template-columns: 1fr;
  }

  .assessment-guide-closing {
    padding: 28px;
  }

  .line-assessment-hero {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .line-assessment-text {
    padding: 24px;
  }

  .line-button {
    width: 100%;
  }

  .assessment-flow-grid {
    grid-template-columns: 1fr;
  }

  .line-photo-guide,
  .line-note-box {
    padding: 22px;
  }

  .flow-support {
    margin-top: 34px;
    padding-top: 24px;
  }

  .flow-support-grid {
    grid-template-columns: 1fr;
  }

  .brand-marquee-track {
    animation-duration: 34s;
  }

  .brand-marquee-item::after {
    margin: 0 22px;
  }

  .top-news-box {
    width: min(calc(100% - 28px), 980px);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .top-news-item a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-hero {
    min-height: 240px;
  }

  .page-hero-image {
    background-size: cover;
    background-position: center;
  }

  .page-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(255, 255, 255, .74) 55%,
      rgba(255, 255, 255, .36) 100%
    );
  }

  .page-hero-inner {
    padding: 50px 0;
  }

  .company-section + .shop-section {
    margin-top: 56px;
  }

  .company-list {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .company-list dt {
    padding: 17px 0 4px;
    color: var(--orange);
    font-size: 15px;
    border-bottom: 0;
  }

  .company-list dd {
    padding: 0 0 17px;
    font-size: var(--text-base);
  }

  .map-wrap {
    width: 100%;
  }

  .map-wrap iframe {
    height: 280px;
  }
  .cf7-form {
    gap: 16px;
  }

  .cf7-row input,
  .cf7-row select,
  .cf7-row textarea {
    font-size: 16px;
  }

  .cf7-submit input[type="submit"],
  .wpcf7-submit {
    min-height: 56px;
  }

  .shipping-method-box {
    padding: 18px;
  }

  .shipping-method-radio {
    grid-template-columns: 1fr;
  }

  .shipping-method-radio .wpcf7-list-item label {
    min-height: 54px;
  }

  .self-ship-info {
    padding: 20px;
  }

  .self-ship-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .self-ship-actions .btn {
    width: 100%;
  }

  .faq-list {
    margin-top: 26px;
  }

  .faq-item summary {
    padding: 16px 48px 16px 16px;
    font-size: var(--text-base);
    align-items: flex-start;
  }

  .faq-item summary::before {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 12px;
  }

  .faq-answer {
    padding: 0 16px 18px 50px;
  }

  .cannot-buy-box {
    margin-top: 26px;
    padding: 22px;
    border-radius: 16px;
  }

  .cannot-buy-list li {
    padding-left: 24px;
    font-size: var(--text-base);
  }

  .store-cta-box {
    padding: 22px;
  }

  .store-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-cta-actions .btn {
    width: 100%;
  }

  .store-buy-section {
    margin-top: 56px;
  }

  .store-buy-box,
  .store-info-box {
    padding: 22px;
  }

  .store-buy-list li,
  .store-info-list li {
    padding-left: 24px;
  }
  .assessment-method-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .assessment-method-head {
    padding: 24px 22px 19px;
  }

  .assessment-method-body {
    padding: 4px 22px 22px;
  }

  .assessment-method-button {
    margin: 0 22px 22px;
  }

  .assessment-method-help {
    padding: 22px;
    text-align: left;
  }

  .form-page-section .contact-form-wrap {
    padding: 24px;
  }
	
	  .header-logo .custom-logo {
    height: 40px;
    max-width: 210px;
  }
}


@media (max-width: 560px) {
 .buying-method-top-grid {
  grid-template-columns: 1fr;
}

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

.category-image {
  height: 110px;
  padding: 12px 16px;
}

.assessment-guide-intro {
  padding: 24px 20px;
}

.assessment-guide-facts,
.assessment-guide-nav {
  grid-template-columns: 1fr;
}

.assessment-guide-fact {
  min-height: 0;
  flex-direction: row;
  justify-content: flex-start;
  padding: 18px 22px;
  text-align: left;
}

.assessment-guide-fact + .assessment-guide-fact {
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-left: 0;
}

.assessment-guide-fact strong {
  min-width: 112px;
  font-size: 38px;
}

.assessment-guide-block {
  padding: 22px 18px;
  border-radius: 16px;
}

.assessment-guide-heading {
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 22px;
  padding-bottom: 18px;
}

.assessment-guide-heading > span {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  font-size: 16px;
}

.assessment-guide-feature,
.assessment-guide-card,
.assessment-guide-example,
.assessment-guide-campaign,
.assessment-guide-danger {
  padding: 20px;
}

.assessment-guide-required {
  padding: 18px;
}

.assessment-guide-required ul {
  grid-template-columns: 1fr;
}

.assessment-guide-warning {
  grid-template-columns: 1fr;
  padding: 20px;
}

.assessment-guide-warning-mark {
  width: 46px;
  height: 46px;
  font-size: 23px;
}

.assessment-guide-closing {
  padding: 25px 20px;
}

.assessment-guide-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.assessment-guide-actions .btn {
  min-width: 0;
}

.category-body {
  padding: 14px 10px 16px;
}

.category-body h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.category-body p {
  font-size: 13px;
  line-height: 1.6;
}
	
	
  .single-post-page {
    padding: 32px 0;
  }

  .insta-post-card {
    border-radius: 14px;
  }

  .insta-post-body {
    padding: 20px;
  }

  .insta-post-content img {
    width: calc(100% + 40px);
    margin: 20px -20px;
  }

  .insta-post-content figure {
    margin: 20px -20px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .btn-row {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 56px;
  }

  .section {
    padding: 60px 0;
  }

  .page-back-section {
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: var(--text-base);
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header .logo-main {
    font-size: 18px;
  }

  .archive-month-list {
    grid-template-columns: 1fr;
  }

  .blog-archive-index {
    padding: 46px 0 64px;
  }

  .blog-archive-index-box {
    padding: 18px;
  }

  .archive-blog-page {
    padding: 42px 0 60px;
  }

  .archive-blog-header {
    margin-bottom: 28px;
  }

  .archive-insta-feed {
    gap: 24px;
  }

  .archive-insta-card {
    border-radius: 14px;
  }

  .archive-insta-body {
    padding: 20px;
  }

  .archive-insta-content img {
    width: calc(100% + 40px);
    margin: 20px -20px;
  }

  .archive-insta-content figure {
    margin: 20px -20px;
  }
  .form-page-section .contact-form-wrap {
    padding: 20px;
  }
	
	  .assessment-rules-banner {
    min-height: 0;
    padding: 15px 16px;
    gap: 12px;
    border-radius: 12px;
  }

  .assessment-rules-banner-copy {
    display: grid;
    gap: 6px;
  }

  .assessment-rules-banner-copy small {
    width: fit-content;
    padding: 3px 8px;
    font-size: 10px;
  }

  .assessment-rules-banner-copy strong {
    font-size: 15px;
  }

  .assessment-rules-banner-more {
    font-size: 0;
  }

  .assessment-rules-banner-more span {
    font-size: 24px;
    line-height: 1;
  }
}
