@charset "utf-8";

/* =========================================================
   MONARTE style.css (Clean Final)
   - White base
   - Soft gradients for section separation
   - Stable layout / components
   ========================================================= */

/* =========================
   Tokens
========================= */
:root {
  /* Layout */
  --max: 1120px;
  --radius: 22px;
  --radius2: 16px;

  /* Colors */
  --bg: #ffffff;
  --panel: #ffffff;
  --panel2: #f7f8fa;

  --text: #0f172a;
  /* deep navy */
  --muted: #475569;
  /* slate */
  --line: rgba(15, 23, 42, .10);

  /* Accent */
  --accent: #c9a14a;
  /* gold */
  --accent2: #0b5cff;
  /* blue */
  --ok: #16a34a;

  /* Shadows */
  --shadow: 0 18px 60px rgba(15, 23, 42, .10);
  --shadow2: 0 10px 24px rgba(15, 23, 42, .08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

p {
  font-weight: 500;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* =========================
   Header
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(16px);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid var(--line);
  transition: .18s ease;
}

header.is-scrolled {
  background: rgba(255, 255, 255, .92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

nav {
  margin-left: 0;
  margin-right: 0;
}


/* header.is-scrolled .nav {
  padding: 14px 0;
} */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.brand img {
  height: 60px;
  width: auto;
  display: block;
}

.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand .name b {
  font-size: 13px;
  letter-spacing: .08em;
}

.brand .name span {
  font-size: 11px;
  color: rgba(15, 23, 42, .55);
  letter-spacing: .06em;
}

/*==================*/
/* drawer 下部のタジマロゴだけ横幅100% */
.drawerInner .brand:last-child {
  width: 100%;
  justify-content: center;
}

.drawerInner .brand:last-child img {
  width: 100%;
  height: auto;
  max-width: none;
}

/*==================*/

/*======= tajima logo =========*/

.brand-tajima-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.brand-tajima-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.brand-tajima-logo .name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-tajima-logo .name b {
  font-size: 13px;
  letter-spacing: .08em;
}

.brand-tajima-logo .name span {
  font-size: 11px;
  color: rgba(15, 23, 42, .55);
  letter-spacing: .06em;
}

/*============================*/


nav ul {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: rgba(15, 23, 42, .78);
  padding: 10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}

nav a:hover {
  background: rgba(15, 23, 42, .04);
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* =========================
   Buttons
========================= */
.btn {
  border: 1px solid rgba(15, 23, 42, .18);
  background: #fff;
  color: rgba(15, 23, 42, .92);
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: .18s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.btn.primary {
  background: #0f172a;
  color: #fff;
  border: 1px solid rgba(15, 23, 42, .18);
}

.btn.primary:hover {
  background: #020617;
}

.btn.ghost {
  border: 1px solid rgba(11, 92, 255, .22);
  background: rgba(11, 92, 255, .06);
  color: rgba(15, 23, 42, .92);
}

/* =========================
   Section base
========================= */
section {
  padding: 58px 0;
}

/* 共通：薄いトーン背景（他のセクション用） */
.tone {
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 28%, #f7f8fa 100%);
  border-top: 1px solid rgba(15, 23, 42, .06);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

/* =========================
   Hero (single column)
========================= */
.hero {
  padding: 30px 0 22px;
  background: #fff;
}

.heroSingle {
  margin: 0 auto;
  max-width: 960px;
  /* 1カラムで読みやすく */
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .03);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: rgba(15, 23, 42, .72);
  letter-spacing: .05em;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent2) 35%, rgba(11, 92, 255, .08) 82%);
  box-shadow: 0 0 18px rgba(11, 92, 255, .18);
}

h1 {
  margin: 18px 0 14px;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--text);
}

@media(max-width:520px) {
  h1 {
    font-size: 34px;
  }
}

/* Gold text: fallback + supported gradient */
.gold {
  color: var(--accent);
  font-weight: 900;
}

@supports (-webkit-background-clip:text) or (background-clip:text) {
  .gold {
    background: linear-gradient(90deg, #e6c27a 0%, var(--accent) 40%, #d88a3a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.subttl {
  display: block;
  font-size: 14px;
  margin-top: 10px;
  color: rgba(15, 23, 42, .62);
  letter-spacing: .08em;
}

.lead {
  color: rgba(15, 23, 42, .82);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.9;
  margin: 22px 0 0;
}

.pcOnly {
  display: inline;
}

@media(max-width:768px) {
  .pcOnly {
    display: none;
  }
}

/* 「次のセクションが少し見える」ための調整 */
.hero--single {
  padding-top: clamp(24px, 5vw, 92px);
  padding-bottom: clamp(12px, 2vw, 26px);
}

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

/* section */
.hero--slider {
  padding: 28px 0 18px;
  background: #fff;
}

/* レイアウト（今回は画像メインなので1カラム想定） */
.heroSliderLayout {
  width: 100%;
}

/* =========================
   Slider wrapper
========================= */
.heroMedia {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

/* PC：16:9 */
.heroSlides {
  position: relative;
  aspect-ratio: 16 / 9;
}

/* SP：4:3 */
@media(max-width:768px) {
  .heroSlides {
    aspect-ratio: 4 / 3;
  }
}

/* =========================
   Slides
========================= */
.heroSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity .6s ease,
    transform .9s ease;
}

.heroSlide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

/* ★ グラデーション完全OFF */
.heroMedia::after {
  content: none;
}

/* =========================
   Navigation arrows（Light UI）
========================= */
.heroNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .22);
  background: rgba(255, 255, 255, .94);
  color: rgba(15, 23, 42, .90);
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
  transition: .2s ease;
}

.heroNav:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, .35);
  transform: translateY(-50%) scale(1.05);
}

.heroNav--prev {
  left: 12px;
}

.heroNav--next {
  right: 12px;
}

/* mobile */
@media(max-width:520px) {
  .heroNav {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}

/* =========================
   Dots（Light UI）
========================= */
.heroDots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.heroDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .26);
  background: rgba(255, 255, 255, .85);
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .15);
}

