:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#000000;
  --line:#ffffff;       /* 区切り線（薄いグレー） */
  --btn2-line:#e6eaf0;
  --card:#ffffff;
  --soft:#f6f8fb;

  --accent:#991c2f;  /* ←ここが主役 */

  --radius:6px;
  --shadow: 0 12px 34px rgba(2,8,23,.08);
  --max: 1120px;

  --font: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
body{ font-family: var(--font); }




*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Hiragino Sans", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ width:min(var(--max), 92vw); margin:0 auto; }

header{
  position: sticky;
  top:0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.siteHeader__bar{
  background: var(--brand);
}

/* 中身だけ整列（最大幅は.containerが担当） */
.siteHeader__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

/* ロゴ＆リンク */
.brand{
  font-size: 32px;
  font-weight:700;
  letter-spacing:.02em;
  color:#111;
  text-decoration:none;
}

.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
}
.navlinks a{
  color:#111;
  text-decoration:none;
  font-size:14px;
  opacity:.85;
}
.navlinks a:hover{ opacity:1; }

.navlinks{
  display:flex;
  align-items:center;
  gap:0;
}

.navlinks a{
  padding: 0 14px;     /* 区切りの左右余白をここで作る */
  white-space: nowrap;
}

.navlinks a:not(:last-child){
  border-right: 1px solid rgba(0,0,0,.25);
}

.navlinks a:last-child{
  border-right:none;
}

@media (max-width: 768px){
  .navlinks{
    flex-wrap: wrap;
    row-gap: 6px;
    column-gap: 12px;   /* ここで間隔を作る */
  }

  .navlinks a{
    padding: 0;         /* 余計な左右paddingを消す */
    font-size: 12px;    /* 少し小さく */
    white-space: nowrap;
  }

  .navlinks a:not(:last-child){
    border-right: none; /* 区切りOFF */
  }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--btn-line);
  background:#fff;
  font-weight:600;
  font-size:14px;
  gap:10px;
}

.btn2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--btn2-line);
  background:#fff;
  font-weight:600;
  font-size:14px;
  gap:10px;
}


.btn--primary{
  border-color:transparent;
  background:#991c2f;
  color:#fff;
}
.btn--ghost{
  background:transparent;
}

.hero{
  background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)), url("../img/hero.jpg") center/cover no-repeat;
  padding:44px 0 28px;
}


.heroGrid{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:22px;
  align-items:stretch;
}
.heroCard{
  border:0px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: #ffffff00;
  box-shadow: var(--shadow);
}
.heroMedia{
  height: clamp(260px, 32vw, 420px);
  background: #e5e7eb url("../img/hero.jpg") center/cover no-repeat;
}
.heroBody{
  padding:18px 18px 20px;
}
.kicker{
  font-weight: 700;
  font-size:20px;
  color:#ffffff;
  letter-spacing:.12em;
  text-transform: uppercase;
}
.h1{
  font-size: clamp(26px, 3.4vw, 40px);
  line-height:1.15;
  margin:8px 0 10px;
}
.lead{
  color:#fff;
  margin:0 0 14px;
  font-size:15px;
  font-weight:500px;
}

.quick{
  border:0px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.quick .title{ font-weight:700; }
.stack{ display:flex; flex-direction:column; gap:10px; }

.grid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin: 18px 0 8px;
}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background:#fff;
  box-shadow: 0 6px 16px rgba(2,8,23,.05);
}
.card .cap{ font-size:12px; color:var(--muted); }
.card .ttl{ font-weight:800; margin:4px 0 6px; }
.card .txt{ color:var(--muted); font-size:14px; margin:0; }
.card .go{ margin-top:12px; display:inline-flex; gap:8px; color:var(--accent); font-weight:700; }

.card1{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background:#fff;
  box-shadow: 0 6px 16px rgba(2,8,23,.05);
}
.card1 .cap{ font-size:12px; color:var(--muted); }
.card1 .ttl{ font-weight:800; margin:4px 0 6px; }
.card1 .txt{ color:var(--muted); font-size:14px; margin:0; }
.card1 .go{ margin-top:12px; display:inline-flex; gap:8px; color:var(--accent); font-weight:700; }


.section{
  padding: 22px 0;
  border-top:0px solid var(--line);
}
.section h2{
  font-size:18px;
  margin:0 0 10px;
}
.section p{ color:var(--muted); margin:0; }

.footer{
  padding: 26px 0 38px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
  background-color:#1d1b1b;
}

.footer-logo {
 font-weight: 700;
 font-size: 15px;
 color:#f3f4f6;
}

.footerGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.footer a{ 
  font color:#f3f4f6;
}

.badges{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.badge{
  border:1px solid var(--line);
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
}

@media (max-width: 900px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroMedia{ height: 240px; }
  .grid4{ grid-template-columns: repeat(2, 1fr); }
  .footerGrid{ grid-template-columns: 1fr; }
}

.btn.school{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#eef1f6;
  color:#1f2a44;
  font-weight:600;
  font-size:14px;
  gap:10px;
}

.btn.studio{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#e9f4f7;
  color:#1f6f8b;
  font-weight:600;
  font-size:14px;
  gap:10px;
}

.btn.rental{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#eaf6f0;
  color:#2f8f5b;
  font-weight:600;
  font-size:14px;
  gap:10px;
}




.btn.school:hover{
  background:#1f2a44;
  border-color:#1f2a44;
  color:#fff;
}

.btn.studio:hover{
  background:#1f6f8b;
  border-color:#1f6f8b;
  color:#fff;
}

.btn.rental:hover{
  background:#2f8f5b;
  border-color:#2f8f5b;
  color:#fff;
}

.btn.shop{
  background:#991c2f;
  color:#fff;
  border-color:#991c2f;
}


.section:nth-of-type(odd){
  background:#ffffff;
}

.section:nth-of-type(even){
  background:#f7f7f7;
}

/* =========================
   Font / Typography reset
   ========================= */

/* 全体のベース */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2937;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* 見出し共通 */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #111827;
  line-height: 1.35;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-top: 0;
}

/* メイン見出し */
h1, .h1 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
  color: #ffffff
}

/* セクション見出し */
h2, .h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  margin-bottom: 18px;
}

/* カードやブロック見出し */
h3, .h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  margin-bottom: 10px;
}

/* 補助見出し */
h4, .h4 {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 8px;
}

/* 段落 */
p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-top: 0;
  margin-bottom: 1em;
}

/* 小さい説明 */
small,
.note,
.text-small {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease, color .2s ease;
}

a:hover {
  opacity: 0.85;
}

/* =========================
   Section spacing
   ========================= */

section,
.section {
  padding: 56px 20px 10px 20px;
}

@media (max-width: 767px) {
  section,
  .section {
    padding: 40px 0;
  }
}

/* =========================
   Card typography
   ========================= */

/* サービスカード・アクセスカード共通で使える */

.service-card {
  padding: 24px;
  border: 2px solid #991c2f;
  border-radius: 0%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.card1 {
  padding: 24px;
  border: 1px solid #5c5a5a;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.card {
  padding: 24px;
  border: 1px solid #5c5a5a;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}



.access-card {
  padding: 24px;
  border: 1px solid #858585;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}


/* カードタイトル */
.card h3,
.service-card__title,
.access-card__title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

/* カード本文 */
.card p,
.service-card__text,
.access-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 16px;
}

/* カード内リンク */
.card a,
.service-card__link,
.access-card__link {
  font-size: 15px;
  font-weight: 700;
  color: #991c2f;
}

/* =========================
   Hero text
   ========================= */

.hero-title,
.km-hero__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-text,
.km-hero__text {
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.8;
  color: #f3f4f6;
  font-weight: 500;
}

/* Hero内のタグっぽい小要素 */
.hero-chip,
.km-chip {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* =========================
   Buttons
   ========================= */

.btn,
button,
input[type="submit"] {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* 白い丸ボタンが多いならこれも効く */
.quick-link,
.km-quicklink,
.pill-btn {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

/* =========================
   Footer
   ========================= */

footer,
.footer {
  font-size: 14px;
  line-height: 1.8;
  color: #c7c7c7;
}

footer h3,
footer h4,
.footer h3,
.footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

/* =========================
   Mobile tuning
   ========================= */

@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.75;
  }

  p {
    font-size: 14px;
    line-height: 1.75;
  }

  .card,
  .service-card,
  .access-card {
    padding: 18px;
    border-radius: 12px;
  }

  .card h3,
  .service-card__title,
  .access-card__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card p,
  .service-card__text,
  .access-card__text {
    font-size: 14px;
    line-height: 1.75;
  }

  .btn,
  button,
  input[type="submit"] {
    font-size: 14px;
  }
}

.experience {
  background: #f8f8f8;
  padding: 28px 28px 44px;
}

.experience__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.experience__title {
  margin: 0;
  color: #000000;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 30px);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.experience__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.experience__arrow {
  appearance: none;
  border: 0;
  background: transparent;
  color: #9a938f;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
  font-size: 28px;
  line-height: 1;
  padding: 0;
}

.experience__arrow:hover {
  color: #3a322f;
  transform: translateY(-1px);
}

.experience__viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 19.5%);
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.experience__viewport::-webkit-scrollbar {
  display: none;
}

.exp-card {
  text-decoration: none;
  color: inherit;
}

.exp-card__imageWrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.68 / 1;
  background: #d8d1cd;
}

.exp-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.exp-card:hover .exp-card__image {
  transform: scale(1.04);
}

.exp-card__meta {
  margin-top: 18px;
  text-align: center;
  color: #2d2624;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.exp-card__title {
  margin: 6px 0 0;
  text-align: center;
  color: #1d1817;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-size: clamp(26px, 2vw, 34px);
  : "Cormorant Garamond", "Times New Roman", serif;
}

/* タブレット */
@media (max-width: 1024px) {
  .experience__viewport {
    grid-auto-columns: minmax(240px, 32%);
  }
}

/* スマホ */
@media (max-width: 767px) {
  .experience {
    padding: 22px 16px 32px;
  }

  .experience__head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .experience__nav {
    align-self: flex-end;
  }

  .experience__viewport {
    grid-auto-columns: 78%;
    gap: 10px;
  }

  .exp-card__meta {
    margin-top: 14px;
    font-size: 11px;
  }

  .exp-card__title {
    font-size: clamp(24px, 7vw, 34px);
  }
}

.maana-intro {
  background: #ece8e7;
}

.maana-intro__hero {
  width: 100%;
  height: 300px; /* 上の細い帯画像 */
  overflow: hidden;
}

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

/* 中央テキスト部分 */
.maana-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 20px 20px;
  text-align: center;
}

