/* ============================================== */
/* ===== Guide Layout ===== */
/* ============================================== */

/* Guide layout: grid 子要素の横幅制限を解除してオーバーフローを許可 */
.vl-guide-layout > * {
  min-width: 0;
}

.vl-guide-layout {
  display: grid;
  gap: 48px;
}

@media (min-width: 960px) {
  .vl-guide-layout {
    grid-template-columns: 1fr 240px; /* コンテンツ | サイドバー */
    align-items: start;
  }
}

/* --- パンくず下の余白 --- */
.vl-section .vl-breadcrumb {
  margin-bottom: 56px !important;
}

/* --- Main Content --- */
.vl-guide-content {
  font-size: var(--fz-s);
  line-height: 1.8;
  color: #333;
}

/* --- ページタイトル(h1)の下マージン --- */
.vl-guide-content .vl-h2 {
  margin-bottom: 48px;
}

/* --- Guide Headings --- */
.vl-guide-section {
  margin-bottom: 56px;
}
.vl-guide-h3 {
  font-size: var(--fz-l);
  font-weight: 700;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e3;
  letter-spacing: .04em;
}

/* --- Step List (Flow) --- */
.vl-step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.vl-step-item {
  display: flex;
  gap: 16px;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
/* ステップ間の縦線 */
.vl-step-item:not(:last-child) .step-num::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: -24px;
  left: 50%;
  width: 1px;
  background: #e5e5e3;
  transform: translateX(-50%);
}
.step-body {
  padding-top: 4px;
  width: 100%;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
.step-text {
  margin: 0;
  color: var(--muted);
}
.vl-note-text {
  margin-top: 8px;
  font-size: var(--fz-xs);
  color: #c00;
}

/* --- Alert / Info Box --- */
.vl-alert-box {
  margin-top: 12px;
  background: #fff5f5;
  border: 1px solid #ffcccc;
  padding: 16px;
  border-radius: 8px;
  color: #c00;
  font-size: var(--fz-s);
}
.vl-gray-box {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-top: 16px;
}
.vl-code-box {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #e5e5e3;
  border-radius: 8px;
  text-align: center;
}
.vl-code-box .label {
  font-size: var(--fz-xs);
  color: var(--muted);
  margin-bottom: 4px;
}
.vl-code-box .code {
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* --- Definition Lists --- */
.vl-mini-dl {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  font-size: var(--fz-xs);
  color: var(--muted);
}
.vl-mini-dl dt {
  font-weight: 700;
  color: var(--ink);
}
.vl-mini-dl dd {
  margin: 0;
}

.vl-definition-list {
  display: grid;
  gap: 16px;
}
.vl-definition-list dt {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  padding-left: 16px;
}
.vl-definition-list dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
}
.vl-definition-list dd {
  margin: 0 0 0 16px;
  color: var(--muted);
}
.vl-definition-list ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-top: 8px;
}

/* --- Payment Section --- */
.vl-payment-block {
  margin-bottom: 32px;
}
.payment-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.payment-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  background: var(--ink);
  border-radius: 2px;
}
.vl-disc-list {
  list-style: disc;
  padding-left: 1.4em;
  color: var(--muted);
}
.vl-disc-list li {
  margin-bottom: 6px;
}

/* --- Utilities --- */
.vl-text-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.vl-text-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.vl-mt-md {
  margin-top: 24px;
}

/* --- Sidebar (Guide Menu) --- */
.vl-guide-sidebar {
  display: none;
}
@media (min-width: 960px) {
  .vl-guide-sidebar {
    display: block;
    position: sticky;
    top: 100px;
  }
  .vl-guide-sidebar .sidebar-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e5e3;
    padding-bottom: 8px;
  }
  .vl-guide-sidebar ul {
    display: grid;
    gap: 4px;
  }
  .vl-guide-sidebar a {
    display: block;
    font-size: var(--fz-s);
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--muted);
    transition: all .2s ease;
  }
  .vl-guide-sidebar a:hover {
    background: var(--bg-light);
    color: var(--ink);
  }
  .vl-guide-sidebar a.is-current {
    background: var(--ink);
    color: #fff;
    font-weight: 600;
  }
}

/* ============================================== */
/* ===== Delivery & Shipping Page Additions ===== */
/* ============================================== */

