:root {
      --brand: #c07573;
      --brand-deep: #9f5654;
      --brand-soft: #ead6d2;
      --ink: #25201d;
      --muted: #6f625d;
      --line: #eadbd7;
      --paper: #fbf7f3;
      --white: #ffffff;
      --accent: #d7aaa0;
      --shadow: 0 14px 34px rgba(80, 54, 42, .12);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
      line-height: 1.8;
      background:
        linear-gradient(135deg, rgba(192, 117, 115, .18), rgba(234, 214, 210, .32) 42%, rgba(255, 253, 249, .96) 72%),
        var(--paper);
    }

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

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

    .wrap {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      background: var(--brand-deep);
      color: var(--white);
      font-size: 14px;
    }

    .topbar .wrap {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .topbar strong {
      font-size: 18px;
      letter-spacing: .04em;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 253, 249, .96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(10px);
    }

    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 14px 0 12px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 245px;
    }

    .site-logo {
      width: 58px;
      height: 58px;
      object-fit: contain;
      flex: 0 0 58px;
    }

    .logo-mark {
      position: relative;
      width: 54px;
      height: 48px;
      flex: 0 0 54px;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      top: 5px;
      width: 24px;
      height: 24px;
      border: 5px solid var(--brand);
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      background: var(--paper);
    }

    .logo-mark::before {
      left: 4px;
    }

    .logo-mark::after {
      right: 4px;
      border-color: var(--brand-deep);
      border-right-color: transparent;
      border-bottom-color: transparent;
      transform: rotate(-135deg);
    }

    .logo-stem {
      position: absolute;
      left: 24px;
      top: 25px;
      width: 6px;
      height: 24px;
      background: linear-gradient(var(--brand), var(--accent));
      border-radius: 999px;
      transform: rotate(28deg);
    }

    .brand small {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.2;
    }

    .brand b {
      display: block;
      font-size: 24px;
      line-height: 1.25;
      letter-spacing: .02em;
    }

    .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
    }

    .header-consult {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 8px 18px;
      color: var(--white);
      background: var(--brand);
      border: 1px solid var(--brand);
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 900;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      place-items: center;
      gap: 5px;
      padding: 10px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--brand-deep);
      border-radius: 999px;
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .global-nav {
      background: var(--white);
      border-top: 1px solid var(--line);
      box-shadow: 0 8px 18px rgba(80, 54, 42, .06);
    }

    .global-nav ul {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 14px;
      font-weight: 900;
      color: #3d332f;
    }

    .global-nav li {
      flex: 1 1 auto;
      min-width: 0;
    }

    .global-nav a {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 14px;
      border-left: 1px solid var(--line);
      border-bottom: 3px solid transparent;
      text-align: center;
      line-height: 1.35;
      white-space: nowrap;
    }

    .global-nav li:last-child a {
      border-right: 1px solid var(--line);
    }

    .global-nav a:hover {
      background: #fff8f4;
      border-color: var(--brand);
      color: var(--brand-deep);
    }

    .global-nav a.is-active {
      background: #fff8f4;
      border-color: var(--brand);
      color: var(--brand-deep);
    }

    .global-nav .nav-urgent {
      color: var(--white);
      background: var(--brand-deep);
      border-left-color: var(--brand-deep);
      border-bottom-color: var(--brand-deep);
    }

    .global-nav .nav-urgent:hover,
    .global-nav .nav-urgent.is-active {
      color: var(--white);
      background: var(--brand);
      border-color: var(--brand);
    }

    .header-call {
      display: grid;
      gap: 4px;
      text-align: right;
      min-width: 168px;
    }

    .header-call span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1;
    }

    .header-call strong {
      color: var(--brand-deep);
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: .02em;
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 700px;
      background: #ffffff;
      border-bottom: 1px solid var(--line);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 253, 249, .94) 0%, rgba(255, 253, 249, .86) 34%, rgba(255, 253, 249, .24) 62%, rgba(47, 37, 33, .18) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.32), rgba(47, 37, 33, .04) 44%);
      z-index: 0;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      min-height: 700px;
      display: block;
      padding: 76px 0 96px;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      width: min(500px, 100%);
      padding: 28px;
      background: linear-gradient(135deg, rgba(255, 253, 249, .96), rgba(234, 214, 210, .92));
      border: 1px solid rgba(234, 217, 209, .9);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 6px 12px;
      color: var(--brand-deep);
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 8px 18px rgba(80, 54, 42, .08);
    }

    .hero h1 {
      margin: 18px 0 14px;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: clamp(28px, 2.25vw, 36px);
      line-height: 1.28;
      letter-spacing: 0;
    }

    .hero-title-line {
      display: block;
      white-space: nowrap;
    }

    .hero p {
      margin: 0 0 26px;
      color: #4c403b;
      font-size: 18px;
    }

    .hero-actions,
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hero-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .hero-cta {
      min-height: 68px;
      gap: 10px;
      padding: 14px 18px;
      font-size: 18px;
      box-shadow: 0 12px 24px rgba(80, 54, 42, .14);
    }

    .btn-icon {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .28);
      font-size: 20px;
      line-height: 1;
      flex: 0 0 34px;
    }

    .btn.secondary .btn-icon {
      color: var(--brand-deep);
      background: #ead6d2;
    }

    .ui-icon,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 12px 22px;
      border-radius: var(--radius);
      border: 1px solid var(--brand);
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(80, 54, 42, .14);
    }

    .btn.primary {
      background: var(--brand);
      color: var(--white);
    }

    .btn.secondary {
      background: linear-gradient(135deg, #fffdf9, #ead6d2);
      color: var(--brand-deep);
    }

    .hero-card {
      background: rgba(255, 255, 255, .9);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .hero-visual {
      position: absolute;
      z-index: 0;
      inset: 0;
      min-height: 0;
      margin-right: 0;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      border: 0;
      box-shadow: none;
    }

    .hero-slide {
      opacity: 0;
    }

    .hero-slide:first-child {
      opacity: 1;
    }

    .hero-slide:nth-child(2) {
      animation: heroFade 12s infinite;
    }

    @keyframes heroFade {
      0%,
      40% {
        opacity: 0;
      }

      50%,
      90% {
        opacity: 1;
      }

      100% {
        opacity: 0;
      }
    }

    .hero-visual .phone-panel {
      position: static;
      width: auto;
    }

    .hero-copy .phone-panel {
      margin-top: 22px;
      padding: 22px;
      background: var(--white);
    }

    .phone-panel {
      display: grid;
      gap: 18px;
    }

    .phone-panel .label {
      color: var(--muted);
      font-weight: 700;
      font-size: 15px;
    }

    .phone-number {
      color: var(--brand-deep);
      font-size: clamp(36px, 4vw, 48px);
      font-weight: 900;
      line-height: 1;
      letter-spacing: .02em;
    }

    .call-icon {
      position: relative;
      display: inline-block;
      width: 1.28em;
      height: 1.28em;
      margin-right: .22em;
      background:
        url("assets/call-icon-pink.gif") center / 78% 78% no-repeat,
        radial-gradient(circle, rgba(255, 255, 255, .34) 0 42%, rgba(192, 117, 115, .18) 43% 100%);
      border: 2px solid rgba(192, 117, 115, .38);
      border-radius: 50%;
      box-shadow: 0 6px 14px rgba(192, 117, 115, .24);
      font-size: .76em;
      vertical-align: .05em;
      animation: callRing 1.6s ease-in-out infinite;
    }

    .call-icon::after {
      content: "";
      position: absolute;
      inset: -7px;
      border: 2px solid rgba(192, 117, 115, .42);
      border-radius: 50%;
      animation: callPulse 1.6s ease-out infinite;
    }

    .header-call .call-icon {
      font-size: .92em;
      margin-right: .34em;
      vertical-align: .02em;
    }

    @keyframes callRing {
      0%, 100% { transform: rotate(0deg) scale(1); }
      12% { transform: rotate(-14deg) scale(1.04); }
      24% { transform: rotate(12deg) scale(1.04); }
      36% { transform: rotate(-9deg) scale(1.03); }
      48% { transform: rotate(7deg) scale(1.02); }
      60% { transform: rotate(0deg) scale(1); }
    }

    @keyframes callPulse {
      0% { opacity: .7; transform: scale(.82); }
      70%, 100% { opacity: 0; transform: scale(1.45); }
    }

    .badges {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .badge {
      min-height: 92px;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--white);
      background: var(--brand);
      border-radius: var(--radius);
      font-weight: 900;
      font-size: 20px;
      line-height: 1.4;
    }

    section {
      padding: 74px 0;
    }

    #reasons,
    #urgent,
    #contact {
      scroll-margin-top: 132px;
    }

    section:nth-of-type(even) {
      background: linear-gradient(135deg, rgba(192, 117, 115, .14), rgba(234, 214, 210, .3));
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 0;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.35;
    }

    h2 span{
    font-size: 2vw;
    }

    .section-head p {
      max-width: 560px;
      margin: 0;
      color: var(--muted);
    }

    .grid {
      display: grid;
      gap: 18px;
    }

    .plans {
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .reasons {
      grid-template-columns: repeat(3, 1fr);
    }

    .reason-card {
      display: grid;
      align-content: start;
      gap: 10px;
      overflow: hidden;
      padding: 0 0 24px;
      min-height: 240px;
    }

    .reason-card > :not(.card-photo) {
      margin-left: 18px;
      margin-right: 18px;
    }

    .card-photo {
      max-width: none;
      width: calc(100% + 48px);
      height: 170px;
      object-fit: cover;
      margin: -24px -24px 18px;
      border-radius: var(--radius) var(--radius) 0 0;
    }

    .reason-card .card-photo {
      width: 100%;
      margin: 0 0 14px;
    }

    .reason-card h3 {
      white-space: nowrap;
      font-size: clamp(17px, 1.32vw, 21px);
      letter-spacing: 0;
      text-align: center;
    }

    .wide-photo {
      position: relative;
      min-height: 330px;
      overflow: hidden;
      display: grid;
      align-items: end;
      margin-bottom: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: #2f2521;
    }

    .wide-photo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .86;
    }

    .wide-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(47, 37, 33, .76), rgba(47, 37, 33, .2) 58%, rgba(47, 37, 33, .48));
    }

    .wide-photo div {
      position: relative;
      z-index: 1;
      max-width: 660px;
      padding: 34px;
      color: var(--white);
    }

    .wide-photo span {
      display: inline-flex;
      margin-bottom: 10px;
      padding: 5px 10px;
      color: var(--brand-deep);
      background: var(--white);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
    }

    .wide-photo strong {
      display: block;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: clamp(24px, 3.5vw, 36px);
      line-height: 1.35;
      letter-spacing: .02em;
    }

    .card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 8px 22px rgba(80, 54, 42, .08);
      padding: 24px;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 23px;
      line-height: 1.35;
      color: #25201d;
    }
    h3.planprice{
      margin: 0 0 10px;
      font-size: 30px;
      line-height: 1.35;
      text-align: center;
      color: #fbf7f3;
      border-radius: 20px;
      background: #9f5654;
    }

    .plan-card {
      display: grid;
      align-content: start;
      overflow: hidden;
    }

    .card-link {
      color: inherit;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      background: linear-gradient(6deg, #ffeacd, #ffffff);
    }

    .card-link:hover {
      transform: translateY(-2px);
      border-color: var(--brand);
      box-shadow: 0 14px 30px rgba(80, 54, 42, .14);
    }

    .plans .plan-card {
      padding: 18px;
    }

    .plans .plan-card .card-photo {
      width: calc(100% + 36px);
      height: 148px;
      margin: -18px -18px 14px;
    }

    .plans .plan-card h3.planprice {
      font-size: clamp(22px, 2.1vw, 27px);
      border-radius: 999px;
    }

    .plans .plan-card .price {
      font-size: clamp(24px, 2.25vw, 32px);
      white-space: nowrap;
    }

    .plans .plan-card .features {
      font-size: 14px;
      line-height: 1.55;
    }

    .card p {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      color: #9d0500;
      font-weight: 900;
      font-size: 40px;
      line-height: 1.2;
      margin: 0 auto;
    }

    .price span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .features {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 18px 0 20px;
      list-style: none;
      color: #463b36;
    }

    .features li {
      display: flex;
      gap: 8px;
    }

    .features li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 12px;
      border-radius: 50%;
      background: var(--accent);
      flex: 0 0 8px;
    }

    .halls {
      grid-template-columns: repeat(2, 1fr);
    }

    .halls.lp-halls {
      grid-template-columns: 1fr;
    }

    .hall-card {
      min-height: 190px;
      display: grid;
      grid-template-columns: 42% 1fr;
      align-items: stretch;
      gap: 18px;
      padding: 0;
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 248, 244, .94)),
        linear-gradient(135deg, var(--brand-soft), transparent);
    }

    .hall-card > div {
      display: grid;
      align-content: start;
      padding: 22px 18px 8px 0;
    }

    .hall-card .mini-btn {
      align-self: end;
      margin: 0 18px 22px 0;
    }

    .hall-thumb {
      grid-row: 1 / span 2;
      width: 100%;
      height: 100%;
      min-height: 190px;
      object-fit: cover;
    }

    .hall-card small {
      color: var(--brand-deep);
      font-weight: 800;
    }

    .lp-hall-card {
      grid-template-columns: minmax(260px, 34%) 1fr;
      gap: 20px;
    }

    .lp-hall-card > div {
      padding: 22px 18px 0 0;
    }

    .lp-hall-card .map-btn {
      grid-column: 2;
      justify-self: start;
      width: auto;
      min-width: 220px;
      margin: 0 18px 22px 0;
    }

    .hall-info-table {
      width: 100%;
      margin-top: 14px;
      border-collapse: collapse;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      font-size: 14px;
    }

    .hall-info-table th,
    .hall-info-table td {
      padding: 10px 12px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
      line-height: 1.55;
    }

    .hall-info-table th {
      width: 110px;
      color: var(--brand-deep);
      background: rgba(192, 117, 115, .1);
      font-weight: 900;
      white-space: nowrap;
    }

    .hall-info-table tr:last-child th,
    .hall-info-table tr:last-child td {
      border-bottom: 0;
    }

    .mini-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      width: 100%;
      padding: 8px 16px;
      color: var(--brand-deep);
      background: #fff8f4;
      border: 1px solid var(--brand);
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 900;
    }

    .mini-btn::after {
      content: ">";
      margin-left: 8px;
    }

    .static-btn {
      pointer-events: none;
    }

    .static-btn::after {
      content: none;
    }

    .map-btn {
      text-decoration: none;
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      color: var(--white);
      border-color: transparent;
    }

    .urgent {
      color: var(--white);
      background: linear-gradient(135deg, var(--brand-deep), var(--brand));
    }

    .sub-hero {
      position: relative;
      overflow: hidden;
      color: var(--ink);
      background:
        linear-gradient(90deg, rgba(255, 253, 249, .94), rgba(234, 214, 210, .78)),
        url("assets/funeral-hero.png") center / cover;
      border-bottom: 1px solid var(--line);
      padding: 82px 0;
    }

    .sub-hero h1 {
      margin: 18px 0 12px;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.25;
    }

    .sub-hero p {
      max-width: 720px;
      margin: 0;
      color: #4c403b;
      font-size: 18px;
    }

    .sub-list {
      display: grid;
      gap: 24px;
    }

    .plan-showcase-list {
      display: grid;
      gap: 44px;
    }

    .plan-tabs-section {
      padding-top: 26px;
    }

    .plan-tabs {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-bottom: 28px;
      padding: 10px;
      background: linear-gradient(135deg, rgba(192, 117, 115, .14), rgba(230, 221, 208, .52));
      border: 1px solid rgba(192, 117, 115, .24);
      border-radius: var(--radius);
      box-shadow: 0 12px 28px rgba(80, 54, 42, .08);
    }

    .plan-tab {
      display: grid;
      place-items: center;
      gap: 5px;
      min-height: 86px;
      padding: 14px 10px;
      color: #4c403b;
      background: rgba(255, 255, 255, .88);
      border: 1px solid rgba(192, 117, 115, .22);
      border-radius: 8px;
      box-shadow: 0 8px 18px rgba(80, 54, 42, .07);
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    }

    .plan-tab:hover,
    .plan-tab:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 14px 24px rgba(80, 54, 42, .12);
      outline: 2px solid rgba(192, 117, 115, .3);
      outline-offset: 2px;
    }

    .plan-tab.is-active {
      color: var(--white);
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      border-color: transparent;
    }

    .plan-tab span {
      font-size: 21px;
      font-weight: 900;
      line-height: 1.25;
    }

    .plan-tab strong {
      font-size: 18px;
      line-height: 1.2;
    }

    .lp-plan-tabs {
      width: min(900px, 100%);
      margin-left: auto;
      margin-right: auto;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-plan-tabs .plan-tab {
      align-content: center;
      gap: 8px;
    }

    .lp-plan-tabs .plan-tab span {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 10px;
      width: 100%;
    }

    .lp-plan-tabs .plan-tab span b {
      font-size: 22px;
      line-height: 1.2;
    }

    .lp-plan-tabs .plan-tab small {
      display: block;
      color: var(--brand-deep);
      font-size: 14px;
      font-weight: 900;
      line-height: 1.35;
    }

    .lp-plan-tabs .plan-tab.is-active small {
      color: rgba(255, 255, 255, .88);
    }

    .consultation-banner {
      position: relative;
      display: block;
      margin: 64px auto 0;
      max-width: 980px;
      overflow: hidden;
      border-radius: var(--radius);
      color: var(--ink);
      text-decoration: none;
      background: linear-gradient(135deg, rgba(192, 117, 115, .18), rgba(230, 221, 208, .72));
      border: 1px solid rgba(192, 117, 115, .22);
      box-shadow: 0 16px 36px rgba(80, 54, 42, .12);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .consultation-banner:hover,
    .consultation-banner:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(192, 117, 115, .42);
      box-shadow: 0 20px 42px rgba(80, 54, 42, .16);
      outline: none;
    }

    .consultation-banner img {
      width: 100%;
      height: auto;
      display: block;
      filter: saturate(.92) brightness(1.04);
    }

    #plans > .lp-plan-tabs {
      margin-top: 14px;
    }

    .plan-tab-lead {
      margin: 48px 0 0;
      color: var(--brand-deep);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: clamp(18px, 2vw, 25px);
      font-weight: 900;
      line-height: 1.35;
      text-align: center;
      letter-spacing: 0;
      white-space: nowrap;
    }

    #kazoku .plan-explain p {
      text-align: center;
    }

    #ichinichi .plan-explain p,
    #kasou .plan-explain p {
      text-align: center;
    }

    #kazoku .plan-explain .lead {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    #ichinichi .plan-explain .lead,
    #kasou .plan-explain .lead {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .plan-tab-panel[hidden] {
      display: none;
    }

    .family-plan-select {
      padding: 34px 38px 36px;
      background: linear-gradient(135deg, rgba(192, 117, 115, .1), rgba(230, 221, 208, .42));
      border-bottom: 1px solid var(--line);
    }

    .section-head.compact {
      margin-bottom: 22px;
    }

    .section-head.compact h2 {
      color: var(--brand-deep);
    }

    .family-plan-buttons {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .family-plan-button {
      display: grid;
      grid-template-rows: auto 1fr auto;
      min-width: 0;
      overflow: hidden;
      color: inherit;
      text-decoration: none;
      background: var(--white);
      border: 1px solid rgba(192, 117, 115, .22);
      border-radius: 8px;
      box-shadow: 0 12px 24px rgba(80, 54, 42, .09);
      cursor: default;
    }

    .family-plan-button img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .family-plan-button > span {
      display: grid;
      align-items: center;
      min-height: 54px;
      padding: 12px 12px 4px;
      color: #332b27;
      font-size: 18px;
      font-weight: 900;
      line-height: 1.35;
      text-align: center;
    }

    .family-plan-button strong {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
      padding: 0 10px 16px;
      color: var(--brand-deep);
      font-size: 22px;
      line-height: 1.15;
      white-space: nowrap;
    }

    .family-plan-button strong span {
      font-size: 12px;
      font-weight: 900;
    }

    .general-plan-buttons {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      max-width: 860px;
      margin: 0 auto;
    }

    .general-plan-button img {
      aspect-ratio: 16 / 9;
    }

    .general-plan-button > span {
      min-height: 64px;
      font-size: 22px;
    }

    .general-plan-button strong {
      padding-bottom: 20px;
      font-size: 28px;
    }

    .plan-showcase {
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 14px 34px rgba(80, 54, 42, .1);
      scroll-margin-top: 160px;
    }

    .plan-visual {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 30px;
      align-items: center;
      padding: 36px 38px 28px;
      border-bottom: 4px solid var(--brand);
    }

    .plan-main span {
      display: block;
      margin-bottom: 16px;
      font-size: 20px;
      font-weight: 900;
      text-align: center;
    }

    .plan-main p {
      margin: 0 0 8px;
      color: var(--brand-deep);
      font-size: 21px;
      font-weight: 900;
      text-align: center;
    }

    .plan-main h2 {
      margin: 0 0 22px;
      padding-bottom: 18px;
      border-bottom: 1px solid #ddd2ce;
      font-size: clamp(34px, 5vw, 52px);
      line-height: 1.18;
      letter-spacing: .02em;
      text-align: center;
    }

    .plan-main h2 em {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      margin-right: 12px;
      padding: 4px 18px;
      color: var(--white);
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      border-radius: 999px;
      font-size: .52em;
      font-style: normal;
      vertical-align: middle;
    }

    .plan-price {
      display: grid;
      justify-items: center;
      gap: 6px;
      margin-bottom: 20px;
    }

    .plan-price strong {
      color: #25201d;
      font-size: clamp(38px, 6vw, 58px);
      line-height: 1;
      letter-spacing: .02em;
    }

    .plan-price small {
      color: var(--muted);
      font-weight: 800;
      text-align: center;
    }

    .plan-visual figure {
      margin: 0;
      text-align: center;
    }

    .plan-visual img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border-radius: var(--radius);
    }

    .plan-visual figcaption {
      margin-top: 8px;
      color: var(--muted);
      font-size: 12px;
    }

    .plan-explain {
      padding: 34px 38px 18px;
      text-align: center;
      background: linear-gradient(135deg, rgba(192, 117, 115, .13), rgba(234, 214, 210, .34));
    }

    .plan-explain h3 {
      margin: 0 0 10px;
      color: var(--brand-deep);
      font-size: clamp(26px, 4vw, 36px);
      line-height: 1.35;
    }

    .plan-explain .lead {
      margin: 0 0 14px;
      color: var(--brand);
      font-size: 22px;
      font-weight: 800;
    }

    .plan-explain p {
      margin: 0 auto 18px;
      max-width: 760px;
      font-weight: 700;
    }

    .flow-title {
      width: min(520px, 100%);
      margin: 24px auto 12px;
      padding: 8px 16px;
      color: var(--white);
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      border-radius: 999px;
      font-size: 20px;
      font-weight: 900;
      line-height: 1.3;
    }

    .plan-flow {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 22px;
      margin: 0 auto 30px;
    }

    .plan-flow span {
      position: relative;
      display: grid;
      place-items: center;
      width: 58px;
      min-height: 118px;
      padding: 10px 8px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 4px;
      color: #4c403b;
      font-weight: 900;
      writing-mode: vertical-rl;
      letter-spacing: .08em;
    }

    .plan-flow span:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -22px;
      width: 22px;
      height: 2px;
      background: var(--brand);
    }

    .plan-flow .muted {
      color: #b7aaa5;
      background: linear-gradient(110deg, var(--white) 48%, #d8d0cc 49%, #d8d0cc 51%, var(--white) 52%);
    }

    .plan-explain h4 {
      margin: 0 0 14px;
      font-size: 22px;
      line-height: 1.35;
    }

    .plan-explain h4::before {
      content: "✓";
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      margin-right: 8px;
      color: var(--white);
      background: var(--brand);
      border-radius: 50%;
      font-size: 15px;
      vertical-align: 2px;
    }

    .reason-pills {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .reason-pills div {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 94px;
      padding: 16px 20px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      text-align: left;
      font-weight: 800;
    }

    .reason-pills b {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      color: var(--white);
      background: linear-gradient(135deg, #d9aaa8, var(--brand-deep));
      border-radius: 50%;
      flex: 0 0 54px;
      font-size: 0;
    }

    .reason-pills b::before {
      content: "";
      width: 28px;
      height: 28px;
      background: currentColor;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='20' r='11' fill='black'/%3E%3Cpath d='M12 56c2.6-14 11.2-22 20-22s17.4 8 20 22H12z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='20' r='11' fill='black'/%3E%3Cpath d='M12 56c2.6-14 11.2-22 20-22s17.4 8 20 22H12z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .included-block {
      margin-top: 34px;
      padding: 28px 38px 38px;
    }

    .included-block h3 {
      margin: 0 0 12px;
      padding-left: 14px;
      border-left: 6px solid var(--brand);
      font-size: 28px;
      line-height: 1.35;
    }

    .included-block p {
      margin: 0 0 18px;
      font-weight: 700;
    }

    .included-block .included-note {
      margin: 16px 0 0;
      color: var(--brand-deep);
      font-size: 15px;
      font-weight: 900;
      text-align: center;
      letter-spacing: 0;
    }

    .included-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .included-grid div {
      display: grid;
      grid-template-columns: 82px 1fr;
      grid-template-rows: auto auto;
      gap: 12px;
      align-items: center;
      min-height: 102px;
      padding: 14px 16px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--white);
    }

    .included-grid span {
      grid-column: 1;
      grid-row: 1 / 3;
      display: grid;
      place-items: center;
      width: 74px;
      height: 74px;
      color: #5b5755;
      background: transparent;
      border: 0;
      border-radius: 0;
      font-weight: 900;
      font-size: 22px;
    }

    .included-icon::before {
      content: "";
      width: 48px;
      height: 48px;
      background: currentColor;
      -webkit-mask: var(--icon) center / contain no-repeat;
      mask: var(--icon) center / contain no-repeat;
    }

    .icon-car { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M6 37h5l6-15h28l7 15h3c3 0 5 2 5 5v9h-8a8 8 0 0 1-16 0H28a8 8 0 0 1-16 0H4v-9c0-3 1-5 2-5zm16-9-3 9h26l-4-9H22zm-2 27a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm24 0a4 4 0 1 0 0-8 4 4 0 0 0 0 8z' fill='black'/%3E%3Cpath d='M45 15h9v5h-9z' fill='black'/%3E%3C/svg%3E"); }
    .icon-rest { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M8 31h48v19h-7v-5H15v5H8V31zm5-12h21v10H13V19zm24 4h10c5 0 9 3 9 8H37v-8zm-21 24h32v5H16v-5z' fill='black'/%3E%3C/svg%3E"); }
    .icon-coffin { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M23 6h18l10 13-5 39H18l-5-39L23 6zm4 15h10v28H27V21zm-8 0 4 28h-3l-4-28h3zm26 0-4 28h3l4-28h-3z' fill='black'/%3E%3C/svg%3E"); }
    .icon-document { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M17 6h25l9 9v43H17V6zm22 4v12h12L39 10zM23 30h22v5H23v-5zm0 10h22v5H23v-5zm0 10h16v4H23v-4z' fill='black'/%3E%3C/svg%3E"); }
    .icon-flower { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M31 39h4v18h-4V39z' fill='black'/%3E%3Ccircle cx='33' cy='27' r='6' fill='black'/%3E%3Ccircle cx='33' cy='13' r='8' fill='black'/%3E%3Ccircle cx='47' cy='24' r='8' fill='black'/%3E%3Ccircle cx='41' cy='39' r='8' fill='black'/%3E%3Ccircle cx='25' cy='39' r='8' fill='black'/%3E%3Ccircle cx='19' cy='24' r='8' fill='black'/%3E%3Cpath d='M20 50c7-1 10-5 13-11 2 8 7 12 14 12-7 5-20 5-27-1z' fill='black'/%3E%3C/svg%3E"); }
    .icon-urn { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M23 7h18v8H23V7zm-4 11h26l-5 11 6 9-5 19H23l-5-19 6-9-5-11zm9 13h8v20h-8V31zm-7 27h22v4H21v-4z' fill='black'/%3E%3C/svg%3E"); }
    .icon-ice { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 5 56 19v27L32 59 8 46V19L32 5zm0 8-15 9 15 8 15-8-15-9zM14 29v14l15 8V37l-15-8zm21 22 15-8V29l-15 8v14z' fill='black'/%3E%3C/svg%3E"); }
    .icon-altar,
    .icon-funeralaltar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M27 7h10v11H27V7zm-4 14h18v5H23v-5zm-5 18h28v7H18v-7zm-5 9h38v9H13v-9z' fill='black'/%3E%3Cpath d='M20 28h24v9H20v-9zm8 2h8v5h-8v-5z' fill='black'/%3E%3Cpath d='M8 30c0-5 4-8 8-8 4 0 8 4 8 8s-4 8-8 8c-5 0-8-3-8-8zm40-8c5 0 8 4 8 8s-3 8-8 8c-4 0-8-4-8-8s4-8 8-8zM6 58h52v4H6v-4z' fill='black'/%3E%3C/svg%3E"); }
    .icon-photo { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M13 8h38v48H13V8zm6 6v36h26V14H19zm13 7a8 8 0 1 1 0 16 8 8 0 0 1 0-16zm-11 27c2-7 6-10 11-10s9 3 11 10H21z' fill='black'/%3E%3C/svg%3E"); }
    .icon-building { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10 55V22L32 9l22 13v33h-9V42H19v13H10zm14-25h6v6h-6v-6zm10 0h6v6h-6v-6zm-8 16h12v9H26v-9z' fill='black'/%3E%3C/svg%3E"); }
    .icon-reception { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M17 8h27v48H17V8zm6 9h15v5H23v-5zm0 10h15v5H23v-5zm0 10h11v5H23v-5zm22-6 10 10-5 5-10-10 5-5z' fill='black'/%3E%3C/svg%3E"); }
    .icon-staff { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='16' r='9' fill='black'/%3E%3Cpath d='M14 56c2-15 10-24 18-24s16 9 18 24H14zm13-22 5 9 5-9H27z' fill='black'/%3E%3Cpath d='M23 56h18l-4-15h-10l-4 15z' fill='black'/%3E%3C/svg%3E"); }
    .icon-incense { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M18 43h28l-4 13H22l-4-13zm10-21h6v19h-6V22zm13-11 5 4-10 17-5-3 10-18zm-20 5 5-4 8 17-5 3-8-16zM19 58h26v4H19v-4z' fill='black'/%3E%3C/svg%3E"); }
    .icon-letter { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M9 16h46v33H9V16zm6 8 17 12 17-12H15zm0 20h34V31L32 43 15 31v13z' fill='black'/%3E%3C/svg%3E"); }
    .icon-home-altar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M18 35h28v8H18v-8zm4 10h20v11H22V45zm10-38 15 14v11H17V21L32 7zm-5 18h10v7H27v-7zM15 57h34v4H15v-4z' fill='black'/%3E%3C/svg%3E"); }
    .icon-futon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10 26h44v24H10V26zm5 5v14h34V31H15zm5-15h24c5 0 9 4 9 9H11c0-5 4-9 9-9zm-1 27h26v4H19v-4z' fill='black'/%3E%3C/svg%3E"); }
    .icon-pillowaltar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M15 38h34v8H15v-8zm5 10h24v8H20v-8zm9-31h6v18h-6V17zm-13 9 4-4 10 13-4 3-10-12zm32-4 4 4-10 12-4-3 10-13zM22 12h20v6H22v-6z' fill='black'/%3E%3C/svg%3E"); }
    .icon-kimono { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M23 8h18l16 12-7 13-7-4v28H21V29l-7 4-7-13L23 8zm6 6 3 9 3-9h-6zm-3 8v30h12V22l-6 12-6-12z' fill='black'/%3E%3C/svg%3E"); }
    .icon-memorialtablet { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M26 6h12l5 8v25H21V14l5-8zm-8 36h28v8H18v-8zm-4 10h36v7H14v-7zm15-32h6v16h-6V20z' fill='black'/%3E%3C/svg%3E"); }
    .icon-buddhistutensils { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M11 43h18l-3 12H14l-3-12zm24 0h18l-3 12H38l-3-12zM20 17h5v23h-5V17zm19 0h5v23h-5V17zm-7 20c6 0 11 4 12 10H20c1-6 6-10 12-10zm-5 20h10v5H27v-5z' fill='black'/%3E%3C/svg%3E"); }
    .icon-coffin-upglade,
    .icon-coffin-upgrade { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M20 8h20l10 13-5 37H15l-5-37L20 8zm6 14h10v27H26V22zm-8 0 4 27h-3l-4-27h3zm25 0-4 27h3l4-27h-3z' fill='black'/%3E%3Cpath d='M50 7h5v7h7v5h-7v7h-5v-7h-7v-5h7V7z' fill='black'/%3E%3C/svg%3E"); }
    .icon-photo-upglade,
    .icon-photo-upgrade { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M13 9h36v47H13V9zm6 6v35h24V15H19zm12 7a7 7 0 1 1 0 14 7 7 0 0 1 0-14zm-10 26c2-7 6-10 10-10s8 3 10 10H21z' fill='black'/%3E%3Cpath d='M48 6h5v7h7v5h-7v7h-5v-7h-7v-5h7V6z' fill='black'/%3E%3C/svg%3E"); }

    /* Reference-style outline icons for the current plan item set. */
    .included-icon::before {
      width: 52px;
      height: 52px;
    }

    .icon-photo { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='17' y='9' width='30' height='46'/%3E%3Ccircle cx='32' cy='26' r='7'/%3E%3Cpath d='M22 48c2-8 6-12 10-12s8 4 10 12'/%3E%3C/svg%3E"); }
    .icon-car { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 39h6l6-14h25l7 14h4c2 0 4 2 4 4v8h-8'/%3E%3Cpath d='M12 51H5v-8c0-2 1-4 3-4'/%3E%3Cpath d='M28 51h8'/%3E%3Ccircle cx='20' cy='51' r='6'/%3E%3Ccircle cx='44' cy='51' r='6'/%3E%3Cpath d='M23 31h20'/%3E%3Cpath d='M45 19h8'/%3E%3C/svg%3E"); }
    .icon-futon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='28' width='44' height='22'/%3E%3Cpath d='M16 28c1-8 7-12 16-12s15 4 16 12'/%3E%3Cpath d='M17 42h30'/%3E%3Cpath d='M20 50h24'/%3E%3C/svg%3E"); }
    .icon-rest { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 31h46v20H9z'/%3E%3Cpath d='M14 20h20v11H14z'/%3E%3Cpath d='M38 25h9c5 0 8 3 8 6'/%3E%3Cpath d='M16 51v5M48 51v5'/%3E%3C/svg%3E"); }
    .icon-coffin { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 7h18l10 13-5 37H18l-5-37L23 7z'/%3E%3Cpath d='M27 21h10v27H27z'/%3E%3Cpath d='M19 21l4 27M45 21l-4 27'/%3E%3C/svg%3E"); }
    .icon-pillowaltar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 39h34v8H15z'/%3E%3Cpath d='M20 47h24v9H20z'/%3E%3Cpath d='M28 17h8v18h-8z'/%3E%3Cpath d='M18 27l9 8M46 27l-9 8'/%3E%3Cpath d='M22 13h20'/%3E%3C/svg%3E"); }
    .icon-ice { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 6 55 19v27L32 58 9 46V19L32 6z'/%3E%3Cpath d='M9 19l23 13 23-13'/%3E%3Cpath d='M32 32v26'/%3E%3Cpath d='M19 25v14M45 25v14'/%3E%3C/svg%3E"); }
    .icon-kimono { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 9h18l15 12-7 12-7-4v28H22V29l-7 4-7-12L23 9z'/%3E%3Cpath d='M28 13l4 12 4-12'/%3E%3Cpath d='M26 24v29M38 24v29'/%3E%3C/svg%3E"); }
    .icon-urn { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 8h16v8H24z'/%3E%3Cpath d='M20 19h24l-4 11 5 8-5 18H24l-5-18 5-8-4-11z'/%3E%3Cpath d='M29 31h6v18h-6z'/%3E%3Cpath d='M22 58h20'/%3E%3C/svg%3E"); }
    .icon-altar,
    .icon-funeralaltar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M27 7h10v11H27z'/%3E%3Cpath d='M23 22h18v5H23z'/%3E%3Cpath d='M20 30h24v8H20z'/%3E%3Cpath d='M16 41h32v7H16z'/%3E%3Cpath d='M11 51h42v8H11z'/%3E%3Cpath d='M9 31c0-5 4-9 9-9s9 4 9 9-4 9-9 9-9-4-9-9z'/%3E%3Cpath d='M37 31c0-5 4-9 9-9s9 4 9 9-4 9-9 9-9-4-9-9z'/%3E%3C/svg%3E"); }
    .icon-memorialtablet { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M26 7h12l5 8v25H21V15l5-8z'/%3E%3Cpath d='M18 43h28v8H18z'/%3E%3Cpath d='M14 54h36v6H14z'/%3E%3Cpath d='M32 20v15'/%3E%3C/svg%3E"); }
    .icon-buddhistutensils { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 43h17l-3 12H16z'/%3E%3Cpath d='M34 43h17l-3 12H37z'/%3E%3Cpath d='M21 18v22M43 18v22'/%3E%3Cpath d='M20 18h4M42 18h4'/%3E%3Cpath d='M24 57h16'/%3E%3Cpath d='M24 48c1-6 4-9 8-9s7 3 8 9'/%3E%3C/svg%3E"); }
    .icon-coffin-upglade,
    .icon-coffin-upgrade { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 9h18l9 12-5 36H15l-5-36L19 9z'/%3E%3Cpath d='M25 23h9v25h-9z'/%3E%3Cpath d='M17 23l4 25M39 23l-4 25'/%3E%3Cpath d='M42 18h7l5 7-4 29'/%3E%3C/svg%3E"); }
    .icon-photo-upglade,
    .icon-photo-upgrade { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='13' y='12' width='29' height='43'/%3E%3Crect x='22' y='8' width='29' height='43'/%3E%3Ccircle cx='36' cy='25' r='6'/%3E%3Cpath d='M28 45c2-7 5-10 8-10s6 3 8 10'/%3E%3C/svg%3E"); }

    .icon-urn { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 14h28l5 12v31H13V26l5-12z'/%3E%3Cpath d='M18 14h28M14 26h36'/%3E%3Cpath d='M32 31c-6 0-9 6-7 11 2 5 11 4 14 0 3-5-1-11-7-11z'/%3E%3Cpath d='M32 31v-6M27 35l-5-5M37 35l5-5M28 42l-4 10M36 42l4 10'/%3E%3C/svg%3E"); }
    .icon-pillowaltar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 43h44v9H10z'/%3E%3Cpath d='M15 35h34v8H15z'/%3E%3Cpath d='M26 17h12v18H26z'/%3E%3Cpath d='M20 28h6M38 28h6'/%3E%3Cpath d='M17 35v-9M47 35v-9'/%3E%3Cpath d='M18 22c0-4 2-6 2-6s2 2 2 6M46 22c0-4 2-6 2-6s2 2 2 6'/%3E%3Cpath d='M22 52h20'/%3E%3C/svg%3E"); }
    .icon-coffin { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 7h20l8 11v39H14V18l8-11z'/%3E%3Cpath d='M14 18h36M20 24h24'/%3E%3Cpath d='M27 25v25M37 25v25'/%3E%3Cpath d='M27 25h10'/%3E%3C/svg%3E"); }
    .icon-buddhistutensils { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 31h44v21H10z'/%3E%3Cpath d='M14 25h36v6H14z'/%3E%3Cpath d='M18 43h28'/%3E%3Cpath d='M22 25c-2-5 5-6 2-11M32 25c-2-5 5-6 2-11M42 25c-2-5 5-6 2-11'/%3E%3Cpath d='M17 52h30'/%3E%3C/svg%3E"); }
    .icon-coffin-upglade,
    .icon-coffin-upgrade { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 10h22l8 11v36H10V21l7-11z'/%3E%3Cpath d='M10 21h37M18 27h21'/%3E%3Cpath d='M25 28v24M35 28v24'/%3E%3Cpath d='M43 18h8l5 8v29'/%3E%3C/svg%3E"); }

    .icon-urn { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 7h20l8 11v39H14V18l8-11z'/%3E%3Cpath d='M14 18h36M20 24h24'/%3E%3Cpath d='M27 25v25M37 25v25'/%3E%3Cpath d='M27 25h10'/%3E%3C/svg%3E"); }
    .icon-coffin { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 7h18l10 13-5 37H18l-5-37L23 7z'/%3E%3Cpath d='M27 21h10v27H27z'/%3E%3Cpath d='M19 21l4 27M45 21l-4 27'/%3E%3C/svg%3E"); }
    .icon-coffin-upglade,
    .icon-coffin-upgrade { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 7h18l10 13-5 37H18l-5-37L23 7z'/%3E%3Cpath d='M27 21h10v27H27z'/%3E%3Cpath d='M19 21l4 27M45 21l-4 27'/%3E%3C/svg%3E"); }
    .icon-photo-upglade,
    .icon-photo-upgrade { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='16' y='10' width='31' height='46'/%3E%3Ccircle cx='31' cy='27' r='7'/%3E%3Cpath d='M22 49c2-8 5-12 9-12s7 4 9 12'/%3E%3Cpath d='M49 10h9M53.5 5.5v9'/%3E%3C/svg%3E"); }

    .included-grid strong {
      grid-column: 2;
      grid-row: 1;
      align-self: end;
      display: block;
      font-size: 17px;
      line-height: 1.35;
    }

    .included-grid small {
      grid-column: 2;
      grid-row: 2;
      align-self: start;
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .excluded-block {
      margin-top: 24px;
      padding: 22px 22px 24px;
      border: 1px dashed rgba(120, 92, 82, .32);
      border-left: 6px solid #8f7d73;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(236, 231, 225, .82)),
        repeating-linear-gradient(-45deg, rgba(120, 92, 82, .04) 0 8px, rgba(255, 255, 255, .04) 8px 16px);
    }

    .excluded-block h4 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      color: #5f514b;
      font-size: 20px;
      line-height: 1.4;
    }

    .excluded-block h4::before {
      content: "別";
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #8f7d73;
      color: var(--white);
      font-size: 14px;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .excluded-block ul {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .excluded-block li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 8px 14px;
      border-radius: 6px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(120, 92, 82, .18);
      color: #5f514b;
      font-weight: 800;
      line-height: 1.35;
    }

    .excluded-block li::before {
      content: "-";
      display: inline-grid;
      place-items: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #8f7d73;
      color: var(--white);
      font-size: 14px;
      line-height: 1;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .detail-card {
      scroll-margin-top: 160px;
      display: grid;
      grid-template-columns: 38% 1fr;
      gap: 28px;
      align-items: stretch;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 10px 28px rgba(80, 54, 42, .1);
    }

    .detail-card > img {
      width: 100%;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
    }

    .detail-card > div {
      display: grid;
      align-content: center;
      justify-items: start;
      padding: 30px 30px 30px 0;
    }

    .detail-card small {
      color: var(--brand-deep);
      font-weight: 900;
    }

    .detail-card h2 {
      margin: 10px 0 12px;
      font-size: clamp(26px, 4vw, 36px);
      line-height: 1.3;
    }

    .detail-card p {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .plan-detail {
      grid-template-columns: 32% 1fr;
    }

    .plan-detail > div {
      align-content: start;
    }

    .plan-summary {
      display: grid;
      gap: 4px;
      margin: 12px 0 18px;
      padding: 16px;
      background: linear-gradient(135deg, rgba(192, 117, 115, .16), rgba(234, 214, 210, .55));
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .plan-summary span {
      color: var(--brand-deep);
      font-weight: 900;
    }

    .plan-summary strong {
      color: var(--brand-deep);
      font-size: 28px;
      line-height: 1.2;
    }

    .plan-summary small {
      color: var(--muted);
      font-weight: 700;
    }

    .plan-detail-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 18px 0 22px;
    }

    .plan-detail-grid section {
      padding: 16px;
      background: #fff8f4;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .plan-detail-grid h3 {
      margin: 0 0 8px;
      font-size: 17px;
      line-height: 1.35;
    }

    .plan-detail-grid p {
      margin: 0;
      font-size: 14px;
    }

    .available-halls {
      grid-template-columns: repeat(3, 1fr);
    }

    .hall-mini {
      overflow: hidden;
      padding: 0;
    }

    .hall-mini img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .hall-mini div {
      padding: 18px;
    }

    .hall-mini small {
      color: var(--brand-deep);
      font-weight: 900;
    }

    .hall-mini h3 {
      margin: 4px 0 0;
      font-size: 20px;
      line-height: 1.35;
    }

    .urgent .wrap {
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      justify-items: center;
      gap: 22px;
      text-align: center;
    }

    .urgent h2 {
      margin: 0 0 8px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.3;
    }

    .urgent p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, .86);
      max-width: 920px;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.9;
    }

    .urgent .btn {
      border-color: var(--white);
      background: var(--white);
      color: var(--brand-deep);
      min-width: 230px;
      font-size: 3vw;
    }

    .urgent-call .call-icon {
      display: inline-block;
      font-size: .82em;
    }

    .steps {
      grid-template-columns: repeat(4, 1fr);
      counter-reset: step;
    }

    .step {
      position: relative;
      padding-top: 54px;
    }

    .step-photo {
      width: 100%;
      height: 118px;
      object-fit: cover;
      margin: 0 0 14px;
      border-radius: 8px;
      border: 1px solid var(--line);
    }

    .step::before {
      counter-increment: step;
      content: counter(step, decimal-leading-zero);
      position: absolute;
      top: 20px;
      left: 24px;
      color: var(--brand);
      font-size: 26px;
      font-weight: 900;
      line-height: 1;
    }

    .step:first-child h3 span {
      display: inline-block;
      margin-left: 6px;
      color: var(--muted);
      font-size: .68em;
      font-weight: 800;
      line-height: 1.4;
      vertical-align: .08em;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 24px;
      align-items: start;
    }

    .info-list {
      display: grid;
      gap: 12px;
      margin: 0;
    }

    .info-list div {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
    }

    .info-list dt {
      color: var(--muted);
      font-weight: 800;
    }

    .info-list dd {
      margin: 0;
      font-weight: 700;
    }

    form {
      display: grid;
      gap: 14px;
    }

    .contact-purpose {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 0;
      padding: 0;
      border: 0;
    }

    .contact-purpose legend {
      grid-column: 1 / -1;
      margin-bottom: 2px;
      color: #332b27;
      font-weight: 900;
    }

    .contact-purpose legend small {
      margin-left: 6px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .contact-purpose label {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 52px;
      padding: 12px 14px;
      background: linear-gradient(135deg, rgba(192, 117, 115, .12), rgba(234, 214, 210, .42));
      border: 1px solid var(--line);
      border-radius: 8px;
      cursor: pointer;
    }

    .contact-purpose input {
      width: auto;
      accent-color: var(--brand);
    }

    .contact-purpose span {
      font-weight: 900;
      color: var(--brand-deep);
      white-space: nowrap;
    }

    .consultation-options {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .consultation-options label:has(input:checked) {
      color: var(--white);
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      border-color: transparent;
      box-shadow: 0 10px 20px rgba(80, 54, 42, .13);
    }

    .consultation-options label:has(input:checked) span {
      color: var(--white);
    }

    .zip-message {
      min-height: 20px;
      margin: -6px 0 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .zip-message.is-error {
      color: #9d0500;
    }

    .required-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      margin-left: 6px;
      padding: 2px 7px;
      color: var(--white);
      background: var(--brand-deep);
      border-radius: 999px;
      font-size: 11px;
      font-weight: 900;
      vertical-align: 1px;
    }

    label {
      display: grid;
      gap: 6px;
      color: #3a302b;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid #ddc9bf;
      border-radius: var(--radius);
      padding: 13px 14px;
      color: var(--ink);
      background: #fff;
      font: inherit;
    }

    textarea {
      min-height: 146px;
      resize: vertical;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .address-row {
      grid-template-columns: minmax(140px, .42fr) minmax(0, 1.58fr);
    }

    .form-page {
      min-height: 100vh;
      background:
        linear-gradient(135deg, rgba(192, 117, 115, .14), rgba(230, 221, 208, .72)),
        var(--paper);
      color: var(--ink);
    }

    .form-result {
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 56px 0;
    }

    .confirm-card,
    .result-card {
      max-width: 900px;
      margin: 0 auto;
      padding: 34px;
    }

    .confirm-card h1,
    .result-card h1 {
      margin: 8px 0 12px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.25;
      color: var(--brand-deep);
    }

    .confirm-table {
      width: 100%;
      margin-top: 22px;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(192, 117, 115, .18);
      background: var(--white);
    }

    .confirm-table th,
    .confirm-table td {
      padding: 16px 18px;
      border-bottom: 1px solid rgba(192, 117, 115, .16);
      vertical-align: top;
      text-align: left;
      line-height: 1.75;
    }

    .confirm-table th {
      width: 190px;
      background: linear-gradient(135deg, rgba(214, 178, 163, .3), rgba(230, 221, 208, .48));
      color: var(--brand-deep);
      font-weight: 900;
      white-space: nowrap;
    }

    .confirm-table tr:last-child th,
    .confirm-table tr:last-child td {
      border-bottom: 0;
    }

    .confirm-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px;
    }

    .confirm-actions .btn,
    .result-card .btn {
      min-width: 210px;
      min-height: 56px;
      justify-content: center;
    }

    .thanks-note {
      color: var(--brand-deep);
      font-weight: 800;
    }

    .thanks-contact {
      display: grid;
      gap: 8px;
      margin: 22px 0 26px;
      padding: 18px;
      border-radius: 8px;
      background: #fff7f5;
      border: 1px solid rgba(192, 117, 115, .22);
      text-align: center;
    }

    .thanks-contact span {
      color: var(--muted);
      font-weight: 800;
    }

    .thanks-contact a {
      color: var(--brand);
      font-size: clamp(30px, 5vw, 48px);
      font-weight: 900;
      letter-spacing: .02em;
      text-decoration: none;
      line-height: 1;
    }

    footer {
      color: #f7eee9;
      background: #2f2521;
      padding: 38px 0 24px;
    }

    footer .wrap {
      display: grid;
      gap: 22px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: start;
    }

    .footer-profile {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
    }

    .footer-store-photo {
      width: 150px;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .18);
      opacity: .92;
    }

    .footer-grid p {
      margin: 8px 0 0;
      color: #dccbc3;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      font-size: 14px;
    }

    .copyright {
      border-top: 1px solid rgba(255, 255, 255, .14);
      padding-top: 18px;
      color: #cdbbb3;
      font-size: 13px;
      text-align: center;
    }

    .float-call {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 40;
      display: none;
      box-shadow: 0 12px 26px rgba(80, 54, 42, .24);
    }

    @media (max-width: 980px) {
      .header-main {
        flex-wrap: wrap;
      }

      .global-nav {
        overflow: visible;
      }

      .global-nav ul {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        justify-content: stretch;
        width: 100%;
        min-width: 100%;
      }

      .global-nav li {
        min-width: 0;
      }

      .global-nav a {
        min-width: 0;
        min-height: 50px;
        padding: 10px 5px;
        font-size: clamp(11px, 1.45vw, 13px);
        line-height: 1.25;
        white-space: normal;
      }

      .hero-inner,
      .contact-layout,
      .urgent .wrap {
        grid-template-columns: 1fr;
      }

      .urgent .wrap {
        gap: 18px;
        text-align: center;
      }

      .urgent p {
        max-width: none;
      }

      .hero {
        min-height: auto;
      }

      .hero-inner {
        display: grid;
        min-height: auto;
        padding: 46px 0 72px;
      }

      .hero-visual {
        position: absolute;
        inset: 0;
        margin-right: 0;
        min-height: 0;
        padding-bottom: 0;
      }

      .hero-photo {
        height: 100%;
      }

      .hero-visual .phone-panel {
        position: static;
        width: auto;
        margin-top: 0;
      }

      .plans,
      .reasons,
      .halls,
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .urgent .btn {
        width: fit-content;
      }

      .detail-card {
        grid-template-columns: 1fr;
      }

      .plan-visual {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .reason-pills {
        grid-template-columns: 1fr;
      }

      .included-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .plan-detail-grid {
        grid-template-columns: 1fr;
      }

      .available-halls {
        grid-template-columns: repeat(2, 1fr);
      }

      .detail-card > img {
        min-height: 260px;
      }

      .detail-card > div {
        padding: 0 24px 28px;
      }
    }

    @media (min-width: 641px) and (max-width: 1180px) {
      .hero-copy {
        width: min(36vw, 360px);
        min-width: 320px;
        padding: 18px;
      }

      .hero-copy .kicker {
        padding: 5px 8px;
        font-size: clamp(11px, 1.25vw, 13px);
        white-space: nowrap;
      }

      .hero h1 {
        font-size: clamp(22px, 2.35vw, 27px);
        line-height: 1.32;
      }

      .hero-copy .phone-number {
        white-space: nowrap;
        font-size: clamp(26px, 2.8vw, 32px);
      }

      .hero-copy .hero-actions {
        grid-template-columns: 1fr;
      }

      .reason-card > :not(.card-photo) {
        margin-left: 24px;
        margin-right: 24px;
      }

      .reason-card h3 {
        white-space: normal;
        font-size: clamp(19px, 2.1vw, 22px);
        text-align: left;
      }

      .reason-card p {
        max-width: 100%;
        line-height: 1.75;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .footer-profile {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
        align-items: start;
      }

      .footer-store-photo {
        width: 220px;
        aspect-ratio: 4 / 3;
      }

      .footer-grid p {
        line-height: 1.8;
        overflow-wrap: anywhere;
      }

      .footer-nav {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
      }

      .footer-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 9px 10px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: var(--radius);
        text-align: center;
        line-height: 1.35;
      }
    }

    @media (max-width: 640px) {
      body {
        line-height: 1.7;
      }

      .topbar .wrap,
      .header-main,
      .section-head,
      .footer-grid {
        display: grid;
      }

      .topbar .wrap,
      .header-call {
        text-align: left;
      }

      .header-actions {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: stretch;
      }

      .header-consult,
      .header-call {
        width: 100%;
      }

      .brand b {
        font-size: 19px;
      }

      .brand {
        min-width: 0;
      }

      .logo-mark {
        width: 46px;
        height: 42px;
        flex-basis: 46px;
      }

      .site-logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
      }

      .topbar {
        display: none;
      }

      .header-main {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
      }

      .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
      }

      .header-consult {
        display: none;
      }

      .header-call {
        min-width: 0;
        width: auto;
        padding: 7px 10px;
        color: var(--white);
        background: var(--brand);
        border-radius: var(--radius);
      }

      .header-call span {
        display: none;
      }

      .header-call strong {
        color: var(--white);
        font-size: 16px;
        white-space: nowrap;
      }

      .menu-toggle {
        display: grid;
      }

      .global-nav {
        display: none;
        border-top: 1px solid var(--line);
        box-shadow: 0 14px 24px rgba(80, 54, 42, .12);
      }

      body.menu-open .global-nav {
        display: block;
      }

      .global-nav ul {
        width: 100%;
        display: grid;
        gap: 0;
        padding: 8px 0;
      }

      .global-nav li {
        width: 100%;
      }

      .global-nav a {
        min-width: 0;
        min-height: 48px;
        justify-content: flex-start;
        padding: 12px 16px;
        border: 0;
        border-bottom: 1px solid var(--line);
      }

      .global-nav li:last-child a {
        border-right: 0;
        border-bottom: 0;
      }

      .hero-inner {
        min-height: auto;
        padding: 26px 0 36px;
      }

      .hero p {
        font-size: 15px;
      }

      .hero-card {
        padding: 16px;
      }

      .hero-copy {
        padding: 18px;
      }

      .hero-actions {
        grid-template-columns: 1fr;
      }

      .hero-cta {
        min-height: 58px;
        font-size: 16px;
      }

      .hero h1 {
        margin: 16px 0 12px;
        font-size: 29px;
      }

      .kicker {
        font-size: 16px;
        display: block;
      }

      .phone-number {
        font-size: 30px;
      }

      .badges {
        grid-template-columns: 1fr 1fr;
      }

      .badge {
        min-height: 70px;
        font-size: 17px;
      }

      .hero-photo {
        height: 100%;
      }

      .hero-visual .phone-panel {
        margin-top: 0;
      }

      .plans,
      .reasons,
      .halls,
      .steps,
      .form-row {
        grid-template-columns: 1fr;
      }

      .hall-card {
        grid-template-columns: 1fr;
      }

      .hall-card > div {
        padding: 0 22px 6px;
      }

      .hall-card .mini-btn {
        margin: 0 22px 22px;
      }

      .hall-thumb {
        grid-row: auto;
        height: 190px;
      }

      .wide-photo {
        min-height: 280px;
      }

      .wide-photo div {
        padding: 24px;
      }

      section {
        padding: 42px 0;
      }

      .section-head {
        gap: 10px;
        margin-bottom: 18px;
      }

      .section-head h2 {
        font-size: 27px;
      }

      h2 span {
        font-size: 4vw;
      }
      .card {
        padding: 18px;
      }

      .card-photo {
        width: calc(100% + 36px);
        height: 145px;
        margin: -18px -18px 14px;
      }

      .reason-card {
        padding-bottom: 18px;
      }

      .reason-card > :not(.card-photo) {
        margin-left: 16px;
        margin-right: 16px;
      }

      .reason-card h3 {
        white-space: normal;
        font-size: 20px;
        text-align: left;
      }

      .plan-card .card-photo {
        width: calc(100% + 36px);
        height: 150px;
        margin: -18px -18px 14px;
      }

      .wide-photo {
        min-height: 230px;
      }

      .wide-photo strong {
        font-size: 23px;
      }

      .info-list div {
        grid-template-columns: 1fr;
        gap: 2px;
      }

      .detail-card > img {
        min-height: 210px;
      }

      .detail-card > div {
        padding: 0 18px 22px;
      }

      .sub-hero {
        padding: 46px 0;
      }

      .sub-hero p {
        font-size: 15px;
      }

      .plan-showcase-list {
        gap: 28px;
      }

      .plan-visual {
        gap: 18px;
        padding: 20px 18px;
      }

      .plan-main span {
        margin-bottom: 10px;
        font-size: 16px;
      }

      .plan-main p {
        font-size: 17px;
      }

      .plan-main h2 {
        margin-bottom: 16px;
        padding-bottom: 14px;
        font-size: 31px;
      }

      .plan-main h2 em {
        min-height: 38px;
        padding: 3px 13px;
        margin-right: 8px;
      }

      .plan-price strong {
        font-size: 38px;
      }

      .plan-explain {
        padding: 26px 18px 14px;
      }

      .plan-explain h3 {
        font-size: 26px;
      }

      .plan-explain .lead {
        font-size: 18px;
      }

      .flow-title {
        font-size: 17px;
      }

      .plan-flow {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 8px;
      }

      .plan-flow span {
        width: 52px;
        min-height: 100px;
        flex: 0 0 52px;
      }

      .plan-flow span:not(:last-child)::after {
        right: -16px;
        width: 16px;
      }

      .reason-pills div {
        min-height: 76px;
        padding: 12px;
      }

      .included-block {
        margin-top: 26px;
        padding: 22px 18px 26px;
      }

      .included-block h3 {
        font-size: 22px;
      }

      .included-grid {
        grid-template-columns: 1fr;
      }

      .included-grid div {
        grid-template-columns: 58px 1fr;
        grid-template-rows: auto auto;
        min-height: 78px;
        padding: 10px;
      }

      .included-grid span {
        grid-row: 1 / 3;
        width: 54px;
        height: 54px;
        font-size: 18px;
      }

      .hall-mini img {
        height: 120px;
      }

      .hall-mini div {
        padding: 12px;
      }

      .hall-mini h3 {
        font-size: 16px;
      }

      .float-call {
        display: inline-flex;
        left: 18px;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-bottom: 74px;
        overflow-x: hidden;
      }

      .wrap {
        width: min(100% - 24px, 1120px);
      }

      .site-header {
        position: sticky;
        top: 0;
      }

      #reasons,
      #urgent,
      #contact {
        scroll-margin-top: 84px;
      }

      .header-main {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
      }

      .brand {
        min-width: 0;
        gap: 8px;
      }

      .brand small {
        font-size: 11px;
      }

      .brand b {
        font-size: 18px;
        white-space: normal;
      }

      .logo-mark {
        transform: scale(.88);
        transform-origin: left center;
      }

      .site-logo {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
      }

      .header-actions {
        display: flex;
        gap: 6px;
      }

      .header-call {
        display: none;
        align-items: center;
        justify-content: center;
        min-height: 44px;
      }

      .menu-toggle {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
      }

      .global-nav {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
      }

      .global-nav .wrap {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
      }

      .global-nav ul {
        display: grid;
        width: 100%;
        max-width: none;
        min-width: 0;
        grid-template-columns: 1fr;
      }

      .global-nav li,
      .global-nav a {
        display: block;
        width: 100%;
        min-width: 0;
        max-width: none;
      }

      .global-nav a {
        display: flex;
        font-size: 15px;
        font-weight: 800;
      }

      .hero {
        min-height: auto;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(255, 253, 249, .9), rgba(255, 253, 249, .78)),
          linear-gradient(0deg, rgba(47, 37, 33, .22), rgba(47, 37, 33, .02));
      }

      .hero-copy,
      .phone-panel,
      .card,
      .plan-showcase,
      .detail-card {
        max-width: 100%;
      }

      .hero-copy {
        box-shadow: 0 10px 22px rgba(80, 54, 42, .12);
      }

      .hero-actions,
      .badges,
      .plans,
      .reasons,
      .halls,
      .steps,
      .contact-layout,
      .form-row,
      .reason-pills,
      .plan-detail-grid {
        grid-template-columns: 1fr;
      }

      .plans {
        gap: 10px;
      }

      .plans .plan-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto auto;
        align-items: center;
        column-gap: 12px;
        row-gap: 5px;
        min-height: 0;
        padding: 10px;
        border-radius: 8px;
      }

      .plans .plan-card .card-photo {
        grid-column: 1 / 3;
        grid-row: 1;
        width: 100%;
        height: 92px;
        margin: 0;
        border-radius: 6px;
      }

      .plans .plan-card h3.planprice {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
        padding: 4px 8px;
        border-radius: 999px;
        font-size: 16px;
        line-height: 1.2;
        text-align: center;
      }

      .plans .plan-card .price {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
        margin: 0;
        font-size: 20px;
        line-height: 1.1;
      }

      .plans .plan-card .price span {
        font-size: 10px;
      }

      .plans .plan-card .features {
        display: none;
      }

      .plans .plan-card .mini-btn {
        grid-column: 2;
        grid-row: 2 / 4;
        min-height: 36px;
        padding: 8px 9px;
        border-radius: 999px;
        font-size: 12px;
        white-space: nowrap;
      }

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

      .section-head {
        align-items: start;
      }

      .section-head p,
      .card p,
      .detail-card p,
      .plan-explain p {
        font-size: 14px;
      }

      .wide-photo,
      .plan-visual,
      .plan-explain,
      .included-block {
        border-radius: var(--radius);
      }

      .plan-visual {
        grid-template-columns: 1fr;
        border-bottom-width: 3px;
      }

      .plan-main h2 {
        word-break: keep-all;
      }

      .plan-visual img {
        aspect-ratio: 4 / 3;
      }

      .plan-flow {
        max-width: 100%;
      }

      .included-grid {
        grid-template-columns: 1fr;
      }

      .hall-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
      }

      .hall-thumb {
        width: 100%;
        height: 170px;
        min-height: 170px;
      }

      .hall-card > div {
        padding: 16px 18px 4px;
      }

      .hall-card .mini-btn {
        margin: 0 18px 18px;
      }

      .lp-hall-card .map-btn {
        grid-column: 1;
        justify-self: stretch;
        width: auto;
      }

      .contact-layout {
        gap: 16px;
      }

      .contact-purpose {
        grid-template-columns: 1fr;
      }

      .form-result {
        align-items: start;
        padding: 28px 0 52px;
      }

      .confirm-card,
      .result-card {
        padding: 22px;
      }

      .confirm-table,
      .confirm-table tbody,
      .confirm-table tr,
      .confirm-table th,
      .confirm-table td {
        display: block;
        width: 100%;
      }

      .confirm-table th {
        padding: 12px 14px 6px;
        border-bottom: 0;
      }

      .confirm-table td {
        padding: 4px 14px 14px;
      }

      .confirm-actions .btn,
      .result-card .btn {
        width: 100%;
      }

      .consultation-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .step-photo {
        height: 140px;
      }

      footer {
        padding: 30px 0 92px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .footer-profile {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .footer-store-photo {
        width: 100%;
        max-width: 360px;
        aspect-ratio: 16 / 9;
      }

      footer .brand {
        align-items: flex-start;
      }

      .footer-grid p {
        font-size: 13px;
        line-height: 1.7;
      }

      .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      .footer-nav a {
        display: flex;
        align-items: center;
        min-height: 42px;
        padding: 9px 10px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: var(--radius);
        font-size: 13px;
      }

      .copyright {
        font-size: 12px;
        text-align: center;

      }

      .float-call {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        min-height: 52px;
        border-radius: 999px;
        font-size: 16px;
      }

      .step {
        padding-top: 72px;
      }

      .step::before {
        top: 18px;
        left: 18px;
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        color: var(--white);
        background: var(--brand);
        border-radius: 50%;
        font-size: 18px;
      }

      .step h3 {
        margin-top: 0;
      }
    }

    @media (max-width: 640px) {
      .hero {
        min-height: 720px;
        background: #fbf7f3;
      }

      .hero-visual {
        position: absolute;
        inset: 0;
      }

      .hero-slide:first-child {
        content: url("assets/top-saidan.webp");
      }

      .hero-slide {
        animation: none;
      }

      .hero-slide:first-child {
        opacity: 1;
      }

      .hero-slide:not(:first-child) {
        display: none;
      }

      .hero-photo {
        width: 100%;
        object-fit: contain;
        object-position: center top;
      }

      .hero-inner {
        min-height: 640px;
        display: flex;
        align-items: flex-end;
        padding: 220px 0 0;
      }

      .hero-copy {
        width: 100%;
        margin: 0;
        padding: 16px;
        background: rgba(255, 253, 249, .86);
        border-color: rgba(234, 219, 215, .82);
        backdrop-filter: blur(7px);
        text-align: center;
      }

      .hero h1 {
        font-size: 24px;
      }

      .hero-copy .phone-panel {
        background: rgba(255, 255, 255, .78);
      }

      .urgent .wrap {
        gap: 18px;
      }

      .urgent .btn.urgent-call {
        display: inline-flex;
        width: 100%;
        min-height: 64px;
        font-size: 28px;
        font-weight: 900;
        border-radius: 999px;
        gap: 8px;
      }

      .urgent-call .call-icon {
        display: inline-block;
        font-size: .82em;
      }

      #contact .phone-number {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px 10px;
        background: linear-gradient(135deg, rgba(192, 117, 115, .12), rgba(234, 214, 210, .5));
        border: 1px solid var(--line);
        border-radius: var(--radius);
        font-size: 34px;
        letter-spacing: 0;
        text-align: center;
      }

      #contact .phone-number .call-icon {
        flex: 0 0 auto;
        font-size: .78em;
      }

      .plan-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .plan-tabs {
        gap: 8px;
        margin-bottom: 20px;
        padding: 8px;
      }

      .plan-tab {
        min-height: 74px;
        padding: 10px 6px;
      }

      .plan-tab span {
        font-size: 18px;
      }

      .plan-tab strong {
        font-size: 15px;
      }

      .lp-plan-tabs .plan-tab span {
        flex-wrap: wrap;
        gap: 4px 8px;
      }

      .lp-plan-tabs .plan-tab span b {
        font-size: 18px;
      }

      .lp-plan-tabs .plan-tab small {
        font-size: 12px;
      }

      .consultation-banner {
        margin: 42px 0 0;
      }

      #plans > .lp-plan-tabs {
        margin-top: 12px;
      }

      .plan-tab-lead {
        margin-top: 34px;
        font-size: clamp(17px, 4.8vw, 22px);
      }

      .family-plan-select {
        padding: 24px 18px 26px;
      }

      .family-plan-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .general-plan-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .family-plan-button > span {
        min-height: 48px;
        padding: 10px 8px 3px;
        font-size: 16px;
      }

      .family-plan-button strong {
        padding-bottom: 13px;
        font-size: 18px;
      }

      .general-plan-button > span {
        min-height: 52px;
        font-size: 17px;
      }

      .general-plan-button strong {
        font-size: 20px;
      }
    }

    @media (max-width: 420px) {
      .plan-tabs {
        grid-template-columns: 1fr;
      }

      .plan-tab {
        min-height: 58px;
      }

      .family-plan-buttons {
        grid-template-columns: 1fr;
      }

      .general-plan-buttons {
        grid-template-columns: 1fr;
      }
    }

    .hero h1,
    .section-head h2,
    .reason-card h3,
    .plan-main h2,
    .plan-explain h3,
    .plan-explain h4,
    .included-block h3,
    .excluded-block h4,
    .hall-mini h3,
    .urgent h2,
    .step h3,
    .contact-layout h3 {
      white-space: nowrap;
      word-break: keep-all;
      overflow-wrap: normal;
      letter-spacing: 0;
    }

    .section-head h2 {
      font-size: clamp(24px, 3.2vw, 40px);
    }

    .section-head h2 span {
      display: inline-block;
      font-size: .72em;
      white-space: nowrap;
    }

    .reason-card h3 {
      font-size: clamp(18px, 1.18vw, 20px);
    }

    .plan-main h2 {
      font-size: clamp(30px, 4.2vw, 48px);
    }

    .plan-explain h3 {
      font-size: clamp(24px, 3.2vw, 34px);
    }

    .plan-explain h4,
    .included-block h3,
    .excluded-block h4,
    .step h3,
    .contact-layout h3 {
      font-size: clamp(18px, 2vw, 22px);
    }

    .hall-mini h3 {
      font-size: clamp(18px, 1.8vw, 21px);
    }

    .urgent h2 {
      font-size: clamp(26px, 3.5vw, 42px);
    }

    @media (max-width: 640px) {
      .section-head h2 {
        font-size: clamp(24px, 7.4vw, 31px);
      }

      .reason-card h3,
      .plan-explain h4,
      .included-block h3,
      .excluded-block h4,
      .step h3,
      .contact-layout h3 {
        font-size: clamp(17px, 5.2vw, 21px);
      }

      .plan-main h2 {
        font-size: clamp(27px, 8vw, 34px);
      }

      .plan-explain h3 {
        font-size: clamp(23px, 7vw, 30px);
      }

      .hall-mini h3 {
        font-size: clamp(17px, 5vw, 20px);
      }
    }

    @media (min-width: 641px) and (max-width: 1180px) {
      .reasons {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .reason-card {
        display: grid;
        grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
        grid-template-rows: auto 1fr;
        align-items: start;
        gap: 10px 18px;
        min-height: 0;
        padding: 14px;
      }

      .reason-card .card-photo {
        grid-row: 1 / 3;
        width: 100%;
        height: 100%;
        min-height: 150px;
        margin: 0;
        border-radius: 6px;
        object-fit: cover;
      }

      .reason-card > :not(.card-photo) {
        margin-left: 0;
        margin-right: 0;
      }

      .reason-card h3 {
        margin: 0;
        font-size: clamp(20px, 2.2vw, 24px);
        line-height: 1.35;
        text-align: left;
        white-space: normal;
      }

      .reason-card p {
        margin: 0;
        font-size: clamp(14px, 1.55vw, 16px);
        line-height: 1.65;
      }
    }
