@charset "UTF-8";

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  background: #f9f7f2;
  color: #4f4332;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.sp-only {
  display: none;
}

/* ========================================
   Scroll Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ========================================
   Section Divider (gold line under titles)
   ======================================== */
.section-divider {
  display: block;
  width: 80px;
  height: 1px;
  background-color: #b5924c;
  margin: 32px auto 0;
}

/* ========================================
   Gallery (hidden)
   ======================================== */
.gallery {
  display: none;
}

/* ========================================
   Header  h:80 bg:#f6f4ee sticky
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background: #f6f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__link {
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  color: #3a332d;
  padding: 0 8px;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.header__link:hover {
  opacity: 0.7;
}

.header__sep {
  width: 1px;
  height: 28px;
  background: #3a332d;
  opacity: 0.3;
  margin: 0 8px;
  flex-shrink: 0;
}

/* ========================================
   Hero (FV)  w:1440 h:720
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.hero__bg {
  width: 100%;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__cta {
  position: absolute;
  left: 7.2%;
  bottom: 16.7%;
  width: clamp(280px, 26.5vw, 381px);
  height: clamp(52px, 5.1vw, 73px);
  background: #d56e07;
  color: #ffffff;
  font-size: clamp(17px, 1.67vw, 24px);
  font-weight: 800;
  line-height: clamp(52px, 5.1vw, 73px);
  text-align: center;
  display: block;
  border-radius: clamp(10px, 1.04vw, 15px);
  box-shadow: 0 clamp(4px, 0.42vw, 6px) 0 #a2601d;
  transition: opacity 0.3s;
}

.hero__cta:hover {
  opacity: 0.85;
}

.hero__note {
  position: absolute;
  left: 7.2%;
  bottom: 4%;
  width: clamp(280px, 26.5vw, 381px);
  font-size: clamp(12px, 1.11vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  color: #000000;
}

/* ========================================
   悩み  h:700 bg:#f6f4ee
   ======================================== */
.worry {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f6f4ee;
  overflow: hidden;
  height: 700px;
}

.worry__decoration {
  position: absolute;
  right: 0;
  top: 95px;
  width: 999px;
  height: 602px;
  pointer-events: none;
}

.worry__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 143px;
  text-align: center;
}

.worry__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 43.5px;
  letter-spacing: 1.6px;
  color: #4f4332;
  margin-bottom: 50px;
}

.worry__list {
  display: flex;
  flex-direction: column;
  /* Items at relY: 237, 309, 381, 453, 525 → gap = 72px each, but item h=32, so gap = 72-32 = 40px */
  gap: 40px;
}

.worry__list li {
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  color: #4f4332;
  text-align: center;
}

.worry__resolve {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  text-align: center;
}

.worry__resolveTemple {
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  color: #4f4332;
  margin-bottom: 20px;
}

.worry__resolveMain {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.worry__resolveGold {
  font-size: 112px;
  font-weight: 800;
  line-height: 112px;
  background: linear-gradient(180deg, #dfb664 0%, #96773c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.worry__resolveText {
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  color: #4f4332;
}

/* ========================================
   選択肢  h:952 bg:image overlay + #2d2626
   ======================================== */
.choice {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 952px;
  background: linear-gradient(rgba(45, 38, 38, 0.7), rgba(45, 38, 38, 0.7)), url('../images/pc/img-choice.webp') center/cover;
  color: #ffffff;
}

.choice__inner {
  max-width: 1151px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 80px;
}

.choice__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 86.4px;
  color: #ffffff;
  text-align: center;
}

.choice__lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #ffffff;
  text-align: center;
  margin-top: 32px;
}

.choice__sub {
  font-size: 32px;
  font-weight: 800;
  line-height: 57.6px;
  color: #ffffff;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

.choice__grid {
  display: grid;
  grid-template-columns: repeat(3, 373px);
  gap: 16px;
  margin-top: 0;
  justify-content: center;
}

.choice__card {
  background: #f6f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 185px;
  padding: 20px 24px;
  text-align: center;
  position: relative;
}

.choice__card::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(79, 67, 50, 0.3);
  pointer-events: none;
}

.choice__card p {
  font-size: 24px;
  font-weight: 800;
  line-height: 43.2px;
  color: #4f4332;
  position: relative;
  z-index: 1;
}