.vl-price-list {
  margin: 16px 0;
  border-top: 1px solid #e5e5e3;
  font-size: var(--fz-s);
}
.vl-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid #e5e5e3;
}
.vl-price-list .region {
  font-weight: 700;
  color: var(--ink);
}
.vl-price-list .price {
  font-family: monospace;
  font-size: 15px;
  font-weight: 700;
}

.vl-schedule-list {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
}
.vl-schedule-list li {
  display: grid;
  gap: 4px;
}
@media (min-width: 600px) {
  .vl-schedule-list li {
    grid-template-columns: 160px 1fr;
    gap: 16px;
    align-items: center;
  }
}
.vl-schedule-list strong {
  font-weight: 700;
}

.vl-shipping-sub-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ddd;
}
.step-title.is-sm {
  font-size: 14px;
}
.vl-text-alert {
  color: #c00;
}
.vl-code-box.is-left {
  text-align: left;
}
.vl-caption-note {
  font-size: 13px;
  color: #666;
  margin-top: 12px;
}
.vl-delivery-note-block {
  margin-top: 16px;
  font-size: 13px;
  color: #333;
}
.vl-disc-list.is-sm {
  font-size: 13px;
}
.vl-disc-list.is-inherit-color {
  color: inherit;
}
.vl-alert-list {
  color: inherit;
}

/* Spacing Utilities */
.vl-mt-0 { margin-top: 0 !important; }
.vl-mt-xs { margin-top: 8px !important; }
.vl-mt-sm { margin-top: 12px !important; }
.vl-mt-16 { margin-top: 16px !important; }
.vl-mt-24 { margin-top: 24px !important; }

/* Font Weight Utilities */
.vl-bold-mb-xs {
  font-weight: 700;
  margin-bottom: 8px;
}
.vl-fw-bold {
  font-weight: 700;
}


/* ===== Return & Exchange Page Additions ===== */
.vl-decimal-list {
  list-style: decimal;
  padding-left: 1.5em;
  color: var(--muted);
  font-size: var(--fz-s);
}
.vl-decimal-list li {
  margin-bottom: 12px;
  padding-left: 4px;
}
.vl-decimal-list strong {
  color: var(--ink);
  font-weight: 700;
}


/* ===== Products & Pre-order Page Additions ===== */
.vl-guide-columns {
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .vl-guide-columns {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.vl-guide-columns .vl-gray-box {
  height: 100%;
}


/* ===== Account & Favorites ===== */
.vl-info-list {
  background: #fffaf0;
  border: 1px solid #f0e6d2;
  padding: 16px 16px 16px 32px;
  border-radius: 8px;
  font-size: var(--fz-s);
  color: #5c4e36;
  list-style: disc;
}
.vl-info-list li {
  margin-bottom: 6px;
}
.vl-info-list li:last-child {
  margin-bottom: 0;
}


/* ============================================== */
/* ===== SIZE GUIDE CSS (Complete Version) ===== */
/* ============================================== */

/* --- 1. Table Wrapper & Style --- */
.vl-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
}

.vl-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fz-s);
  line-height: 1.4;
}

.vl-guide-table th,
.vl-guide-table td {
  padding: 12px 8px;
  border: 1px solid #e5e5e3;
  text-align: center;
}

.vl-guide-table th {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.vl-guide-table td {
  color: #333;
}

.vl-guide-table td strong {
  font-weight: 700;
  color: var(--ink);
}

.vl-guide-table td.text-left {
  text-align: left;
  padding-left: 12px;
}

/* --- 2. Accordion Menu --- */
.vl-guide-accordion {
  border: 1px solid #e5e5e3;
  border-radius: 8px;
  background: #fff;
}

.vl-guide-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-weight: 700;
  font-size: var(--fz-s);
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: background-color .2s ease;
}

.vl-guide-accordion summary:hover {
  background-color: var(--bg-light);
}

.vl-guide-accordion summary::-webkit-details-marker {
  display: none;
}

.vl-guide-accordion summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 12px;
}

.vl-guide-accordion[open] summary::after {
  content: '−';
}

.vl-guide-accordion-content {
  padding: 0 16px 24px;
  border-top: 1px solid #e5e5e3;
  margin-top: 0;
}

