
/* style.css */
:root {
  --bg: #f8f6f2;
  --bg-soft: #f3efe8;
  --white: #ffffff;
  --text: #2f2a24;
  --text-soft: #655d53;
  --line: #ddd4c7;
  --accent: #9b7b4f;
  --accent-deep: #7c6038;
  --accent-soft: #e8dcc8;
  --shadow: 0 18px 40px rgba(69, 54, 31, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf7 0%, #f7f3ec 100%);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.section-lead {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 760px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(155, 123, 79, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(180, 152, 108, 0.16), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, #f5f0e8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.2));
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #9c7b4f, #7a603c);
  color: #fff;
  border: 1px solid #8b6f47;
  box-shadow: 0 12px 28px rgba(124, 96, 56, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7a603c, #5e472b);
  border-color: #735b3b;
  transform: translateY(1px);
  box-shadow: 0 12px 28px rgba(124, 96, 56, 0.22);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffffff, #f3f7f2);
  color: #6f8a6a;
  border: 1px solid #8faa87;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #f6f2ea, #e8f1e5);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.worry-grid,
.feature-grid,
.faq-grid,
.flow-grid,
.pattern-grid,
.plan-grid,
.support-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.highlight-box {
  margin-top: 60px;
  padding: 28px;
  border: 1px solid rgba(155, 123, 79, 0.2);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 239, 228, 0.88));
}

.highlight-box strong {
  color: var(--accent-deep);
}



.flow-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.flow-step {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flow-step span {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-name {
  margin: 6px 0 10px;
  font-size: 1.5rem;
}

.plan-price {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.plan-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-soft);
}

.plan-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
  color: var(--text-soft);
}

.plan-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  margin-top: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.spacing-top-lg {
  margin-top: 34px;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
}

details.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 22px;
  box-shadow: var(--shadow);
}

details.faq-item + details.faq-item {
  margin-top: 16px;
}


.faq-answer {
  padding: 0 0 22px;
  color: var(--text-soft);
  border-top: 1px solid #eee5d7;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 38px;
}