/* ========================================
   理由  bg:#f9f7f2
   Figma: relY feature starts at 295, features at 295/783/1271/1759/2247
   Each feature height ≈ 488px (image+text), next starts 488px later
   ======================================== */
.reason {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f9f7f2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.reason__head {
  text-align: center;
  margin-bottom: 80px;
}

.reason__headTitle {
  font-size: 48px;
  font-weight: 800;
  line-height: 64px;
  color: #4f4332;
}

.reason__headGold {
  color: #6f6336;
}

.reason__list {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.reason__item {
  display: flex;
  gap: 63px;
  align-items: flex-start;
  padding-bottom: 64px;
  border-bottom: 1px solid #ddd5c7;
}

.reason__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Default: image left, text right */
.reason__item .reason__img {
  flex: 0 0 541px;
  order: 0;
  height: 360px;
  overflow: hidden;
}

.reason__item .reason__body {
  flex: 1;
  order: 1;
}

/* Reverse: text left, image right */
.reason__item--reverse .reason__img {
  order: 1;
}

.reason__item--reverse .reason__body {
  order: 0;
}

.reason__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.reason__num {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  color: #6f6336;
  margin-bottom: 17px;
}

.reason__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 57.6px;
  color: #6f6336;
  margin-bottom: 16px;
}

.reason__desc {
  font-size: 24px;
  font-weight: 600;
  line-height: 38.4px;
  color: #4f4332;
}

/* ========================================
   Photo  h:922 bg:#ffffff
   ======================================== */
.photo {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 120px;
}

.photo__inner {
  width: 100%;
}

.photo__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.photo .section-divider {
  margin-bottom: 80px;
}

.photo__gallery {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 80px;
  justify-content: center;
}

.photo__gallery picture {
  flex: 0 0 332px;
}

.photo__gallery img {
  width: 332px;
  height: 249px;
  object-fit: cover;
  border-radius: 2px;
}

.photo__desc {
  font-size: 32px;
  font-weight: 600;
  line-height: 64px;
  letter-spacing: 3.2px;
  color: #4f4332;
  text-align: center;
  max-width: 747px;
  margin: 0 auto;
}

/* ========================================
   価格  bg:#f9f7f2
   ======================================== */
.cost {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f9f7f2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.cost__inner {
  max-width: 1152px;
  margin: 0 auto;
}

.cost__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.cost .section-divider {
  margin-bottom: 80px;
}

.cost__block {
  margin-bottom: 80px;
}

.cost__block:last-child {
  margin-bottom: 0;
}

.cost__blockHead {
  text-align: center;
  margin-bottom: 40px;
}

.cost__planName {
  font-size: 38px;
  font-weight: 800;
  line-height: 68.4px;
  color: #6f6336;
}

.cost__planSub {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
}

.cost__main {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  padding: 80px 116px;
}

.cost__badge {
  position: absolute;
  top: -29px;
  right: 42px;
  width: 112px;
  height: 112px;
  background: #6c4a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 35.7px;
  color: #ffffff;
  transform: rotate(45deg);
}

.cost__badge::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid #ffffff;
}

.cost__badge span {
  transform: rotate(-45deg);
}

.cost__mainBody {
  display: flex;
  gap: 60px;
  margin-bottom: 28px;
}

.cost__left {
  flex: 0 0 340px;
}

.cost__right {
  flex: 1;
}

.cost__price {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: #4f4332;
  margin-bottom: 12px;
}

.cost__priceUnit {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.cost__priceLabel {
  font-size: 24px;
  font-weight: 800;
  line-height: 43.2px;
  color: #4f4332;
  margin-bottom: 12px;
}

.cost__priceNote {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #4f4332;
}

.cost__catch {
  font-size: 28px;
  font-weight: 800;
  line-height: 50.4px;
  color: #4f4332;
  margin-bottom: 16px;
}

.cost__features {
  list-style: disc;
  padding-left: 30px;
}

.cost__features li {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: #4f4332;
}

.cost__features--dotted {
  list-style: none;
  padding-left: 0;
}

.cost__features--dotted li::before {
  content: '・';
}

.cost__photos {
  display: flex;
  gap: 11px;
}

.cost__photos img {
  width: 291px;
  height: 192px;
  object-fit: cover;
  border-radius: 4px;
}

/* 合同供養プラン sub-plans */
.cost__sub {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 32px;
  overflow: hidden;
}

.cost__sub:last-child {
  margin-bottom: 0;
}

.cost__subBadge {
  background: #878164;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  text-align: center;
  padding: 12px 0;
}

.cost__sub .cost__mainBody {
  padding: 64px 116px 40px;
  margin-bottom: 0;
}

/* ========================================
   流れ  h:828 bg:#f2ede4
   ======================================== */
.flow {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f2ede4;
  padding-top: 120px;
  padding-bottom: 120px;
}

.flow__inner {
  max-width: 1156px;
  margin: 0 auto;
}

.flow__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.flow .section-divider {
  margin-bottom: 80px;
}

.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 80px;
}

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 352px;
  height: 352px;
  justify-content: center;
  background-color: #ffffff;
  padding: 40px 20px;
}

