:root {
  --navy: #040238;
  --navy-2: #1e1c64;
  --gold: #946300;
  --gold-line: #a2803b;
  --cream: #e9e2d8;
  --ink: #1a1a1a;
  --gray: #5f5f5f;
  --freedial: #1a9e3c;
  --cp-red: #a5102f;
  --serif: 'Zen Old Mincho', serif;
  --sans: 'Noto Sans JP', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body { margin: 0; font-family: var(--sans); color: var(--ink); font-size: 17px; line-height: 1.8; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1 { margin: 0; }

.site-header { background: #fff; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 1320px; margin: 0 auto; padding: 14px 24px; }
.site-header__logo img { height: 56px; width: auto; }
.site-header__contact { display: flex; align-items: center; gap: 28px; }
.site-header__tel { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1.35; }
.site-header__tel-label { font-family: var(--serif); font-weight: 700; font-size: 16px; color: #000; letter-spacing: .04em; }
.site-header__tel-number { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-weight: 900; font-size: 30px; color: var(--freedial); letter-spacing: .02em; }
.site-header__tel-icon { width: 32px; height: auto; }
.site-header__tel-hours { font-size: 14px; color: #000; }
@media (max-width: 979px) {
  .site-header__inner { justify-content: center; }
  .site-header__contact { display: none; }
}

.button { position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 50px; font-family: var(--serif); font-weight: 700; font-size: 17px; }
.button__arrow { position: absolute; right: 18px; height: 13px; width: auto; }
.button--reserve { background: var(--gold); color: #fff; }
.button--reserve::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(255, 255, 255, .55); pointer-events: none; }
.button--request { background: #fff; color: var(--gold); border: 1px solid var(--gold-line); }
.button--request::before { content: ""; position: absolute; inset: 5px; border: 1px solid var(--gold-line); pointer-events: none; }

.hero { position: relative; overflow: hidden; min-height: 620px; display: flex; align-items: stretch; background: var(--navy); }
.hero__photos { position: absolute; inset: 0; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--left { grid-area: 1 / 1 / 3 / 2; }
.hero__photo--rtop { grid-area: 1 / 2 / 2 / 4; }
.hero__photo--cbottom { grid-area: 2 / 2 / 3 / 3; }
.hero__photo--rbottom { grid-area: 2 / 3 / 3 / 4; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(4, 2, 56, .34); }

.hero__body { position: relative; z-index: 1; width: 100%; max-width: 1320px; margin: 0 auto; padding: 36px 24px 28px; display: flex; flex-direction: column; }
.hero__lead { flex: 1; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 0; }

.hero__catch { display: flex; flex-direction: row-reverse; align-items: flex-start; justify-content: center; gap: 6px; }
.hero__catch span { writing-mode: vertical-rl; font-family: var(--serif); font-weight: 900; color: #fff; background: var(--navy); font-size: clamp(26px, 6.6vw, 36px); letter-spacing: .22em; line-height: 1.8; padding: 4px 8px 20px; white-space: nowrap; }

.hero__points { --badge: 92px; --gap: 10px; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, var(--badge)); grid-template-rows: repeat(2, var(--badge)); gap: var(--gap); transform: rotate(45deg); }
.hero__point:nth-child(1) { grid-area: 1 / 1; }
.hero__point:nth-child(2) { grid-area: 2 / 1; }
.hero__point:nth-child(3) { grid-area: 1 / 2; }
.hero__point:nth-child(4) { grid-area: 2 / 2; }
.hero__point { position: relative; background: #fff; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.hero__point::before { content: ""; position: absolute; inset: 4px; border: 1px solid var(--gold-line); pointer-events: none; }
.hero__point-body { transform: rotate(-45deg); display: flex; flex-direction: column; align-items: center; gap: 3px; font-family: var(--serif); font-weight: 900; color: var(--gold); text-align: center; line-height: 1.35; font-size: 14px; }
.hero__point-value { font-size: 1em; }
.hero__point-num { font-size: 1.33em; }
.hero__point-line { font-size: 11px; line-height: 1.2; }

.campaign { position: relative; align-self: center; width: 100%; max-width: 680px; margin-top: 20px; background: var(--cream); border: 1px solid var(--gold-line); padding: 22px 22px 16px; display: flex; align-items: center; justify-content: center; }
.campaign::before { content: ""; position: absolute; inset: 6px; border: 1px solid var(--gold-line); pointer-events: none; }

.hero-actions { display: flex; flex-direction: column; gap: 12px; padding: 20px 24px; background: var(--navy); }
.hero-actions .button { min-height: 56px; font-size: 17px; }
.hero-actions__tel { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; line-height: 1.3; color: #fff; padding: 10px 26px; min-height: 56px; background: var(--navy-2); }
.hero-actions__tel-label { font-family: var(--serif); font-weight: 700; font-size: 14px; }
.hero-actions__tel-number { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-weight: 900; font-size: 26px; }

@media (min-width: 980px) {
  .hero { min-height: 680px; }
  .hero__body { padding: 48px 32px 32px; }
  .hero__lead { flex-direction: row; justify-content: center; gap: 0; }
  .hero__points { --badge: 120px; --gap: 12px; }
  .hero__catch { margin-left: -14px; }
  .hero__point-body { font-size: 18px; }
  .hero__point-line { font-size: 13px; }
  .hero__point:nth-child(2) .hero__point-label { font-size: 15px; }
  .hero-actions { flex-direction: row; justify-content: center; align-items: center; gap: 28px; padding: 26px; }
  .hero-actions .button { min-width: 300px; }
}

.intro { position: relative; padding: 56px 24px 64px; background: #fff; overflow: hidden; }
.intro__ashirai { display: none; position: absolute; z-index: 0; pointer-events: none; }
.intro__head { position: relative; z-index: 1; }
.intro__lead { position: relative; z-index: 1; font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: clamp(18px, 2.3vw, 22px); line-height: 2; text-align: center; margin: 0 auto 48px; max-width: 760px; }

.intro__head { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.intro__copy { text-align: center; }
.intro__title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: clamp(22px, 4.2vw, 32px); line-height: 1.55; margin: 0; white-space: nowrap; }
.intro__dots { color: #03004c; font-weight: 900; font-size: 19px; letter-spacing: .8em; margin: 12px 0 0; }
.intro__sub-lead { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 18px; line-height: 1.9; margin: 16px 0 6px; }
.intro__note { font-family: var(--serif); color: var(--ink); margin: 0; font-size: 16px; }
.intro__photos { margin: 0; }
.intro__photos img { width: 100%; max-width: 520px; height: auto; }

.feature-cards { list-style: none; display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1100px; margin: 44px auto 0; padding: 0; position: relative; z-index: 1; }
.feature-card { position: relative; z-index: 1; background: #f5f5f5; }
.feature-card__link { display: block; height: 100%; color: inherit; text-decoration: none; transition: opacity .2s ease; }
.feature-card__link:hover { opacity: .82; }
.feature-card::after { content: ""; position: absolute; left: 50%; top: calc(100% - 8px); width: 1px; height: 26px; background: var(--navy); transform: translateX(-50%); }
.feature-card__num { display: block; background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 24px; text-align: center; padding: 11px 0; }
.feature-card__text { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 18px; text-align: center; line-height: 1.7; margin: 0; padding: 20px 12px; }

@media (min-width: 980px) {
  .intro__head { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 40px; }
  .intro__copy { text-align: left; flex: 0 0 46%; padding-top: 24px; }
  .intro__dots { padding-left: 120px; }
  .intro__photos { flex: 0 0 50%; }
  .feature-cards { grid-template-columns: repeat(3, 1fr); gap: 50px 24px; }
}

.feature { position: relative; background: #fff; padding: 48px 0 0; overflow: hidden; }
.feature__inner { position: relative; max-width: 1100px; margin: 0 auto; background: #f5f5f5; padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.feature__deco { display: none; }
.feature__photo { position: relative; margin: 0; }
.feature__photo img { display: block; width: 100%; height: auto; position: relative; z-index: 1; }

.feature__labels { display: flex; flex-direction: row-reverse; justify-content: center; align-items: flex-start; gap: 8px; margin: 0; }
.feature__label { writing-mode: horizontal-tb; background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 18px; letter-spacing: .22em; line-height: 1.9; padding: 14px 9px; }
.feature__main { text-align: left; }
.feature__quote { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: clamp(18px, 2.4vw, 24px); line-height: 1.7; margin: 0 0 16px; }
.feature__text { font-family: var(--serif); color: var(--ink); font-size: 17px; line-height: 1.9; margin: 0 0 12px; }

.br-pc { display: none; }
.br-sp { display: inline; }
@media (min-width: 980px) { .br-pc { display: inline; } .br-sp { display: none; } }
.feature__source { font-family: var(--serif); font-size: 13px; color: var(--gray); margin: 0; word-break: break-all; }
.feature__source a { font-family: var(--serif); color: var(--gray); text-decoration: underline; }
.feature__map { margin: 32px auto 0; width: 100%; max-width: 968px; height: 375px; }
.feature__map iframe { display: block; }

@media (min-width: 980px) {

  .feature { padding: 192px 0 0; overflow: visible; }
  .plan { margin-top: 160px; }
  .feature__inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 0; height: 464px; background: transparent; display: block; overflow: visible; }

  .feature__inner::before { content: ""; position: absolute; top: 0; bottom: 0; left: 120px; right: -120px; background: #f5f5f5; z-index: 0; }
  .feature--reverse .feature__inner::before { left: -120px; right: 120px; }

  .feature__deco { display: block; position: absolute; max-width: none; z-index: 1; pointer-events: none; }
  .feature__photo { position: absolute; left: 60px; top: -96px; width: 600px; margin: 0; z-index: 2; }
  .feature__photo img { width: 100%; height: auto; }

  .feature__labels { position: absolute; right: 60px; top: -40px; margin: 0; z-index: 5; gap: 14px; }

  .feature__label { color: #fff; font-family: "Zen Old Mincho"; font-feature-settings: 'vert' on; font-size: 24px; font-weight: 600; line-height: 42px; letter-spacing: .14em; padding: 13px 12px; }

  .feature__main { position: absolute; left: 534px; top: 117px; width: 490px; padding: 28px 0 0 54px; text-align: left; z-index: 4; background: #f5f5f5; }
  .feature__quote { font-size: 20px; line-height: 1.8; color: #03004c; margin: 0 0 18px; }
  .feature__text { font-size: 18px; line-height: 1.78; color: #000; margin: 0 0 14px; }
  .feature__source { font-size: 14px; line-height: 1.6; }

  .feature--reverse .feature__photo { left: auto; right: 60px; }
  .feature--reverse .feature__labels { right: auto; left: 60px; }
  .feature--reverse .feature__main { left: auto; right: 511px; width: 469px; padding: 28px 0 0 0; }

  #section-access   .feature__deco { display: block; left: 576px; top: -248px; width: 1470px; height: auto; }
  #section-history  .feature__deco { left: 189px;  top: -194px; width: 1062px; height: 907px; }
  #section-price    .feature__deco { left: -51px;  top: 38px;   width: 933px;  height: 683px; }
  #section-religion .feature__deco { left: 386px;  top: -40px;  width: 659px;  height: 851px; }
  #section-space    .feature__deco { left: -151px; top: 92px;   width: 643px;  height: 914px; }
  #section-staff    .feature__deco { left: -160px; top: 279px;  width: 947px;  height: 481px; }

  #section-access   .feature__main { top: 99px; }
  #section-history  .feature__main { top: 186px; }
  #section-price    .feature__main { top: 84px; }
  #section-religion .feature__main { top: 160px; }
  #section-space    .feature__main { top: 64px; }
  #section-staff    .feature__main { top: 144px; }
}

.plan { background: #fff; overflow: hidden; }
.plan__header { position: relative; background: url(assets/plan-section-image.webp) center/cover no-repeat; padding: 44px 0 40px; }
.plan__header::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .4); }
.plan__header-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.plan__title { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 22px; line-height: 1.7; margin: 0 0 16px; }
.plan__lead { font-family: var(--serif); color: #fff; font-size: 16px; line-height: 1.9; margin: 0; }

.plan__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px 56px; }
.plan__cards { display: grid; gap: 16px; margin-top: 24px; }
.plan-card { background: #f5f5f5; }
.plan-card__name { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 22px; text-align: center; background: var(--navy); margin: 0; padding: 20px 12px; }
.plan-card__body { padding: 24px 20px; text-align: center; }
.plan-card__price { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin: 0 0 12px; color: var(--gold); font-family: var(--serif); font-weight: 700; }
.plan-card__floor { font-size: 22px; font-weight: 500; }
.plan-card__num { font-size: 56px; line-height: 1; }
.plan-card__unit { font-size: 28px; }
.plan-card__desc { font-family: var(--serif); color: var(--ink); font-size: 17px; margin: 0 0 8px; }
.plan-card__fee { font-family: var(--serif); color: var(--ink); font-size: 15px; margin: 0; }

.plan-includes { background: #f5f5f5; margin-top: 24px; padding: 24px; text-align: center; }
.plan-includes__title { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 19px; margin: 0 0 14px; }
.plan-includes__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; font-family: var(--serif); font-weight: 700; color: #000; font-size: 17px; }

.plan-notes { display: grid; gap: 16px; margin-top: 28px; }
.plan-note { background: #f5f5f5; padding: 20px 22px; text-align: center; }
.plan-note__title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 18px; margin: 0 0 12px; padding-bottom: 12px; border-bottom: 1px solid #dcdcdc; }
.plan-note__text { font-family: var(--serif); color: #03004c; font-size: 15px; line-height: 1.7; margin: 0; }

@media (min-width: 980px) {
  .plan__header { min-height: 464px; padding: 111px 0 0; box-sizing: border-box; }
  .plan__header-inner { padding: 0; }
  .plan__title { font-size: 24px; line-height: 2; margin: 0 0 22px; }
  .plan__lead { font-size: 18px; line-height: 2; }
  .plan__inner { padding: 0 0 64px; }
  .plan__cards { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: -40px; position: relative; z-index: 2; }
  .plan-card__name { font-size: 28px; padding: 0; height: 80px; display: flex; align-items: center; justify-content: center; }
  .plan-card__body { min-height: 266px; box-sizing: border-box; padding: 32px 24px; }
  .plan-card__num { font-size: 72px; }
  .plan-card__unit { font-size: 36px; }
  .plan-card__floor { font-size: 24px; }
  .plan-card__desc { font-size: 18px; }
  .plan-card__fee { font-size: 16px; }
  .plan-includes { margin-top: 40px; padding: 28px; }
  .plan-includes__title { font-size: 20px; }
  .plan-includes__list { font-size: 20px; gap: 8px 40px; }
  .plan-notes { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
  .plan-note { padding: 26px 30px; }
  .plan-note__title { font-size: 20px; margin: 0 0 14px; padding-bottom: 14px; }
  .plan-note__text { font-size: 16px; }
}

.cta { background: var(--navy); padding: 48px 24px; overflow: hidden; }
.cta__box { max-width: 880px; margin: 0 auto; background: #fff; }
.cta__contact { padding: 28px 24px; }
.cta__heading { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 18px; text-align: center; margin: 0 0 18px; }
.cta__buttons { display: grid; gap: 14px; }
.cta .button { width: 100%; }
.button--navy { background: #03004c; color: #fff; }
.button--navy .button__arrow { filter: brightness(0) invert(1); }
.button--navy::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(255, 255, 255, .55); pointer-events: none; }
.cta__phone { border-top: 1px solid #e3e3e3; margin-top: 22px; padding-top: 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cta__phone-label { font-family: var(--serif); font-weight: 700; color: #000; font-size: 18px; }
.cta__tel { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-weight: 700; color: var(--freedial); font-size: 24px; letter-spacing: .02em; }
.cta__tel img { width: 28px; height: auto; }

@media (min-width: 980px) {
  .cta { padding: 80px 0 160px; }
  .cta__contact { padding: 33px 40px; }
  .cta__heading { font-size: 20px; margin: 0 0 16px; }
  .cta__buttons { grid-template-columns: 331px 331px; justify-content: center; gap: 18px; }
  .cta__phone { flex-direction: row; justify-content: center; gap: 18px; }
}

.cta__campaign { background: #f6f2e7; padding: 20px 20px 22px; }

@media (min-width: 980px) {
  .cta__campaign { padding: 22px 40px 24px; }
}

.campaign-detail { background: #f6f2e7; padding: 48px 24px; margin-top: 0; overflow: visible; }
.cp-inner { max-width: 1080px; margin: 0 auto; }
.cp-gold { color: var(--gold); font-weight: 700; }

.cp-steps { margin-bottom: 28px; }
.cp-steps__title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 19px; text-align: center; margin: 0 0 18px; }
.cp-steps__title::after { content: ""; display: block; width: 880px; max-width: 100%; height: 1px; background: #e3e3e3; margin: 16px auto 0; }
.cp-steps__list { display: grid; gap: 16px; }
.cp-step { display: flex; align-items: stretch; background: #fff; }
.cp-step__num { flex: none; width: 64px; background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; }
.cp-step__text { font-family: var(--serif); color: #000; font-size: 16px; line-height: 1.6; margin: 0; padding: 14px 18px; display: flex; align-items: center; }

@media (min-width: 980px) {
  .campaign-detail { padding: 80px 0; }
  .cp-steps__list { gap: 16px; }
  .cp-step__num { width: 80px; font-size: 24px; }
  .cp-step__text { font-size: 18px; }
}

.jizo { position: relative; background: #fff; padding: 80px 24px; overflow: hidden; }
.jizo__inner { position: relative; }
.jizo__label { writing-mode: horizontal-tb; font-feature-settings: 'vert' on; background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.9; letter-spacing: .2em; padding: 16px 10px; display: inline-block; margin: 0 4px; }
.jizo__lead { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 18px; line-height: 1.7; margin: 16px 0 12px; }
.jizo__text { font-family: var(--serif); color: #000; font-size: 16px; line-height: 1.85; margin: 0 0 20px; }
.jizo__photo { margin: 0; }
.jizo__photo img { width: 100%; height: auto; display: block; }

@media (min-width: 980px) {
  .jizo { padding: 160px 0 0; background: #fff; }
  .jizo__inner { height: 846px; background: linear-gradient(to right, #f5f5f5 calc(50% + 620px), #fff calc(50% + 620px)); }
  .jizo__inner > * { position: absolute; margin: 0; z-index: 2; }
  .jizo__label { font-size: 22px; line-height: 1.8; letter-spacing: 9px; padding: 18px 11px; }
  .jizo__label--1 { left: calc(50% - 411px); top: -31px; }
  .jizo__label--2 { left: calc(50% - 481px); top: -31px; padding: 80px 11px 18px; }
  .jizo__label--2::before { content: ""; position: absolute; top: 13px; left: 0; right: 0; width: 2px; height: 48px; margin: 0 auto; background: #fff; }
  .jizo__lead { left: calc(50% - 300px); top: 82px; width: 360px; font-size: 20px; line-height: 2; }
  .jizo__text { left: calc(50% - 300px); top: 179px; width: 600px; font-size: 18px; line-height: 1.78; }
  .jizo__photo { left: calc(50% - 317px); top: 366px; width: 666px; }
  .jizo__photo img { height: 400px; object-fit: cover; }
}

.access { background: #fff; padding: 48px 24px 0; }
.access__inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 28px; }
.access__title { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin: 0 0 20px; }
.access__title-line { background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.4; padding: 12px 18px; }
.access__lead { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 17px; line-height: 1.9; margin: 0 0 20px; }
.access__table { display: grid; gap: 0; }
.access__row { display: grid; grid-template-columns: 106px 1fr; padding: 0; font-family: var(--serif); font-size: 15px; line-height: 1.5; }
.access__row dt { font-weight: 400; color: #000; margin: 0; }
.access__row dt::after { content: "："; }
.access__row dd { margin: 0; color: #000; }
.access__routemap { align-self: center; }
.access__routemap img { width: 100%; height: auto; display: block; }
.access__map { margin-top: 32px; }
.access__map iframe { display: block; width: 100%; height: 360px; border: 0; }

@media (min-width: 980px) {
  .access { padding: 80px 0 88px; }
  .access::before { content: ""; position: absolute; left: 0; right: 0; top: 80px; bottom: 0; background: #f5f5f5; z-index: 0; }
  .access__inner { grid-template-columns: 1fr 509px; gap: 48px; align-items: center; padding: 0 60px; }
  .access__info { align-self: start; margin-top: -49px; }
  .access__title { font-size: 28px; }
  .access__lead { font-size: 20px; }
  .access__row { grid-template-columns: 116px 1fr; font-size: 18px; }
  .access__map { margin-top: 48px; }
  .access__map iframe { height: 462px; }
}

.voices { background: #f5f5f5; padding: 40px 24px 48px; overflow: hidden; }
.voices__inner { max-width: 1144px; margin: 0 auto; }
.voices__title { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin: 0 0 30px; }
.voices__title-line { background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.4; padding: 12px 18px; }
.voices__grid { display: grid; gap: 20px; }
.voice { background: #fff; padding: 26px 24px; display: flex; flex-direction: column; }
.voice__title { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 17px; line-height: 1.5; margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid #dcdcdc; }
.voice__text { font-family: var(--serif); color: #000; font-size: 15px; line-height: 1.9; margin: 0 0 18px; }
.voice__by { font-family: var(--serif); font-weight: 400; color: #03004c; font-size: 14px; text-align: right; margin: auto 0 0; }
.voices__note { font-family: var(--sans); color: var(--gray); font-size: 12px; text-align: center; margin: 28px 0 0; }

@media (min-width: 980px) {
  .voices { padding: 60px 0 80px; background: #fff; }
  .voices::before { content: ""; position: absolute; left: 0; right: 0; top: 109px; bottom: 0; background: #f5f5f5; z-index: 0; }
  .voices__title { margin: 0 0 40px; }
  .voices__title-line { font-size: 28px; padding: 16px 26px; }
  .voices__grid { grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1088px; margin: 0 auto; }
  .voice { padding: 34px 42px; }
  .voice { padding: 34px 42px; }
  .voice__title { font-size: 20px; margin: 0 0 21px; padding-bottom: 16px; }
  .voice__text { font-size: 18px; }
  .voice__by { font-size: 17px; }
}

.faq { background: #f5f5f5; padding: 40px 24px 56px; margin-top: 120px; overflow: hidden; }
.faq__inner { max-width: 1080px; margin: 0 auto; }
.faq__title { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin: 0 0 28px; }
.faq__title-line { background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.4; padding: 12px 18px; }
.faq__list { display: grid; gap: 14px; }
.faq-item { background: #fff; }
.faq-item__q { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 20px 22px; position: relative; }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: ""; flex: none; width: 12px; height: 12px; margin-left: auto; border-right: 1.5px solid var(--navy); border-bottom: 1.5px solid var(--navy); transform: rotate(45deg); transition: transform .25s; }
.faq-item[open] .faq-item__q::after { transform: rotate(-135deg); }
.faq-item__mark { flex: none; font-family: var(--serif); font-weight: 400; color: #03004c; font-size: 22px; line-height: 1; }
.faq-item__mark--a { align-self: flex-start; color: var(--gold); }
.faq-item__qt { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 16px; line-height: 1.6; }
.faq-item__a { display: flex; gap: 16px; padding: 0 22px 22px; }
.faq-item__a p { font-family: var(--serif); color: var(--ink); font-size: 15px; line-height: 1.85; margin: 0; }

@media (min-width: 980px) {
  .faq { padding: 84px 0 80px; background: #fff; margin-top: 0; }
  .faq::before { content: ""; position: absolute; left: 0; right: 0; top: 120px; bottom: 0; background: #f5f5f5; z-index: 0; }
  .faq__title-line { font-size: 28px; padding: 16px 26px; }
  .faq-item__q { padding: 24px 30px; gap: 22px; }
  .faq-item__qt { font-size: 18px; }
  .faq-item__a { padding: 0 30px 26px; gap: 22px; }
  .faq-item__a p { font-size: 16px; }
}

.contact { background: #f5f5f5; padding: 0 0 56px; margin-top: 120px; }
.contact__head { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 24px 24px 0; }
.contact__head-bar { background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 17px; line-height: 1.4; margin: 0; padding: 12px 18px; }
.contact__inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 24px; text-align: center; }
.contact__title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 22px; line-height: 1.5; margin: 40px 0 20px; }
.contact__lead { font-family: var(--serif); color: var(--gray); font-size: 15px; line-height: 1.9; margin: 0 0 36px; }
.contact__form { background: #fff; max-width: 960px; min-height: 600px; margin: 0 auto; display: flex; align-items: center; justify-content: center; padding: clamp(20px, 4vw, 40px); box-sizing: border-box; }
.contact__form-note { font-family: var(--sans); color: #9a9a9a; font-size: 15px; line-height: 1.8; text-align: center; padding: 40px; margin: 0; }
.contact__phone { border-top: 1px solid #d8d8d8; margin-top: 40px; padding-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.contact__phone-label { font-family: var(--serif); font-weight: 700; color: #000; font-size: 16px; }
.contact__tel { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-weight: 700; color: var(--freedial); font-size: 28px; letter-spacing: .02em; }
.contact__tel img { width: 30px; height: auto; }
.contact__phone-hours { font-family: var(--sans); color: var(--gray); font-size: 13px; }

@media (min-width: 980px) {
  .contact { padding: 84px 0 80px; background: #fff; margin-top: 0; position: relative; }
  .contact::before { content: ""; position: absolute; left: 0; right: 0; top: 120px; bottom: 0; background: #f5f5f5; z-index: 0; }
  .contact__head { max-width: 1080px; margin: 0 auto; padding: 0; gap: 12px; }
  .contact__head-bar { font-size: 28px; padding: 16px 26px; }
  .contact__title { font-size: 34px; margin: 60px 0 24px; }
  .contact__lead { font-size: 16px; }
  .contact__form { min-height: 800px; }
}

.footer { position: relative; overflow: hidden; background: #fff; padding: 48px 24px 176px; }
.footer__inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center; }
.footer__logo { display: inline-block; margin: 0 0 20px; }
.footer__logo img { height: 48px; width: auto; }
.footer__address { font-family: var(--serif); color: var(--ink); font-size: 15px; line-height: 1.9; margin: 0 0 24px; }
.footer__copy { font-family: var(--serif); color: var(--gray); font-size: 13px; margin: 0; }

@media (min-width: 980px) {
  .footer { padding: 64px 0 186px; }
  .footer__logo img { height: 51px; }
  .footer__address { font-size: 16px; }
  .footer__copy { font-size: 14px; }
}

.footer__tel { font-family: var(--serif); color: var(--ink); font-size: 15px; margin: 0 0 24px; }
.footer__tel a { text-decoration: underline; }

.plan, .cta, .campaign-detail, .services, .jizo, .access, .voices, .faq { position: relative; }
.plan__header, .plan__inner, .cta__box, .cp-inner, .access__inner, .access__map, .voices__inner, .faq__inner { position: relative; z-index: 2; }
.deco { position: absolute; z-index: 0; pointer-events: none; }
.deco--plan { display: none; }
.deco--cta { display: none; }
.deco--campaign { display: none; }
.deco--services { display: none; }
.deco--jizo { display: none; }
.deco--testimonials { display: none; }
.deco--testimonials-2 { display: none; }
.deco--faq { display: none; }

@media (min-width: 980px) {
  .deco--plan { display: block; left: calc(50% + 182px); top: 653.92px; width: 583.67px; height: 902.34px; }
  .deco--cta { display: block; left: calc(50% + 255px); top: 361px; width: 570.22px; height: 521.06px; }
  .deco--campaign { display: block; left: calc(50% - 823px); top: 2200px; width: 635.6px; height: 672.49px; }
  .deco--services { display: block; left: calc(50% + 164px); top: 252.51px; width: 669.16px; height: 440.39px; }
  .deco--jizo { display: block; left: calc(50% - 836px); top: 255.95px; width: 1103.69px; height: 525.59px; }
  .deco--testimonials { display: block; left: calc(50% + 50px); top: -411px; width: 683.9px; height: 648.85px; }
  .deco--testimonials-2 { display: block; left: calc(50% - 133px); top: 1220.95px; width: 1103.69px; height: 525.59px; }
  .deco--faq { display: block; left: calc(50% - 146px); top: 1046.92px; width: 512.36px; height: 841.73px; }
}

@media (min-width: 980px) {
  .access__title { margin: 0 0 24px; }
  .access__title-line { font-size: 28px; padding: 16px 26px; }
  .access__inner { align-items: center; }
  .access__routemap { width: 470px; height: 375px; margin: 56px 0 0 auto; align-self: start; }
  .access__routemap img { height: 100%; object-fit: contain; }
  .access__map { max-width: 1080px; margin: 48px auto 0; }
  .access__map iframe { height: 360px; }
}

.services { position: relative; background: #fff; padding: 80px 24px 40px; overflow: hidden; }
.svc { display: flex; flex-direction: column; gap: 26px; }
.svc__intro { display: flex; flex-direction: row-reverse; align-items: flex-start; gap: 10px; margin: 0 0 16px auto; width: max-content; }
.svc__intro-col { writing-mode: horizontal-tb; font-feature-settings: 'vert' on; background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.9; letter-spacing: .2em; padding: 16px 10px; }
.svc__photo { margin: 0; position: relative; }
.svc__photo img { width: 100%; height: auto; display: block; }
.svc__labels { display: flex; flex-direction: row-reverse; gap: 8px; margin: 12px 0 0; }
.svc__label { writing-mode: horizontal-tb; font-feature-settings: 'vert' on; background: #fff; color: var(--navy); border: 1px solid var(--navy); font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.9; letter-spacing: .2em; padding: 13px 8px; }
.svc__lead { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 18px; margin: 0 0 10px; }
.svc__text { font-family: var(--serif); color: #000; font-size: 16px; line-height: 1.85; margin: 0; }

@media (min-width: 980px) {
  .services { padding: 160px 0 0; background: #fff; box-sizing: border-box; }
  .svc { display: block; height: 965px; position: relative; }
  .svc::before { content: ""; position: absolute; left: calc(50% - 620px); right: 0; top: 0; height: 965px; background: #f5f5f5; z-index: 0; }
  .svc > * { z-index: 2; }
  .svc > * { position: absolute; }
  .svc__intro { left: calc(50% + 146px); top: -32px; margin: 0; gap: 12px; }
  .svc__intro-col { font-size: 22px; padding: 18px 11px; }
  .svc__photo--reception { left: calc(50% - 554px); top: 67px; width: 480px; }
  .svc__photo--reception img { height: 320px; object-fit: cover; }
  .svc__photo--reception .svc__labels { position: absolute; left: 50px; top: 150px; flex-direction: row-reverse; gap: 8px; margin: 0; }
  .svc__photo--lawroom { left: calc(50% + 60px); top: 565px; width: 480px; }
  .svc__photo--lawroom img { height: 320px; object-fit: cover; }
  .svc__photo--lawroom .svc__labels { position: absolute; left: 50px; top: -18px; flex-direction: row-reverse; gap: 8px; margin: 0; }
  .svc__label { font-size: 22px; }
  .svc__head--funeral { left: calc(50% - 508px); top: 449px; width: 462px; }
  .svc__head--reinter { left: calc(50% - 508px); top: 690px; width: 542px; }
  .svc__lead { font-size: 20px; }
  .svc__text { font-size: 18px; }
}

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; line-height: 0; }
.gallery-strip img { width: 100%; height: 150px; object-fit: cover; display: block; }
@media (min-width: 980px) { .gallery-strip img { height: 285px; } }

.cta-float { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: #040238; transform: translateY(100%); opacity: 0; visibility: hidden; transition: transform .35s ease, opacity .35s ease; }
.cta-float.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }
.cta-float__inner { height: 96px; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 0 24px; box-sizing: border-box; }
.cta-float__divider { width: 1px; height: 56px; background: rgba(255,255,255,.35); margin: 0 8px; }
.cta-float .button { min-height: 52px; }
.cta-float__phone { display: flex; flex-direction: column; align-items: flex-start; color: #fff; line-height: 1.15; margin-left: 40px; }
.cta-float__phone-label { font-size: 14px; font-weight: 700; letter-spacing: .04em; }
.cta-float__tel { display: inline-flex; align-items: center; gap: 8px; font-family: var(--serif); font-weight: 700; font-size: 24px; color: #fff; text-decoration: none; }
.cta-float__tel img { width: 22px; height: 22px; }
@media (max-width: 979px) {
  .cta-float__inner { gap: 0; padding: 0; height: auto; }
  .cta-float .button { flex: 0 0 35.2%; min-height: 48px; font-size: 16px; padding: 0 22px 0 12px; }
  .cta-float .button__arrow { right: 8px; }
  .cta-float__divider, .cta-float__phone { display: none; }
}

main { position: relative; }

.footer__deco { position: absolute; z-index: 0; pointer-events: none; height: auto; }
.footer__deco--right { left: auto; right: 0; top: -40px; width: 560px; }
.footer__deco--left { left: 0; bottom: -40px; width: 439px; }
@media (max-width: 979px) {
  .footer__deco--right { left: auto; right: -120px; top: -20px; width: 300px; }
  .footer__deco--left { left: -120px; bottom: -20px; width: 280px; }
}

.cta-float__announce { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; height: 44px; margin: 0; padding: 0 24px; box-sizing: border-box; background: #f6f2e7; color: #1a1a1a; font-family: var(--serif); font-weight: 400; font-size: 16px; letter-spacing: normal; line-height: 1; white-space: nowrap; }
.cta-float__announce-tag { font-weight: 500; margin-right: 6px; }
.cta-float__announce-strong { font-weight: 500; }
.cta-float__telbtn { display: none; }
.u-pc { display: inline; }
@media (max-width: 979px) {
  .cta-float__announce { height: auto; min-height: 40px; padding: 6px 12px; font-size: 14px; font-weight: 700; white-space: normal; line-height: 1.5; gap: 0 2px; }
}

@media (min-width: 980px) {
  .hero__catch span { background: var(--navy); padding: 14px 8px; }
  .campaign { padding: 22px 28px; }
  .intro__ashirai { display: block; top: -40px; left: 244px; width: 664px; }
  .feature__label { writing-mode: vertical-rl; }
  .jizo__label { writing-mode: vertical-rl; }
  .voice { min-height: 350px; }
  .svc__intro-col { writing-mode: vertical-rl; }
  .svc__label { writing-mode: vertical-rl; }
}

@media (max-width: 979px) {
  .hero__lead { flex-direction: column-reverse; align-items: center; gap: 10px; }
  .hero__catch { align-self: flex-end; gap: 10px; position: relative; right: 22px; }
  .hero__catch span { font-size: 32px; line-height: 1.3; letter-spacing: 0.25em; padding: 4px 3px 10px; }
  .hero__catch span:nth-child(2) { letter-spacing: 0.04em; }
  .hero__points { align-self: center; position: relative; left: -62px; margin-top: -90px; z-index: 3; }
  .feature__labels { flex-direction: column; justify-content: flex-start; align-items: flex-start; margin-left: -24px; }
  .feature__label { text-align: left; }

  .u-pc { display: none; }
  .cta-float .cta-float__telbtn { display: flex; flex: 0 0 29.6%; min-height: 48px; padding: 0 4px; font-size: 15px; line-height: 1.25; text-align: center; white-space: normal; background: rgb(30, 28, 100); }

  .campaign { padding: 21px 18px 13px; margin-top: 55px; }

  .site-header__logo img { width: 211.705px; height: 39px; }

  .hero__photos { display: none; }
  .hero { background: var(--navy) url(assets/hero-sp-bg.webp) center top / cover no-repeat; }

  .feature__photo { margin-left: -24px; margin-right: -24px; margin-top: -24px; }
  .feature__photo img { width: 100%; }
  .feature__label { padding: 14px 22px; letter-spacing: .12em; }

  .svc__intro-col { font-feature-settings: normal; }
  .jizo__label { font-feature-settings: normal; line-height: 1.4; letter-spacing: normal; padding: 14px 22px; }

  .jizo__label--1 { margin-bottom: 10px; }

  .jizo__label--2::before { content: ""; display: inline-block; width: 24px; height: 2px; background: #fff; vertical-align: middle; margin-right: 10px; position: static; }

  .access__info { display: contents; }
  .access__title { order: 0; }
  .access__routemap { order: 1; }
  .access__lead { order: 2; }
  .access__table { order: 3; }

  .access__title-line { padding: 14px 22px; }

  .voice__text { font-size: 17px; }
  .jizo__text { font-size: 17px; }
  .faq-item__qt { font-size: 17px; }
  .faq-item__a p { font-size: 17px; }
  .voices__note { font-size: 14px; }

  .feature { padding-bottom: 30px; }
  .feature__labels { margin-top: 32px; }
  .feature__quote { margin: 32px 0 22px; }

  .voices__grid { gap: 36px; }

  .cp-steps { margin-bottom: 44px; }

  .feature-card__num { font-size: 20px; }
  .contact__head-bar { font-size: 18px; }

  .access__row { font-size: 18px; }
  .access__lead { font-size: 20px; }

  .services { background: #f5f5f5; margin-top: 100px; padding-left: 16px; padding-right: 16px; }
  .jizo { background: #f5f5f5; padding: 40px 24px; }
  .access { background: #f5f5f5; }

  .footer__deco { display: none; }

  .cta__campaign { padding: 20px 12px 22px; }

  .cp-steps__list { gap: 20px; list-style: none; margin: 0; padding: 0; }
  .cp-step { display: block; background: #fff; }
  .cp-step__num { display: block; width: auto; background: #040238; padding: 14px 22px; font-size: 20px; font-weight: 700; text-align: center; }
  .cp-step__text { display: block; padding: 15px 28px; font-size: 20px; font-weight: 400; line-height: 1.45; color: #000; text-align: left; }

  .campaign-detail { margin-top: 32px; padding-left: 16px; padding-right: 16px; }
  .cta { overflow: visible; }
  .cta__box { z-index: 3; }
  .deco--cta { display: block; z-index: 2; top: auto; left: auto; width: 320px; height: 292px; right: -90px; bottom: -150px; }

  .intro__lead, .intro__head, .feature-cards { position: relative; z-index: 3; }
  .feature__labels, .feature__main { position: relative; z-index: 3; }
  #section-access::before { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 219px; height: 111px; background: url(assets/sp-deco-03.svg) no-repeat center/contain; top: -80px; left: 184px; }
  #section-access::after { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 425px; height: 515px; background: url(assets/sp-deco-04.svg) no-repeat center/contain; top: 1100px; left: -25px; }
  #section-price::after { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 182px; height: 291px; background: url(assets/sp-deco-17.svg) no-repeat center/contain; top: 835px; left: 175px; }
  #section-history::after { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 229px; height: 216px; background: url(assets/sp-deco-05.svg) no-repeat center/contain; top: 760px; left: 178px; }

  .contact { position: relative; }
  .contact > * { position: relative; z-index: 3; }
  .contact::before { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 949px; height: 852px; background: url(assets/sp-deco-14.svg) no-repeat center/contain; top: 1000px; left: -268px; }
  .footer__inner { z-index: 3; }
  .footer__copy { position: relative; z-index: 1; }

  .campaign-detail > *, .services > *, .jizo > * { position: relative; z-index: 3; }
  .campaign-detail::before { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 933px; height: 684px; background: url(assets/sp-deco-10.svg) no-repeat center/contain; top: 703px; left: -237px; }
  .jizo::before { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 525px; height: 482px; background: url(assets/sp-deco-12.svg) no-repeat center/contain; top: -255px; left: 39px; }

  .plan__header { background-image: url(assets/plan-header-sp-bg.webp); }

  .plan-note { background: transparent; }

  .services::before { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 525px; height: 482px; background: url(assets/sp-deco-11.svg) no-repeat center/contain; top: -311px; left: -181px; }

  .faq__title { margin-top: -80px; }
  .contact { padding-top: 1px; }
  .contact__head { margin-top: -80px; }

  .plan > * { position: relative; z-index: 3; }
  #section-space::before { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 316px; height: 161px; background: url(assets/sp-deco-15.svg) no-repeat center/contain; top: -64px; left: 140px; }
  #section-space::after { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 512px; height: 497px; background: url(assets/sp-deco-16.svg) no-repeat center/contain; top: 646px; left: -70px; }
  #section-staff::after { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 512px; height: 497px; background: url(assets/sp-deco-07.svg) no-repeat center/contain; top: 771px; left: -70px; }

  .intro, .feature, .plan, .campaign-detail, .services, .jizo, .access, .voices, .faq, .contact, .footer { overflow: visible; }
  .feature__photo, .feature__map, .svc__photo, .contact__form { position: relative; z-index: 1 !important; }

  #section-access .feature__map { z-index: 3 !important; }
  .intro::before { content: ""; position: absolute; z-index: 2; pointer-events: none; width: 677px; height: 503px; background: url(assets/sp-deco-01.svg) no-repeat center/contain; top: 10px; left: -3px; }

  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip img:nth-child(n+3) { display: none; }
  .gallery-strip img { height: auto; aspect-ratio: 4 / 3; }

  .plan-card__fee, .plan-note__text, .contact__lead, .footer__address, .footer__tel, .hero__point-label, .hero__point-value, .voice__by, .contact__form-note { font-size: 16px; }
  .hero__point:nth-child(2) .hero__point-label { font-size: 12px; }
  .feature__source, .contact__phone-hours, .site-header__tel-hours, .footer__copy { font-size: 14px; }

  .svc__intro { flex-direction: column; align-items: flex-start; gap: 8px; margin: 0 0 24px; width: auto; }
  .svc__intro-col { font-size: 18px; font-weight: 700; line-height: 1.4; letter-spacing: normal; padding: 14px 22px; width: max-content; }

  .svc__photo { margin-left: -16px; margin-right: -16px; position: relative; }
  .svc__photo img { width: 100%; height: 250px; object-fit: cover; }

  .svc__photo .svc__labels { position: absolute; right: 16px; bottom: -40px; flex-direction: row-reverse; gap: 8px; margin: 0; z-index: 2; }
  .svc__label { writing-mode: vertical-rl; font-size: 24px; font-weight: 600; line-height: 32px; letter-spacing: normal; padding: 8px 12px; }

  .svc__lead { font-size: 20px; line-height: 1.5; }
  .svc__text { font-size: 18px; line-height: 1.78; }
}

@media (min-width: 980px) {
  .faq__title, .voices__title { display: block; }
  .faq__title-line, .voices__title-line { display: block; width: fit-content; margin-bottom: 10px; }

  .faq__title-line:nth-child(2) { display: inline-block; padding-right: 0; margin-bottom: 0; }
  .faq__title-line:nth-child(3) { display: inline-block; padding-left: 0; margin-bottom: 0; }

  .voices__title-line:nth-child(1) { display: inline-block; padding-right: 0; }
  .voices__title-line:nth-child(2) { display: inline-block; padding-left: 0; }
  .voices__title-line:nth-child(3) { display: block; margin-bottom: 0; }
}

@media (min-width: 980px) {
  .cta, .voices, .faq { overflow: visible; }

  .deco--campaign, .deco--testimonials-2, .deco--faq { z-index: 2; }
  .campaign-detail > *:not(.deco), .services > *:not(.deco), .voices > *:not(.deco), .faq > *:not(.deco), .contact > *:not(.deco) { position: relative; z-index: 3; }
}

.lp-back-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(0, 0, 0, .35); }
.lp-back-popup { display: none; position: fixed; z-index: 10001; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(460px, 88vw); box-sizing: border-box; padding: 32px 28px 28px; background: #fff; border-radius: 8px; box-shadow: 0 0 4px 4px rgba(0, 0, 0, .25); text-align: center; font-family: var(--serif); color: var(--navy); }
.lp-back-popup__icon { display: block; width: 40px; height: 40px; margin: 0 auto 16px; color: var(--gold); font-size: 32px; line-height: 40px; }
.lp-back-popup__text { font-size: 18px; line-height: 1.75; margin: 0 0 20px; }
.lp-back-popup__tel { display: inline-block; margin: 8px 0 4px; font-size: 28px; font-weight: 700; color: var(--freedial); text-decoration: none; }
.lp-back-popup__tel:hover { opacity: .85; }
.lp-back-popup__tel-sub { font-size: 13px; color: var(--gray); margin: 0 0 20px; }
.lp-back-popup__close { display: inline-block; margin-top: 8px; padding: 10px 32px; background: var(--navy); color: #fff; border: none; border-radius: 4px; font-family: var(--serif); font-size: 16px; font-weight: 700; cursor: pointer; }
.lp-back-popup__close:hover { opacity: .9; }

/* ===== キャンペーン ===== */
/* ===== 共通部品：赤リボン ===== */
.cpb__ribbon { z-index: 2; margin: 0; background: var(--cp-red); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 15px; line-height: 1; letter-spacing: .08em; padding: 11px 36px 12px; white-space: nowrap; clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%); }

/* ===== FVバナー ===== */
.campaign.cpb { display: block; max-width: 1010px; padding: 18px 20px 18px 24px; color: var(--navy); background: #f7f3ec; border-color: var(--gold-line); }
.campaign.cpb::before { inset: 6px; border-color: var(--gold-line); }
.cpb__cols { display: flex; align-items: center; gap: 22px; }
.cpb__lead { position: relative; flex: none; align-self: stretch; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 7px; padding-right: 20px; font-family: var(--serif); }
.cpb__lead::after { content: ""; position: absolute; right: 0; top: -12px; bottom: -12px; width: 1px; background: repeating-linear-gradient(to bottom, var(--gold-line) 0 5px, transparent 5px 10px); }
.campaign.cpb .cpb__ribbon { position: static; font-size: 12px; letter-spacing: .06em; padding: 6px 20px 7px; clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%, 8px 50%); }
.cpb__name { font-weight: 700; font-size: 14px; line-height: 1.55; color: #000; letter-spacing: .04em; white-space: nowrap; }
.cpb__target { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; font-size: 14px; line-height: 1.3; letter-spacing: .06em; color: var(--gold); white-space: nowrap; }
.cpb__target::before, .cpb__target::after { content: ""; width: 18px; height: 1px; background: var(--gold-line); }
.cpb__body { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; font-family: var(--serif); }
.cpb__main { font-weight: 700; font-size: clamp(23px, 2.5vw, 27px); white-space: nowrap; line-height: 1.3; color: var(--navy); letter-spacing: .01em; }
.cpb__main em { font-style: normal; color: var(--gold); font-size: 1.12em; }
.cpb__period { display: inline-block; font-family: var(--serif); font-weight: 700; font-size: 16px; line-height: 1; color: var(--cp-red); border: 1px solid var(--cp-red); padding: 6px 12px; }
.cpb__inc { font-family: var(--serif); font-size: clamp(14px, 1.4vw, 16px); line-height: 1.6; color: #1a1a1a; white-space: nowrap; }
.cpb__photo { flex: none; width: 118px; }
.cpb__photo img { display: block; width: 100%; height: auto; }
@media (max-width: 979px) {
  .campaign.cpb { padding: 30px 10px 16px; margin-top: 55px; }
  .campaign.cpb .cpb__ribbon { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); font-size: 12px; padding: 8px 24px 9px; }
  .cpb__cols { flex-direction: column; align-items: center; text-align: center; gap: 9px; }
  .cpb__lead, .cpb__body { display: contents; }
  .cpb__lead::after { display: none; }
  .cpb__photo { order: 0; width: 100%; margin-bottom: 4px; }
  .cpb__target { order: 1; }
  .cpb__name { order: 2; width: 100%; padding-bottom: 11px; margin-bottom: 3px; font-size: clamp(12px, 4vw, 16px); letter-spacing: 0; white-space: normal;
    background-image: linear-gradient(to right, var(--gold-line) 0 5px, transparent 5px 10px); background-repeat: repeat-x; background-size: 10px 1px; background-position: left bottom; }
  .cpb__main { order: 3; font-size: 21px; line-height: 1.35; white-space: normal; }
  .cpb__period { order: 4; font-size: clamp(12px, 4vw, 16px); padding: 6px 10px; }
  .cpb__inc { order: 5; font-size: clamp(11px, 3.3vw, 14px); white-space: normal; }
}
@media (max-width: 340px) {
  .cpb__period { font-size: 11px; padding: 6px 8px; }
}

/* ===== 追従帯 ===== */
.cta-float__announce--cp { display: flex; justify-content: center; align-items: center; gap: 12px; text-decoration: none; height: 50px; background: #f7f3ec; border-top: 2px solid var(--gold-line); font-size: 18px; }
.cta-float__announce--cp .cta-float__announce-tag { font-weight: 700; color: #fff; background: var(--cp-red); padding: 6px 12px; font-size: 15px; line-height: 1; margin: 0; }
.cta-float__announce--cp .cta-float__announce-strong { font-weight: 700; color: var(--navy); }
.cta-float__announce-arrow { width: 7px; height: auto; margin-left: 2px; }
@media (max-width: 979px) {
  .cta-float__announce--cp { display: flex; white-space: normal; text-align: left; font-size: 14px; line-height: 1.4; padding: 6px 12px; min-height: 46px; height: auto; gap: 8px; }
  .cta-float__announce--cp .cta-float__announce-tag { font-size: 13px; padding: 5px 8px; flex: none; }
  .cta-float__announce-txt { flex: 1; min-width: 0; }
  .cta-float__announce-arrow { flex: none; }
}

/* ===== キャンペーンセクション ===== */
.cp2-head { position: relative; text-align: center; margin-bottom: 28px; padding-top: 8px; }
.cpb__ribbon--sec { position: static; transform: none; display: inline-block; margin-bottom: 16px; }
.cp2-head__eyebrow { font-family: var(--serif); font-weight: 700; color: #000; font-size: 19px; line-height: 1.4; margin: 0 0 4px; letter-spacing: .06em; }
.cp2-head__title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: clamp(26px, 5vw, 40px); line-height: 1.55; margin: 0 0 10px; letter-spacing: .02em; }
.cp2-head__title em { font-style: normal; color: var(--gold); }
.cp2-head__emph { -webkit-text-emphasis: filled dot var(--gold); text-emphasis: filled dot var(--gold); -webkit-text-emphasis-position: under left; text-emphasis-position: under left; }
.cp2-head__lead { font-family: var(--serif); font-weight: 400; color: var(--ink); font-size: 17px; line-height: 1.9; margin: 0; }
.cp2-story { position: relative; background: #fff; border: 1px solid var(--gold-line); padding: 28px 20px 26px; margin-bottom: 28px; display: flex; flex-direction: column; gap: 22px; }
.cp2-story::before { content: ""; position: absolute; inset: 6px; border: 1px solid var(--gold-line); pointer-events: none; }
.cp2-story__visual { position: relative; width: 100%; max-width: 380px; aspect-ratio: 380 / 310; margin: 0 auto; }
.cp2-photos__main { position: absolute; left: 0; top: 0; width: 78%; height: auto; }
.cp2-photos__sub { position: absolute; right: 0; bottom: 0; width: 50%; height: auto; border: 4px solid #fff; }
.cp2-story__text { position: relative; z-index: 1; }
.cp2-story__title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 24px; line-height: 1.5; text-align: center; margin: 0 0 10px; }
.cp2-story__sub { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 16px; line-height: 1.8; text-align: center; margin: 0 0 14px; }
.cp2-story__body { font-family: var(--serif); color: var(--ink); font-size: 16px; line-height: 1.95; text-align: left; margin: 0 0 20px; }
.cp2-inc { background: #f7f3ec; padding: 16px 18px; }
.cp2-inc__title { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 17px; margin: 0 0 8px; text-align: center; }
@media (min-width: 980px) { .cp2-inc__title { text-align: left; } }
.cp2-inc__list { display: grid; gap: 6px; }
.cp2-inc__list li { font-family: var(--serif); font-weight: 400; color: #000; font-size: 16px; line-height: 1.6; padding-left: 20px; position: relative; }
.cp2-inc__list li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }
.cp2-spec { margin: 0 0 36px; background: #fff; padding: 6px 20px; }
.cp2-spec__row { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 16px 0; border-bottom: 1px solid #e3ddd0; }
.cp2-spec__row:last-child { border-bottom: 0; }
.cp2-spec__row dt { font-family: var(--serif); font-weight: 700; color: #03004c; font-size: 16px; line-height: 1.5; padding-left: 18px; position: relative; letter-spacing: .06em; }
.cp2-spec__row dt::before { content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }
.cp2-spec__row dd { margin: 0; font-family: var(--serif); color: #000; font-size: 16px; line-height: 1.8; padding-left: 18px; }
.cp2-spec__tel { color: var(--freedial); font-weight: 700; margin: 0 2px; }
.cp2-spec__link { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cp2-cta { display: grid; gap: 14px; max-width: 700px; margin: 8px auto 0; }
.cp2-cta .button { width: 100%; min-height: 56px; }
.cp2-notes { margin-top: 28px; }
.cp2-notes__title { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 15px; margin: 0 0 6px; }
.cp2-notes__list { display: grid; gap: 2px; }
.cp2-notes__list li { font-family: var(--serif); font-size: 14px; color: rgba(0,0,0,.7); line-height: 1.8; padding-left: 1em; text-indent: -1em; }
.cp2-notes__list li::before { content: "・"; }
@media (min-width: 980px) {
  .cp2-head { margin-bottom: 40px; }
  .cp2-head__eyebrow { font-size: 22px; }
  .cp2-head__lead { font-size: 18px; }
  .cp2-story { flex-direction: row; align-items: center; gap: 48px; padding: 48px 52px; margin-bottom: 44px; }
  .cp2-story__visual { width: 420px; max-width: none; aspect-ratio: 420 / 350; flex: none; margin: 0; }
  .cp2-story__text { flex: 1; min-width: 0; }
  .cp2-story__title { font-size: 30px; text-align: left; margin-bottom: 8px; }
  .cp2-story__sub { font-size: 17px; text-align: left; }
  .cp2-story__body { font-size: 17px; margin-bottom: 22px; }
  .cp2-inc { padding: 18px 22px; }
  .cp2-spec { max-width: 980px; margin: 0 auto 48px; padding: 12px 48px; }
  .cp2-spec__row { grid-template-columns: 200px 1fr; gap: 0 16px; padding: 22px 0; align-items: baseline; }
  .cp2-spec__row dt { font-size: 18px; letter-spacing: .1em; padding-left: 22px; }
  .cp2-spec__row dt::before { width: 10px; height: 10px; top: .45em; }
  .cp2-spec__row dd { font-size: 17px; padding-left: 0; }
  .cp2-cta { grid-template-columns: 331px 331px; justify-content: center; gap: 18px; max-width: none; margin-top: 12px; }
  .cp2-cta .button { width: auto; }
  .cp2-notes { margin: 36px 0 0 40px; }
  .cp2-notes__title { font-size: 16px; }
}

/* ===== ボディCTA ===== */
.cta__box { position: relative; }
.cta__contact { padding-top: 36px; }
.cta-cp { position: relative; background: #f7f3ec; border-top: 2px solid var(--gold-line); padding: 18px 12px 20px; }
.cta-cp__inner { display: block; }

.cta-cp__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--gold-line); margin-bottom: 18px; }
.cta-cp__badge { display: inline-block; background: var(--cp-red); color: #fff; font-family: var(--serif); font-weight: 700; font-size: clamp(13px, 4vw, 16px); letter-spacing: .06em; line-height: 1; padding: 9px 24px 10px; white-space: nowrap; clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 50%, 100% 100%, 0 100%, 9px 50%); }
.cta-cp__title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 20px; line-height: 1.45; margin: 0; }
.cta-cp__title em { font-style: normal; color: var(--gold); }

.cta-cp__body { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-cp__photo { width: 100%; max-width: 300px; height: auto; flex: none; }
.cta-cp__dl { width: 100%; box-sizing: border-box; display: grid; grid-template-columns: 84px minmax(0,1fr); gap: 10px 14px; margin: 0; font-family: var(--serif); font-size: 16px; line-height: 1.7; color: #000; }
.cta-cp__dl dt { font-weight: 700; color: #03004c; white-space: nowrap; }
.cta-cp__dl dd { margin: 0; min-width: 0; }
.cta-cp__list { display: grid; gap: 4px; }
.cta-cp__list li { padding-left: 13px; position: relative; }
.cta-cp__list li::before { content: ""; position: absolute; left: 0; top: .66em; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.cta-cp__period { font-weight: 700; color: var(--cp-red); }
@media (min-width: 980px) { .u-nowrap { white-space: nowrap; } }

.cta-cp--c2 { padding: 0; background: #f7f3ec; border-top: 2px solid var(--gold-line); }
.cta-cp--c2 .cta-cp__inner { position: relative; margin: 0; border: 1px solid var(--gold-line); padding: 20px 12px 22px; }
.cta-cp--c2 .cta-cp__head { gap: 10px; padding-bottom: 14px; margin-bottom: 16px; }
.cta-cp--c2 .cta-cp__title { font-size: 21px; letter-spacing: .02em; }
.cta-cp--c2 .cta-cp__dl { grid-template-columns: 1fr; gap: 6px; }
@media (max-width: 374px) { .cta-cp--c2 .cta-cp__list { font-size: 15px; } }
.cta-cp--c2 .cta-cp__dl dt { padding-bottom: 2px; text-align: center; }
@media (min-width: 980px) { .cta-cp--c2 .cta-cp__dl dt { text-align: left; } }
.cta-cp--c2 .cta-cp__period { display: block; text-align: center; font-weight: 700; color: var(--cp-red); border: 1px solid var(--cp-red); padding: 7px 12px; line-height: 1.4; white-space: nowrap; font-size: clamp(13px, 4vw, 17px); }
@media (min-width: 980px) {
  .cta-cp--c2 .cta-cp__inner { margin: 0; border: 0; padding: 26px 30px; }
  .cta-cp__list li { padding-left: 16px; }
  .cta-cp__list li::before { width: 8px; height: 8px; }
  .cta-cp--c2 .cta-cp__head { align-items: center; text-align: center; gap: 14px; padding-bottom: 20px; margin-bottom: 24px; }
  .cta-cp--c2 .cta-cp__badge { font-size: 20px; padding: 15px 40px 16px; clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%); }
  .cta-cp--c2 .cta-cp__title { font-size: 27px; }
  .cta-cp--c2 .cta-cp__body { gap: 30px; align-items: center; justify-content: center; }
  .cta-cp--c2 .cta-cp__photo { width: 260px; }
  .cta-cp--c2 .cta-cp__dl { grid-template-columns: 88px minmax(0,1fr); gap: 16px 18px; font-size: 17px; }
  .cta-cp--c2 .cta-cp__list { gap: 6px; }
}

@media (min-width: 980px) {
  .cta-cp { padding: 22px 26px 24px; }
  .cta-cp__head { flex-direction: column; align-items: center; text-align: center; gap: 14px; padding-bottom: 16px; margin-bottom: 22px; }
  .cta-cp__title { font-size: 25px; }
  .cta-cp__body { flex-direction: row; align-items: center; gap: 32px; }
  .cta-cp__photo { width: 280px; max-width: none; }
  .cta-cp__dl { flex: 1; grid-template-columns: 96px minmax(0,1fr); gap: 12px 20px; font-size: 17px; }
}