.access-card,
.temple-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.map-box {
  aspect-ratio: 16 / 10;
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.access-list {
  margin: 18px 0 0;
  padding-left: 1.1em;
  color: var(--text-soft);
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 34px;
  align-items: stretch;
}

.contact-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 228, 0.95));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-panel-title {
  margin: 0 0 14px;
  font-size: 1.6rem;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-mini {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-phone {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-deep);
  line-height: 1.3;
  margin: 10px 0 4px;
}

.contact-hours {
  margin: 0 0 22px;
}

.document-form-wrap {
  margin-top: 42px;
}

.document-form-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.document-form-head h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.document-form {
  margin-top: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-bottom: 18px;
}

.form-grid-zip {
  grid-template-columns: 0.7fr 1.3fr;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 8px;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-field input:focus {
  outline: none;
  border-color: rgba(155, 123, 79, 0.55);
  box-shadow: 0 0 0 4px rgba(155, 123, 79, 0.12);
}

.field-note {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.required,
.optional {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  vertical-align: middle;
}

.required {
  background: #f6dfdf;
  color: #a34d4d;
}

.optional {
  background: #ece8e1;
  color: var(--text-soft);
}

.privacy-box {
  margin-top: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 244, 237, 0.85), rgba(255, 255, 255, 0.98));
}

.privacy-box h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.privacy-box ul {
  margin: 14px 0 0;
  padding-left: 1.2em;
  color: var(--text-soft);
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-weight: 700;
}

.check-field input {
  margin-top: 4px;
}

.form-actions {
  margin-top: 22px;
}

.confirm-dialog {
  width: min(720px, calc(100% - 32px));
  padding: 0;
  border: none;
  border-radius: 24px;
  background: transparent;
}

.confirm-dialog::backdrop {
  background: rgba(47, 42, 36, 0.42);
  backdrop-filter: blur(3px);
}

.confirm-dialog-body {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.confirm-title {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.confirm-list {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px 18px;
  margin: 22px 0 0;
}

.confirm-list dt {
  font-weight: 700;
  color: var(--accent-deep);
}

.confirm-list dd {
  margin: 0;
  color: var(--text);
  word-break: break-word;
}

.confirm-actions {
  margin-top: 26px;
}

.footer {
  padding: 32px 0 100px;
  color: #7a7268;
  font-size: 0.92rem;
  text-align: center;
}

.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(155, 123, 79, 0.16);
  box-shadow: 0 -12px 24px rgba(57, 43, 24, 0.08);
}

.floating-cta-inner {
  width: min(calc(100% - 10px), 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.muted {
  color: var(--text-soft);
}

@media (max-width: 1080px) {
  .hero-grid,
  .definition-box,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-grid,
  .flow-grid,
  .feature-grid,
  .faq-grid,
  .worry-grid,
  .pattern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-bottom: 64px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-actions {
    width: 100%;
  }

  .top-actions .btn {
    flex: 1 1 auto;
  }

  .hero-copy {
    padding: 8px 0 0;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-badge {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .plan-card.recommend {
    transform: none;
  }

  .support-grid,
  .plan-grid,
  .flow-grid,
  .feature-grid,
  .faq-grid,
  .worry-grid,
  .pattern-grid,
  .floating-cta-inner,
  .form-grid,
  .form-grid-zip,
  .confirm-list {
    grid-template-columns: 1fr;
  }

  .card,
  .contact-panel,
  .access-card,
  .temple-card,
  .definition-main,
  .document-form-card,
  .confirm-dialog-body {
    padding: 22px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }

  .floating-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-main-visual-story {
  width: 100%;
  padding: 0;
  margin: 0;
}

.lp-main-visual-story-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.lp-main-visual-story-image {
  display: block;
  width: 100%;
  height: auto;
}
/* ======================================
   Header
====================================== */
.lp-header {
  position: relative;
  overflow: hidden;
  background: #00053a; /* ベースの青 */
}

.lp-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-pattern1.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 200px auto; /* ←ここで柄の大きさ調整 */
  opacity: 0.21;               /* ←柄の見え方調整 */
  pointer-events: none;
}

.lp-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-header-logo img {
  height: 50px;
}

/* ======================================
   Header CTA（PCのみ）
====================================== */
.lp-header-cta {
  display: flex;
  gap: 12px;
}


/* ======================================
   SP
====================================== */
@media (max-width: 767px) {

  .lp-header-inner {
    justify-content: center;
  }

  .lp-header-logo img {
    height: 40px;
  }

  /* ヘッダーCTA非表示 */
  .lp-header-cta {
    display: none;
  }
}

/* ======================================
   PC微調整
====================================== */
@media (min-width: 768px) {

  .lp-floating-btn {
    font-size: 15px;
    padding: 14px 26px;
  }
}

/* ======================================
   本文がCTAに隠れないように
====================================== */
body {
  padding-bottom: 100px;
}
/* ======================================
   ヒーロ画像まわり
====================================== */
.lp-hero {
  background: linear-gradient(
    180deg,
    #e9f2e4 0%,
    #f8faf6 100%
  );
  padding: 20px 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .lp-hero {
    padding: 0px 10px 0px;
  }
}
/* PC：白カードあり */
.lp-hero-inner {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* スマホ：白カード外す */
@media (max-width: 768px) {
  .lp-hero-inner {
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }
}

.lp-hero img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 12px;     /* ←ちょい丸めると馴染む */
  box-shadow: 0 10px 20px rgba(0,0,0,0.08); /* ←浮かせる */
}
/* ======================================
   Problems Section
====================================== */
.lp-problems {
  padding: 60px 20px;
  background: #f8faf6;
}

.lp-problems-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-problems-heading {
  text-align: center;
  margin-bottom: 20px;
}

.lp-problems-heading h2 {
  margin: 0 auto;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.8;
  font-weight: 600;
  color: #2f2a25;
}

.lp-problems-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5f564c;
}

/* 一覧 */
.lp-problems-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.lp-problems-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #EEF2E2;
  border: 1px solid #e8e1d6;
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.lp-problems-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1px;
  background:
    linear-gradient(rgba(228, 242, 226,0.1), rgba(0,5,113,0.6)),
    url("../img/bg-washi-green.png");
}

.lp-problems-icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.lp-problems-item p {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 500;
  color: #2f2a25;
}

/* ======================================
   Tablet
====================================== */
@media screen and (max-width: 1024px) {
  .lp-problems-heading {
    margin-bottom: 5px;
  }

  .lp-problems-list {
    gap: 18px;
  }

  .lp-problems-item {
    padding: 16px 18px;
    gap: 14px;
  }

  .lp-problems-icon {
    width: 80px;
    height: 80px;
  }

  .lp-problems-item p {
    font-size: 17px;
  }
}

/* ======================================
   Smartphone
====================================== */
@media screen and (max-width: 767px) {
  .highlight-box {
    padding: 14px;
    margin-top: 40px;
  }

  .lp-problems-heading {
    text-align: left;
    margin-bottom: 24px;
    margin-top: 24px;
  }

  .lp-problems-heading h2 {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .lp-problems-heading p {
    font-size: 14px;
    line-height: 1.8;
  }

  .lp-problems-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lp-problems-item {
    align-items: center;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 16px;
  }

  .lp-problems-icon {
    width: 110px;
    height: 110px;
    border-radius: 1px;
  }

  .lp-problems-item p {
    font-size: 16px;
    line-height: 1.65;
  }
}

.lp-marker {
  display: inline;
  padding: 0 0.14em;
  background-image: linear-gradient(
    transparent 40%,
    #efe94c 60%
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* =========================
   改行制御
========================= */
.sp-br {
  display: none;
}

.pc-br {
  display: none;
}

@media (max-width: 767px) {
  .sp-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .pc-br {
    display: block;
  }
}

.lp-kaiso {
  padding: 60px 20px;
  background: #fff;
}

.lp-kaiso-inner {
  max-width: 1100px;
  margin: 0 auto;
}


/* 改葬タイトル囲み */
.lp-kaiso-title-box {
  max-width: 480px;
  margin: 0 auto 40px;
  padding: 8px;
  background: #fff;
  border: 1px solid #ddd;
  position: relative;
  border-radius: 6px;
  text-align: center;
}

.lp-kaiso-title-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 4px;
  background: #a8bfa3;
  background: linear-gradient(90deg, #bcd3b7, #8faa87);
}

.lp-kaiso-title-box::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4px;
  height: 40px;
  background: #a8bfa3;
  background: linear-gradient(90deg, #bcd3b7, #8faa87);
}
.lp-kaiso-title-box-inner {
  position: relative;
}

.lp-kaiso-title-box-inner::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -8px;
  width: 40px;
  height: 4px;
  background: #6f8a6a;
  background: linear-gradient(90deg, #6f8a6a, #4f6a4a);
  z-index: 2;
}

.lp-kaiso-title-box-inner::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -9px;
  width: 4px;
  height: 40px;
  background: #6f8a6a;
  background: linear-gradient(90deg, #6f8a6a, #4f6a4a);
  z-index: 2;
}
@media (max-width: 767px) {
  .lp-kaiso-title-box {
    max-width: 100%;
    padding: 10px;
    text-align: center;
  }
    .lp-kaiso-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .lp-kaiso-title-box:before,
  .lp-kaiso-title-box::after {
    width: 30px;
    height: 30px;
  }
  /* ===== 右下 ===== */
  .lp-kaiso-title-box-inner::before {
    bottom: -27px;
    right: -11px;
    width: 30px;
    height: 30px;
  }

  .lp-kaiso-title-box-inner::after {
    bottom: -27px;
    right: -11px;
    width: 30px;
    height: 30px;
  }
}



/* 各ブロック */
.lp-kaiso-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.lp-kaiso-item.reverse {
  flex-direction: row-reverse;
}

.lp-kaiso-img {
  width: 45%;
}

.lp-kaiso-img img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-kaiso-text {
  width: 55%;
}

.lp-kaiso-text h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.lp-kaiso-text h3 span {
  display: inline-block;
  background: #8c6b4f;
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  margin-right: 8px;
}

.lp-kaiso-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
.lp-kaiso {
  background: linear-gradient(
    180deg,
    #e7f1e1 0%,
    #ffffff 100%
  );
}
/* SP */
@media (max-width: 767px) {
  .lp-kaiso-item,
  .lp-kaiso-item.reverse {
    flex-direction: column;
    gap: 6px; /* ←ここ重要 */
    margin-bottom: 32px;
  }

  .lp-kaiso-img,
  .lp-kaiso-text {
    width: 100%;
  }

  .lp-kaiso-img {
    margin-bottom: 0;
  }

  .lp-kaiso-text {
    margin-top: 0;
  }

  .lp-kaiso-text h3 {
    margin-top: 0;
    margin-bottom: 8px;
  }

  .lp-kaiso-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
/* =========================
   Intro（キャッチ＋リード）
========================= */
.lp-intro {
  text-align: center;
  margin-bottom: 60px;
}

/* キャッチ */
.lp-intro-catch {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.5;
  font-weight: 700;
  color: #2f2a25;
}

/* リード */
.lp-intro-lead {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  color: #5f564c;
}

/* =========================
   改行制御
========================= */
.sp-br {
  display: none;
}

/* =========================
   SP調整
========================= */
@media (max-width: 767px) {
  .lp-intro {
    text-align: left;
    margin-bottom: 40px;
  }

  .lp-intro-catch {
    font-size: 28px;
    line-height: 1.6;
  }

  .lp-intro-lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .sp-br {
    display: block;
  }
}

.lp-inner {
  max-width: 1100px;
  margin: 0 auto;
}



/* =========================
   Features Section
========================= */
/* セクション */
.lp-features {
  padding: 80px 20px;
  background: linear-gradient(
    180deg,
    #faf7f2 0%,
    #f1e7db 100%
  );

}

.lp-intro {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.5;
  font-weight: 700;
  color: #2f2a25;
}

.lp-features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 各ブロック */
.lp-feature-item {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border-top: 3px solid #bfae9b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

/* PCレイアウト */
.lp-feature-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.lp-feature-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.lp-feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  background: #2f3e63;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: 6px;
}

.lp-feature-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.8;
  font-weight: 700;
  color: #2f2a25;
}

.lp-feature-desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: #4f473f;
}

.lp-feature-img {
  width: 40%;
  flex-shrink: 0;
}

.lp-feature-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* =========================
   Smartphone
========================= */
@media (max-width: 767px) {
  .lp-intro {
    text-align: left;
    font-size: 26px;
    margin-bottom: 24px;
  }

  .lp-features-list {
    gap: 24px;
  }

  .lp-feature-item {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .lp-feature-content {
    flex-direction: column;
    gap: 12px;
  }

  .lp-feature-text-wrap {
    gap: 8px;
  }

  .lp-feature-num {
    min-width: 46px;
    height: 46px;
    font-size: 14px;
    border-radius: 5px;
  }

  .lp-feature-title {
    font-size: 28px;
    line-height: 1.6;
  }

  .lp-feature-img {
    width: 100%;
  }

  .lp-feature-desc {
    font-size: 16px;
    line-height: 1.8;
  }
}
/* =========================
   CTA Section
========================= */
.lp-cta {
  background:
    linear-gradient(rgba(245,245,240,0.75), rgba(255,255,255,0.15)),
    url("../img/bg-washi-green.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 62px 20px;
  text-align: center;
}


.lp-cta-lead {
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.9;
  color: #2f2a25;
}

/* =========================
   Phone CTA
========================= */
.lp-cta-phone {
  display: block;
  background: linear-gradient(135deg, #7a8f74, #a8bfa3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  margin: 0 0 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-cta-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.lp-cta-phone-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lp-cta-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-cta-phone-icon svg {
  width: 2.2em;
  height: 2.2em;
}

.lp-cta-phone-label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.lp-cta-phone-number {
  display: block;
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.10);
  margin-bottom: 8px;
}

.lp-cta-phone-sub {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 6px;
  opacity: 0.96;
}

.lp-cta-phone-time {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.92;
}

.lp-cta-note {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #5c544a;
}


/* =========================
   改行制御
========================= */
.sp-only {
  display: none;
}

/* =========================
   Smartphone
========================= */
@media (max-width: 767px) {
  .lp-cta {
    padding: 52px 16px;
  }

  .lp-cta-inner {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .lp-cta-lead {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.85;
    text-align: left;
  }

  .lp-cta-phone {
    padding: 18px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .lp-cta-phone-top {
    gap: 6px;
    margin-bottom: 6px;
  }

  .lp-cta-phone-label {
    font-size: 14px;
  }

  .lp-cta-phone-number {
    font-size: 32px;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
  }

  .lp-cta-phone-sub {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 4px;
  }

  .lp-cta-phone-time {
    font-size: 12px;
  }

  .lp-cta-note {
    margin-bottom: 18px;
    font-size: 13px;
    text-align: center;
  }

  .lp-btn-wrap {
    width: 100%;
  }

  .sp-only {
    display: block;
  }
}

/* タイトル囲み */
.lp-section-title-box {
  max-width: 480px;
  margin: 0 auto 40px;
  padding: 8px;
  background: #fff;
  border: 1px solid #ddd;
  position: relative;
  border-radius: 6px;
  text-align: center;
}

.lp-section-title-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 4px;
  background: #a8bfa3;
  background: linear-gradient(90deg, #bcd3b7, #8faa87);
}

.lp-section-title-box::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4px;
  height: 40px;
  background: #a8bfa3;
  background: linear-gradient(90deg, #bcd3b7, #8faa87);
}
.lp-section-title-box-inner {
  position: relative;
}

.lp-section-title-box-inner::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -8px;
  width: 40px;
  height: 4px;
  background: #6f8a6a;
  background: linear-gradient(90deg, #6f8a6a, #4f6a4a);
  z-index: 2;
}

.lp-section-title-box-inner::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -9px;
  width: 4px;
  height: 40px;
  background: #6f8a6a;
  background: linear-gradient(90deg, #6f8a6a, #4f6a4a);
  z-index: 2;
}
@media (max-width: 767px) {
  .lp-section-title-box {
    max-width: 100%;
    text-align: center;
  }
    .lp-section-title {
    font-size: 28px;
  }
  .lp-section-title-box:before,
  .lp-section-title-box::after {
    width: 30px;
    height: 30px;
  }
  /* ===== 右下 ===== */
  .lp-section-title-box-inner::before {
    bottom: -31px;
    right: -9px;
    width: 30px;
    height: 30px;
  }

  .lp-section-title-box-inner::after {
    bottom: -31px;
    right: -9px;
    width: 30px;
    height: 30px;
  }
}
/* =========================
   Support Section
========================= */
.lp-support {
  padding: 80px 20px;
  background:
    linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.6)),
    url("../img/bg-yellow.jpg");
  background-size: cover;
  background-position: center;
}


.lp-support-lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #4f473f;
}

/* グリッド */
.lp-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

/* カード */
.lp-support-item {
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: 0.3s;
}
.lp-support-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
/* アイコン */
.lp-support-icon {
  margin-bottom: 16px;
}

.lp-support-icon img {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* タイトル */
.lp-support-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #2f2a25;
}

/* 本文 */
.lp-support-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #5a5147;
}
@media (max-width: 767px) {
  .lp-support-lead {
    margin-bottom: 28px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
  }

  .lp-support-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .lp-support-item {
    padding: 18px 12px;
    border-radius: 12px;
  }

  .lp-support-icon {
    margin-bottom: 12px;
  }

  .lp-support-icon img {
    max-width: 96px;
  }

  .lp-support-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .lp-support-text {
    font-size: 13px;
    line-height: 1.75;
  }
}
.lp-flow-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #5a5147;
  margin: 40px auto 32px;
}

@media (max-width: 767px) {
  .lp-flow-intro {
    margin: 20px auto 24px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
  }
}
/* =========================
   Price Section
========================= */
.lp-price {
  padding: 80px 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f3ee 100%
  );
}
}

.lp-price-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-price-lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #5a5147;
}

/* 3列グリッド */
.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

/* 各プランカード */
.lp-price-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 18px 24px;
  box-sizing: border-box;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-top: 3px solid #bfae9b;
  text-align: center;
}

/* タイプ名 */
.lp-price-name {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 800;
  color: #2f2a25;
  font-family: "Noto Serif JP", serif; /* 明朝 */
}

/* 写真 */
.lp-price-photo {
  margin-bottom: 18px;
}

.lp-price-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* 価格 */
.lp-price-value {
  margin: 0 0 18px;
  color: #2f2a25;
  line-height: 1.4;
}

.lp-price-from {
  display: block;
  font-size: 18px;
  color: #5c5751;
  margin-bottom: 4px;
  font-family: "Noto Serif JP", serif; /* 明朝 */
}

.lp-price-value strong {
  font-size: 30px;
  font-weight: 800;
  color: #7a8f74;
}
.lp-price-main {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

/* 数字（主役） */
.lp-price-num {
  font-size: 50px;
  font-weight: 700;
  color: #6f8a6a;
  font-family: "Noto Serif JP", serif; /* 明朝 */
  letter-spacing: 0.03em;
}

/* 万円（小さく） */
.lp-price-unit {
  font-size: 16px;
  color: #7a8f74;
  font-weight: 500;
  margin-bottom: 10px;
}


@media (max-width: 1024px) {
  .lp-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .lp-price-lead {
    margin: 0 auto 28px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
  }

  .lp-price-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lp-price-item {
    padding: 18px 14px 20px;
    border-radius: 12px;
  }

  .lp-price-name {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 800;
  }

  .lp-price-photo {
    margin-bottom: 14px;
  }

  .lp-price-value {
    margin-bottom: 14px;
  }

  .lp-price-value strong {
    font-size: 28px;
  }
  .lp-price-num {
    font-size: 46px;
  }

  .lp-price-unit {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
/* 含まれるもの */
.lp-price-common {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 32px auto 0;
  padding: 24px 20px;
  background: #f4efe7;
  border: 1px solid #d8cec0;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.lp-price-common-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #4f473f;
  font-weight: 700;
}

.lp-price-common-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-price-common-list li {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.8;
  color: #5a5147;
}

.lp-price-common-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #7a8f74;
}
@media (max-width: 767px) {
  .lp-price-common {
    margin-top: 24px;
    padding: 18px 14px;
  }

  .lp-price-common-title {
    text-align: left;
    font-size: 18px;
  }

  .lp-price-common-list {
    display: block;
  }

  .lp-price-common-list li {
    margin-bottom: 6px;
  }

  .lp-price-common-list li:last-child {
    margin-bottom: 0;
  }
}
/* =========================
   FAQ
========================= */
.lp-faq {
  padding: 80px 20px;
  background:
    linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.4)),
    url("../img/bg-paper.jpg");
  background-size: 300px;
}

.lp-faq-heading {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.5;
  font-weight: 700;
  color: #2f2a25;
  text-align: center;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 各項目 */
.lp-faq-item {
  border: 1px solid #e3ddd3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.lp-faq-item[open] {
  border-color: #cdbfae;
  background: #fcfaf7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

/* 質問 */
.lp-faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
  color: #2f2a25;
}

.lp-faq-question::-webkit-details-marker {
  display: none;
}

.lp-faq-question-text {
  flex: 1;
}

/* ＋/−アイコン */
.lp-faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.lp-faq-icon::before,
.lp-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #7a8f74;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.lp-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lp-faq-item[open] .lp-faq-icon::before,
.lp-faq-item[open] .lp-faq-icon::after {
  background: #6f8a6a;
}

.lp-faq-item[open] .lp-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

/* 回答 */
.lp-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.lp-faq-item[open] .lp-faq-answer {
  grid-template-rows: 1fr;
}

.lp-faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px 0;
  font-size: 16px;
  line-height: 2.0;
  color: #5a5147;
}

.lp-faq-item[open] .lp-faq-answer > p {
  padding: 0 22px 22px;
}

/* ホバー（PCだけ自然に） */
@media (hover: hover) {
  .lp-faq-item:hover {
    border-color: #d5cab9;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
  }
}

/* SP */
@media (max-width: 767px) {
  .lp-faq {
    padding: 48px 20px;
  }

  .lp-faq-heading {
    margin-bottom: 22px;
    font-size: 28px;
    text-align: left;
  }

  .lp-faq-list {
    gap: 12px;
  }

  .lp-faq-question {
    padding: 16px 16px;
    font-size: 18px;
    line-height: 1.8;
  }

  .lp-faq-answer > p {
    padding: 0 16px 0;
    font-size: 16px;
    line-height: 1.9;
  }

  .lp-faq-item[open] .lp-faq-answer > p {
    padding: 0 16px 16px;
  }

  .lp-faq-icon {
    width: 20px;
    height: 20px;
  }

  .lp-faq-icon::before,
  .lp-faq-icon::after {
    width: 16px;
  }
}
.lp-faq-answer .lp-faq-note {
  font-size: 12px;
  line-height: 1.2;
  color: #8a8176;
}

/* =========================
   Access
========================= */
.lp-access {
  padding: 80px 20px;
  background:
  linear-gradient(rgba(252,250,247,0.7), rgba(239,245,235,0.1)),
    url("../img/bg-blue.jpg");
  background-size: cover;
  background-position: center;
  border: none;
}

.lp-access-title {
  margin: 0 0 36px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.5;
  font-weight: 700;
  color: #2f2a25;
  text-align: center;
}

/* 1ブロックごとの横並び */
.lp-access-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}

