/* =========================================
                                                                                                           Made-in-japan.jp Brand LP 基本スタイル
                                                                                                           配色：白ベース＋赤＆金アクセント
                                                                      ========================================= */

.feature-lp {
  background: #ffffff;
  color: #131622;
  font-size: 16px;
  line-height: 1.7;
}

/* コンテナ共通 */
.feature-lp .fp-article {
  padding-bottom: 80px;
}

.feature-lp .fp-section,
.feature-lp .fp-hero {
  padding: 64px 0;
}

.feature-lp .fp-section-inner,
.feature-lp .fp-hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* セクション背景のリズム（白＋ごく薄い生成り） */
/* .feature-lp .fp-section:nth-of-type(odd) {
  background: #ffffff;
}

.feature-lp .fp-section:nth-of-type(even) {
  background: #fff7f0;
} */

/* -----------------------------------------
                    HERO
----------------------------------------- */

.feature-lp .fp-hero {
  background: radial-gradient(circle at top left, #ffffffff 0, #ffffff 55%, #ffffff 100%);
  padding-bottom: 72px;
}

.feature-lp .fp-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 900px) {
  .feature-lp .fp-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
}

.feature-lp .fp-hero-text {
  flex: 1 1 0;
}

.feature-lp .fp-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(199, 43, 43, 0.07);
  color: #7a3a3a;
}

.feature-lp .fp-hero-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.feature-lp .fp-hero-lead {
  margin: 0 0 18px;
  font-size: 15px;
  color: #5b6070;
}

.feature-lp .fp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #6a6f80;
}

.feature-lp .fp-hero-location,
.feature-lp .fp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-lp .fp-hero-location::before,
.feature-lp .fp-hero-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c89a2b;
  /* 金のドット */
}

/* ボタン共通 */
.feature-lp .fp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-lp .fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-out;
  cursor: pointer;
  white-space: nowrap;
}

.feature-lp .fp-btn--primary {
  background: #C1272D;
  /* 赤ボタン */
  border-color: #C1272D;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(199, 43, 43, 0.35);
}

.feature-lp .fp-btn--primary:hover {
  background: #a02020;
  border-color: #a02020;
  box-shadow: 0 10px 26px rgba(199, 43, 43, 0.45);
  transform: translateY(-1px);
}

.feature-lp .fp-btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgb(110 110 110 / 50%);
  /* 金寄りの枠 */
  color: #43372a;
}

.feature-lp .fp-btn--ghost:hover {
  background: #ffffff;
  border-color: #c89a2b;
  color: #c72b2b;
}

.feature-lp .fp-hero-visual {
  flex: 1 1 0;
  position: relative;
}

.feature-lp .fp-hero-thumb {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.7);
}

.feature-lp .fp-hero-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-lp .fp-hero-placeholder {
  border-radius: 24px;
  padding: 40px 24px;
  background: linear-gradient(135deg, #ffffffff, #ffffffff);
  color: #4a3c2a;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* -----------------------------------------
    セクション共通
----------------------------------------- */

.feature-lp .fp-section-header {
  margin-bottom: 28px;
}

.feature-lp .fp-section-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #131622;
}

.feature-lp .fp-section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: #C1272D;
  /* セクションラベルは赤 */
  color: #ffffff;
}

.feature-lp .fp-section-lead {
  margin: 0;
  font-size: 14px;
  color: #636880;
}

.feature-lp .fp-subtitle {
  margin: 20px 0 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3a3126;
}

/* -----------------------------------------
  PROFILE
----------------------------------------- */

.feature-lp .fp-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr);
  gap: 32px;
}

@media (min-width: 900px) {
  .feature-lp .fp-profile-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 40px;
  }
}

.feature-lp .fp-profile-main p {
  font-size: 14px;
  color: #4e4a44;
}

.feature-lp .fp-profile-aside {
  padding: 20px 20px 22px;
  border-radius: 18px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgb(231 231 231 / 90%);
}

.feature-lp .fp-info-list {
  margin: 0;
  padding: 0;
}

.feature-lp .fp-info-list div {
  padding: 8px 0;
  border-bottom: 1px dashed rgb(186 186 186 / 85%);
}

.feature-lp .fp-info-list div:last-child {
  border-bottom: none;
}