.vl-guide-accordion[open] .vl-guide-accordion-content {
  animation: fadeIn .3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- 3. Definition List (2 Columns) --- */
.vl-definition-list.is-compact {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 600px) {
  .vl-definition-list.is-compact {
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 24px;
  }
}

.vl-definition-list.is-compact dt {
  font-size: 14px;
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
}

.vl-definition-list.is-compact dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.vl-definition-list.is-compact dd {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-left: 12px;
}


/* --- 4. Measurement Images Grid --- */
.vl-measurement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* モバイル: 2列 */
  gap: 12px;
  width: 100%;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .vl-measurement-grid {
    grid-template-columns: repeat(3, 1fr); /* PC: 3列 */
    gap: 16px;
  }
}

.vl-measurement-item {
  margin: 0;
  padding: 0;
}

.vl-measurement-item img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e5e5e3;
  border-radius: 8px;
  background: #fff;
}

/* ============================================== */
/* ===== International Shipping Additions ===== */
/* ============================================== */

/* 外部リンクボタン（Buyeeバナー代わり） */
.vl-btn-external {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 320px; /* 大きすぎないように制限 */
  padding: 16px;
  background: #fff;
  border: 1px solid #0b0917;
  border-radius: 8px;
  color: #0b0917;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s ease;
}
.vl-btn-external:hover {
  background: #0b0917;
  color: #fff;
  opacity: 1; /* vl-text-linkのopacity変化を上書き */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.vl-btn-external .material-symbols-outlined {
  font-size: 20px; /* アイコンサイズ調整 */
}

/* 言語セクションの区切り線 */
.vl-guide-divider {
  border: 0;
  height: 1px;
  background: #e5e5e3;
  margin: 48px 0;
}

/* 補足テキスト用 */
.vl-text-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================== */
/* ===== FAQ Page CSS (Revised Version) ===== */
/* ============================================== */

/* 1. Table of Contents (Category Links) */
.vl-faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* ボタン間の隙間 */
  margin-bottom: 64px; /* 【修正】下の見出しとの余白を広げました */
}

.vl-faq-toc a {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #ccc; /* 【修正】枠線をつけてボタンらしく */
  border-radius: 30px;    /* 丸みをつけてカプセル型に */
  font-size: var(--fz-s);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

/* ホバー時の動き */
.vl-faq-toc a:hover {
  background: var(--ink); /* 黒背景に */
  color: #fff;            /* 白文字に */
  border-color: var(--ink);
  transform: translateY(-2px); /* 少し浮き上がる */
}


/* 2. Accordion Styles */
.vl-faq-list {
  border-top: none;
}

.vl-faq-details {
  border-bottom: 1px solid #e5e5e3;
}

.vl-faq-summary {
  display: flex;
  justify-content: space-between; /* テキストを左、矢印を右端へ */
  align-items: center;
  padding: 24px 8px 24px 0; /* タップ領域を少し広げました */
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
  transition: color .2s ease;
}

/* Chrome/Safari用 デフォルトの三角マーカーを消す */
.vl-faq-summary::-webkit-details-marker {
  display: none;
}

.vl-faq-summary:hover {
  opacity: 0.7;
}

/* Q.の文字 */
.vl-faq-summary::before {
  content: 'Q.';
  display: inline-block;
  margin-right: 12px;
  font-weight: 800;
  font-size: 18px;
}

/* 【修正】右端の矢印（V マーク） */
.vl-faq-summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #999; /* 矢印の色 */
  border-bottom: 2px solid #999;
  transform: rotate(45deg); /* 45度回転させて V にする */
  margin-left: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease; /* クルッと回るアニメーション */
}

/* 開いている時のスタイル（矢印を逆さにする） */
.vl-faq-details[open] .vl-faq-summary::after {
  transform: rotate(-135deg); /* さらに回転させて ∧ にする */
  border-color: var(--ink); /* 開いている時は矢印を濃くする */
}

/* 開いたときの要約部分の調整 */
.vl-faq-details[open] .vl-faq-summary {
  padding-bottom: 16px; 
}


/* 3. Answer Body */
.vl-faq-body {
  padding: 0 0 32px 38px; /* Qの字下げ分インデント */
  font-size: var(--fz-s);
  color: #333;
  line-height: 1.7;
  animation: slideDown .3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustment */
@media (max-width: 599px) {
  .vl-faq-body {
    padding-left: 0; /* スマホはインデント解除 */
  }
  .vl-faq-summary {
    font-size: 15px;
  }
}

/* Arrow Link (詳細リンク用) - 変更なし */
.vl-arrow-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity .2s ease;
}