/* テキスト */
.lp-access-text {
  color: #4f473f;
}

.lp-access-subtitle {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  color: #2f2a25;
}

.lp-access-text p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #5a5147;
}

/* 画像 */
.lp-access-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #d8cec0;
  box-sizing: border-box;
}

/* Google map */
.lp-access-map-block {
  margin-top: 8px;
}

.lp-access-subtitle-center {
  text-align: center;
  margin-bottom: 18px;
}

.lp-access-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  display: block;
}

/* =========================
   Smartphone
========================= */
@media (max-width: 767px) {
  .lp-access {
    padding: 48px 20px;
  }

  .lp-access-title {
    margin-bottom: 24px;
    font-size: 28px;
    text-align: left;
  }

  .lp-access-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  /* SPは地図→文言の順にしたいので画像を先に */
  .lp-access-image {
    order: 1;
  }

  .lp-access-text {
    order: 2;
  }

  .lp-access-subtitle {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .lp-access-text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .lp-access-subtitle-center {
    text-align: left;
    margin-bottom: 12px;
  }

  .lp-access-map iframe {
    height: 300px;
    border-radius: 10px;
  }
}
/* =========================
   Temple
========================= */
.lp-temple {
  padding: 80px 20px;
  background:
    linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.8)),
    url("../img/bg-paper.jpg");
  background-size: 300px;
}