.feature-lp .fp-info-list dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a08c66;
  margin-bottom: 2px;
}

.feature-lp .fp-info-list dd {
  margin: 0;
  font-size: 14px;
  color: #2f2921;
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* -----------------------------------------
PRODUCTS  （差し替え版）
----------------------------------------- */

/* 基本グリッド（通常表示） */
.feature-lp .fp-product-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 840px) {
  .feature-lp .fp-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.feature-lp .fp-product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(238, 221, 195, 0.9);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.feature-lp .fp-product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(226, 203, 165, 1);
}

/* 画像ブロック：通常サムネ */
.feature-lp .fp-product-media {
  position: relative;
  background: #f8efe3;
}

/* 通常は比率ボックス（例：62% ≒ 16:10） */
.feature-lp .fp-product-media:not(.fp-afi) {
  padding-top: 62%;
}

/* 通常サムネの画像は全面フィット */
.feature-lp .fp-product-media:not(.fp-afi)>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* アフィリエイトHTML（楽天ピクト等）— 400x400固定を崩して可変化 */
.feature-lp .fp-afi a {
  display: block;
  width: 100%;
  line-height: 0;
}

.feature-lp .fp-afi img {
  display: block;
  width: 100% !important;
  /* 固定幅を上書き */
  max-width: 100% !important;
  height: auto !important;
  /* 縦横比は維持 */
  border: 0 !important;
  margin: 0 !important;
  /* ピクトの margin:2px を抑止 */
  vertical-align: middle;
}

/* 本文 */
.feature-lp .fp-product-body {
  padding: 16px 18px 18px;
}

.feature-lp .fp-product-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.feature-lp .fp-product-desc {
  margin: 0 0 8px;
  font-size: 13px;
  color: #5a5550;
}

.feature-lp .fp-product-point {
  margin: 0 0 10px;
  font-size: 13px;
  color: #3f342e;
}

.feature-lp .fp-product-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #6f6455;
}

.feature-lp .fp-product-meta li+li {
  margin-top: 2px;
}

/* 安全性・お手入れボックス（薄い金系グラデーション） */
.feature-lp .fp-product-notes {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff9ef, #fffdf7);
  border: 1px solid rgba(236, 214, 177, 0.9);
}

@media (min-width: 768px) {
  .feature-lp .fp-product-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.feature-lp .fp-product-notes p {
  margin: 0;
  font-size: 13px;
  color: #4f453a;
}

/* -----------------------------------------
300×300 正方形を横1行で並べるモード
（テンプレ側で .is-row-300 / .is-300 を付与）
----------------------------------------- */

/* 横スクロール1行（スクロールスナップ） */
.feature-lp .fp-product-grid.is-row-300 {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  /* 各カード幅 */
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.feature-lp .fp-product-grid.is-row-300::-webkit-scrollbar {
  height: 8px;
}

.feature-lp .fp-product-grid.is-row-300::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .18);
  border-radius: 6px;
}

/* カードは300x300の正方形 */
.feature-lp .fp-product-card.is-300 {
  width: 300px;
  min-width: 300px;
  height: 300px;
  /* 高さも固定 */
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

/* 正方形メディア：比率ボックス無効 → aspect-ratioで制御 */
.feature-lp .fp-product-card.is-300 .fp-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  /* 正方形 */
  background: #f8efe3;
  padding-top: 0 !important;
  /* 既存の比率ボックスを無効化 */
}

/* 通常サムネ（非アフィ）は全面トリミング */
.feature-lp .fp-product-card.is-300 .fp-product-media:not(.fp-afi)>img {
  position: static !important;
  inset: auto !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 余白なくフィット（切り抜き） */
  display: block;
}

/* アフィリエイトHTML（楽天ピクト等）も全面フィット */
.feature-lp .fp-product-card.is-300 .fp-product-media.fp-afi a {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-lp .fp-product-card.is-300 .fp-product-media.fp-afi img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
  /* 余白なくフィット（切り抜き） */
  border: 0 !important;
  margin: 0 !important;
  display: block;
}

/* 一行モードは画像のみ（キャプション非表示） */
.feature-lp .fp-product-card.is-300 .fp-product-body {
  display: none;
}

