:root{
  /* Color Palette */
  --bg: #F9F6F3;
  --paper: #FFFFFF;
  --ink: #3D3333;
  --muted: #7A6E6E;
  --line: rgba(61, 51, 51, 0.08);

  --accent: #D8A7A0;
  --accent-light: #F2E6E4;
  --accent2: #8C5E5E;
  
  --shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 24px;

  --max: 1000px;
  --header-height: 70px;
}

/* Reset & Base */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Noto Serif JP", serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.8;
  letter-spacing: .03em;
  overflow-x: hidden;
  padding-bottom: 80px; /* 固定CTAの分 */
}

a{ color: inherit; text-decoration: none; transition: all .3s ease; }
img{ max-width:100%; height:auto; display:block; }

/* Layout Utilities */
.container{ width: min(var(--max), 90%); margin: 0 auto; position: relative; z-index: 2; }
.section{ padding: 100px 0; position: relative; }
.section--gray{ background-color: #F2F0ED; } /* 少し濃いめのベージュグレー */
.text-center{ text-align: center; }
.mb-4{ margin-bottom: 3rem; }

/* Full Width Split Layout (Magazine Style) */
.split-section {
  display: flex;
  width: 100%;
  min-height: 600px;
  position: relative;
}
.split-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s ease;
}
.split-section:hover .split-visual img {
  transform: scale(1.05);
}
.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--bg);
}
/* 左右反転用クラス */
.split-section--reverse {
  flex-direction: row-reverse;
}
.split-section--reverse .split-content {
  background: #fff; /* 背景色を変えてリズムを作る */
}

/* Concept Parallax */
.concept-section {
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-box {
  background: rgba(255, 255, 255, 0.92);
  padding: 60px;
  width: min(800px, 90%);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Typography */
h1, h2, h3{ font-weight: 500; margin-top: 0; }
h2{
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 30px;
  color: var(--accent2);
  display: inline-block;
  position: relative;
}
h2::after {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--accent); margin-top: 10px;
}
/* センター揃え用H2装飾 */
.text-center h2::after { margin: 10px auto 0; }

h3{ font-size: 20px; margin-bottom: 16px; color: var(--ink); font-weight: 600; }
p{ margin-bottom: 1.5em; color: var(--muted); }
.en-title{
  display: block; font-family: "Playfair Display", serif; color: var(--accent);
  font-size: 14px; letter-spacing: 0.15em; margin-bottom: 16px;
  text-transform: uppercase;
}

/* Header (Fixed) */
header{
  padding: 0;
  height: var(--header-height);
  position: fixed; /* 常に上部に固定 */
  top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(249,246,243,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.header-inner{
  display: flex; justify-content: space-between; align-items: center;
  width: min(var(--max), 90%); margin: 0 auto;
}
.logo{
  font-family: "Playfair Display", serif; font-size: 24px; font-weight: 600;
  color: var(--accent2); z-index: 101;
}

/* Desktop Menu */
.desktop-menu { display: flex; align-items: center; gap: 24px; }
.desktop-menu a:not(.nav-btn):not(.icon-link) {
  font-size: 14px; color: var(--ink); position: relative; letter-spacing: 0.05em;
}
.desktop-menu a:not(.nav-btn):not(.icon-link):hover { color: var(--accent2); }

.nav-btn{
  font-size: 13px; border: 1px solid var(--accent2); padding: 8px 20px;
  border-radius: 50px; color: var(--accent2); background: transparent;
  transition: all 0.3s;
}
.nav-btn:hover{ background: var(--accent2); color: #fff; }

.icon-link {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent2); transition: transform 0.3s, color 0.3s;
}
.icon-link:hover { transform: scale(1.1); color: var(--accent); }
.icon-link svg { width: 20px; height: 20px; }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 20px; position: relative; z-index: 101; padding: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--accent2);
  position: absolute; left: 0; transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg); bottom: 9px; }

/* Mobile Menu (Scroll Fixed) */
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(249, 246, 243, 0.98); z-index: 100;
  display: flex; flex-direction: column; 
  justify-content: flex-start; 
  align-items: center;
  gap: 30px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 100px;
  padding-bottom: 120px;
}
.mobile-menu.is-active { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: "Noto Serif JP", serif; font-size: 18px; color: var(--ink);
  font-weight: 500; transform: translateY(20px); opacity: 0; transition: all 0.4s ease;
}
.mobile-menu.is-active a { transform: translateY(0); opacity: 1; }

