/* ======================
   リセット & ベース
   ====================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fafafa;
  color: #1f190a;
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ======================
   フェードインアニメーション
   ====================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   ユーティリティ
   ====================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc-only {
  display: none;
}

@media (min-width: 768px) {
  .pc-only {
    display: inline;
  }
}

.section-label {
  display: inline-block;
  background-color: #ffc400;
  color: #1f190a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

section h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  color: #1f190a;
  line-height: 1.4;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: #6b6560;
  margin-bottom: 24px;
  line-height: 1.9;
}

/* ======================
   ヘッダー
   ====================== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #f0ede9;
  padding: 12px 24px;
  text-align: center;
/*  position: sticky;*/
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
/*  display: flex; */
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.header-brand {
  display: inline-block;
  line-height: 0;
}

.header-brand-img {
  max-height: 55px;
  width: auto;
  margin: 0 auto;
}

/* revichika.plus テキストリンク（下線付き） */
.header-site-url {
  font-family: 'Arimo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #799951;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.04em;
}

.header-site-url:hover {
  color: #5a7a35;
}

/* ======================
   ヒーローセクション
   ====================== */
.hero {
  background: linear-gradient(160deg, #f9f7f4 0%, #eee8de 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero--bg {
  background-color: #fafafa;
  background-image:
    linear-gradient(180deg, rgba(250, 250, 250, 0.88) 0%, rgba(250, 250, 250, 0.95) 100%),
    url('../generate_images/revichika-02.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* top/bottom 装飾帯 */
.hero-deco-strip {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-deco-img {
  width: 70%;
  height: auto;
  display: block;
  margin-left: auto;   
  margin-right: auto;  
  mix-blend-mode: multiply;
  opacity: 0.7;
}

.hero .container {
  padding: 48px 24px 56px;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,196,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(121,153,81,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-eyecatch {
  display: inline-block;
  background-color: #ffc400;
  color: #1f190a;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(26px, 5.5vw, 46px);
  font-weight: 900;
  color: #1f190a;
  line-height: 1.35;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hero h1 span.secondline {
  font-size: 24px;
  font-weight: 900;
  color: #9d9388;
  line-height: 1.35;
  margin-top: 10px;  
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}


.hero h1 span.highlight {
  color: #799951;
  font-size: 1.15em;
}

.btn-primary {
  display: inline-block;
  background-color: #799951;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(121, 153, 81, 0.4);
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary:hover {
  background-color: #6a8844;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(121, 153, 81, 0.45);
}

.hero-sub {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 700;
  color: #1f190a;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.hero-mockup-wrap {
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.hero-mockup-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  border: 1px solid #f0ece5;
}

.hero-caution {
  margin-top: 20px;
  font-size: 12px;
  color: #9d9388;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ======================
   モックアップセクション
   ====================== */
.mockup-section {
  background-color: #ffffff;
  padding: 64px 24px 56px;
  text-align: center;
}

/* problem-copy: mockup-section内に移動済み */
.problem-copy {
  font-size: 16px;
  font-weight: 700;
  color: #303030;
  line-height: 1.85;
  margin-top: 8px;
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.problem-free,
.problem-em {
  color: #ffc400;
  font-size: 1.1em;
  font-weight: 900;
}

.problem-free {
  display: inline-block;
  background: #fff7d6;
  padding: 0 8px;
  border-radius: 4px;
}

/* ======================
   問題提起セクション（problem-copy は mockup-section へ移動済み）
   ====================== */
.problem-section {
  background-color: #fffdf5;
  padding: 40px 24px 64px;
  text-align: center;
}

.problem-content {
  max-width: 640px;
  margin: 0 auto;
}

.problem-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

/* ======================
   最短5分セクション
   ====================== */
.fast-section {
  background: linear-gradient(135deg, #f9f7f4 0%, #f0ece5 100%);
  padding: 72px 24px;
  text-align: center;
}

.fast-badge {
  display: inline-block;
  background-color: #799951;
  color: #ffffff;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 900;
  padding: 22px 56px;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(121, 153, 81, 0.35);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.fast-section p {
  font-size: 16px;
  color: #6b6560;
  line-height: 1.9;
}

/* ======================
   区切り装飾
   ====================== */
.skyline-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background-color: #c8d8e8;
}

.skyline-divider--gradient {
  background: linear-gradient(90deg, #c8d9e2 0%, #d8e4ee 50%, #c8d9e2 100%);
  height: 20px;
}

/* ======================
   スポットページセクション（meritsより前に移動）
   ====================== */
.spot-page-section {
  background-color: #fffdf5;
  padding: 80px 24px;
  text-align: center;
}

.spot-page-section--bg {
  background-color: #fff9ec;
  background-image: url('../generate_images/revichika-05.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.spot-page-section--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 249, 236, 0.95) 0%, rgba(255, 252, 245, 0.98) 100%);
  pointer-events: none;
}

.spot-page-section--bg .container {
  position: relative;
  z-index: 1;
}

.spot-page-text-wrap {
  display: flex;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.spot-page-box {
  flex: 1;
  min-width: 0;
  background-color: #fffdf0;
  border: 1px solid #e8ddc8;
  border-radius: 4px;
  position: relative;
}

.spot-page-box::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 18px;
  height: 18px;
  border-top: 3px solid #b8a078;
  border-left: 3px solid #b8a078;
  border-radius: 2px 0 0 0;
}

.spot-page-box::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-bottom: 3px solid #b8a078;
  border-right: 3px solid #b8a078;
  border-radius: 0 0 2px 0;
}

.spot-page-box-inner {
  position: relative;
  padding: 28px 24px;
  text-align: center;
}

.spot-page-box-inner::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-top: 3px solid #b8a078;
  border-right: 3px solid #b8a078;
  border-radius: 0 2px 0 0;
}

.spot-page-box-inner::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 18px;
  height: 18px;
  border-bottom: 3px solid #b8a078;
  border-left: 3px solid #b8a078;
  border-radius: 0 0 0 2px;
}

.spot-page-lead {
  font-size: 15px;
  color: #6b6560;
  line-height: 2;
  margin-bottom: 16px;
  border-bottom: 1px dotted #d4c4a8;
  padding-bottom: 16px;
}

.spot-page-but {
  font-size: 22px;
  font-weight: 900;
  color: #ffc400;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-align: center;
}

.spot-page-body {
  font-size: 15px;
  color: #6b6560;
  line-height: 1.9;
  margin-bottom: 12px;
  border-bottom: 1px dotted #d4c4a8;
  padding-bottom: 12px;
}

.spot-page-body:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.spot-page-accent {
  color: #e07800;
  font-style: normal;
  font-weight: 700;
}

.spot-page-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.spot-page-list li {
  font-size: 15px;
  color: #6b6560;
  line-height: 1;
  padding: 10px 0;
  border-bottom: 1px dotted #d4c4a8;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spot-page-list li::before {
  content: '・';
  color: #b8a078;
  flex-shrink: 0;
}

.spot-page-register-label {
  font-size: 15px;
  color: #6b6560;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
/*  border-top: 1px dotted #d4c4a8;*/
  padding-top: 16px;
}

.spot-page-encourage {
  font-size: 15px;
  color: #6b6560;
  text-align: center;
  line-height: 1.9;
  background-color: #fff9e6;
  border-radius: 8px;
  padding: 12px;
}

.spot-page-encourage strong {
  color: #1f190a;
  font-size: 15px;
}

/* ======================
   オーナー様メリットセクション
   ====================== */
.merits-section {
  background-color: #fafafa;
  padding: 80px 24px;
  text-align: center;
}

.merit-block--head h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.merit-block--head .section-label {
  margin-bottom: 12px;
}

/* crown アイコン */
.crown-icon {
  width: 36px;
  height: auto;
  vertical-align: middle;
  flex-shrink: 0;
}

/* merit-row: 左アイコン + 右テキスト */
.merit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 8px;
  padding: 18px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0ece5;
  text-align: left;
}

.merit-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merit-label-img {
  width: 41px;
  height: auto;
  display: block;
}

.merit-text-wrap {
  flex: 1;
  min-width: 0;
}

.merit-hl {
  font-size: 17px;
  font-weight: 900;
  color: #1f190a;
  line-height: 1.5;
  margin: 0;
  border-left: 4px solid #ffc400;
  padding-left: 12px;
}

/* ======================
   特徴セクション
   ====================== */
.features {
  padding: 80px 24px;
  background-color: #ffffff;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 940px;
  margin: 48px auto 0;
}

.feature-card {
  background-color: #f9f7f4;
  border-radius: 8px;
  padding: 40px 28px 36px;
  border: 1px solid #f0ece5;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.feature-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: #799951;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(121,153,81,0.3);
}

.icon-num {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f190a;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: #6b6560;
  line-height: 1.9;
}

/* ======================
   無料掲載内容セクション
   ====================== */
.pre-listing-illus {
  background: #fafafa;
  padding: 32px 20px 0;
  text-align: center;
}

.pre-listing-img {
  max-width: 640px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.listing-section {
  background-color: #ffffff;
  padding: 80px 24px;
  text-align: center;
}

.listing-section--bg {
  position: relative;
  background: #fafafa;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.listing-section--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../generate_images/revichika-16.png') center top / 100% auto no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.listing-section--bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  height: 60%;
  background: url('../generate_images/revichika-02.png') center / 120% auto no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.listing-section--bg .listing-inner {
  position: relative;
  z-index: 1;
}

.listing-illus-17 {
  max-width: 480px;
  margin: 24px auto 0;
}

.listing-illus-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.listing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 32px auto 40px;
}

.listing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: #fffdf5;
  border: 1px solid #f0ece5;
  border-radius: 14px;
  padding: 24px 16px;
  width: calc(25% - 13px);
  min-width: 140px;
  max-width: 180px;
  transition: box-shadow 0.2s, transform 0.15s;
  box-sizing: border-box;
}

.listing-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.listing-icon {
  width: 52px;
  height: 52px;
  background-color: #ffc400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1f190a;
  flex-shrink: 0;
}

.listing-name {
  font-size: 13px;
  font-weight: 700;
  color: #1f190a;
  line-height: 1.4;
}

.listing-paid-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fff0b3 0%, #ffe066 100%);
  border: 1.5px solid #ffc400;
  border-radius: 100px;
  padding: 8px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #1f190a;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  box-shadow: 0 3px 10px rgba(255,196,0,0.3);
}

.listing-tagline {
  font-size: 15px;
  font-weight: 700;
  color: #4a3f30;
  line-height: 1.9;
  background-color: #fffdf5;
  border-left: 4px solid #ffc400;
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  max-width: 440px;
  margin: 0 auto 24px;
  text-align: center;
}

/* tagline 下に revichika-18 を全幅で表示 */
.listing-tagline-img {
  width: 100%;
  margin-top: 0;
  line-height: 0;
}

.listing-tagline-fullimg {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================
   機能紹介セクション（what-feature-desc フォントアップ）
   ====================== */
.features-what-section {
  background: linear-gradient(160deg, #eef2f8 0%, #dde4ee 100%);
  padding: 80px 24px;
  text-align: center;
}

.features-what--bg {
  background-color: #fafafa;
  background-image:
    linear-gradient(180deg, rgba(250, 250, 250, 0.92) 0%, rgba(250, 250, 250, 0.98) 100%),
    url('../generate_images/revichika-18.png');
  background-size: cover;
  background-position: center;
}

.what-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}

.what-feature-card {
  background-color: #ffffff;
/*  border-radius: 16px; */
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  border: 1px solid rgba(255,255,255,0.8);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.what-feature-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px 16px;
}

.what-feature-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 100px;
}

.what-feature-icon {
  width: 36px;
  height: 36px;
  background-color: #ffc400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #1f190a;
  flex-shrink: 0;
}

.what-feature-name {
  font-size: 16px;
  font-weight: 900;
  color: #1f190a;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* フォントサイズアップ */
.what-feature-desc {
  font-size: 15px;
  color: #4a3f30;
  line-height: 1.8;
  flex: 1;
  padding-left: 14px;
  border-left: 2px solid #e8e4de;
  font-weight: 500;
}

.what-feature-img-wrap {
  width: 100%;
  flex-shrink: 0;
  background: #f2f2f0;
  line-height: 0;
}

.what-feature-shot {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

/* ======================
   スポット掲載セクション
   ====================== */
.spot-listing-section {
  background: #eef6f8;
  padding: 80px 24px;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.spot-list-dual {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.spot-list-dual-item {
  flex: 1 1 280px;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* A / B 2行構成 */
.spot-list-lead {
  text-align: center;
  margin-bottom: 28px;
}

.spot-list-lead-a {
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 900;
  color: #1f190a;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.spot-list-lead-b {
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 700;
  color: #303030;
  line-height: 1.5;
}

.spot-list-lead-b strong {
  color: #ffc400;
  font-size: 1.25em;
}

/* screens: より大きく */
.spot-list-screens {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 32px;
}

.spot-list-screen {
  flex: 1 1 260px;
  max-width: 340px;
/*  border-radius: 12px; */
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.spot-list-banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.spot-list-banner {
  width: 100%;
  border-radius: 12px;
}

/* ======================
   公開方法セクション
   ====================== */
.steps-section {
  background: #fafafa;
  padding: 80px 24px;
  text-align: center;
}

/* h2 に revichika-31 を背景として使用 */
.steps-h2-wrap {
  max-width: 640px;
  margin: 0 auto 24px;
}

.steps-h2--bg {
  background-image: url('../generate_images/revichika-31.png');
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  padding: 32px 24px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 0;
}

.fast-inline {
  margin: 0 auto 20px;
}

.fast-inline-txt {
  display: inline-block;
  background: #ffc400;
  color: #1f190a;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  padding: 10px 28px;
  border-radius: 100px;
}

.steps-hint--boxed {
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 14px;
  color: #9d9388;
  line-height: 1.85;
  text-align: left;
  background: #fff9ec;
  border-radius: 4px;
  padding: 16px 20px;
  border: 1px solid #f0e4d0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 32px auto 0;
  text-align: left;
}

/* 各 figure に processed/revichika-32 を背景 */
.steps-step {
  margin: 0;
  background-color: #fff;
  background-image: url('../generate_images/processed/revichika-32.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 4px;
  padding: 16px 16px 16px 60px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 1px solid #f0ece5;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.steps-step-cap {
  font-size: 14px;
  color: #303030;
  line-height: 1.6;
  font-weight: 700;
}

.steps-step-cap a {
  color: #799951;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ======================
   GMB連携セクション
   ====================== */
.gmb-section {
  background-color: #ffffff;
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid #f0ece5;
}

.gmb-section .sub {
  font-size: 15px;
  color: #6b6560;
  margin-bottom: 40px;
  line-height: 1.9;
}

.gmb-box {
  background-color: #f9f7f4;
  border-radius: 4px;
  padding: 40px 32px;
  max-width: 560px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #f0ece5;
}

.gmb-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f190a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.gmb-support-text {
  font-size: 14px;
  color: #6b6560;
  margin-bottom: 20px;
  line-height: 1.8;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #1f190a;
  border: 2px solid #e0ddd9;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-google:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.16);
  transform: translateY(-2px);
}

.btn-google svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.gmb-support {
  font-size: 13px;
  color: #9d9388;
  margin-top: 12px;
}

.gmb-support a {
  color: #799951;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ======================
   CTAセクション（cta-dual は削除済み）
   ====================== */
.cta-section {
  background: linear-gradient(160deg, #799951 0%, #5a7a35 100%);
  padding: 80px 24px 72px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-section--ee {
  background: #eef6f8;
  color: #1f190a;
}

.cta-section--ee::before {
  display: none;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.btn-cta-white {
  display: inline-block;
  background-color: #ffffff;
  color: #799951;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 52px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.04em;
  text-decoration: none;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta-section--ee .btn-cta-white {
  background: #799951;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(121, 153, 81, 0.4);
}

.cta-section--ee .btn-cta-white:hover {
  background: #6a8844;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.24);
}

.cta-notes {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.82;
  line-height: 2;
}

.cta-section--ee .cta-notes {
  color: #9d9388;
  opacity: 1;
}

/* ======================
   フッター
   ====================== */
.site-footer {
  background-color: #1f190a;
  color: #c8c3bc;
  padding: 48px 24px;
  text-align: center;
  font-size: 13px;
  line-height: 2;
}

.site-footer .footer-logo {
  font-family: 'Arimo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.site-footer a {
  color: #ffc400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .company-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #3a3228;
  font-size: 12px;
  color: #9d9388;
}

/* ======================
   レスポンシブ（モバイル）
   ====================== */
@media (max-width: 600px) {
  .hero .container {
/*    padding: 32px 20px 40px; */
    padding: 12px 20px 20px;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 12px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 18px 28px;
    width: 100%;
    max-width: 380px;
    display: block;
    margin: 0 auto;
  }

  .btn-cta-white {
    font-size: 16px;
    padding: 18px 28px;
    width: 100%;
    max-width: 380px;
    display: block;
    margin: 0 auto;
  }

  .fast-badge {
    padding: 18px 36px;
    font-size: 28px;
  }

  .gmb-box {
    padding: 28px 20px;
  }

  .btn-google {
    font-size: 14px;
    padding: 14px 20px;
    width: 100%;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .mockup-section,
  .merits-section,
  .listing-section,
  .steps-section,
  .features-what-section,
  .features {
    padding: 56px 20px;
  }

  section h2 {
    font-size: clamp(20px, 5vw, 28px);
  }

  .spot-page-text-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .spot-page-box {
    width: 100%;
  }

  .spot-page-section,
  .spot-listing-section {
    padding: 56px 20px;
  }

  .listing-item {
    width: calc(50% - 8px);
    min-width: 0;
    max-width: none;
    padding: 16px 8px;
  }

  .listing-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .what-features-list {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 20px;
  }

  .what-feature-shot {
    max-height: 180px;
  }

  .gmb-section,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .merit-row {
    padding: 14px 16px;
    gap: 14px;
  }

  .merit-hl {
    font-size: 15px;
  }
}

/* ======================
   タブレット対応
   ====================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-mockup-wrap {
    max-width: 560px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .what-features-list {
    max-width: 700px;
    gap: 20px;
  }

  .listing-item {
    width: calc(33.33% - 11px);
    min-width: 130px;
  }
}

/* ======================
   問い合わせフォーム（アコーディオン）
   ====================== */

.contact-accordion {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
  text-align: left;
}

.contact-accordion.is-open {
  max-height: 1400px;
}

.contact-step--hidden {
  display: none;
}

.contact-field {
  margin: 20px 0 0;
  text-align: left;
}

.contact-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1f190a;
  margin-bottom: 6px;
}

.req {
  display: inline-block;
  background: #e05a00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid #d4cfc8;
  border-radius: 6px;
  background-color: #fff;
  color: #1f190a;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #799951;
  box-shadow: 0 0 0 3px rgba(121,153,81,0.15);
}

.contact-field input.is-error,
.contact-field textarea.is-error {
  border-color: #d94040;
  box-shadow: 0 0 0 3px rgba(217,64,64,0.12);
}

.contact-err {
  font-size: 12px;
  color: #d94040;
  margin-top: 4px;
  min-height: 18px;
  line-height: 1.5;
}

.btn-contact-submit {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: #799951;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
  letter-spacing: 0.04em;
}

.btn-contact-submit:hover {
  background: #6a8844;
  transform: translateY(-2px);
}

.btn-contact-submit:disabled {
  background: #aaa;
  cursor: not-allowed;
  transform: none;
}

.btn-contact-back {
  display: inline-block;
  padding: 14px 24px;
  background: transparent;
  color: #6b6560;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid #d4cfc8;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 44px;
  white-space: nowrap;
}

.btn-contact-back:hover {
  background: #f5f3f0;
}

.contact-confirm-intro {
  font-size: 14px;
  color: #6b6560;
  margin: 20px 0 16px;
  text-align: center;
}

.contact-confirm-list {
  background: #f9f7f4;
  border: 1px solid #e8e4de;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.8;
}

.contact-confirm-list dt {
  font-weight: 700;
  color: #1f190a;
  margin-top: 10px;
}

.contact-confirm-list dt:first-child {
  margin-top: 0;
}

.contact-confirm-list dd {
  color: #4a3f30;
  margin: 0;
  word-break: break-all;
  white-space: pre-wrap;
}

.contact-confirm-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.contact-confirm-actions .btn-contact-submit {
  flex: 1;
  margin-top: 0;
}

.contact-sending-msg {
  margin-top: 12px;
  font-size: 14px;
  color: #d94040;
  text-align: center;
  min-height: 20px;
  white-space: pre-wrap;
}

.contact-complete-msg {
  margin: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: #799951;
  text-align: center;
  line-height: 1.9;
  padding: 20px;
  background: #f0f7e8;
  border-radius: 8px;
  border: 1px solid #c8d8a8;
  white-space: pre-wrap;
}

.contact-toggle[aria-expanded="true"] {
  background: #f0f7e8;
  border-color: #799951;
}