.heroDot.is-active {
  background: rgba(15, 23, 42, .90);
  border-color: rgba(15, 23, 42, .90);
  transform: scale(1.12);
}

/* ブランドカラーを使いたい場合（任意） */
/*
.heroDot.is-active{
  background: var(--accent2);
  border-color: var(--accent2);
}
*/

/* =========================
   Headings / Layout blocks
========================= */
.sectionHead {
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  text-align: center;
}

.sectionHead h2 {
  margin: 0;
  color: #162c56;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.sectionHead h3 {
  margin: 0;
  text-align: left;
  color: #162c56;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.sectionHead p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
}

@media(max-width:980px) {
  .sectionHead {
    flex-direction: column;
    align-items: flex-start;
  }

  .sectionHead h2 {
    font-size: 24px;
  }

  .sectionHead h3 {
    font-size: 20px;
  }
}

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

@media(max-width:980px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Card / Media / List
========================= */
.card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow2);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: rgba(15, 23, 42, .78);
  line-height: 1.9;
  font-size: 14px;
}

.media {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
}

.media img {
  width: 100%;
  height: auto;
  display: block;
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(15, 23, 42, .82);
  line-height: 1.75;
  font-size: 14px;
}

.check {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(22, 163, 74, .10);
  border: 1px solid rgba(22, 163, 74, .26);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.check svg {
  width: 12px;
  height: 12px;
}

/* =========================
   Floating section (separate tone)
========================= */
#floating {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 22%, #f7f8fa 100%);
  border-top: 1px solid rgba(15, 23, 42, .06);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  padding-top: 64px;
  padding-bottom: 72px;
}

@media(max-width:768px) {
  #floating {
    padding-top: 52px;
    padding-bottom: 60px;
  }
}

/* strip: 3枚目を100%表示したい要件に合わせ、1カラムに固定 */
.specStrip {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.specStripL {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--shadow2);
}

.specStripL img {
  width: 90%;
  height: auto;
  margin: auto;
  display: block;
  padding: 40px 10px;
}

/* small heading */
.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.h2like {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.01em;
}

/* specs */
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

@media(max-width:980px) {
  .specs {
    grid-template-columns: 1fr;
  }
}

.spec {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  box-shadow: var(--shadow2);
}

.spec small {
  color: rgba(15, 23, 42, .60);
  display: block;
  letter-spacing: .06em;
}

.spec strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.spec .hint {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(15, 23, 42, .70);
  line-height: 1.6;
}

/* =========================
   モナルテとは
========================= */
#monarte p {
  font-size: 34px;
  color: #162c56;
  font-weight: 700;
  text-align: center;
}

.monarte-head {
  display: inline-flex;
  /* 中身は横並び */
  gap: 16px;
  align-items: flex-end;
}

