/* ============================================
   オリジナルメモ帳.com - 共通スタイル（MUJI風リファクタ後）
   カラーパレット:
     本文・見出し文字色: #333333（ソフトダークグレー）
     背景:       #FFFFFF（白）
     セクション背景・淡色ブロック: #FAFAFA（ごく薄いライトグレー）
     罫線・区切り線: #E5E5E5（1px）
     アクセント（唯一の差し色）: #7F0019（えんじ色。.nav-order・最優先アクションボタンのみに限定使用）
============================================ */

/* --- リセット & ベース --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  background: #FFFFFF;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #333333;
}

ul, ol {
  list-style: none;
}

/* --- 共通レイアウト --- */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333333;
  text-align: left;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.section-subtitle {
  text-align: left;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 48px;
}

.section-title-line {
  display: block;
  width: 48px;
  height: 3px;
  background: #1A1A1A;
  margin: 12px 0 40px;
  border-radius: 0;
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.btn::after {
  content: '→';
  font-size: 1em;
}

/* 最優先アクション：えんじ塗り */
.btn-primary {
  background: #7F0019;
  color: #fff;
  border-color: #7F0019;
}

.btn-primary:hover {
  background: #FFFFFF;
  color: #7F0019;
  border: 2px solid #7F0019;
}

/* それ以外：ゴースト（白背景＋1px枠＋#333文字、hoverは枠色のみ変化） */
.btn-outline {
  background: #fff;
  color: #333333;
  border: 1px solid #E5E5E5;
}

.btn-outline:hover {
  border-color: #7F0019;
}

.btn-outline-green {
  background: #fff;
  color: #333333;
  border: 1px solid #E5E5E5;
}

.btn-outline-green:hover {
  border-color: #7F0019;
}

.btn-secondary {
  background: #fff;
  color: #333333;
  border: 1px solid #E5E5E5;
}

.btn-secondary:hover {
  border-color: #7F0019;
}

.btn-white {
  background: #FFFFFF;
  color: #333333;
  border: 1px solid #E5E5E5;
}

.btn-white:hover {
  border-color: #7F0019;
}

/* --- ヘッダー --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 5%;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 44px;
  width: auto;
}

/* PC ナビ */
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  padding: 8px 14px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.header-nav a:hover {
  background: #FAFAFA;
  color: #333333;
}

.header-nav .nav-order {
  background: #7F0019;
  color: #fff;
  font-weight: 700;
  padding: 8px 18px;
}

.header-nav .nav-order:hover {
  background: #1A1A1A;
  color: #fff;
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 0;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 999;
  padding: 32px 5%;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .nav-order {
  margin-top: 24px;
  background: #7F0019;
  color: #fff;
  font-weight: 700;
  text-align: left;
  border-radius: 0;
  padding: 16px;
  border-bottom: none;
}

/* --- カートアイコン --- */
.cart-icon { position:relative; font-size:1.3rem; padding:4px; text-decoration:none; }
.cart-badge {
  position:absolute; top:-6px; right:-6px;
  background:#1A1A1A; color:#fff;
  border-radius: 0; width:18px; height:18px;
  font-size:0.65rem; line-height:18px; text-align:left;
  font-weight:700;
}

/* --- バッジノート・フォームノート（注文ページ） --- */
.badge-note {
  display:inline-block; background:transparent; color:#333333;
  border:1px solid #E5E5E5; border-radius: 0;
  padding:4px 12px; font-size:0.78rem; margin:4px;
}
.form-note { font-size:0.85rem; color:#888; margin-bottom:16px; }

/* --- フッター --- */
.site-footer {
  background: #1A1A1A;
  color: #fff;
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 38px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #fff;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-nav ul li,
.footer-contact ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a,
.footer-contact ul li a {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  color: #fff;
  transition: transform 0.25s ease, color 0.2s ease;
}

/* hover時に左から伸びる下線（アクセント金） */
.footer-nav ul li a::after,
.footer-contact ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.footer-nav ul li a:hover,
.footer-contact ul li a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-nav ul li a:hover::after,
.footer-contact ul li a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  text-align: left;
  padding: 20px 0;
  font-size: 0.78rem;
  color: #fff;
}

/* --- ヒーロー（トップページ FV） --- */
.hero {
  position: relative;
  background: #fff;
  padding: 56px 0;
}

.hero .container {
  position: relative;
}

/* hero画像：右側に角丸・左右余白5%で配置（overlay/透明処理なし）
   横幅が広がっても高さは固定し、中の画像を拡大（object-fit:cover）する */
.hero-image {
  margin: 0 5%;
  height: 560px;
  border-radius: 0;
  overflow: hidden;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* --- ヒーローカルーセル（2026-07-16: 写真7/6/3/11の4枚・3秒ごとに左へスライド） --- */
.hero-carousel {
  position: relative;
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease;
  will-change: transform;
}

.hero-carousel-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

/* h1・subtitleの白ボックス：左へずらしてhero画像の左端をまたぐ */
.hero-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 58%;
}

/* 2026-07-30 修正箇所10: タイトルは従来の半分程度、サブは2段階小さく
   2026-08-15 修正箇所11: キャッチコピーを少しだけ大きく */
.hero-title {
  display: inline-block;
  background: #fff;
  color: #333333;
  font-size: clamp(1rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-radius: 0;
}

.hero-subtitle {
  display: inline-block;
  background: #fff;
  color: #444;
  font-size: clamp(0.78rem, 1.25vw, 0.95rem);
  font-weight: 700;
  line-height: 1.75;
  padding: 12px 18px;
  border-radius: 0;
}

/* --- トップ：特徴セクション --- */
.features {
  background: #F0F0EC;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 0;
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.25s;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.75;
}

/* 写真背景＋黒60%オーバーレイの feature-card（2026-07-29: 75%→60%に変更）（文字は白抜き）
   2026-07-30 修正箇所10: 縦幅を広げて余白を確保 */
.feature-card--photo {
  background-size: cover;
  background-position: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card--photo1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)), url('../img/photo1.jpg');
}

.feature-card--photo8 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)), url('../img/photo8.jpg');
}