/* -----------------------------------------
SCENES & VOICE
----------------------------------------- */

.feature-lp .fp-usage-grid {
  display: grid;
  gap: 26px;
}

@media (min-width: 900px) {
  .feature-lp .fp-usage-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 32px;
  }
}

.feature-lp .fp-usage-about p {
  font-size: 14px;
  color: #4b4742;
}

.feature-lp .fp-voice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-lp .fp-voice-item {
  position: relative;
  padding: 12px 14px 12px 40px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: #4a4138;
}

.feature-lp .fp-voice-item::before {
  content: "“";
  position: absolute;
  left: 14px;
  top: 8px;
  font-size: 26px;
  color: #e2cda2;
}

/* -----------------------------------------
MAKER
----------------------------------------- */

.feature-lp .fp-maker-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .feature-lp .fp-maker-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: center;
    gap: 40px;
  }
}

.feature-lp .fp-maker-photo-placeholder {
  border-radius: 20px;
  padding: 32px 20px;
  background: linear-gradient(135deg, #fff2de, #fffaf3);
  color: #4f4131;
  font-size: 14px;
  text-align: center;
}

.feature-lp .fp-maker-name {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.feature-lp .fp-maker-role {
  font-size: 12px;
  color: #8f7b61;
}

.feature-lp .fp-maker-profile {
  font-size: 14px;
  color: #4b463f;
}

/* -----------------------------------------
JOBS
----------------------------------------- */

.feature-lp .fp-jobs-body {
  padding: 20px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(235, 215, 183, 0.9);
  font-size: 14px;
  color: #46413a;
}

.feature-lp .fp-jobs-note {
  margin-top: 12px;
  font-size: 12px;
  color: #9a8d78;
}

/* -----------------------------------------
LINKS / SNS / MEDIA
----------------------------------------- */

.feature-lp .fp-links-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 880px) {
  .feature-lp .fp-links-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  }
}

.feature-lp .fp-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-lp .fp-link-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgb(0 0 0 / 13%);
  text-decoration: none;
  transition: all 0.15s ease-out;
  width: 100%;
  box-sizing: border-box;
}

.feature-lp .fp-link-btn:hover {
  border-color: #4e3700ff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.feature-lp .fp-link-label {
  font-size: 13px;
  font-weight: 600;
  color: #2f2820;
}

.feature-lp .fp-link-url {
  font-size: 12px;
  color: #7a6b55;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.feature-lp .fp-links-aside {
  padding: 16px 18px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.13);
}

.feature-lp .fp-media-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 13px;
  color: #4c3f30;
}

.feature-lp .fp-media-list li+li {
  margin-top: 6px;
}

/* -----------------------------------------
GALLERY
----------------------------------------- */

.feature-lp .fp-gallery-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 880px) {
  .feature-lp .fp-gallery-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }
}

.feature-lp .fp-photo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.feature-lp .fp-photo-item {
  border-radius: 14px;
  padding: 20px 10px;
  background: #f7ebdd;
  font-size: 12px;
  color: #6a5945;
  text-align: center;
}

.feature-lp .fp-video-area {
  padding: 14px 16px 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.07),
    0 0 0 1px rgba(235, 215, 183, 0.9);
}

.feature-lp .fp-video-embed {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  min-height: 180px;
}

.feature-lp .fp-video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* -----------------------------------------
EC / FUTURE
----------------------------------------- */

.feature-lp .fp-ec-body {
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff9f0, #fffdf7);
  border: 1px solid rgba(236, 214, 177, 0.9);
  font-size: 14px;
  color: #474036;
}

/* -----------------------------------------
MESSAGE
----------------------------------------- */

.feature-lp .fp-message-body {
  padding: 18px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.07),
    0 0 0 1px rgba(237, 220, 189, 0.95);
  font-size: 14px;
  color: #453e32;
}

.feature-lp .fp-message-note {
  margin-top: 10px;
  font-size: 12px;
  color: #9a8a6f;
}

/* -----------------------------------------
EXTRA
----------------------------------------- */

.feature-lp .fp-extra {
  padding-top: 40px;
}

.feature-lp .fp-extra .fp-section-inner {
  max-width: 840px;
}

/* -----------------------------------------
レスポンシブ微調整
----------------------------------------- */