/* --- HERO Section (Refined) --- */
.hero{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoomIn 20s ease-out forwards;
}

@keyframes heroZoomIn{
  from { transform: scale(1); }
  to   { transform: scale(1.10); }
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

.hero__container{
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: var(--header-height);
}

.hero__content{
  width: min(var(--max), 90%);
  margin: 0 auto;
  max-width: 700px;
}

.hero__tag {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 8px 16px; border-radius: 4px; font-size: 13px;
  letter-spacing: 0.05em; display: inline-block; margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero__content { max-width: 700px; }

.hero__lead-text {
  font-size: clamp(16px, 2.5vw, 22px);
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  display: inline-block;
}

.hero__desc {
  font-size: 16px; line-height: 1.9; margin-bottom: 40px; max-width: 600px;
  color: #FFFFFF; 
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero .btn {
  background: #FFFFFF; color: var(--accent2); font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hero .btn:hover { background: var(--bg); transform: translateY(-2px); }

.hero__note {
  font-size: 13px; color: #fff; margin-top: 14px; opacity: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
/* =========================
   HERO typography (PC tune)
   置き換え用（このブロックを丸ごと差し替え）
   ========================= */

/* PC：1025px〜 */
@media (min-width: 1025px){
  /* コンテンツ幅を少し広げて、文字が伸びやすいように */
  .hero__content{
    max-width: 820px;   /* 700 → 820 */
  }

  /* タグは少しだけ存在感 */
  .hero__tag{
    font-size: 14px;
    padding: 10px 18px;
    margin-bottom: 28px;
  }

  /* キャッチ（h1）をしっかり主役に */
  .hero__content h1{
    font-size: clamp(44px, 4.6vw, 76px); /* 上限を伸ばす */
    line-height: 1.28;                   /* 詰めて力強く */
    letter-spacing: 0.02em;
    margin-bottom: 26px;
    text-shadow: 0 4px 22px rgba(0,0,0,0.55);
  }

  /* リード文も“見出し級”に引き上げ */
  .hero__lead-text{
    font-size: clamp(20px, 1.6vw, 28px);
    line-height: 1.8;
    margin-bottom: 18px;
  }

  /* 説明文は読みやすいサイズに */
  .hero__desc{
    font-size: 17px;
    line-height: 2.0;
    max-width: 680px;
    margin-bottom: 44px;
  }

  /* ボタンもPCでは少しだけ大きく */
  .hero .btn{
    padding: 18px 44px;
    font-size: 16px;
  }

  .hero__note{
    margin-top: 16px;
    font-size: 13px;
  }
}

/* SP：〜1024px（iOS背景対策だけ残す） */
@media (max-width: 1024px){
  .concept-section{
    background-attachment: scroll; /* iOS対策 */
    padding: 90px 0;               /* 背景が見える余白 */
  }
  .concept-box{
    background: rgba(255,255,255,0.86); /* 背景を殺さない */
  }
}


/* Components */
.card{
  background: var(--paper); padding: 36px; border-radius: var(--radius);
  box-shadow: var(--shadow); height: 100%; transition: transform 0.3s ease;
}
.card:hover{ transform: translateY(-5px); }

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; background: var(--accent2); color: #fff;
  border-radius: 50px; font-size: 15px; letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(140,94,94,0.3); transition: all 0.3s ease;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 15px 30px rgba(140,94,94,0.4); color: #fff; }
.btn--line{ background: #06C755; box-shadow: 0 8px 20px rgba(6,199,85,0.25); }

.trouble-list{
  list-style: none;   /* ← 丸ポチを消す（ここが本命） */
  padding-left: 0;    /* ← ulの左余白も消す */
  margin: 0;
}

.trouble-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--ink);
}

.trouble-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-size: 14px;
}


/* Menu & Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.menu-card{
  background: var(--paper); padding: 40px 30px; border-radius: var(--radius);
  border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.menu-card:hover{ transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.menu-card.highlight{
  border: 2px solid var(--accent); background: linear-gradient(to bottom right, #fff, #FFF5F5);
}
.menu-badge{
  position: absolute; top: 0; right: 0; background: var(--accent); color: #fff;
  font-size: 13px; padding: 6px 16px; border-bottom-left-radius: 12px; font-weight: bold;
}
.menu-name { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.menu-time { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.price-row{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: auto; border-top: 1px dashed var(--muted); padding-top: 16px;
}
.price-val{
  font-size: 28px;
  font-weight: 700;
  color: var(--accent2);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.03em;
}

.price-sub { font-size: 12px; color: var(--muted); text-align: right; }

/* Option & Info Section */
.option-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px;
}
.option-card {
  background: rgba(255,255,255,0.7); border: 1px solid var(--line); padding: 20px; border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
}

/* Info Grid (Responsive Layout Fix) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-box {
  background: #fff; border: 1px solid var(--line); padding: 30px; border-radius: 8px; margin-bottom: 0; /* Margin handled by grid gap */
}
.info-title { font-size: 16px; font-weight: 600; margin-bottom: 16px; color: var(--ink); border-left: 4px solid var(--accent); padding-left: 12px; }
.info-list { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.info-list li { margin-bottom: 10px; padding-left: 1em; text-indent: -1em; }
.info-list li::before { content: "・"; margin-right: 4px; }

.fee-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; }
.fee-table th, .fee-table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; }
.fee-table th { width: 40%; color: var(--muted); font-weight: normal; }