.lp-temple-title {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.5;
  font-weight: 700;
  color: #2f2a25;
  text-align: center;
}

.lp-temple-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.lp-temple-text {
  padding: 20px 10px;
  color: #4f473f;
}

.lp-temple-lead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 2;
  color: #5a5147;
}

.lp-temple-info {
  margin: 28px 0 0;
}

.lp-temple-info div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #ece6dc;
}

.lp-temple-info dt {
  font-weight: 700;
  color: #4f473f;
}

.lp-temple-info dd {
  margin: 0;
  color: #5a5147;
}

.lp-temple-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.98);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* SP */
@media (max-width: 767px) {
  .lp-temple {
    padding: 48px 20px;
  }

  .lp-temple-title {
    margin-bottom: 22px;
    font-size: 28px;
    text-align: left;
  }

  .lp-temple-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-temple-photo {
    order: 1;
  }

  .lp-temple-text {
    order: 2;
    padding: 20px 10px;
  }

  .lp-temple-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .lp-temple-info div {
    grid-template-columns: 64px 1fr;
    gap: 10px;
    padding: 7px 0;
  }

  .lp-temple-info dt,
  .lp-temple-info dd {
    font-size: 14px;
    line-height: 1.8;
  }
}
.lp-movie-cm {
  padding: 64px 20px;
  background: #f8f7f5;
}