@media (max-width: 599px) {

  .feature-lp .fp-section,
  .feature-lp .fp-hero {
    padding: 10px 0 0;
  }

  .feature-lp .fp-hero-title {
    font-size: 24px;
  }

  .feature-lp .fp-profile-aside,
  .feature-lp .fp-jobs-body,
  .feature-lp .fp-links-aside,
  .feature-lp .fp-message-body,
  .feature-lp .fp-ec-body {
    border-radius: 14px;
  }

  .feature-lp .fp-product-card {
    border-radius: 16px;
  }

  .feature-lp .fp-article section {
    margin-bottom: 4em;
  }
}

/* =========================================
   Brand LP v2
   ========================================= */

.mij-brandv2 {
  background-color: #fff;
  padding: 40px 16px 80px;
}

.mij-brandv2__inner {
  max-width: 1120px;
  margin: 0 auto;
  color: #111;
  font-size: 15px;
  line-height: 1.9;
}

.mij-brandv2__breadcrumb {
  margin-bottom: 16px;
  font-size: 12px;
}

/* ========== HERO ========== */

.mij-brandv2__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.5fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
  border-radius: 20px;
}

.mij-brandv2__hero-media {
  position: relative;
}

.mij-brandv2__hero-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background-color: #f5f2e9;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.mij-brandv2__hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mij-brandv2__hero-figure--placeholder {
  min-height: 220px;
}

/* small floating label on image */
.mij-brandv2__hero-media::after {
  content: "Made in JAPAN";
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 154, 60, 0.55);
  color: #7a4b00;
}

.mij-brandv2__hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mij-brandv2__hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 4px;
}

.mij-brandv2__hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid #c4001a;
  color: #c4001a;
  background-color: #fff8f8;
}

.mij-brandv2__hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mij-brandv2__title {
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin: 0;
}

.mij-brandv2__ruby {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #777;
}

.mij-brandv2__tagline {
  margin: 4px 0 2px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.mij-brandv2__lead {
  margin: 4px 0 6px;
  font-size: 14px;
  color: #444;
}

.mij-brandv2__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px 18px;
  margin-top: 10px;
  font-size: 12px;
}

.mij-brandv2__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mij-brandv2__meta-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
}

.mij-brandv2__meta-value {
  font-weight: 500;
}

/* 主ボタンエリア */
.mij-brandv2__primary-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mij-brandv2__primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #e4dbc5;
  font-size: 13px;
  text-decoration: none;
  color: #444;
  background-color: #ffffff;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease,
    box-shadow 0.15s ease;
}

.mij-brandv2__primary-link--accent {
  border-color: #c89a3c;
  color: #7a4b00;
  background-color: #fffdf5;
}

.mij-brandv2__primary-link:hover {
  border-color: #c89a3c;
  background-color: #fffaf0;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

/* ========== レイアウト（2カラム） ========== */

.mij-brandv2__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.95fr);
  gap: 32px;
}

.mij-brandv2__main {
  min-width: 0;
}

.mij-brandv2__aside {
  min-width: 0;
}

/* スマホでは1カラム */
@media (max-width: 960px) {
  .mij-brandv2__hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 18px 16px 20px;
  }

  .mij-brandv2__hero-media::after {
    bottom: 10px;
    left: 10px;
  }

  .mij-brandv2__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .mij-brandv2 {
    padding: 32px 12px 64px;
  }

  .mij-brandv2__title {
    font-size: 22px;
  }
}

/* ========== セクション共通 ========== */

.mij-brandv2__section {
  margin-bottom: 52px;
}

.mij-brandv2__section-header {
  margin-bottom: 18px;
}

.mij-brandv2__section-title {
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.mij-brandv2__section-title span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #c89a3c;
  text-transform: uppercase;
  margin-right: 8px;
}

/* ========== STORY & HIGHLIGHTS ========== */

.mij-brandv2__story p {
  margin: 0 0 10px;
}