/* Flow Steps */
.flow-steps {
  display: flex; justify-content: center; gap:40px; margin-top: 40px;
}
.flow-step {
  text-align: center; width: 100px; position: relative;
}
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 20px; right: -30px; width: 20px; height: 1px; background: var(--muted);
}
.step-icon {
  width: 40px; height: 40px; background: var(--accent2); color: #fff;
  border-radius: 50%; display: grid; place-items: center; margin: 0 auto 10px; font-weight: bold;
}
.step-text { font-size: 14px; font-weight: 600; }

/* FAQ */
.faq-list { display: grid; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--paper); border-radius: 8px; padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.faq-q { font-weight: 600; color: var(--accent2); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.faq-q::before { content: "Q."; }
.faq-a { font-size: 14px; line-height: 1.6; padding-left: 24px; color: var(--ink); }

/* Animation Utilities */
.fade-up-trigger {
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up-trigger.in-view { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Footer */
footer{
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 80px 0 100px; text-align: center; font-size: 13px;
}
.footer-sns { display: flex; justify-content: center; margin: 20px 0; }
.footer-sns .icon-link { color: rgba(255,255,255,0.7); }
.footer-sns .icon-link:hover { color: #fff; }

/* Blog */
.blog-hero{
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #F9F6F3 0%, #F2F0ED 100%);
  border-bottom: 1px solid var(--line);
}
.blog-hero__title{
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 12px;
  color: var(--accent2);
}
.blog-hero__lead{
  font-size: 14px;
  color: var(--muted);
}
.post-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.post-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}
.post-thumb{
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #eee;
  overflow: hidden;
}
.post-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-body{
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-title{
  font-size: 18px;
  margin: 6px 0 10px;
  color: var(--ink);
}
.post-meta{
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.post-meta a{
  color: var(--accent2);
}
.post-excerpt{
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 16px;
}
.post-card .btn{
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 13px;
}
.post-article{
  max-width: 780px;
  margin: 0 auto;
}
.post-article h1{
  font-size: clamp(26px, 4vw, 38px);
  color: var(--accent2);
  margin-bottom: 16px;
}
.post-article .post-meta{
  margin-bottom: 20px;
}
.post-article .post-thumb{
  border-radius: var(--radius);
  margin: 20px 0 30px;
}
.post-content{
  font-size: 16px;
  color: var(--ink);
}
.post-content p{
  color: var(--ink);
}
.post-content h2,
.post-content h3{
  color: var(--accent2);
  margin-top: 32px;
}
.post-content img{
  border-radius: 8px;
}
.post-nav{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.post-nav a{
  font-size: 13px;
  color: var(--accent2);
}
.pagination{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.pagination .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 50px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 13px;
}
.pagination .current{
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}
.category-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 30px 0 0;
}
.category-list a{
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.category-list a:hover{
  border-color: var(--accent2);
  color: var(--accent2);
}
.blog-featured{
  margin-top: 50px;
}
.blog-featured__title{
  text-align: center;
  font-size: 18px;
  color: var(--accent2);
  margin-bottom: 20px;
}

/* Fixed CTA */
.fixed-cta {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.1); padding: 12px 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  z-index: 999; box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.fixed-cta.is-visible { transform: translateY(0); }
.fixed-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border-radius: 8px; padding: 10px; font-size: 14px; font-weight: 600;
  line-height: 1.2; height: 56px;
}
.fixed-btn--sub { background: #fff; border: 1px solid var(--accent2); color: var(--accent2); }
.fixed-btn--main { background: #06C755; color: #fff; box-shadow: 0 4px 12px rgba(6,199,85,0.3); }
.fixed-btn span { font-size: 10px; font-weight: normal; opacity: 0.9; margin-bottom: 2px; }
.fixed-btn svg { width: 18px; height: 18px; margin-bottom: 2px; color: var(--accent2); }

/* Mobile Responsive */
@media (min-width: 1025px) {
  .fixed-cta { display: none; }
  body { padding-bottom: 0; }
}
@media (max-width: 1024px){
  .desktop-menu { display: none; }
  .hamburger { display: block; }
  
  .split-section, .split-section--reverse { flex-direction: column; }
  .split-visual { min-height: 300px; order: 1; }
  .split-content { order: 2; padding: 50px 24px; }
  
  .concept-box { padding: 40px 24px; width: 92%; text-align: left; }
  .concept-box h2::after { margin-left: 0; margin-right: auto; }
  .hero { height: 100vh; }
  .hero__content h1 { font-size: 32px; margin-bottom: 16px; }
  .flow-steps { flex-wrap: wrap; gap: 20px; }
  .flow-step:not(:last-child)::after { display: none; }
  
  .menu-grid { grid-template-columns: 1fr; }
  
  /* Info Grid Mobile Fix: Change to 1 column to avoid vertical stretching */
  .info-grid { grid-template-columns: 1fr; }

  .blog-hero{ padding: 100px 0 50px; }
  .post-article{ max-width: 100%; }
}

/* =========================================
   Concept section (only)
   Order: CONCEPT -> Catch(h2) -> bar -> body
   PC: center / SP: left
   ========================================= */
.concept-section .concept-box{
  display: flex;
  flex-direction: column;
}

/* 順番を固定 */
.concept-section .concept-box .en-title{ order: 1; }
.concept-section .concept-box h2{ order: 2; }
.concept-section .concept-box p{ order: 3; }

/* バーは "キャッチ(h2)の下線" に統一（= キャッチの下に出る） */
.concept-section .concept-box .en-title::after{
  content: none !important; /* 過去の追記が残っていてもバーを殺す */
}

/* PC：中央揃え */
@media (min-width: 1025px){
  .concept-section .concept-box{
    align-items: center;
    text-align: center;
  }
  .concept-section .concept-box h2::after{
    margin: 12px auto 0; /* キャッチの下に中央バー */
  }
  .concept-section .concept-box h2 + p{
    margin-top: 28px; /* バーと本文の間 */
  }
}

/* SP：左揃え */
@media (max-width: 1024px){
  .concept-section .concept-box{
    align-items: flex-start;
    text-align: left;
  }
  .concept-section .concept-box h2::after{
    margin-left: 0;
    margin-right: auto; /* キャッチの下に左バー */
  }
}

/* Serviceだけ：縦に長くならないよう画像の高さを制限 */
#service .split-visual{
  min-height: 0;            /* 既存のmin-height:400pxの影響を弱める */
  height: 830px;            /* PCでの“見た目の高さ”を固定（ここが肝） */
}

#service .split-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;         /* 縦写真はトリミングして横長表示に */
  object-position: center 30%;/* 顔/上側を見せたいなら微調整 */
}

/* SPは自然な高さに（縦に長すぎない程度） */
@media (max-width: 1024px){
  #service .split-visual{
    height: 260px;
  }
}
/* 初期状態：PC想定 */
.sp-only { display: none; }
.pc-only { display: inline; }

/* スマホ表示 */
@media (max-width: 1024px){
  .sp-only { display: inline; }
  .pc-only { display: none; }
}
.visual-grid{
  display: grid;
  grid-template-columns: 1fr; /* 常に1列表示 */
  gap: 24px; /* カード間の余白 */
  max-width: 800px; /* 横幅を少し絞ると上品 */
  margin: 0 auto;   /* 中央寄せ */
}