.flow__num {
  font-size: 42px;
  font-weight: 800;
  line-height: 63px;
  color: #878164;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow__num::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: #b5924c;
  margin-top: 8px;
}

.flow__label {
  font-size: 32px;
  font-weight: 600;
  line-height: 56px;
  color: #4f4332;
}

.flow__note {
  font-size: 24px;
  font-weight: 600;
  line-height: 42px;
  color: #4f4332;
  margin-top: 12px;
}

.flow__arrow {
  flex: 0 0 26px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  align-self: center;
}

.flow__arrow::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #878164;
}

.flow__free {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
  text-align: center;
}

/* ========================================
   CTA  h:777 bg: dark gradient
   ======================================== */
.cta {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2c2519 0%, #3b2c1a 100%);
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: 777px;
}

.cta__head {
  text-align: center;
  margin-bottom: 80px;
}

.cta__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #ffffff;
}

.cta .section-divider {
  margin-bottom: 57px;
}

.cta .section-divider {
  background-color: #b5924c;
}

.cta__desc {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #ffffff;
}

.cta__grid {
  display: flex;
  gap: 60px;
  max-width: 1088px;
  margin: 0 auto;
}

.cta__item {
  flex: 1;
  text-align: center;
  border-radius: 2px;
}

.cta__label {
  font-size: 38px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__label::after {
  content: '';
  display: block;
  width: 439px;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 460px;
  height: 84px;
  background: #d56f08;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 50.4px;
  border-radius: 19px;
  box-shadow: 0 8px 0 rgba(163, 96, 29, 1);
  transition: opacity 0.3s;
  margin-bottom: 32px;
}

.cta__btn:hover {
  opacity: 0.85;
}

.cta__hours {
  font-size: 34px;
  font-weight: 800;
  line-height: 63px;
  letter-spacing: 1.8px;
  color: #d4b278;
}

.cta__phone {
  display: flex;
  flex-direction: column;
  width: 460px;
  margin: 0 auto 8px;
  transition: opacity 0.3s;
}

.cta__phoneSub {
  font-size: 30px;
  font-weight: 800;
  line-height: 37px;
  letter-spacing: 1.8px;
  color: #d4b278;
  text-align: right;
}

.cta__phoneNumRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 54px;
  font-weight: 800;
  line-height: 63px;
  letter-spacing: 1.8px;
  color: #d4b278;
  white-space: nowrap;
}

.cta__freedial {
  width: 75px;
  height: 49px;
}

.cta__phone:hover {
  opacity: 0.8;
}

/* ========================================
   Gift  h:1011 bg:#ffffff
   ======================================== */
.gift {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.gift__inner {
  max-width: 1010px;
  margin: 0 auto;
}

.gift__lead {
  font-size: 30px;
  font-weight: 400;
  line-height: 54px;
  color: #4f4332;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 50px;
}

.gift__card {
  margin-bottom: 40px;
}

.gift__card img {
  width: 100%;
  height: auto;
}

.gift__notes {
  max-width: 936px;
  margin: 0 auto;
}

.gift__notes p {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
}

/* ========================================
   ご相談  h:820 bg:#f9f7f2
   ======================================== */
.consult {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f9f7f2;
  padding-top: 120px;
  padding-bottom: 120px;
}

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

.consult__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.consult .section-divider {
  margin-bottom: 57px;
}

.consult__lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
  text-align: center;
  margin-bottom: 80px;
}

.consult__grid {
  display: flex;
  gap: 40px;
}

.consult__card {
  flex: 1;
  width: 352px;
  min-height: 352px;
  background: #ffffff;
  border-radius: 0;
  padding: 40px 24px;
  text-align: center;
}