/* MAANA ロゴ風 */
.maana-intro__logo1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0em;
  color: #ffffff;
  line-height: 1;
  text-indent: 0.42em; /* 最後だけ詰まって見えないように */
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.maana-intro__logo {
  margin: 0;
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0.42em;
  color: #1f1c1d;
  line-height: 1;
  text-indent: 0.42em; /* 最後だけ詰まって見えないように */
  font-family: "Helvetica Neue", Arial, sans-serif;
}


/* サブタイトル */
.maana-intro__lead {
  margin: 15px 0 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* 説明文 */
.maana-intro__text {
  max-width: 620px;
  margin: 0 auto;
}

.maana-intro__text1 p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}

.maana-intro__text p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  color: #4b403f;
  font-family: "Noto Sans JP", sans-serif;
}


.maana-intro__text p:last-child {
  margin-bottom: 0;
}

/* スマホ */
@media (max-width: 767px) {
  .maana-intro__hero {
    height: 64px;
  }

  .maana-intro__inner {
    padding: 90px 18px 80px;
  }

  .maana-intro__logo {
    font-size: 30px;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .maana-intro__lead {
    margin: 18px 0 28px;
    font-size: 12px;
  }

  .maana-intro__text p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
  }
}

/* =========================
   画像の上に文字
   ========================= */


/* 画像の親 */
.service-card__imageWrap {
  position: relative; /* ← これ重要 */
  overflow: hidden;
}

/* 画像 */
.service-card__image {
  width: 100%;
  display: block;
}

/* 写真上部の英語 */
.service-card__captionTop {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;

  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0,0,0,.35);
}

/* うっすら上だけ暗くして文字を見やすくする */
.service-card__imageWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,0) 36%);
  z-index: 1;
  pointer-events: none;
}


/* 白ボックス */
.service-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.92);
  padding: 20px 16px;
}

/* タイトル */
.service-card__overlayTitle {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1f1b1b;
}

/* 説明文 */
.service-card__overlayText {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #1f1b1b;
}

/* =========================
   背景動かす
   ========================= */


   .parallax-hero{
  position: relative;
  overflow: hidden;
  min-height: 55vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #111;
}

.parallax-bg{
  position: absolute;
  inset: -100px 0;
  background-position: 0 50%;
  background-size: cover;
  background-repeat: no-repeat;

  transform: scale(1.05);

  opacity: 1;
  transition: opacity .6s ease;
  z-index: -2;
}

/* 毎回これを付け直す */
.parallax-bg.is-animating{
  animation: bgSlide 90s linear;
}

@keyframes bgSlide{
  from{
    background-position: 0 50%;
  }
  to{
    background-position: -300px 50%;
  }
}

@media (min-width: 1024px){
  .parallax-bg{
    transform: scale(1.12); /* ←ここを大きく */
  }
.parallax-bg.is-animating{
  animation: bgSlide 50s linear;
}

}