.feature-card--photo12 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)), url('../img/photo12.jpg');
}

.feature-card--photo h3 {
  color: #fff;
}

.feature-card--photo p {
  color: rgba(255, 255, 255, 0.92);
}

/* --- トップ：商品紹介 --- */
.products-preview {
  background: #fff;
}

/* .products-grid / .product-card / .product-card-img / .product-card-body の
   レイアウト定義は本ファイル末尾「商品ラインナップ（2026-07-13 Stage2: photo1配置）」
   ブロックに統一（旧3カラムグリッド版は2026-07-13に撤去・重複解消） */

.product-card-body .tag {
  display: inline-block;
  background: transparent;
  color: #333333;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  margin-bottom: 10px;
}

.product-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 18px;
  line-height: 1.7;
}

.product-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 18px;
}

.product-card-meta span::before {
  content: '■';
  color: #333333;
  margin-right: 4px;
  font-size: 0.6rem;
}

/* --- トップ：CTAバナー --- */
.cta-banner {
  background: #F0F0EC;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  color: #333333;
  text-align: left;
  padding: 72px 0;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 0.95rem;
  opacity: 0.88;
  margin-bottom: 32px;
}

.cta-banner .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- 商品一覧ページ --- */
.page-hero {
  background: #F0F0EC;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  color: #333333;
  text-align: left;
  padding: 64px 0;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 0.95rem;
  opacity: 0.88;
}

.products-list {
  background: #F0F0EC;
}

.products-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-list-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product-list-card:hover {
  transform: translateY(-4px);
}

.product-list-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-list-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-list-card-body .tag {
  display: inline-block;
  background: transparent;
  color: #333333;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  margin-bottom: 10px;
}

.product-list-card-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333333;
}

.product-list-card-body p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.product-spec-table th {
  background: #FAFAFA;
  color: #555;
  font-weight: 700;
  padding: 7px 10px;
  text-align: left;
  border: 1px solid #E5E5E5;
  width: 36%;
}

.product-spec-table td {
  padding: 7px 10px;
  border: 1px solid #E5E5E5;
  color: #333333;
}

.price-tag {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}

.price-tag small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  margin-left: 4px;
}