/* 親側で中央寄せしたい場合 */
.monarte-head-wrap {
  display: flex;
  justify-content: center;
  /* 左右中央 */
  margin: 0 auto 32px;
}

/* ロゴサイズ調整 */
.monarte-head img {
  max-width: 200px;
  height: auto;
}

.monarte-head>.sectionHead {
  align-items: flex-end;
  margin-bottom: 0px;
}

.monarteMore {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.monarteMore a {
  font-size: 20px;
  border-radius: 128px;
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
  background-color: #162c56
}

@media(max-width:768px) {
  #monarte p {
    font-size: 20px;
  }

  #monarte img {
    max-width: 250px;
  }

  .monarte-head {
    display: block;
    /* 中身は横並び */
    align-items: flex-end;
  }

  .monarte-head img {
    max-width: 120px;
  }

  .monarte-head>.sectionHead>h2 {
    font-size: 28px;
    margin-top: 10px;
  }
}


/* =========================
   news
========================= */
/* .topNotice{
  text-align:center;
  padding:10px;
  border-top:1px solid #e7e7e7;
}
.topNotice a{ color: rgb(0,123,255); } */

/*==============================*/

/* .topNotice{
  padding:10px;
  border-top:1px solid #e7e7e7;
}

.topNotice p{
  max-width: 800px;
  margin: 0 auto 6px;
  text-align: left;   
}

.topNotice a{
  color: rgb(0,123,255);
} */


.news-btn {
  padding: 10px;
  color: black;
  text-decoration: none;
}

/*==========================*/

.topNotice {
  padding: 12px 16px;
  border-top: 1px solid #e7e7e7;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.topNotice p {
  width: 100%;
  max-width: 900px;
  margin: 0 0 8px;

  display: grid;
  grid-template-columns: 9em 1fr;
  /* 日付幅固定 */
  gap: 0.5em;

  text-align: left;
  font-size: 14px;
}

/* 日付（p直下のテキスト） */
.topNotice p {
  color: #666;
}

/* リンク（タイトル） */
.topNotice a {
  color: rgb(0, 123, 255);
  text-decoration: none;

  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ホバー時に下線 */
.topNotice a:hover {
  text-decoration: underline;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .topNotice p {
    grid-template-columns: 1fr;
  }
}

/* ニュース見出し */
.newsHeading {
  max-width: 900px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.newsList {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =========================
   Products (3-column cards)
========================= */
.products {
  padding: 58px 0;
  background: #fff;
}

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

@media (max-width: 980px) {
  .productsGrid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.pCard {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image */
.pMedia {
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.pMedia img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  /* PCもこの比率で統一したい場合 */
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .45s ease;
}

.pCard:hover .pMedia img {
  transform: scale(1.04);
}

/* Body */
.pBody {
  padding: 16px 16px 18px;
}

.pTitleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pTitle {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.pTitle a {
  text-decoration: none;
  color: var(--text);
}

/* Plus button (right) */
.pPlus {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  border: 1px solid rgba(15, 23, 42, .14);
  background: rgba(15, 23, 42, .06);
  color: rgba(15, 23, 42, .92);
  transition: .18s ease;
}

.pPlus:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
  background: rgba(15, 23, 42, .10);
}

/* Dotted divider (like sample) */
.pDivider {
  margin: 12px 0 12px;
  height: 1px;
  background-image: repeating-linear-gradient(to right,
      rgba(15, 23, 42, .55) 0,
      rgba(15, 23, 42, .55) 3px,
      transparent 3px,
      transparent 8px);
  opacity: .55;
}

/* Description */
.pDesc {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(15, 23, 42, .72);
}


/* =========================
  button
========================= */

.newsMore {
  text-align: center;
}



.newsMore:hover {
  background: #eaeaea;
}


/* =========================
   Callout (success etc.)
========================= */
.callout {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 161, 74, .28);
  background: linear-gradient(180deg, rgba(201, 161, 74, .10), rgba(255, 255, 255, 0));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.callout.soft {
  border: 1px solid rgba(11, 92, 255, .18);
  background: linear-gradient(180deg, rgba(11, 92, 255, .08), rgba(255, 255, 255, 0));
}

.callout p {
  margin: 0;
  color: rgba(15, 23, 42, .78);
  line-height: 1.9;
  font-size: 13px;
}

/* =========================
   Forms
========================= */
form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  color: var(--text);
  outline: none;
  font-size: 14px;
}

textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media(max-width:520px) {
  .formRow {
    grid-template-columns: 1fr;
  }
}

.note {
  color: rgba(15, 23, 42, .60);
  font-size: 12px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.w100 {
  width: 100%;
  padding: 12px 14px;
  cursor: pointer;
}

/* Contact slightly tuned */
#contact input,
#contact textarea,
#contact select {
  border: 1px solid #e5e7eb;
}

#contact textarea::placeholder,
#contact input::placeholder {
  color: #94a3b8;
}

#contact .btn.primary.w100 {
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 14px;
}

/* =========================
   Drawer (mobile)
========================= */
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .58);
  display: none;
  z-index: 90;
}