.parallax-bg{
  filter: brightness(0.6);
}

.maana-intro__logo1{
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,.5);
}

.maana-intro__text1 p{
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.km-hero__inner{
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  color: #fff;
  text-align: left;
}

.km-hero__eyebrow{
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: .9;
}

.km-hero__title{
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.08;
  margin: 0 0 16px;
}

.km-hero__text{
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
  max-width: 42em;
  margin: 0;
}

/* =========================
   Shop-section
========================= */
.shop-section {
  padding: 80px 80px 150px 80px;
  background: #f8f8f8;
}
/* SP */
@media (max-width: 768px) {
.shop-section {
  padding: 80px 0;
}
}

.shop-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   グリッド
========================= */
.shop-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 50px;
}

/* SP */
@media (max-width: 768px) {
  .shop-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   各ブロック
========================= */
.shop-item {
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

/* =========================
   テキスト
========================= */
.shop-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 5px;
}

.shop-title {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

/* =========================
   ボタン
========================= */
.shop-btn {
  display: inline-block;
  border: 1px solid #111;
  color: #111;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: 0.3s;
}

.shop-btn:hover {
  background: #111;
  color: #fff;
}

/* =========================
   住所
========================= */
.shop-address,
.shop-address-ja,
.shop-mail {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
  
}

.service-card__imageWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0) 70%
  );
  z-index: 1;
}

.service-card__captionTop {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;

  color: #fff;
  font-size: 20px;
  font-weight: 700;

  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.store-info-text{
  text-align: center;
}

.store-info-text > h2{
  font-weight: 500;
  font-size: 25px;
}

.store-info-text > p {
  margin: 20px 0 30px !important;
  line-height: 1.8;
}




/* =========================
   SPメニュー
========================= */


/* ===== ヘッダー基本 ===== */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #f3f3f3;
}

.siteHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
}