.lp-movie-cm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lp-movie-cm-title {
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.lp-movie-cm-lead {
  font-size: 15px;
  line-height: 2;
  color: #5a5147;
}

.lp-movie-frame {
  position: relative;
  padding-top: 56.25%;
}

.lp-movie-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .lp-movie-cm {
    padding: 46px 20px;
  }

  .lp-movie-cm-row {
    grid-template-columns: 1fr;
  }

  .lp-movie-cm-text {
    margin-bottom: 16px;
  }

  .lp-movie-cm-title {
    font-size: 22px;
  }
}

.lp-movie-full {
  padding: 64px 20px;
  background: linear-gradient(
    180deg,
    #f7f6f3 0%,
    #eceae4 100%
  );
}

.lp-movie-full-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.5;
  font-weight: 700;
  color: #2f2a25;
}

.lp-movie-full-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #5a5147;
}

.lp-movie-frame {
  position: relative;
  width: 80%;
  padding-top: 46.25%;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

.lp-movie-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .lp-movie-full {
    padding: 48px 20px;
  }

  .lp-movie-full-title {
    margin-bottom: 10px;
    text-align: left;
    font-size: 28px;
  }

  .lp-movie-full-lead {
    margin: 0 0 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
  }

  .lp-movie-frame {
  width: 100%;
  padding-top: 56.25%;
  }
}