.vl-arrow-link::after {
  content: '>';
  display: inline-block;
  margin-left: 6px;
  font-weight: 400;
  transition: transform .2s ease;
}

.vl-arrow-link:hover {
  opacity: 0.7;
}
.vl-arrow-link:hover::after {
  transform: translateX(3px);
}

/* ============================================== */
/* ===== Gift Wrapping Index Page Additions ===== */
/* ============================================== */

/* --- Flow Chart --- */
.vl-gift-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fz-s);
  flex-wrap: wrap;
  margin-bottom: 64px; /* ここで下のセクションとの余白を確保 */
}
.flow-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}
.flow-item .text {
  line-height: 1.4; /* 2行になっても読みやすく調整 */
}
.flow-item .num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0; /* 番号が潰れないように固定 */
}
.flow-item.is-opt .num {
  background: #999;
}
.flow-item.is-opt .badge {
  font-size: 10px;
  background: #eee;
  color: #666;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: normal;
}
.flow-arrow {
  color: #ccc;
  font-size: 12px;
}

/* --- Wrapping Grid (3 Columns) --- */
.vl-gift-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .vl-gift-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vl-gift-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e5e5e3;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .vl-gift-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
}

.vl-gift-card .gift-img {
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1; /* 正方形 */
  background: #f9f9f9;
}
.vl-gift-card .gift-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vl-gift-card .gift-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}
.gift-tag {
  display: inline-block;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.gift-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}
.gift-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}
.vl-gift-card .vl-text-link {
  font-size: 13px;
  align-self: center;
}


/* --- Shopping Bag Section (Card Style) --- */
.vl-gift-bag-block {
  background: #fff; /* 背景を白に変更 */
  border: 1px solid #e5e5e3; /* カードとしての枠線を追加 */
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  gap: 0;
  
  /* ホバーアニメーション用の設定（ギフトカードと共通） */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ホバー時に浮き上がる動き */
@media (hover: hover) {
  .vl-gift-bag-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
}

@media (min-width: 768px) {
  .vl-gift-bag-block {
    /* 画像幅を280pxに固定し、残りをテキストエリアに */
    grid-template-columns: 280px 1fr;
    align-items: stretch;
    min-height: 180px;
  }
}

.bag-visual {
  margin: 0;
  width: 100%;
  position: relative;
  /* 背景色を削除（画像自体が表示されるため不要ですが、念のため白に） */
  background: #fff; 
}

/* スマホ：横長比率 */
.bag-visual {
  aspect-ratio: 3/2; 
}

/* PC：親の高さに合わせてカバー */
@media (min-width: 768px) {
  .bag-visual {
    aspect-ratio: auto; 
    height: 100%;
    border-right: 1px solid #f0f0f0; /* 画像とテキストの間に薄い区切り線を入れると上品です（任意） */
  }
}

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

.bag-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bag-copy {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.bag-text {
  font-size: var(--fz-s);
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.vl-gift-bag-block .vl-text-link {
  font-size: 13px;
  display: inline-block;
}

/* ============================================== */
/* ===== Guide Top (Index) Additions ===== */
/* ============================================== */

/* ナビゲーションカードのグリッドレイアウト */
.vl-guide-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホは2列 */
  gap: 12px;
}

@media (min-width: 768px) {
  .vl-guide-nav-grid {
    /* PCコンテンツエリア内では3列 */
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* カードスタイル */
.vl-guide-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid #e5e5e3;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

/* ホバー時の挙動 */
@media (hover: hover) {
  .vl-guide-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--ink);
    z-index: 1;
  }
}

/* アイコン */
.vl-guide-nav-card .icon {
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.vl-guide-nav-card:hover .icon {
  background: var(--ink);
  color: #fff;
}

/* タイトル */
.vl-guide-nav-card .nav-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
}

/* 説明文 */
.vl-guide-nav-card .nav-desc {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* よくあるご質問（強調スタイル） */
.vl-guide-nav-card.is-highlight {
  background: #fafafa;
  border-color: #ddd;
}
.vl-guide-nav-card.is-highlight .icon {
  color: #fff;
  background: #0b0917; /* 最初から黒背景 */
}
/* ホバー時 */
.vl-guide-nav-card.is-highlight:hover {
  background: #fff;
  border-color: #0b0917;
}

/* 余白調整用クラス（もし存在しなければ） */
.vl-mt-48 { margin-top: 48px !important; }
.vl-mt-64 { margin-top: 64px !important; }

/* ============================================== */
/* ===== About Us Page Additions ===== */
/* ============================================== */

/* --- メインビジュアル --- */
.vl-about-hero {
  margin-bottom: 48px;
  overflow: hidden;
  position: relative;
}
.vl-about-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .vl-about-hero img {
    aspect-ratio: 21/9; /* PCは少し横長に */
  }
}

/* --- コンテンツレイアウト --- */
.vl-about-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 48px;
}
/* スマホのみ改行を非表示にするユーティリティ */
@media (max-width: 767px) {
  .u-sp-hide {
    display: none;
  }
}

/* --- こだわりセクション (Row Layout) --- */
.vl-about-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #e5e5e3;
}
.vl-about-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .vl-about-row {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  /* 偶数番目のセクションは画像を右側に */
  .vl-about-row.is-reverse {
    flex-direction: row-reverse;
  }
}