.brand {
  color: #222;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* PCではハンバーガー非表示 */
.menuToggle {
  display: none;
}

/* ===== SPドロワー初期状態 ===== */
.spMenu {
  display: none;
}

/* ===== SP only ===== */
@media (max-width: 768px) {
  .siteHeader__inner {
    justify-content: center;
    position: relative;
  }

  .navlinks {
    display: none;
  }

  .brand {
    font-size: 20px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .menuToggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menuToggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #222;
    margin-left: 10px;
  }

  .spMenu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .spMenu__inner {
    width: 100%;
    height: 100%;
    background: #121212;
    color: #fff;
    padding: 18px 28px 40px;
    transform: translateY(-10px);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }

  .spMenu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .spMenu.is-open .spMenu__inner {
    transform: translateY(0);
  }

  .spMenu__head {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    margin-bottom: 44px;
  }

  .spMenu__brand {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 20px;
  }

  .spMenu__close {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .spMenu__nav {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .spMenu__nav a {
    display: block;
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .spMenu__nav a:hover {
    color: #fff;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* =========================
   Section スライド
========================= */

/* =========================
   Category Slider
========================= */
.km-cat-section{
  padding: 64px 0;
  background: #f8f8f8ff;
}

.km-cat-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 26px;
  padding: 0 24px;
}

.km-cat-title{
  margin: 0;
  font-size: clamp(28px, 3vw, 30px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111;
  font-family:"Helvetica Neue", Arial, sans-serif;
}

.km-cat-head-right{
  display: flex;
  align-items: center;
  gap: 14px;
}

.km-cat-next{
  width: 52px;
  height: 52px;
  border: 0px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: .25s ease;
  flex-shrink: 0;
}

.km-cat-next:hover{
  background: #111;
  color: #fff;
  transform: translateX(2px);
}

.km-cat-all{
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid #111;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  transition: .25s ease;
}

.km-cat-all:hover{
  background: #111;
  color: #fff;
}

.km-cat-slider{
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 0 24px;
  scrollbar-width: none;
}

.km-cat-slider::-webkit-scrollbar{
  display: none;
}

.km-cat-track{
  display: flex;
  gap: 18px;
  width: max-content;
}

.km-cat-item{
  position: relative;
  display: block;
  width: 320px;
  aspect-ratio: 1.35 / 1;
  border-radius: 26px;
  overflow: hidden;
  flex: 0 0 auto;
  text-decoration: none;
  background: #000;
}

.km-cat-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  opacity: .9;
  transition: transform .35s ease, opacity .35s ease;
}

.km-cat-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.42) 0%,
    rgba(0,0,0,.18) 45%,
    rgba(0,0,0,.18) 100%
  );
  z-index: 1;
}

.km-cat-item__title{
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.km-cat-item:hover img{
  transform: scale(1.08);
  opacity: .98;
}

@media (max-width: 768px){
  .km-cat-section{
    padding: 46px 0;
  }

  .km-cat-head{
    padding: 0 16px;
    margin-bottom: 18px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .km-cat-title{
    font-size: clamp(24px, 3.4vw, 36px);
  }

  .km-cat-head-right{
    width: 100%;
    justify-content: space-between;
  }

  .km-cat-slider{
    padding: 0 16px;
  }

  .km-cat-track{
    gap: 14px;
  }

  .km-cat-item{
    width: 78vw;
    border-radius: 18px;
  }

  .km-cat-item__title{
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 22px;
  }

  .km-cat-next{
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .km-cat-all{
    min-height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }
}

.km-cat-prev{
  width: 52px;
  height: 52px;
  border: 0px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: .25s ease;
}

.km-cat-prev:hover{
  background: #111;
  color: #fff;
  transform: translateX(-2px);
}

@media (max-width: 768px){
  .km-cat-prev{
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

.hero-btns {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.btn-main {
  background: #991c2f;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
}

.btn-sub {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
}

.parallax-hero {
  place-items: center;
}

.km-hero .maana-intro {
  transform: translateY(-20px);
}

/* =========================
   Brand Section
========================= */



.km-section {
  padding: 60px 20px;
  background: #f8f8f8; /* 好みで */
}

.km-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.km-item {
  text-align: center;
}

.km-img {
  overflow: hidden;
}

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

/* タイトル */
.km-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin: 20px 0 10px;
}

/* テキスト */
.km-item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* SP */
@media (max-width: 768px) {
  .km-grid {
    grid-template-columns: 1fr;
  }
}

.km-img img {
  transition: transform 0.5s ease;
}

.km-item:hover img {
  transform: scale(1.05);
}

.brand-info-text > h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 45px;
    text-align: center;
}

/* =========================
   new footer
========================= */

.site-footer {
  background: #e9e9e9;
  padding: 56px 20px 64px;
  color: #222;
  font-family: 'Noto Sans JP', sans-serif;
}

.site-footer__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 40px;
  flex: 1;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__col a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
  transition: opacity 0.3s ease;
}

.site-footer__col a:hover {
  opacity: 0.65;
}

.site-footer__sns {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 6px;
}

.site-footer__sns a {
  color: #222;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-footer__sns a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.site-footer__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 34px 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}

.site-footer__legal a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
  transition: opacity 0.3s ease;
}

.site-footer__legal a:hover {
  opacity: 0.65;
  text-decoration: underline;
}

.site-footer__copy {
  text-align: center;
}

.site-footer__company {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__copy small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #444;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 16px 40px;
  }

  .site-footer__top {
    display: block;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer__col {
    gap: 8px;
  }

  .site-footer__col a {
    font-size: 14px;
    line-height: 1.6;
  }

  .site-footer__sns {
    margin-top: 20px;
    gap: 14px;
  }

  .site-footer__sns a {
    font-size: 20px;
  }

  .site-footer__divider {
    margin: 24px 0;
  }

  .site-footer__legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-footer__legal a {
    font-size: 12px;
    line-height: 1.6;
  }

  .site-footer__company {
    font-size: 17px;
  }

  .site-footer__copy small {
    font-size: 12px;
  }
}

/* =========================
   access Section
========================= */



.access-section {
  background: #f5f5f5;
  padding: 100px 20px 120px;
  color: #333;
}

.access-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.access-heading {
  text-align: center;
  margin-bottom: 120px;
}

.access-heading h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #bdbdbd;
}

.access-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.access-store {
  display: grid;
  grid-template-columns: 0.8fr 420px;
  gap: 60px;
  align-items: start;
  margin-bottom: 120px;
}

.access-store__sub {
  font-size: 14px;
  margin: 0 0 10px;
  color: #444;
}

.access-store__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 28px;
  line-height: 1.4;
}

.access-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 44px;
  border: 1px solid #666;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 34px;
  transition: 0.3s;
}

.access-map-btn:hover {
  background: #333;
  color: #fff;
}

.access-store__info p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.access-store__detail p {
  margin-bottom: 10px;
}

.access-store__detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.access-store__detail li {
  position: relative;
  padding-left: 1em;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 2px;
}

.access-store__detail li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.access-store__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #ddd;
}


.access-guide {
  margin-top: 20px;
}

.access-guide__block {
  margin-bottom: 36px;
}

.access-guide__block p,
.access-guide__block li {
  font-size: 15px;
  line-height: 2;
  margin: 0;
}

.access-guide__block ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.access-note {
  color: #d23a3a;
}

/* tablet */
@media (max-width: 1024px) {
  .access-heading h2 {
    font-size: 38px;
  }

  .access-heading p {
    font-size: 18px;
  }

  .access-store {
    grid-template-columns: 1fr 320px;
    gap: 50px;
    margin-bottom: 90px;
  }

  .access-store__title {
    font-size: 34px;
  }

  .access-store__info p,
  .access-store__detail li,
  .access-guide__block p,
  .access-guide__block li {
    font-size: 16px;
  }
}

/* sp */
@media (max-width: 767px) {
  .access-section {
    padding: 70px 20px 90px;
  }

  .access-heading {
    margin-bottom: 60px;
  }

  .access-heading h2 {
    font-size: 30px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .access-heading p {
    font-size: 15px;
    line-height: 1.8;
  }

  .access-store {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 70px;
  }

  .access-store__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .access-store__sub {
    font-size: 15px;
  }

  .access-map-btn {
    min-width: 150px;
    height: 46px;
    font-size: 15px;
    margin-bottom: 24px;
  }

  .access-store__info p,
  .access-store__detail li,
  .access-guide__block p,
  .access-guide__block li {
    font-size: 15px;
    line-height: 1.9;
  }

  .access-store__image {
    order: -1;
  }
}

/* =========================
   Law / Guide Text Section
========================= */
.law-section {
  padding: 10px 20px 120px;
  background: #ffffff;
  color: #111;
}

.law-section__inner {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.law-block {
  padding: 56px 0 64px;
  border-top: 1px solid #d6d6d1;
}

.law-block__title {
  margin: 0 0 34px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #111;
}

.law-block__content h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #111;
}

.law-block__content p {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.02em;
  color: #333;
}

.law-block__content p:last-child {
  margin-bottom: 20px;
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {
  .law-section {
    padding: 24px 16px 80px;
  }

  .law-section__inner {
    width: 100%;
  }

  .law-block {
    padding: 36px 0 42px;
  }

  .law-block__title {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.6;
  }

  .law-block__content h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
  }

  .law-block__content p {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 2;
  }
}

/* =========================
   Guide Section / Shipping
========================= */
.shipping-guide {
  padding: 80px 20px 100px;
  background: #f7f7f5;
  color: #111;
}

.guide-section__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.guide-section__header {
  text-align: center;
  margin-bottom: 10px;
}

.guide-section__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #666;
}

.guide-section__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.guide-block__title {
  margin: 0 0 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #222;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}



/* =========================
   SP
========================= */
@media (max-width: 768px) {
  .shipping-guide {
    padding: 56px 16px 72px;
  }

  .guide-section__header {
    margin-bottom: 10px;
  }

  .guide-section__title {
    font-size: 32px;
  }

  .guide-block__title {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 24px;
  }

}


.after-service-section {
  padding: 80px 20px 100px;
  background: #fff;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
}

.after-service-inner {
  max-width: 920px;
  margin: 0 auto;
}

.after-service-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #888;
}

.after-service-lead {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  margin: 0 0 54px;
}

.after-service-price-box {
  max-width: 720px;
  margin: 0 auto 34px;
  padding: 30px 60px;
  border: 1px solid #000000;
  box-sizing: border-box;
}

.price-title {
  font-size: 18px;
  margin: 0 0 22px;
}

.after-service-price-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.after-service-price-box li {
  font-size: 17px;
  line-height: 1.55;
}

.price-free {
  color: #d33;
  font-size: 25px;
  line-height: 1.4;
  margin: 4px 0 0;
}

.after-service-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 54px;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 90px;
  margin-bottom: 86px;
}