.mij-brandv2__highlights {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

@media (min-width: 960px) {
  .mij-brandv2__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mij-brandv2__highlight {
  padding: 16px 16px 18px;
  border-radius: 14px;
  border: 1px solid #eee2c8;
}

.mij-brandv2__highlight-title {
  margin: 0 0 6px;
  font-size: 15px;
}

.mij-brandv2__highlight-text {
  margin: 0;
  font-size: 13px;
  color: #444;
}

/* ========== PRODUCTS ========== */

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

@media (min-width: 960px) {
  .mij-brandv2__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mij-brandv2__product {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #eee2c8;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.mij-brandv2__product-thumb {
  display: block;
  overflow: hidden;
}

.mij-brandv2__product-thumb img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.mij-brandv2__product:hover .mij-brandv2__product-thumb img {
  transform: scale(1.04);
}

.mij-brandv2__product-body {
  padding: 14px 16px 16px;
}

.mij-brandv2__product-title {
  margin: 0 0 6px;
  font-size: 15px;
}

.mij-brandv2__product-text {
  margin: 0 0 10px;
  font-size: 13px;
  color: #555;
}

.mij-brandv2__product-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  color: #7a4b00;
  border: 1px solid #c89a3c;
  background-color: #fffdf6;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.mij-brandv2__product-link::after {
  content: "›";
  font-size: 12px;
}

.mij-brandv2__product-link:hover {
  background-color: #f8efd8;
  border-color: #b37f15;
  transform: translateY(-1px);
}

/* ========== MEDIA ========== */

.mij-brandv2__media-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 13px;
}

.mij-brandv2__media-item {
  padding: 8px 0;
  border-bottom: 1px dashed #eee2c8;
}

/* ========== GALLERY ========== */

.mij-brandv2__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.mij-brandv2__gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background-color: #f6f2e8;
}

.mij-brandv2__gallery-item img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* ========== VIDEO ========== */

.mij-brandv2__video iframe,
.mij-brandv2__video video {
  max-width: 100%;
  border-radius: 16px;
}

/* ========== ASIDE ========== */

.mij-brandv2__aside-card {
  border-radius: 16px;
  border: 1px solid #eee2c8;
  padding: 16px 16px 18px;
  margin-bottom: 18px;
}

.mij-brandv2__aside-card--links {
  background-color: #ffffff;
}

.mij-brandv2__aside-title {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a4b00;
}

.mij-brandv2__aside-list {
  margin: 0;
  padding: 0;
}

.mij-brandv2__aside-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 4px 10px;
  padding: 6px 0;
  border-bottom: 1px dashed #eee2c8;
  font-size: 13px;
}

.mij-brandv2__aside-row:last-child {
  border-bottom: none;
}

.mij-brandv2__aside-row dt {
  color: #777;
}

.mij-brandv2__aside-row dd {
  margin: 0;
}

/* リンク一覧 */

.mij-brandv2__links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.mij-brandv2__links li+li {
  margin-top: 8px;
}

.mij-brandv2__links a {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid #eee2c8;
  text-decoration: none;
  color: #333;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.1s ease;
}

.mij-brandv2__links a span {
  display: block;
  font-weight: 500;
}

.mij-brandv2__links a small {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 2px;
  word-break: break-all;
}