.consult__cardTitle {
  font-size: 30px;
  font-weight: 800;
  line-height: 47.8px;
  color: #4f4332;
}

.consult__divider {
  display: block;
  width: 60px;
  height: 1px;
  background-color: #b5924c;
  margin: 24px auto;
}

.consult__cardDesc {
  font-size: 19px;
  font-weight: 600;
  line-height: 32.7px;
  color: #4f4332;
}

/* ========================================
   妙見寺  h:1160 bg:#f2ede4
   ======================================== */
.temple {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f2ede4;
  padding-top: 120px;
  padding-bottom: 120px;
}

.temple__inner {
  max-width: 1151px;
  margin: 0 auto;
}

.temple__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #000000;
  text-align: center;
}

.temple .section-divider {
  margin-bottom: 80px;
}

.temple__row {
  display: grid;
  grid-template-columns: 408px 1fr;
  gap: 0 32px;
  margin-bottom: 80px;
}

.temple__row:last-child {
  margin-bottom: 0;
}

.temple__img {
  padding-top: 47px; /* Figma: image starts 47px below text top */
}

.temple__img img {
  width: 408px;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}

.temple__text {
  max-width: 711px;
}

.temple__row--reverse {
  /* text left, image right — DOM order is already text first, img second */
  grid-template-columns: 1fr 408px;
}

.temple__row--reverse .temple__img {
  padding-top: 12px; /* Figma: image starts 12px below text top (748-736) */
}

.temple__subtitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  color: #000000;
  padding-bottom: 12px;
  border-bottom: 1px dashed #b5924c;
  margin-bottom: 28px;
}

.temple__body {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: #000000;
  margin-bottom: 16px;
}

.temple__body:last-child {
  margin-bottom: 0;
}

/* ========================================
   アクセス  h:1798 bg:#ffffff
   ======================================== */
.access {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 120px;
}

.access__inner {
  max-width: 1152px;
  margin: 0 auto;
}

.access__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.access .section-divider {
  margin-bottom: 32px;
}

.access__address {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
  text-align: center;
  margin-bottom: 32px;
}

.access__hours {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
  text-align: center;
  margin-bottom: 80px;
}

.access__map {
  margin-bottom: 80px;
}

.access__map img {
  width: 100%;
  height: 575px;
  object-fit: cover;
  border-radius: 4px;
}

.access__map iframe {
  display: block;
  width: 100%;
  border-radius: 4px;
}