.lp-fv {
  width: min(90%, 1200px);
  margin: 0 auto;
}

/* テキスト部分 */
.lp-fv-copy {
  text-align: center;
  padding: 30px 20px 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* キャッチ */
.lp-fv-catch {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.4;
  font-weight: 700;
  color: #2f2a25;
}

/* サブ */
.lp-fv-sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5a5147;
}

/* 画像 */
.lp-fv-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
.lp-fv {
    width: 100%;
}
  .lp-fv-copy {
    padding: 40px 16px 20px;
  }

  .lp-fv-catch {
    font-size: 24px;
  }

  .lp-fv-sub {
    font-size: 16px;
  }
}
.lp-intro-lead {
  font-weight: 400;
}
/* =========================
   ボタン共通
========================= */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

/* =========================
   メインボタン
========================= */
.lp-btn-primary {
  background: linear-gradient(135deg, #9c7b4f, #7a603c);
  color: #ffffff;
  border: 1px solid #8b6f47;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lp-btn-primary:hover {
  background: linear-gradient(135deg, #7a603c, #5e472b);
  border-color: #735b3b;
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

/* =========================
   サブボタン
========================= */
.lp-btn-secondary {
  background: linear-gradient(135deg, #ffffff, #f3f7f2);
  color: #6f8a6a;
  border: 1px solid #8faa87;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.lp-btn-secondary:hover {
  background: linear-gradient(135deg, #f6f2ea, #e8f1e5);
  transform: translateY(1px);
}

/* =========================
   CTAラベル
========================= */
.lp-btn-wrap {
  text-align: center;
}

.lp-btn-label {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 6px;
  color: #6f8a6a;
}

/* =========================
   ヘッダーCTA
========================= */
.lp-header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-header-cta .lp-btn {
  min-width: 150px;
  padding: 12px 40px;
  font-size: 14px;
}

/* ヘッダー メイン */
.lp-btn-header {
  background: linear-gradient(135deg, #9c7b4f, #7a603c);
  color: #ffffff;
  border: none;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lp-btn-header:hover {
  background: linear-gradient(135deg, #7a603c, #5e472b);
  transform: translateY(1px);
}

/* ヘッダー サブ */
.lp-btn-headersub {
  background: linear-gradient(135deg, #ffffff, #f3f7f2);
  color: #6f8a6a;
  border: 1px solid #8faa87;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.lp-btn-headersub:hover {
  background: linear-gradient(135deg, #f6f2ea, #e8f1e5);
  transform: translateY(1px);
}


/* =========================
   FV直下CTA
========================= */
.lp-cta-first {
  padding: 20px 20px 40px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
}

.lp-cta-first-text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #5a5147;
}

.lp-cta-first-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-cta-first .lp-btn-wrap {
  width: auto;
  flex: 0 0 340px;
}

/* FVでは少し控えめ */
.lp-cta-first .lp-btn {
  width: 70%;
  min-width: 0;
  padding: 13px 20px;
  font-size: 15px;
}

.lp-cta-first .lp-btn-primary {
  background: linear-gradient(135deg, #a8895f, #8a6e47);
  color: #ffffff;
  border: 1px solid #8a6e47;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.lp-cta-first .lp-btn-secondary {
  background: #ffffff;
  color: #7a8f74;
  border: 1px solid #9bb59a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.lp-cta-first .lp-btn:hover {
  transform: translateY(1px);
}

/* =========================
   大きいCTAエリア
========================= */
.lp-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-cta-buttons .lp-btn-wrap {
  width: auto;
  flex: 0 0 340px;
}

.lp-cta-buttons .lp-btn {
  width: 80%;
  min-width: 0;
}

/* =========================
   SP対応
========================= */
@media (max-width: 767px) {
  .lp-header-cta {
    gap: 8px;
    display: none;
  }

  .lp-header-cta .lp-btn {
    min-width: 120px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .lp-cta-first {
    padding: 28px 16px 32px;
  }

  .lp-cta-first-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .lp-cta-first-buttons,
  .lp-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .lp-cta-first .lp-btn-wrap,
  .lp-cta-buttons .lp-btn-wrap {
    width: 100%;
    flex: none;
  }

  .lp-btn {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    font-size: 15px;
  }

  .lp-btn-label {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

@media (min-width: 768px) {

  /* CTA全体を80%に */
  .lp-cta-first-buttons {
    width: 100%;
    margin: 0 auto;
    gap: 10px; /* 少し詰める */
  }

  /* ボタン幅を少しコンパクトに */
  .lp-cta-first .lp-btn-wrap {
    flex: 1;
    max-width: 280px;
  }

  /* ボタン自体も少し軽く */
  .lp-cta-first .lp-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}
/* =========================
   クロージング全体
========================= */
.lp-closing {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #f3efe8 0%,
    #e7e0d5 100%
  );
}

/* =========================
   テキスト
========================= */
.lp-closing-message {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #4f463d;
}
.lp-closing-title {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 38px;
  line-height: 1.8;
  color: #4f463d;
}

/* =========================
   CTAエリア
========================= */
.lp-closing-cta {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lp-closing-cta .lp-btn-wrap {
  flex: 0 0 340px;
}

/* =========================
   ボタン微調整（共通CTAより少し控えめ）
========================= */
.lp-closing-cta .lp-btn {
  width: 100%;
  min-width: 0;
  padding: 14px 24px;
  font-size: 16px;
}

/* =========================
   PC調整（締める）
========================= */
@media (min-width: 768px) {

  /* ボタンサイズ少し小さく */
  .lp-closing-cta .lp-btn {
    padding: 12px 22px;
    font-size: 15px;
  }

  /* 幅コンパクト */
  .lp-closing-cta .lp-btn-wrap {
    flex: 0 0 280px;
  }

  /* 間詰める */
  .lp-closing-cta {
    gap: 12px;
  }

  /* テキストとの距離 */
  .lp-closing-text {
    margin-bottom: 24px;
  }
}

/* =========================
   スマホ調整
========================= */
@media (max-width: 767px) {

  .lp-closing {
    padding: 60px 16px;
  }

  .lp-closing-message {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .lp-closing-title {
  font-size: 30px;
  line-height: 2;
  color: #4f463d;
}
  .lp-closing-cta {
    flex-direction: column;
    gap: 12px;
  }

  /* ボタン幅80% */
  .lp-closing-cta .lp-btn-wrap {
    width: 80%;
    margin: 0 auto;
    flex: none;
  }

  .lp-closing-cta .lp-btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
  }
}
/* =========================
   クロージング写真
========================= */
.lp-closing-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 32px;
  align-items: start;
}

.lp-closing-photo {
  width: 100%;
}

.lp-closing-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* スマホ */
@media (max-width: 767px) {
  .lp-closing-photos {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto 24px;
  }

  .lp-closing-photo img {
    width: 100%;
  }
}
/* =========================
   HPへのリンク
========================= */
.lp-more-info {
  padding: 64px 20px 48px;
  background: #fff;
}

.lp-more-info__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px;
  background: #faf8e8;
  text-align: center;
}

.lp-more-info__lead {
  margin: 0;
  padding-top: 28px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  color: #3f3528;
}

.lp-more-info__text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: #5f564c;
}

.lp-more-info__minitext {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #5f564c;
}

.lp-more-info__buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.lp-more-info__btn {
  display: inline-block;
  min-width: 220px;
  padding: 14px 24px;
  background: #ffffff;
  color: #5a4b37;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  border: 1px solid #cdbda2;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lp-more-info__btn:hover {
  background: #f3ede3;
  color: #3f3528;
  border-color: #b9a789;
}

@media screen and (max-width: 767px) {
  .lp-more-info {
    padding: 40px 16px 12px;
  }

  .lp-more-info__lead {
    padding-top: 22px;
    font-size: 22px;
  }

  .lp-more-info__text {
    font-size: 14px;
  }

  .lp-more-info__minitext {
    font-size: 11px;
  }

  .lp-more-info__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .lp-more-info__btn {
    width: 100%;
    min-width: auto;
    padding: 14px 16px;
    font-size: 14px;
  }
}