.maintenance-img {
  width: 100%;
  aspect-ratio: 16 / 8.3;
  background: #ddd;
  margin-bottom: 16px;
  overflow: hidden;
}

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

/* 画像未設定時にグレー枠を出したい場合 */
.maintenance-img img[src="画像URL"] {
  display: none;
}

.maintenance-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 18px;
}

.maintenance-card p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.after-service-message {
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.9;
  margin: 0 0 100px;
}

.after-service-note {
  border: 3px solid #d33;
  padding: 32px 26px;
  font-size: 15px;
  line-height: 1.65;
}

.after-service-note p {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 18px;
}

.after-service-note p:last-child {
  margin-bottom: 0;
}

.note-title {
  font-size: 20px;
  font-weight: 500;
}

.pc-only {
  display: inline;
}

/* SP */
@media (max-width: 768px) {
  .after-service-section {
    padding: 56px 18px 72px;
  }

  .after-service-title {
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 22px;
  }

  .after-service-lead {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 36px;
  }


  .pc-only {
    display: none;
  }

  .after-service-price-box {
    padding: 24px 18px;
    margin-bottom: 32px;
  }

  .price-title {
    font-size: 16px;
  }

  .after-service-price-box li {
    font-size: 14px;
    line-height: 1.7;
  }

  .price-free {
    font-size: 22px;
  }

  .after-service-subtitle {
    font-size: 18px;
    margin-bottom: 34px;
  }

  .maintenance-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 58px;
  }

  .maintenance-card h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .maintenance-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  .after-service-message {
    text-align: left;
    font-size: 14px;
    margin-bottom: 56px;
  }

  .after-service-note {
    padding: 24px 18px;
    font-size: 13px;
  }
}