.mij-brandv2__links a:hover {
  border-color: #c89a3c;
  background-color: #fffaf0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* ===========================
   Brand LP v2 – airy layout
   （brand-lp.css の最後に追加）
   =========================== */

.mij-brandv2 {
  padding: 56px 16px 96px;
  /* 上下を少し広げる */
}

.mij-brandv2__inner {
  max-width: 1040px;
  /* ほんの少し細くして読みやすく */
  font-size: 14px;
  /* 文字サイズを少しだけ下げて圧迫感を軽減 */
  line-height: 1.9;
}

/* HERO 周りをゆったり */

.mij-brandv2__hero {
  margin-top: 8px;
  margin-bottom: 56px;
  padding: 32px 0 36px;
  border-radius: 24px;
  gap: 40px;
}

.mij-brandv2__hero-figure {
  border-radius: 22px;
}

.mij-brandv2__title {
  font-size: 27px;
  line-height: 1.5;
}

.mij-brandv2__lead {
  margin-top: 8px;
  margin-bottom: 10px;
}

.mij-brandv2__meta {
  margin-top: 16px;
  row-gap: 12px;
}

.mij-brandv2__primary-links {
  margin-top: 18px;
  gap: 10px;
}

/* 2カラム本体のゆとり */

.mij-brandv2__layout {
  gap: 40px;
}

/* セクションを一段ゆったり */

.mij-brandv2__section {
  margin-bottom: 64px;
}

.mij-brandv2__section-header {
  margin-bottom: 22px;
}

.mij-brandv2__section-title {
  font-size: 19px;
}

.mij-brandv2__story {
  max-width: 720px;
  /* 本文幅を少し絞ると今風で読みやすい */
}

/* ハイライトを大きめカード＆余白多めに */

.mij-brandv2__highlights {
  gap: 24px;
}

.mij-brandv2__highlight {
  padding: 18px 20px 20px;
  border-radius: 18px;
}

/* PRODUCTS のカードもゆったり */

.mij-brandv2__products {
  gap: 26px;
}

.mij-brandv2__product {
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.mij-brandv2__product-body {
  padding: 18px 18px 20px;
}

/* サイドバー：カード感より “情報ボード” っぽく */

.mij-brandv2__aside-card {
  padding: 18px 18px 20px;
  border-radius: 18px;
}

.mij-brandv2__aside-row {
  padding: 8px 0;
}

/* 下がり幅を少し広げて“詰まってる感”を減らす */

.mij-brandv2__links li+li {
  margin-top: 10px;
}

/* スマホ時も少しだけ余白を足す */

@media (max-width: 960px) {
  .mij-brandv2 {
    padding: 40px 12px 80px;
  }

  .mij-brandv2__hero {
    padding: 22px 18px 26px;
    gap: 24px;
  }

  .mij-brandv2__section {
    margin-bottom: 52px;
  }
}

/* ==============================
   Brand LP v2 – category chips
   ============================== */

.mij-brandv2__hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* 直下に出てくるリンク・span を全部チップ化 */
.mij-brandv2__hero-chips a,
.mij-brandv2__hero-chips span,
.mij-brandv2__hero-chips li,
.mij-brandv2__hero-chips button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid #e4b3b7;
  /* 赤寄りの淡いライン */
  background-color: #fffafa;
  /* ほのかに赤みのある背景 */
  color: #b5444b;
  /* 落ち着いた赤 */
  font-size: 11px;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

/* hover 時ちょっとだけ濃く */
.mij-brandv2__hero-chips a:hover,
.mij-brandv2__hero-chips button:hover {
  border-color: #d86a74;
  background-color: #ffecee;
  color: #a43740;
}

/* スマホでは少し余白広めに */
@media (max-width: 960px) {
  .mij-brandv2__hero-chips {
    margin-top: 4px;
    gap: 6px 8px;
  }
}

/* =========================================
   Brand LP v3 – roomy, simple layout
   ========================================= */

.mij-brandv3 {
  background-color: #ffffff;
  padding: 72px 20px 96px;
}

.mij-brandv3__inner {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2.0;
  color: #222;
}

.mij-brandv3__breadcrumb {
  margin-bottom: 32px;
  font-size: 12px;
}

/* ========== HERO ========== */

.mij-brandv3__hero {
  margin-bottom: 80px;
}

.mij-brandv3__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.mij-brandv3__hero-text {
  max-width: 520px;
}

.mij-brandv3__hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.mij-brandv3__hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid #d94b4b;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #d94b4b;
  background-color: #fff7f7;
}

/* v2 と同じノリのチップでOK */
.mij-brandv3__hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mij-brandv3__hero-chips a,
.mij-brandv3__hero-chips span,
.mij-brandv3__hero-chips li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid #e7d4c0;
  background-color: #fffbf7;
  font-size: 11px;
  color: #8b5b2b;
  text-decoration: none;
}