/* --- 商品詳細ページ --- */
.product-detail {
  padding: 64px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-detail-image {
  position: sticky;
  top: 88px;
  align-self: start;
}

.product-detail-image img {
  width: 100%;
  border-radius: 0;
}

/* 商品写真ギャラリー（2026-07-30 修正箇所10: サムネイルクリックでメイン画像切替） */
.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.product-gallery-thumbs img {
  width: calc((100% - 30px) / 4);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.85;
  transition: opacity 0.2s, border-color 0.2s;
}

.product-gallery-thumbs img:hover {
  opacity: 1;
}

.product-gallery-thumbs img.active {
  border-color: #7F0019;
  opacity: 1;
}

.product-detail-info h1 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.product-detail-info .tag {
  display: inline-block;
  background: transparent;
  color: #333333;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  margin-bottom: 16px;
}

.product-detail-info .lead {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.8;
}

.spec-section {
  margin-bottom: 24px;
}

.spec-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #E5E5E5;
}

.spec-list {
  display: grid;
  gap: 0;
}

.spec-list dt {
  font-size: 0.82rem;
  font-weight: 700;
  color: #555;
  background: #FAFAFA;
  padding: 9px 14px;
  border: 1px solid #E5E5E5;
  border-bottom: none;
}

.spec-list dt:last-of-type,
.spec-list dd:last-of-type {
  border-bottom: 1px solid #E5E5E5;
}

.spec-list dd {
  font-size: 0.875rem;
  color: #333333;
  padding: 9px 14px;
  border: 1px solid #E5E5E5;
  border-top: none;
  border-bottom: none;
  background: #FFFFFF;
  margin-left: 0;
}

/* 上書き：dtとddを横並びに */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.spec-table th {
  background: #FAFAFA;
  color: #555;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #E5E5E5;
  width: 38%;
}

.spec-table td {
  padding: 10px 14px;
  border: 1px solid #E5E5E5;
  color: #333333;
  background: #FFFFFF;
}

.detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.detail-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
}

.detail-lot {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 24px;
}

.order-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.order-cta-group .btn {
  justify-content: center;
}

.notice-box {
  background: #FAFAFA;
  border-left: 3px solid #1A1A1A;
  padding: 16px 20px;
  border-radius: 0;
  margin-top: 20px;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
}

.notice-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
}

/* --- フォーム共通 --- */
.form-page {
  background: #F0F0EC;
  padding: 64px 0;
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 0;
  padding: 48px 48px;
}

.form-wrap h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.form-lead {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.8;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #c0392b;
  font-size: 0.75rem;
  margin-left: 4px;
  font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1A1A1A;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input[type="file"] {
  padding: 8px 12px;
  background: #f9f9f9;
  cursor: pointer;
}

.form-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-actions .btn {
  min-width: 180px;
  justify-content: center;
}

.payment-info {
  background: #F2F0EA;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.83rem;
  color: #444444;
  line-height: 1.8;
}

.payment-info strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #333333;
}

/* --- 確認画面 --- */
.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.confirm-table th {
  background: #FAFAFA;
  color: #555;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #E5E5E5;
  width: 35%;
  font-size: 0.875rem;
}

.confirm-table td {
  padding: 12px 16px;
  border: 1px solid #E5E5E5;
  color: #333333;
  font-size: 0.875rem;
  background: #FFFFFF;
}

/* --- 完了画面 --- */
.complete-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  padding: 80px 20px;
}

.complete-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.complete-wrap h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}

.complete-wrap p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* --- パンくず --- */
.breadcrumb {
  font-size: 0.8rem;
  color: #888;
  padding: 14px 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.breadcrumb a {
  color: #888;
}

.breadcrumb a:hover {
  color: #333333;
}

.breadcrumb-sep {
  color: #ccc;
}

/* --- 管理画面 --- */
.admin-body {
  background: #f0f0f0;
  min-height: 100vh;
}

.admin-login-wrap {
  max-width: 400px;
  margin: 80px auto;
  background: #fff;
  border-radius: 0;
  padding: 48px 40px;
  text-align: left;
}

.admin-login-wrap h1 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.admin-login-wrap p {
  font-size: 0.83rem;
  color: #888;
  margin-bottom: 28px;
}

.admin-header {
  background: #1A1A1A;
  color: #fff;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h1 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.admin-header a {
  color: #BBBBBB;
  font-size: 0.85rem;
}

.admin-header a:hover {
  color: #fff;
}

.admin-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 24px;
}

.admin-card {
  background: #fff;
  border-radius: 0;
  padding: 32px;
  margin-bottom: 24px;
}

.admin-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
}

.admin-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.admin-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  background: #FAFAFA;
  border-radius: 0;
  color: #333333;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
  text-decoration: none;
}

.admin-menu-item:hover {
  background: #E5E5E5;
  color: #333333;
}

.admin-menu-item .icon {
  font-size: 2rem;
}