.repair-price-section {
  padding: 80px 20px;
  background: #fff;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
}

.repair-price-inner {
  max-width: 960px;
  margin: 0 auto;
}

.repair-price-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  position: relative;
}

.repair-price-title::after {
  content: "";
  display: block;
  width: 520px;
  max-width: 70%;
  height: 1px;
  background: #555;
  margin: 18px auto 0;
}

.repair-attention {
  border: 1px solid #333;
  border-radius: 14px;
  padding: 26px 40px;
  margin-bottom: 58px;
}

.repair-attention-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 18px;
}

.repair-attention-title span {
  color: #e60012;
}

.repair-attention ul {
  margin: 0;
  padding-left: 1.2em;
  list-style: none;
}

.repair-attention li {
  font-size: 15px;
  line-height: 1.55;
  position: relative;
}

.repair-attention li::before {
  content: "●";
  margin-right: 2px;
}

.repair-table-block {
  margin-bottom: 64px;
}

.repair-table-block h3 {
  border: 1px solid #333;
  border-bottom: none;
  background: #f8f8f8;
  padding: 10px 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0;
}

.repair-table-block table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.repair-table-block th,
.repair-table-block td {
  border: 1px solid #333;
  padding: 7px 12px;
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
}

.repair-table-block th {
  font-weight: 600;
}

.repair-table-block th:nth-child(1),
.repair-table-block td:nth-child(1) {
  width: 34%;
}

.repair-table-block th:nth-child(2),
.repair-table-block td:nth-child(2) {
  width: 14%;
}

.repair-table-block th:nth-child(3),
.repair-table-block td:nth-child(3) {
  width: 52%;
}

/* SP */
@media (max-width: 768px) {
  .repair-price-section {
    padding: 56px 16px;
  }

  .repair-price-title {
    font-size: 21px;
    margin-bottom: 42px;
  }

  .repair-price-title::after {
    max-width: 82%;
  }

  .repair-attention {
    padding: 22px 18px;
    margin-bottom: 44px;
  }

  .repair-attention-title {
    font-size: 16px;
  }

  .repair-attention li {
    font-size: 13px;
  }

  .repair-table-block {
    overflow-x: auto;
    margin-bottom: 44px;
  }

  .repair-table-block h3 {
    font-size: 16px;
    min-width: 680px;
  }

  .repair-table-block table {
    min-width: 680px;
  }

  .repair-table-block th,
  .repair-table-block td {
    font-size: 13px;
    padding: 7px 9px;
  }
}

.studio-section {
  color: #111;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.studio-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

/* 画像を背景っぽくする */
.studio-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← 超重要 */
  object-position: center;
}

/* 黒グラデ */
.studio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25),
    rgba(0,0,0,.6)
  );
  z-index: 1;
}

/* テキスト */
.studio-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}



.studio-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 6px 20px rgba(0,0,0,.6);
}

.studio-hero p {
  font-size: 14px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.studio-inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 90px;
}

.studio-list {
  display: grid;
  gap: 70px;
}

.studio-card h2 {
  font-size: 28px;
  line-height: 1.4;
  margin: 0 0 20px;
  font-weight: 800;
}

.studio-card h2 span {
  margin-right: 8px;
  font-size: 28px;
  font-weight: 900;
}

.studio-card--a h2 span {
  color: #e4565f;
}

.studio-card--b h2 span {
  color: #48b884;
}

.studio-card--ex h2 span {
  color: #3e8edc;
}

.studio-card h2 small {
  font-size: 18px;
  font-weight: 700;
}