.drawerInner {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(360px, 88vw);
  background: #fff;
  border-left: 1px solid rgba(15, 23, 42, .10);
  padding: 18px;
  box-shadow: var(--shadow);
}

.drawer a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(15, 23, 42, .85);
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .03);
  margin-top: 10px;
}

.drawerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.xbtn {
  border: 1px solid rgba(15, 23, 42, .18);
  background: #fff;
  color: rgba(15, 23, 42, .92);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
}

.hamb {
  display: none;
}

/* =========================
   Footer
========================= */
footer {
  background: #ffffff;
  padding: 34px 0 10px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.foot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* 中央寄せ */
  gap: 18px;
  flex-wrap: wrap;
}

.foot .left {
  display: flex;
  gap: 40px;
  align-items: center;
}

.foot img {
  height: 60px;
}

.foot .small {
  color: rgb(0, 0, 0);
  font-size: 14px;
  line-height: 1.8;
}

.copy {
  margin-top: 28px;
  text-align: center;
  width: 100%;
  color: rgba(15, 23, 42, .55);
  font-size: 12px;
  letter-spacing: .04em;
}

/* =========================
   Responsive (nav)
========================= */
@media(max-width:980px) {
  nav ul {
    display: none;
  }

  .brand-tajima-logo {
    display: none;
  }

  .hamb {
    display: inline-flex;
  }
}

@media(max-width:520px) {
  .brand .name {
    display: none;
  }

  .brand img {
    height: 50px;
  }

  .foot .left {
    display: block;
    text-align: center;
  }
}

/* =========================
   Product Detail Page
========================= */

.pBreadcrumb {
  padding: 18px 0 0;
  color: rgba(15, 23, 42, .62);
  font-size: 14px;
}

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

.pBreadcrumb a:hover {
  text-decoration: underline;
}

.pDetailHero {
  padding: 22px 0 26px;
  background: #fff;
}

.pHeroIntro {
  gap: 26px;
}

.pTitle {
  font-size: clamp(26px, 1.6vw, 44px);
  letter-spacing: .02em;
  margin: 0 0 12px;
}

.pTag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: rgba(15, 23, 42, .72);
  margin-bottom: 14px;
}

.pLead {
  margin: 0 0 18px;
  line-height: 1.9;
  color: rgba(15, 23, 42, .86);
}

.pNote {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(15, 23, 42, .62);
}

/* メイン画像 */
.pHeroMedia {
  overflow: hidden;
  background: #fff;
}

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

/* 下：2枚ギャラリー */
.pDetailGallery {
  padding: 18px 0 28px;
  background: #fff;
}

.pFigure {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.pFigure figcaption {
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  line-height: 1.7;
  color: rgba(15, 23, 42, .78);
}

/* 仕様 */
.pDetailSpecs {
  padding: 26px 0 40px;
  background: #fff;
}

.pBottomCta {
  margin: 60px 0;
  display: flex;
  justify-content: center;
}

.pDetailCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1.4;
  min-height: 52px;
  padding: 12px 32px;
  width: auto;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background: #0f172a;
  border-radius: 128px;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* hover（PCのみ） */
@media (hover: hover) {
  .pDetailCta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
  }
}

/* スマホ微調整 */
@media (max-width: 520px) {
  .pDetailCta {
    font-size: 20px;
    padding: 12px 20px;
  }
}


/* =========================
   Responsive
========================= */

@media (max-width: 980px) {
  .pHeroGrid {
    grid-template-columns: 1fr;
  }
}

/* スマホ：縦で見やすく（4:3寄り） */
@media (max-width: 600px) {
  .pGalleryGrid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Product Detail: Gallery
   - 2枚画像は「全体表示（contain）」にする
========================= */

.pGalleryGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}