.vl-about-img {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(11, 9, 23, 0.05);
}

@media (min-width: 768px) {
  .vl-about-img {
    width: 45%; /* PCでは画像を少し小さめに */
    flex-shrink: 0;
  }
}

.vl-about-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .4s ease;
}
.vl-about-img:hover img {
  transform: scale(1.03);
}

.vl-about-text {
  flex-grow: 1;
}

.vl-about-subhead {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: .02em;
}

.vl-about-desc {
  font-size: var(--fz-s);
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* --- ストーリーセクション --- */
.vl-about-story {
  margin-top: 24px;
}
.vl-about-story-text {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.vl-about-story-text p {
  margin-bottom: 24px;
}

.vl-story-image {
  margin: 32px 0;
  overflow: hidden;
}
.vl-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 署名エリア --- */
.vl-about-sign {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e3;
  text-align: right;
  font-family: serif;
  font-size: var(--fz-s);
  color: var(--ink);
}
.vl-about-sign p {
  margin: 0 0 4px;
}
.vl-about-sign .date {
  font-size: 13px;
  color: var(--muted);
  font-family: sans-serif;
}


/* ============================================== */
/* ===== Single Column Layout (About Us, etc.) ===== */
/* ============================================== */
.vl-layout-single {
  max-width: 1000px;
  margin-inline: auto;
}


/* ===== ▼▼▼ Brand List Page (f32) ▼▼▼ ===== */

/* ページ内リンクナビゲーション */
.vl-brand-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 16px;
}
.vl-brand-nav a {
  display: block;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 99px;
  font-size: var(--fz-s);
  background: #fff;
  color: var(--ink);
  transition: all .2s ease;
  text-align: center;
}
.vl-brand-nav a:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ブランドリスト（グリッド） */
.vl-brand-grid {
  display: grid;
  gap: 24px 16px; /* 縦24px, 横16pxの隙間 */
  grid-template-columns: repeat(2, 1fr); /* スマホは2列 */
  list-style: none;
  padding: 0;
  margin: 0;
}
@media(min-width: 600px) {
  .vl-brand-grid {
    grid-template-columns: repeat(3, 1fr); /* タブレットは3列 */
    gap: 32px 24px;
  }
}
@media(min-width: 960px) {
  .vl-brand-grid {
    grid-template-columns: repeat(4, 1fr); /* PCは4列 */
  }
}

/* ブランドカードのデザイン */
.vl-brand-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vl-brand-card a {
  display: block;
  /* 画像全体をリンクにするための設定 */
}
.vl-brand-card a:hover {
  opacity: 0.8;
}

/* 画像設定 */
.vl-brand-card .img-box {
  width: 100%;
  aspect-ratio: 3 / 2; /* ★画像を 3:2 の横長に統一 */
  background: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #eee;
}
.vl-brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠に合わせてトリミング */
  object-position: center;
  transition: transform 0.3s ease;
}
/* ホバー時に画像を少し拡大 */
.vl-brand-card a:hover img {
  transform: scale(1.05);
}

/* テキスト周り */
.vl-brand-card h3 {
  font-size: var(--fz-s);
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
}
.vl-brand-card h3 span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.vl-brand-card .desc {
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
  flex-grow: 1; /* 高さを揃えるために伸ばす */
}
.vl-brand-card .items {
  font-size: 11px;
  color: var(--muted);
  background: #f9f9f9;
  padding: 8px;
  border-radius: 6px;
}