.studio-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
}

.studio-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

/* 画像を綺麗にトリミング */
.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← 超重要 */
  display: block;
  transition: transform .4s ease;
}

/* ちょい今っぽいホバー */
.studio-photo:hover img {
  transform: scale(1.05);
}

.studio-equipment {
  font-size: 14px;
}

.studio-equipment h3 {
  font-size: 15px;
  margin: 0 0 18px;
  font-weight: 700;
}

.studio-equipment ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.studio-equipment li {
  margin-bottom: 14px;
  line-height: 1.45;
}

.studio-equipment strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  position: relative;
  padding-left: 1em;
}

.studio-equipment strong::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: .8em;
}

.studio-price {
  margin-top: 90px;
}

.studio-heading {
  text-align: center;
  font-size: 24px;
  margin: 0 0 30px;
  font-weight: 700;
  position: relative;
}

.studio-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: #ddd;
  margin: 18px auto 0;
}

.studio-note {
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 45px;
}

.price-block {
  margin-top: 45px;
}

.price-block h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}

.price-block h3 span {
  color: #3e8edc;
}

.tax-note {
  text-align: right;
  font-size: 12px;
  margin: 0 0 6px;
}

.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.table-scroll th,
.table-scroll td {
  border: 1px solid #333;
  padding: 10px 8px;
  text-align: center;
  vertical-align: middle;
}

.table-scroll th {
  font-weight: 700;
  background: #fafafa;
}

.studio-info {
  margin-top: 90px;
  text-align: center;
}

.studio-info dl {
  display: inline-grid;
  gap: 10px;
  margin: 0 auto 50px;
  font-size: 28px;
  font-weight: 800;
}

.studio-info dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

.studio-info dt {
  color: #111;
}

.studio-info dl div:nth-child(2) dt {
  color: #e4565f;
}

.studio-info dd {
  margin: 0;
}

.studio-buttons {
  display: grid;
  gap: 16px;
  justify-content: center;
}

.studio-btn {
  width: 340px;
  max-width: 100%;
  min-height: 58px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  transition: .2s;
}

.studio-btn--web {
  background: #3433a8;
  color: #fff;
}

.studio-btn--tel {
  background: #fff;
  color: #111;
  border: 2px solid #3433a8;
}

.studio-btn:hover {
  opacity: .8;
}

/* SP */
@media (max-width: 768px) {
  .studio-hero {
    height: 210px;
  }

  .studio-hero h1 {
    font-size: 42px;
  }

  .studio-hero p {
    font-size: 12px;
    line-height: 1.7;
  }

  .studio-inner {
    width: min(100% - 28px, 640px);
    padding: 45px 0 70px;
  }

  .studio-list {
    gap: 50px;
  }

  .studio-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .studio-card h2 span {
    font-size: 24px;
  }

  .studio-card h2 small {
    display: block;
    font-size: 14px;
    margin-top: 2px;
  }

  .studio-card__body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .studio-equipment {
    background: #fafafa;
    padding: 20px;
  }

  .studio-price {
    margin-top: 65px;
  }

  .studio-note {
    text-align: left;
    font-size: 13px;
  }

  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll table {
    min-width: 720px;
    font-size: 13px;
  }

  .studio-info {
    margin-top: 70px;
  }

  .studio-info dl {
    font-size: 22px;
  }

  .studio-info dl div {
    grid-template-columns: 80px 1fr;
    gap: 18px;
  }

  .studio-btn {
    width: 300px;
    min-height: 54px;
    font-size: 16px;
  }
}

.shop-image {
  margin: 16px 0 20px;
  overflow: hidden;
}

.shop-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px; /* いらなければ削除OK */
}

.fa-up-right-from-square {
  font-size: 0.8em; /* ちょい小さめが自然 */
  margin-left: 4px;
}

.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  padding: 20px;
  text-align: center;
}

.maintenance-inner {
  max-width: 520px;
  width: 100%;
  background: #fff;
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.maintenance-title {
  font-size: 24px;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

.maintenance-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.maintenance-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.3s;
}

.maintenance-btn:hover {
  background: #333;
}

.maintenance-note {
  margin-top: 30px;
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.purchase-guide__hero {
  position: relative;
  height: 190px;
  background: #eaf6ff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purchase-guide__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-guide__hero h1 {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  color:#ffffff
}

/* SP */
@media (max-width: 767px) {
  .purchase-guide__hero {
    height: 130px;
  }

  .purchase-guide__hero h1 {
    font-size: 21px;
  }
  }