.mij-brandv3__title {
  margin: 4px 0 4px;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.mij-brandv3__ruby {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #888;
}

.mij-brandv3__tagline {
  margin: 6px 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.mij-brandv3__lead {
  margin: 6px 0 10px;
  font-size: 14px;
  color: #444;
}

.mij-brandv3__meta {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 10px;
  font-size: 12px;
}

.mij-brandv3__meta-label {
  display: block;
  margin-bottom: 1px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
}

.mij-brandv3__meta-value {
  font-weight: 500;
}

/* メインボタン */

.mij-brandv3__primary-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mij-brandv3__primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #e0d2be;
  background-color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  color: #444;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease,
    box-shadow 0.2s ease;
}

.mij-brandv3__primary-link--accent {
  border-color: #c89a3c;
  background-color: #fffdf5;
  color: #7a4b00;
}

.mij-brandv3__primary-link:hover {
  border-color: #c89a3c;
  background-color: #fff7e8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* HERO 画像 */

.mij-brandv3__hero-media {
  justify-self: end;
}

.mij-brandv3__hero-figure {
  margin: 0;
  max-width: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f5f2ec;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.mij-brandv3__hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* スマホ */

@media (max-width: 960px) {
  .mij-brandv3 {
    padding: 48px 14px 72px;
  }

  .mij-brandv3__hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .mij-brandv3__hero-media {
    justify-self: stretch;
  }

  .mij-brandv3__hero-figure {
    max-width: none;
    border-radius: 18px;
  }

  .mij-brandv3__title {
    font-size: 24px;
  }
}

/* ========== 共通セクション ========== */

.mij-brandv3__section {
  margin-bottom: 80px;
}

.mij-brandv3__section-header {
  margin-bottom: 28px;
}

.mij-brandv3__section-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.mij-brandv3__section-title span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #c89a3c;
  text-transform: uppercase;
  margin-right: 10px;
}

/* 本文は幅を絞ってゆったり */

.mij-brandv3__story {
  max-width: 720px;
}

.mij-brandv3__story p {
  margin: 0 0 14px;
}

/* ========== HIGHLIGHTS ========== */

.mij-brandv3__highlights {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 880px;
}

@media (min-width: 960px) {
  .mij-brandv3__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mij-brandv3__highlight {
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid #eee2c8;
}

.mij-brandv3__highlight-title {
  margin: 0 0 6px;
  font-size: 15px;
}

.mij-brandv3__highlight-text {
  margin: 0;
  font-size: 13px;
  color: #444;
}

/* ========== PRODUCTS ========== */

.mij-brandv3__products {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  max-width: 920px;
}

@media (min-width: 960px) {
  .mij-brandv3__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mij-brandv3__product {
  border-radius: 22px;
  border: 1px solid #eee2c8;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.mij-brandv3__product-thumb img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.mij-brandv3__product-body {
  padding: 18px 20px 20px;
}

.mij-brandv3__product-title {
  margin: 0 0 6px;
  font-size: 15px;
}

.mij-brandv3__product-text {
  margin: 0 0 10px;
  font-size: 13px;
  color: #555;
}

.mij-brandv3__product-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #c89a3c;
  background-color: #fffdf5;
  font-size: 12px;
  text-decoration: none;
  color: #7a4b00;
}

.mij-brandv3__product-link::after {
  content: "›";
  margin-left: 4px;
}

/* ========== INFO ========== */

.mij-brandv3__info {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  max-width: 880px;
}

@media (max-width: 960px) {
  .mij-brandv3__info {
    grid-template-columns: minmax(0, 1fr);
  }
}

.mij-brandv3__info-list {
  margin: 0;
  padding: 24px 24px 22px;
  border-radius: 20px;
  border: 1px solid #eee2c8;
}

.mij-brandv3__info-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 4px 16px;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px dashed #e7dcc5;
}

.mij-brandv3__info-row:last-child {
  border-bottom: none;
}

.mij-brandv3__info-row dt {
  color: #777;
}

.mij-brandv3__info-row dd {
  margin: 0;
}

.mij-brandv3__info-links {
  padding: 24px 24px 22px;
  border-radius: 20px;
  border: 1px solid #eee2c8;
  background-color: #ffffff;
}

.mij-brandv3__links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.mij-brandv3__links li+li {
  margin-top: 10px;
}

.mij-brandv3__links a {
  text-decoration: none;
  color: #333;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.mij-brandv3__links a:hover {
  border-color: #c89a3c;
}

/* ========== GALLERY ========== */

.mij-brandv3__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  max-width: 920px;
}

.mij-brandv3__gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background-color: #f5f2ec;
}

.mij-brandv3__gallery-item img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* ========== VIDEO ========== */

.mij-brandv3__video iframe,
.mij-brandv3__video video {
  max-width: 100%;
  border-radius: 20px;
}