.contents .head-box {
  margin-bottom: var(--space-lg);
}
.start-guide-bnr-sp {
  padding: 12px;
  text-align: center;
}
.start-guide-bnr-sp .sg-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.start-guide-bnr-sp .sg-cta:hover,
.start-guide-bnr-sp .sg-cta:active {
  border-color: var(--loud-color);
  box-shadow: 0 2px 10px rgba(253, 124, 35, .18);
}
.sg-cta__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--loud-color);
  background: color-mix(in srgb, var(--loud-color) 12%, #fff);
}
.sg-cta__icon svg {
  width: 22px;
  height: 22px;
}
.sg-cta__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
}
.sg-cta__eyebrow {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--loud-color);
  padding: 3px 8px;
  border-radius: 100vh;
}
.sg-cta__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-color);
}
.sg-cta__arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--loud-color);
}
.sg-cta__arrow svg {
  width: 15px;
  height: 15px;
}
.shipping_info_item {
  padding: 1.75rem 0;
  border-bottom: 1px dotted #98A6B5;
  display: flex;
}
.shipping_info_item_date {
  width: 15rem;
  line-height: 3rem;
  background: var(--color-orange-accent);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-right: var(--space-lg);
}
.shipping_info_item_price {
  margin-right: var(--space-sm);
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-weight: 400;
}
@media (max-width: 640px) {
  .shipping_info_item_date {
    width: 10rem;
    font-size: 0.8rem;
    line-height: 1.6rem;
    color: var(--color-orange-accent);
    background: none;
  }
  .shipping_info_item_price {
    margin-right: 0;
    font-size: 0.9rem;
    line-height: 2rem;
    font-weight: 400;
  }
}
.shipping_info {
  max-height: 265px;
  overflow-y: auto;
  grid-template-columns: max-content 1fr;
  gap: var(--space-lg);
  background-color: var(--grey-1);
  padding: var(--space-xs) var(--space-lg);
}
.orderBox {
  border: solid 0.15rem #ccc;
}
.orderNew {
  background: #fffbf9;
}
@media (max-width: 767px) {
  .contents-wrap {
    padding-top: var(--space-xl);
  }
  .contents .head-box {
    text-align: center;
  }
  .contents .head-box h2 {
    display: inline-block;
    font-size: var(--font-lg);
    line-height: 3rem;
    text-align: center;
    padding-left: 0;
    padding: var(--space-xs);
    border-bottom: 5px solid var(--loud-color);
    border-radius: 2px;
  }
  .contents .head-box h2::before {
    background: none;
  }
  .strength-box .main-box > ul > li.row {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 0 var(--space-sm);
  }
  .strength-box .main-box > ul > li.row > .flex-sp-100:first-child {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
  }
  .strength-box .main-box > ul > li.row > .flex-sp-100:nth-child(2) {
    display: contents;
    max-width: 100%;
  }
  .strength-box .main-box > ul > li.row > .flex-sp-100:nth-child(2) > h3 {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .strength-box .main-box > ul > li.row > .flex-sp-100:nth-child(2) > p {
    grid-column: 2;
    grid-row: 2;
  }
}
/* ==========================================================================
   制作事例カード（A案）：共用スタイルは blog.css に集約（全ページ無条件ロード）。
   ここはトップページ固有の「モバイルはティザーとして6個(3行)まで」だけを担当。
   ※ /blog 一覧(archive.php)は同じ .achievements-cards を使うが index-inline.css を
     読み込まないため件数制限はかからず全件表示される。
   ========================================================================== */
@media (max-width: 767px) {
  .achievements-cards .columns .pin:nth-child(n + 7) {
    display: none;
  }
}

/* 特集コンテンツ：左寄せ配置（余り1件も左から並べる） */
.pickup-box .main-box .row {
  justify-content: flex-start;
}

/* 新着コラム：日付とタイトルの間隔を詰める（p既定の margin-bottom:2rem が空きすぎるため） */
.column-box .flex-70 .small {
  margin-bottom: var(--space-xs);
}
.column-box .flex-70 a p {
  margin-bottom: 0;
  line-height: 1.5;
}

/* 新着コラム：モバイル(1列リスト)で記事ごとに余白を広げ、うっすい罫線（点線）で境界を付ける
   ※PC(2列)は罫線が半幅で不自然になるためモバイル限定 */
@media (max-width: 767px) {
  .column-box .main-box > ul > li {
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    border-bottom: 1px dotted var(--border-color);
  }
  .column-box .main-box > ul > li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