/* --- 管理画面：左サイドバー（基本メニュー） --- */
.admin-sidebar {
  position: fixed;
  top: 60px;            /* admin-header の高さ分下げる */
  left: 0;
  bottom: 0;
  width: 220px;
  background: #1A1A1A;
  padding: 18px 0;
  overflow-y: auto;
  z-index: 10;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  color: #CCCCCC;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s;
}

.admin-sidebar a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.admin-sidebar a.active {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-left-color: #fff;
  font-weight: 700;
}

.admin-sidebar a .icon { font-size: 1.15rem; }

.admin-sidebar .sidebar-sep {
  margin: 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* サイドバー導入後はコンテナを左に寄せず広く使う */
.admin-body .admin-container {
  max-width: none;
  margin: 40px 40px 40px 260px;
  padding: 0;
}

/* --- 注文状況テーブル --- */
.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.orders-table th,
.orders-table td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid #EAEAEA;
  vertical-align: middle;
}

.orders-table th {
  background: #FAFAFA;
  color: #333333;
  font-weight: 700;
  white-space: nowrap;
}

.orders-table tr:hover td { background: #faf6ef; }

.orders-empty {
  padding: 40px;
  text-align: left;
  color: #999;
  font-size: 0.9rem;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

/* 2026-08-15 修正箇所11: ステータスを「受付／校正中／製造中／発送済」の4区分へ変更。
   st-pay / st-done は旧区分用（既存データ表示の保険として残す）。 */
.st-new   { background: #e8f0fe; color: #1766a8; }
.st-proof { background: #fff3e0; color: #b26a00; }
.st-prod  { background: #fdeaea; color: #c0392b; }
.st-ship  { background: #e8f5e9; color: #2e7d32; }
.st-pay   { background: #fff3e0; color: #b26a00; }
.st-done  { background: #eeeeee; color: #666;    }

.status-select {
  font-size: 0.8rem;
  padding: 4px 6px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.media-thumb {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f0f0f0;
}

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

/* --- ユーティリティ --- */
.text-center { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ============================================
   料金表・タブ
============================================ */

/* 料金表タブ */
.price-tabs { display:flex; gap:8px; margin-bottom:16px; }
.price-tab-btn { padding:8px 20px; border:2px solid #1A1A1A; background:#fff; color:#333333; border-radius: 0; cursor:pointer; font-size:0.9rem; }
.price-tab-btn.active { background:#1A1A1A; color:#fff; }
.price-table-wrap { display:none; }
.price-table-wrap.active { display:block; }

/* 料金表 */
.price-table { width:100%; border-collapse:collapse; font-size:0.9rem; margin-top:8px; }
.price-table th { background:#1A1A1A; color:#fff; padding:10px 12px; text-align:left; }
.price-table td { padding:8px 12px; text-align:left; border-bottom:1px solid #E5E5E5; }
.price-table tr:nth-child(even) td { background:#FAFAFA; }
.price-table .per-unit { color:#333333; font-weight:700; }
.price-note { font-size:0.82rem; color:#888; margin-bottom:12px; }

/* ============================================
   レスポンシブ
============================================ */

/* タブレット (768px〜) */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .header-nav {
    display: flex;
  }
}

/* スマホ (〜767px) */
@media (max-width: 767px) {
  html {
    font-size: 15px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 24px 0 40px;
  }

  .hero-image {
    margin: 0;
    height: auto;
  }

  .hero-image img {
    height: auto;
  }

  /* カルーセルはスマホでも3:2比率で高さを確保 */
  .hero-carousel {
    aspect-ratio: 3 / 2;
  }

  .hero-carousel .hero-carousel-track img {
    height: 100%;
  }

  .hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: -36px;
    padding: 0 16px;
  }

  .hero-title {
    /* 2026-08-15 修正箇所11: キャッチコピーを少しだけ大きく */
    font-size: 1.1rem;
    display: block;
  }

  .hero-subtitle {
    display: block;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-detail-image {
    position: static;
  }

  .admin-sidebar {
    position: static;
    top: auto;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
  }

  .admin-sidebar a {
    padding: 8px 12px;
    border-left: none;
  }

  .admin-body .admin-container {
    margin: 24px 16px;
  }

  .orders-table {
    font-size: 0.78rem;
  }

  .orders-table thead {
    display: none;
  }

  .orders-table td {
    display: block;
    border: none;
    padding: 4px 12px;
  }

  .orders-table tr {
    display: block;
    border-bottom: 1px solid #EAEAEA;
    padding: 8px 0;
  }

  .form-wrap {
    padding: 32px 20px;
  }

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

  .product-card-img,
  .hero img,
  section img {
    width: 100%;
  }
}

/* ============================================================
 * 見積もり電卓UI（商品ページ）
 * ============================================================ */
.estimate-box { background:#F2F0EA; border:1px solid #E5E5E5; border-radius: 0; padding:24px; }
.estimate-fields {
  display:grid; grid-template-columns:repeat(2, 1fr); gap:14px 18px; margin:16px 0 20px;
}
.estimate-field { display:flex; flex-direction:column; }
.estimate-field label { font-size:0.8rem; color:#333333; font-weight:700; margin-bottom:6px; }
.estimate-field select {
  padding:10px 12px; border:1.5px solid #CCCCCC; border-radius: 0; background:#fff;
  font-size:0.95rem; color:#333; appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23333333' d='M2 4l4 4 4-4z'/></svg>");
  background-repeat:no-repeat; background-position:right 12px center;
}
.estimate-field select:focus { outline:none; border-color:#1A1A1A; }
.estimate-result {
  background:#fff; border:1px solid #E5E5E5; border-radius: 0; padding:18px 20px; margin-bottom:18px;
}
.estimate-total-row {
  display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px;
}
.estimate-total-label { font-size:0.9rem; color:#666; }
.estimate-total { font-size:1.9rem; font-weight:700; color:#333333; }
.estimate-unit-row { display:flex; justify-content:space-between; align-items:baseline; }
.estimate-unit-label { font-size:0.82rem; color:#888; }
.estimate-unit { font-size:1.05rem; font-weight:700; color:#333333; }
.estimate-note { margin-top:10px; font-size:0.85rem; color:#c62828; }
.estimate-order-btn { display:block; width:100%; text-align:left; }
@media (max-width:520px) {
  .estimate-fields { grid-template-columns:1fr; }
  .estimate-total { font-size:1.6rem; }
}

/* ============================================================
 * ブログ（公開側）
 * ============================================================ */
.blog-list { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:28px; }
.blog-card {
  background:#fff; border:1px solid #E5E5E5; border-radius: 0; overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .2s;
}
.blog-card:hover { transform:translateY(-4px); }
.blog-card-thumb { width:100%; aspect-ratio:16/9; object-fit:cover; background:#FAFAFA; }
.blog-card-body { padding:18px 20px; display:flex; flex-direction:column; flex:1; }
.blog-card-date { font-size:0.75rem; color:#333333; margin-bottom:6px; }
.blog-card-title { font-size:1.05rem; font-weight:700; color:#333333; margin-bottom:8px; line-height:1.5; }
.blog-card-excerpt { font-size:0.85rem; color:#666; line-height:1.8; flex:1; }
.blog-card-link { margin-top:14px; font-size:0.85rem; color:#333333; font-weight:700; }
.blog-empty { text-align:left; color:#888; padding:60px 0; }

.blog-post { max-width:760px; margin:0 auto; }
.blog-post-date { font-size:0.8rem; color:#333333; margin-bottom:8px; }
.blog-post-title { font-size:1.8rem; font-weight:700; color:#333333; line-height:1.5; margin-bottom:20px; }
.blog-post-thumb { width:100%; border-radius: 0; margin-bottom:24px; }
.blog-post-body { font-size:0.98rem; color:#333; line-height:2.0; }
.blog-post-back { display:inline-block; margin-top:32px; font-size:0.88rem; color:#333333; font-weight:700; }

/* 管理画面：ブログ用のステータスバッジ */
.blog-status { display:inline-block; padding:2px 10px; border-radius: 0; font-size:0.72rem; font-weight:700; }
.blog-status.published { background:#e8f5e9; color:#333333; }
.blog-status.draft { background:#f0f0f0; color:#888; }

/* --- テンプレートセクション --- */
.template-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tpl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  color: #333333;
  border: 2px solid #1A1A1A;
  transition: background 0.25s, color 0.25s;
}

/* ダウンロードボタン（DLアイコン付き） */
.tpl-btn[download]::before {
  content: '⤓';
  font-size: 1.1em;
}

.tpl-btn:hover {
  background: #1A1A1A;
  color: #fff;
}

/* Canva：外部リンク（塗りボタン＋外部アイコン） */
.tpl-btn-canva {
  background: #1A1A1A;
  color: #fff;
}

.tpl-btn-canva::after {
  content: '↗';
  font-size: 0.95em;
}

.tpl-btn-canva:hover {
  background: #fff;
  color: #333333;
}

@media (max-width: 767px) {
  .tpl-btn {
    min-width: 0;
    flex: 1 1 40%;
  }
}

/* ============================================================
 * 商品ラインナップ（2026-07-13 Stage2: photo1配置＝縦積み・画像/コンテンツ横並び）
 * ============================================================ */
.products-grid {
  display: flex;
  flex-direction: column;
}

.product-card {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  border-bottom: 1px solid #E5E5E5;
  padding: 40px 0;
}

.product-card:first-child {
  padding-top: 0;
}

.product-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-card-img {
  width: 40%;
  flex-shrink: 0;
  height: 280px;
  object-fit: cover;
}

.product-card-body {
  padding: 0;
  flex: 1;
}

/* 商品カード内 dl（旧・基本仕様カードの内容を移設） */
.product-card-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  font-size: 0.85rem;
  margin: 4px 0 20px;
  max-width: 480px;
}

.product-card-spec dt {
  font-weight: 700;
  color: #555;
  padding: 8px 12px 8px 0;
  border-top: 1px solid #F0F0F0;
  white-space: nowrap;
}

.product-card-spec dd {
  color: #333333;
  padding: 8px 0;
  border-top: 1px solid #F0F0F0;
  text-align: left;
  line-height: 1.6;
}

.product-card-spec dt:first-of-type,
.product-card-spec dd:first-of-type {
  border-top: none;
}

@media (max-width: 767px) {
  .product-card {
    flex-direction: column;
  }
  .product-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .product-card-spec {
    max-width: none;
  }
}

/* ============================================================
 * かんたん注文の流れ（2026-07-13 Stage2: インラインstyleを撤去し移設）
 * ============================================================ */
.flow-section {
  background: #F0F0EC;
}

.flow-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.flow-step {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  padding: 24px 28px;
  text-align: left;
  min-width: 180px;
}

.flow-step-num {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  color: #333333;
}

.flow-step-title {
  font-weight: 700;
  color: #333333;
  margin-bottom: 4px;
}

.flow-step-desc {
  font-size: 0.82rem;
  color: #888;
}

.flow-step-arrow {
  font-size: 1.5rem;
  color: #ccc;
}

/* フロー右側のイメージカット（2026-07-16: 写真9） */
.flow-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

.flow-wrap .flow-steps {
  flex: 1;
}

.flow-image {
  width: 34%;
  flex-shrink: 0;
}

/* 2026-07-30 修正箇所10: 画像2枚（写真9＋写真102）の縦積みに対応 */
.flow-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.flow-image img + img {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .flow-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .flow-step-arrow {
    transform: rotate(90deg);
    align-self: flex-start;
    margin-left: 24px;
  }
  .flow-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .flow-image {
    width: 100%;
  }
}

/* ============================================================
 * 納品までの流れ 6ステップ縦リスト（2026-07-29 修正箇所09）
 * ============================================================ */
.flow-list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-top: none;
  padding: 18px 24px;
}

.flow-list-item:first-child {
  border-top: 1px solid #E5E5E5;
}

.flow-list-num {
  font-size: 1.6rem;
  line-height: 1.3;
  color: #333333;
  flex-shrink: 0;
}

.flow-list-body .flow-step-title {
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .flow-list-item {
    padding: 14px 16px;
  }
}

/* ============================================================
 * 追尾「注文する」ボタン（2026-07-29 修正箇所09・トップページのみ）
 *   お問い合わせボタンと同じアクセント色 #7F0019 の丸ボタン。
 *   スクロールしても画面右下に固定表示される。
 * ============================================================ */
/* 2026-07-30 修正箇所10: 直径3cm→5cm相当（96px→160px）に拡大 */
.floating-order-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #7F0019;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: background 0.25s, transform 0.25s;
}

.floating-order-btn:hover {
  background: #1A1A1A;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .floating-order-btn {
    width: 120px;
    height: 120px;
    font-size: 1.05rem;
    right: 16px;
    bottom: 16px;
  }
}

/* ============================================================
 * 前回の注文番号欄（2026-07-13 Stage2・2-1）
 * ============================================================ */
.repeat-order-field {
  grid-column: 1 / -1;
}

.repeat-order-field input[type="text"] {
  padding: 10px 12px;
  border: 1.5px solid #CCCCCC;
  border-radius: 0;
  font-size: 0.95rem;
  color: #333;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.repeat-order-field input[type="text"]:focus {
  outline: none;
  border-color: #1A1A1A;
}

.repeat-order-note {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #888;
}

/* ============================================================
 * 見積書の宛名欄（2026-08-24）
 * ============================================================ */
.quote-addressee-field {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #E5E5E5;
}

.quote-addressee-field input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #CCCCCC;
  border-radius: 0;
  /* 16px未満だと iOS Safari がフォーカス時に自動ズームするため 16px を維持 */
  font-size: 16px;
  color: #333;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.quote-addressee-field input[type="text"]:focus {
  outline: none;
  border-color: #1A1A1A;
}

.quote-addressee-note {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #888;
}

/* ============================================================
 * 見積書PDF発行ボタン（2026-07-13 Stage2・2-6）
 * ============================================================ */
#quote-pdf-btn {
  display: block;
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

#quote-pdf-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
 * よくある質問（FAQ・2026-07-13 Stage2・2-2）
 * ============================================================ */
.faq-list {
  max-width: 820px;
}

.faq-item {
  border: 1px solid #E5E5E5;
  border-radius: 0;
  margin-bottom: 12px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  color: #333333;
  font-size: 0.95rem;
  position: relative;
  padding-right: 40px;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 1.3rem;
  color: #7F0019;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::before {
  content: 'Q';
  display: inline-block;
  color: #7F0019;
  font-weight: 700;
  margin-right: 10px;
}

.faq-item-body {
  padding: 0 22px 20px 22px;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.9;
  border-top: 1px solid #F0F0F0;
  padding-top: 16px;
}

.faq-empty {
  text-align: left;
  color: #888;
  padding: 60px 0;
}

/* ============================================================
 * 安さのヒミツページ（2026-07-13 Stage2・2-8）
 * ============================================================ */
/* 2026-08-15 修正箇所11:
   ・詰まった印象を消すため、仕切り線・見出し・本文の間隔を全体的に広げる。
   ・max-width による折り返し固定をやめ、折り返し位置はデバイス幅に委ねる。
   ・セクション見出しまわりの余白は当ページ限定で上書きする（他ページに影響させない）。 */
.himitsu-section {
  padding: 96px 0 104px;
}

.himitsu-section .section-title {
  margin-bottom: 16px;
}

.himitsu-section .section-title-line {
  margin: 20px 0 0;
}

.himitsu-lead {
  font-size: 0.95rem;
  color: #555;
  line-height: 2.1;
  margin-top: 12px;
  margin-bottom: 72px;
}

.himitsu-item {
  border-top: 1px solid #E5E5E5;
  padding: 64px 0;
}

.himitsu-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.himitsu-item:last-of-type {
  padding-bottom: 24px;
}

.himitsu-item h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 28px;
}

.himitsu-item p {
  font-size: 0.92rem;
  color: #555;
  line-height: 2.1;
  margin-bottom: 32px;
}

.himitsu-item-num {
  display: inline-block;
  color: #7F0019;
  font-weight: 700;
  margin-right: 6px;
}

/* 「テンプレートを見る」下の写真3枚（2026-08-15 修正箇所11） */
.himitsu-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.himitsu-photos figure {
  margin: 0;
}

.himitsu-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 640px) {
  .himitsu-photos {
    gap: 12px;
  }
}

/* ============================================================
 * お支払い方法の選択（2026-08-15 修正箇所11・Stripe連携）
 * ============================================================ */
.pay-method-group {
  display: grid;
  gap: 12px;
}

.pay-method-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #E0E0E0;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pay-method-option:hover {
  border-color: #B8B8B8;
}

.pay-method-option:has(input:checked) {
  border-color: #7F0019;
  background: #FDF7F8;
}

.pay-method-option input[type="radio"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #7F0019;
  flex: 0 0 auto;
}

.pay-method-body {
  display: block;
}

.pay-method-body strong {
  display: block;
  font-size: 0.95rem;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.pay-method-body small {
  display: block;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.8;
}

/* ページ最上部の全面ビジュアル（2026-07-16: 写真7） */
.himitsu-hero {
  width: 100%;
  height: clamp(240px, 38vw, 420px);
  overflow: hidden;
}

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