.access__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.access__card {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.access__cardTitle {
  background: #878164;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 66px;
  text-align: center;
}

.access__card img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

.access__cardText {
  padding: 24px 0 0;
  text-align: center;
}

.access__cardText p {
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  color: #4f4332;
}

/* ========================================
   FAQ  h:1553 bg:#f2ede4
   ======================================== */
.faq {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f2ede4;
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: 1553px;
}

.faq__inner {
  max-width: 1151px;
  margin: 0 auto;
}

.faq__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.faq .section-divider {
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__card {
  border: 1px solid #d9ceba;
  overflow: hidden;
}

.faq__q,
.faq__a {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 40px;
}

.faq__q {
  background: #fbf8f4;
}

.faq__a {
  background: #ffffff;
}

.faq__label {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
}

.faq__q p,
.faq__a p {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
  flex: 1;
}

/* ========================================
   Contact Form  h:1710 bg:#f9f7f2
   ======================================== */
.contact {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f9f7f2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact__inner {
  max-width: 960px;
  margin: 0 auto;
}

.contact__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.contact .section-divider {
  margin-bottom: 32px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group__label label {
  font-size: 24px;
  font-weight: 600;
  line-height: 43.2px;
  color: #4f4332;
}

.form-group__req {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: #dd5632;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  height: 60px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 20px;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  background: #ffffff;
}

.form-group textarea {
  width: 100%;
  min-height: 160px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 16px;
  font-size: 20px;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  background: #ffffff;
  resize: vertical;
}

.form-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 0;
}

.form-checks label {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: #4f4332;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-checks input[type="checkbox"],
.form-checks input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #4f4332;
}

.contact__lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #4f4332;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.form-group__zip {
  display: flex;
  gap: 12px;
  align-items: center;
}

.form-group__zip input {
  flex: 1;
  width: 100%;
  height: 60px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 20px;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  background: #ffffff;
}

.form-zip-search {
  flex: 0 0 auto;
  height: 60px;
  padding: 0 24px;
  background: #4f4332;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  transition: opacity 0.3s;
}

.form-zip-search:hover {
  opacity: 0.85;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group__zip input::placeholder {
  color: #757575;
  font-size: 18px;
  font-weight: 500;
}

.form-group select {
  width: 100%;
  height: 60px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 500;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  background: #ffffff;
  color: #4f4332;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234f4332' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-survey {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-survey__q {
  font-size: 20px;
  font-weight: 600;
  line-height: 30.6px;
  color: #4f4332;
  margin-bottom: 12px;
}

.form-privacy {
  margin-top: 20px;
}

.form-privacy__box {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 24px;
}

.form-privacy__box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #4f4332;
  margin-bottom: 16px;
}

.form-privacy__box p:last-child {
  margin-bottom: 0;
}

.form-privacy__note {
  font-size: 20px;
  font-weight: 500;
  line-height: 30.6px;
  color: #4f4332;
  margin-bottom: 12px;
}

.form-privacy__check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-privacy__check input {
  width: 20px;
  height: 20px;
  accent-color: #4f4332;
}

.form-privacy__check span {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: #4f4332;
}

.form-submit {
  display: block;
  width: 320px;
  height: 84px;
  margin: 20px auto 0;
  background: #d56e07;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 50.4px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  transition: opacity 0.3s;
}

.form-submit:hover {
  opacity: 0.85;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #3a332d;
  padding: 40px 0 24px;
  text-align: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 16px;
}

.footer__links a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  transition: opacity 0.3s;
}

.footer__links a:hover {
  opacity: 0.7;
}

.footer__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Fixed SP CTA (hidden on PC)
   ======================================== */
.fixed-cta {
  display: none;
}

/* ========================================
   SP Responsive (max-width: 768px)
   ======================================== */
@media screen and (max-width: 1023px) {

  /* --- Base --- */
  .sp-only {
    display: inline;
  }

  body {
    padding-bottom: 60px;
  }

  /* --- Header --- */
  .header {
    display: none;
  }

  .header__nav {
    flex-wrap: nowrap;
  }

  .header__link {
    font-size: 14px;
    line-height: 28px;
    padding: 0 6px;
  }

  .header__sep {
    height: 20px;
    margin: 0 4px;
  }

  html {
    scroll-padding-top: 56px;
  }

  /* --- Hero (FV) --- */
  .hero__cta,
  .hero__note {
    display: none;
  }

  /* --- Worry --- */
  .worry {
    height: auto;
    max-width: 100%;
    padding-bottom: 64px;
  }

  .worry__decoration {
    width: 100%;
    height: auto;
    top: 60px;
    right: -20%;
    opacity: 0.4;
  }

  .worry__inner {
    padding-top: 64px;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .worry__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 20px;
    letter-spacing: 0.8px;
    margin-bottom: 32px;
    text-align: center;
  }

  .worry__list {
    gap: 16px;
  }

  .worry__list li {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
  }

  .worry__list li:last-child {
    line-height: 1.7;
  }

  /* --- Worry Resolve (hidden on SP) --- */
  .worry__resolve {
    display: none;
  }

  /* --- Choice --- */
  .choice {
    max-width: 100%;
    min-height: auto;
    background: linear-gradient(rgba(45, 38, 38, 0.7), rgba(45, 38, 38, 0.7)), url('../images/sp/img-choice-sp.webp') center/cover;
  }

  .choice__inner {
    padding: 64px 20px;
  }

  .choice__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
  }

  .choice__lead {
    font-size: 16px;
    font-weight: 600;
    line-height: 28.8px;
    margin-top: 16px;
    text-align: left;
  }

  .choice__sub {
    font-size: 18px;
    font-weight: 800;
    line-height: 32.4px;
    margin-top: 24px;
    margin-bottom: 20px;
    text-align: left;
  }

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

  .choice__card {
    height: 98px;
    padding: 16px 20px;
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
    background: #ffffff;
  }

  .choice__card p {
    font-size: 16px;
    font-weight: 800;
    line-height: 28.8px;
  }

  /* --- Reason --- */
  .reason {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .reason__head {
    margin-bottom: 48px;
  }

  .reason__headTitle {
    font-size: 28px;
    font-weight: 800;
    line-height: 44.8px;
  }

  .reason__list {
    max-width: 100%;
    padding: 0 20px;
    gap: 40px;
  }

  .reason__item {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 40px;
  }

  .reason__item .reason__img {
    flex: none;
    order: 0;
    width: 100%;
    height: 230px;
    overflow: hidden;
  }

  .reason__item .reason__body {
    flex: none;
    order: 1;
    width: 100%;
  }

  .reason__item--reverse .reason__img {
    order: 0;
  }

  .reason__item--reverse .reason__body {
    order: 1;
  }

  .reason__img img {
    height: 230px;
  }

  .reason__num {
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    margin-bottom: 12px;
  }

  .reason__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 38.4px;
    margin-bottom: 12px;
  }

  .reason__desc {
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
  }

  /* --- Photo --- */
  .photo {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .photo__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 42px;
    margin-bottom: 24px;
  }

  .photo .section-divider {
    margin-bottom: 40px;
  }

  .photo__gallery {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .photo__gallery picture {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }

  .photo__gallery img {
    width: 280px;
    height: 210px;
    object-fit: cover;
    border-radius: 4px;
  }

  .photo__desc {
    font-size: 16px;
    font-weight: 600;
    line-height: 28.8px;
    letter-spacing: 0;
    padding: 0 15px;
  }

  /* --- Cost --- */
  .cost {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cost__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .cost__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 0;
  }

  .cost .section-divider {
    margin-top: 12px;
    margin-bottom: 40px;
  }

  .cost__block {
    margin-bottom: 48px;
  }

  .cost__blockHead {
    margin-bottom: 32px;
  }

  .cost__planName {
    font-size: 24px;
    font-weight: 800;
    line-height: 43.2px;
  }

  .cost__planSub {
    font-size: 16px;
    line-height: 28.8px;
  }

  .cost__main {
    padding: 24px 20px;
  }

  .cost__badge {
    top: -7px;
    right: 35px;
    width: 58px;
    height: 58px;
    font-size: 12px;
    line-height: 18px;
  }

  .cost__badge::before {
    inset: 5px;
  }

  .cost__mainBody {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .cost__left {
    flex: none;
  }

  .cost__right {
    flex: none;
  }

  .cost__price {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
  }

  .cost__priceUnit {
    font-size: 28px;
  }

  .cost__priceLabel {
    font-size: 18px;
    font-weight: 800;
    line-height: 32.4px;
  }

  .cost__priceNote {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
  }

  .cost__catch {
    font-size: 20px;
    font-weight: 800;
    line-height: 36px;
  }

  .cost__features li {
    font-size: 14px;
    font-weight: 600;
    line-height: 24.5px;
  }

  .cost__photos {
    flex-direction: column;
    gap: 12px;
  }

  .cost__photos img {
    width: 100%;
    height: auto;
  }

  .cost__sub .cost__mainBody {
    padding: 24px 20px;
  }

  .cost__subBadge {
    font-size: 18px;
    line-height: 32.4px;
    padding: 8px 0;
  }

  /* --- Flow --- */
  .flow {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .flow__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .flow__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 0;
  }

  .flow .section-divider {
    margin-top: 12px;
    margin-bottom: 32px;
  }

  .flow__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
  }

  .flow__step {
    width: 100%;
    max-width: 335px;
    height: auto;
    min-height: auto;
    padding: 32px 20px;
  }

  .flow__num {
    font-size: 42px;
    font-weight: 800;
    line-height: 63px;
  }

  .flow__label {
    font-size: 28px;
    font-weight: 600;
    line-height: 49px;
  }

  .flow__note {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
  }

  .flow__arrow {
    flex: 0 0 auto;
    margin: 8px 0;
    transform: rotate(90deg);
  }

  .flow__free {
    font-size: 16px;
    font-weight: 600;
  }

  /* --- CTA --- */
  .cta {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
    min-height: auto;
  }

  .cta__head {
    margin-bottom: 40px;
  }

  .cta__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 32px;
  }

  .cta__desc {
    font-size: 16px;
    font-weight: 600;
    line-height: 28.8px;
  }

  .cta__grid {
    flex-direction: column;
    gap: 40px;
    max-width: 335px;
    margin: 0 auto;
  }

  .cta__label {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .cta__label::after {
    width: 100%;
  }

  .cta__btn {
    width: 100%;
    max-width: 335px;
    height: 60px;
    font-size: 16.8px;
    font-weight: 800;
    line-height: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 0 rgba(163, 96, 29, 1);
    margin-bottom: 16px;
  }

  .cta__phone {
    width: 285px;
  }

  .cta__phoneNumRow {
    font-size: 32px;
    font-weight: 800;
    line-height: 63px;
    letter-spacing: 1.76px;
    gap: 7px;
  }

  .cta__freedial {
    width: 44px;
    height: 29px;
  }

  .cta__phoneSub {
    font-size: 17px;
    line-height: 1;
    letter-spacing: 1.76px;
    margin-bottom: -2px;
    padding-right: 4px;
  }

  .cta__hours {
    font-size: 20px;
    font-weight: 800;
    line-height: 36px;
  }

  /* --- Gift --- */
  .gift {
    max-width: 100%;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .gift__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .gift__lead {
    display: none;
  }

  .gift__card {
    margin-bottom: 24px;
  }

  .gift__notes p {
    font-size: 12px;
    font-weight: 600;
    line-height: 21.6px;
  }

  /* --- Consult --- */
  .consult {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .consult__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .consult .section-divider {
    margin-top: 12px;
    margin-bottom: 40px;
  }

  .consult__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 28px;
    margin-bottom: 32px;
  }

  .consult__lead {
    font-size: 16px;
    line-height: 25.6px;
    margin-bottom: 40px;
  }

  .consult__grid {
    flex-direction: column;
    gap: 16px;
  }

  .consult__card {
    padding: 32px 20px;
    min-height: auto;
  }

  .consult__cardTitle {
    font-size: 24px;
    font-weight: 800;
    line-height: 38.4px;
    margin-bottom: 16px;
  }

  .consult__cardDesc {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
  }

  /* --- Temple --- */
  .temple {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .temple__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .temple__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 48px;
  }

  .temple__row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }

  .temple__row--reverse {
    grid-template-columns: none;
  }

  .temple__img {
    padding-top: 0;
    order: 0;
  }

  .temple__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .temple__row--reverse .temple__img {
    padding-top: 0;
    order: 0;
  }

  .temple__row--reverse .temple__text {
    order: 1;
  }

  .temple__text {
    max-width: 100%;
    order: 1;
  }

  .temple__subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .temple__body {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
  }

  /* --- Access --- */
  .access {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .access__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .access__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 32px;
  }

  .access__address {
    font-size: 16px;
    font-weight: 600;
    line-height: 28.8px;
    margin-bottom: 16px;
  }

  .access__hours {
    font-size: 16px;
    line-height: 28.8px;
    margin-bottom: 40px;
  }

  .access__map {
    margin-bottom: 40px;
  }

  .access__map img {
    height: auto;
  }

  .access__map iframe {
    height: 300px;
  }

  .access__cards {
    flex-direction: column;
    gap: 24px;
  }

  .access__cardTitle {
    font-size: 18px;
    line-height: 48px;
  }

  .access__cardText {
    padding: 16px 0 0;
  }

  .access__cardText p {
    font-size: 14px;
    line-height: 25.2px;
  }

  /* --- FAQ --- */
  .faq {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
    min-height: auto;
  }

  .faq__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .faq__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 40px;
  }

  .faq__list {
    gap: 16px;
  }

  .faq__q,
  .faq__a {
    gap: 8px;
    padding: 16px 20px;
  }

  .faq__label {
    font-size: 16px;
    line-height: 28.8px;
  }

  .faq__q p,
  .faq__a p {
    font-size: 16px;
    font-weight: 600;
    line-height: 28.8px;
  }

  /* --- Contact Form --- */
  .contact {
    max-width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .contact__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 44.8px;
    margin-bottom: 32px;
  }

  .contact__form {
    gap: 28px;
  }

  .form-group__label label {
    font-size: 16px;
    font-weight: 600;
    line-height: 28.8px;
  }

  .form-group__req {
    font-size: 12px;
    font-weight: 600;
    line-height: 21px;
  }

  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group input[type="email"] {
    height: 50px;
    font-size: 16px;
  }

  .form-group textarea {
    font-size: 16px;
    min-height: 120px;
  }

  .form-checks {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
  }

  .form-checks label {
    font-size: 16px;
    line-height: 28px;
  }

  .contact__lead {
    font-size: 14px;
    line-height: 22.4px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .form-group__zip {
    flex-direction: row;
  }

  .form-group__zip input {
    height: 50px;
    font-size: 16px;
  }

  .form-zip-search {
    height: 50px;
    padding: 0 16px;
    font-size: 14px;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder,
  .form-group__zip input::placeholder {
    font-size: 14px;
  }

  .form-group select {
    height: 50px;
    font-size: 16px;
  }

  .form-survey__q {
    font-size: 16px;
    line-height: 25.6px;
  }

  .form-privacy__note {
    font-size: 16px;
    line-height: 25.6px;
  }

  .form-privacy__check span {
    font-size: 16px;
    line-height: 28px;
  }

  .form-privacy__content {
    max-height: 160px;
  }

  .form-privacy__content p {
    font-size: 14px;
    line-height: 21px;
  }

  .form-submit {
    width: 100%;
    max-width: 335px;
    height: 60px;
    font-size: 18px;
    font-weight: 800;
    margin: 12px auto 0;
    border-radius: 4px;
  }

  /* --- Footer --- */
  .footer {
    max-width: 100%;
    padding: 32px 20px 20px;
  }

  .footer__links {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .footer__links a {
    font-size: 14px;
  }

  .footer__copy {
    font-size: 12px;
  }

  /* --- Fixed SP CTA Bar --- */
  .fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 200;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  }

  .fixed-cta__phone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4f4332;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
  }

  .fixed-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d56f08;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
  }

  /* --- Confirm page SP --- */
  .confirm {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .confirm__inner {
    padding: 0 20px;
  }

  .confirm__title {
    font-size: 24px;
    line-height: 38.4px;
  }

  .confirm__lead {
    font-size: 14px;
    line-height: 22.4px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .confirm__row {
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
  }

  .confirm__label {
    font-size: 14px;
    line-height: 22.4px;
    min-width: auto;
  }

  .confirm__value {
    font-size: 16px;
    line-height: 28px;
  }

  .confirm__back a {
    font-size: 16px;
  }

  /* --- Thanks page SP --- */
  .thanks {
    padding-top: 48px;
    padding-bottom: 64px;
    min-height: calc(100vh - 56px - 84px);
  }

  .thanks__inner {
    padding: 0 20px;
  }

  .thanks__title {
    font-size: 24px;
    line-height: 38.4px;
  }

  .thanks__text {
    font-size: 16px;
    line-height: 28.8px;
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .thanks__btn {
    width: 100%;
    max-width: 335px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
  }

}

/* ========================================
   Simple Header (confirm / thanks pages)
   ======================================== */
.header--simple {
  justify-content: center;
  position: relative;
}

.header--simple__logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #4f4332;
  letter-spacing: 0.05em;
}

/* ========================================
   Confirm Page
   ======================================== */
.confirm {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f6f4ee;
  padding-top: 80px;
  padding-bottom: 120px;
}

.confirm__inner {
  max-width: 960px;
  margin: 0 auto;
}

.confirm__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.confirm .section-divider {
  margin-bottom: 32px;
}

.confirm__lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #4f4332;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.confirm__table {
  margin-bottom: 48px;
}

.confirm__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px dotted #b5a68e;
}

.confirm__row:first-child {
  border-top: 1px dotted #b5a68e;
}

.confirm__label {
  min-width: 260px;
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: #4f4332;
  flex-shrink: 0;
}

.confirm__value {
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  color: #4f4332;
  word-break: break-all;
}

.confirm__back {
  text-align: center;
  margin-top: 20px;
}

.confirm__back a {
  font-size: 20px;
  font-weight: 600;
  color: #d56f08;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.confirm__back a:hover {
  opacity: 0.7;
}

/* ========================================
   Thanks Page
   ======================================== */
.thanks {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f6f4ee;
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: calc(100vh - 80px - 84px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.thanks__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.thanks__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  color: #4f4332;
  text-align: center;
}

.thanks .section-divider {
  margin-bottom: 32px;
}

.thanks__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: #4f4332;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 48px;
}

.thanks__btn {
  display: inline-block;
  width: 320px;
  height: 84px;
  line-height: 80px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #d56f08;
  background: transparent;
  border: 2px solid #d56f08;
  border-radius: 6px;
  cursor: pointer;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  transition: all 0.3s;
}

.thanks__btn:hover {
  background: #d56f08;
  color: #ffffff;
}

/* ========================================
   Form Error Message
   ======================================== */
.form-error {
  color: #dd5632;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 4px;
}
