* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(18, 76, 33, 0.18);
}

input::placeholder,
textarea::placeholder {
  color: #9A9C8E;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.l-page {
  font-family: "Noto Sans JP", sans-serif;
  color: #33342E;
  background: #FBFAF6;
  min-height: 100vh;
}

.l-container {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}
.l-container--narrow {
  max-width: 840px;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #143F1E;
}
.l-header__inner {
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.l-header__inner--desktop {
  height: 72px;
}
.l-header__inner--mobile {
  height: 62px;
  padding: 0 18px;
}
.l-header__logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.l-header__logo--mobile {
  height: 44px;
}
.l-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.l-header__announce {
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.l-header__menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}
.l-header__menu-btn--mobile {
  gap: 3px;
  padding: 4px;
}
.l-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.l-header__hamburger--mobile {
  gap: 4px;
}
.l-header__hamburger span {
  display: block;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  width: 27px;
}
.l-header__menu-btn--mobile .l-header__hamburger span {
  width: 24px;
  height: 2px;
}
.l-header__menu-label {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.l-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(251, 250, 246, 0.99);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  padding: 18px 22px 28px;
  animation: fadeUp 0.2s ease;
}
.l-nav-overlay__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  flex: 0 0 auto;
}
.l-nav-overlay__logo {
  height: 42px;
  width: auto;
  display: block;
}
.l-nav-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #33342E;
  padding: 4px;
}
.l-nav-overlay__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.l-nav {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
}
.l-nav__link {
  cursor: pointer;
  font-size: 19px;
  font-weight: 400;
  color: #26271F;
  padding: 18px 2px;
  border-bottom: 1px solid #EAE8DF;
}

.l-footer {
  background: #1C1D17;
  color: #B9BCAF;
}
.l-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 22px 40px;
}
.l-footer__logo {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.l-footer__desc {
  font-size: 13.5px;
  line-height: 1.9;
  margin: 14px 0 0;
  max-width: 560px;
}
.l-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 28px 0;
}
.l-footer__copy {
  font-size: 12px;
  color: #7C7E72;
}
.l-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.l-footer__nav {
  display: flex;
  gap: 20px;
}
.l-footer__nav a {
  font-size: 12px;
  color: #B9BCAF;
  text-decoration: none;
}
.l-footer__nav a:hover {
  text-decoration: underline;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.c-btn--primary {
  background: #EC6D1C;
  color: #fff;
  padding: 13px 22px;
  font-size: 15px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(236, 109, 28, 0.3);
}
.c-btn--primary-lg {
  padding: 17px 20px;
  font-size: 16px;
  border-radius: 13px;
}
.c-btn--primary-xl {
  padding: 20px;
  font-size: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(18, 76, 33, 0.3);
  width: 100%;
}
.c-btn--secondary {
  background: #fff;
  color: #1B6E2F;
  border: 1.5px solid #1B6E2F;
  padding: 17px 20px;
  font-size: 16px;
  border-radius: 13px;
}
.c-btn--green {
  background: #1B6E2F;
  color: #fff;
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
}
.c-btn--text-link {
  background: none;
  color: #1B6E2F;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  gap: 6px;
}
.c-btn--overlay {
  margin-top: 26px;
  width: 100%;
  justify-content: center;
  background: #EC6D1C;
  color: #fff;
  border-radius: 13px;
  padding: 18px;
  font-size: 17px;
  box-shadow: 0 10px 24px rgba(236, 109, 28, 0.3);
}

.c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2F8F39;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.c-eyebrow__line {
  width: 22px;
  height: 1.5px;
  background: #2F8F39;
}
.c-eyebrow--dark {
  color: #8FCF8F;
}
.c-eyebrow--dark .c-eyebrow__line {
  background: #8FCF8F;
}
.c-eyebrow--white {
  color: #7FC47F;
}
.c-eyebrow--white .c-eyebrow__line {
  background: #7FC47F;
}

.c-section-head {
  text-align: center;
}

.c-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(25px, 3.6vw, 38px);
  line-height: 1.35;
  color: #26271F;
  margin: 0;
}
.c-section-title--light {
  color: #FBFAF6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.c-section-title--lg {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.3;
  color: #fff;
}

.c-section-desc {
  color: #5C5E54;
  font-size: 15.5px;
  line-height: 1.9;
  margin: 16px auto 0;
  max-width: 600px;
}
.c-section-desc--light {
  color: #CBD0C2;
}
.c-section-desc--sm {
  font-size: 15px;
  color: #C3C6B9;
  max-width: 480px;
}

.c-section-pad {
  padding: clamp(54px, 8vw, 96px) 22px;
}

.p-hero {
  background: #fff;
}
.p-hero--desktop {
  position: relative;
  overflow: hidden;
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.p-hero__bg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-hero__bg-overlay--desktop {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0.14) 100%);
}
.p-hero__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: 560px;
}
.p-hero__catch-wrap {
  flex: 0 0 660px;
  padding: 52px 28px 52px clamp(32px, 4vw, 64px);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.p-hero__catch {
  max-width: 540px;
}
.p-hero__badge {
  display: inline-block;
  color: #1B6E2F;
  font-weight: 700;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.02em;
  padding-bottom: 10px;
  border-bottom: 1.5px dotted #D7B45C;
  margin: 0 0 20px;
}
.p-hero__subcopy {
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: #656565;
  margin: 0 0 10px;
}
.p-hero__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin: 0;
  color: #1B6E2F;
}
.p-hero__title-accent {
  color: #D7B45C;
}
.p-hero__title-highlight {
  color: #B89545;
}
.p-hero__desc {
  color: #55574D;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.95;
  margin: 24px 0 0;
  max-width: 462px;
}
.p-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.p-hero__btn-primary,
.p-hero__btn-secondary {
  display: inline-flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: 13px;
  padding: 17px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.p-hero__btn-primary {
  background: #EC6D1C;
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(236, 109, 28, 0.3);
}
.p-hero__btn-secondary {
  background: #fff;
  color: #1B6E2F;
  border: 1.5px solid #1B6E2F;
}
.p-hero__specs {
  display: flex;
  align-items: center;
  border: 1.5px solid #E6E4DB;
  border-radius: 14px;
  background: #fff;
  padding: 15px 8px;
  margin-top: 22px;
  justify-content: space-around;
  color: #3A3B33;
  font-weight: 600;
  font-size: 14.5px;
}
.p-hero__spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-hero__spec-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.p-hero__spec-divider {
  width: 1px;
  height: 20px;
  background: #E0DED4;
}
.p-hero__image-col {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}
.p-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-hero--mobile {
  background: #fff;
}
.p-hero__mobile-wrap {
  position: relative;
  overflow: hidden;
}
.p-hero__bg-overlay--mobile {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(255, 255, 255, 0.74) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.p-hero__mobile-content {
  position: relative;
  padding: 24px 18px 6px;
}
.p-hero__mobile-head {
  margin-bottom: 16px;
}
.p-hero__mobile-badge {
  display: inline-block;
  color: #1B6E2F;
  font-weight: 700;
  font-size: clamp(13px, 3.4vw, 16px);
  letter-spacing: 0.02em;
  padding-bottom: 8px;
  border-bottom: 1.5px dotted #D7B45C;
}
.p-hero__mobile-subcopy {
  font-weight: 600;
  font-size: clamp(17px, 4.6vw, 21px);
  line-height: 1.6;
  color: #656565;
  margin: 14px 0 0;
}
.p-hero__mobile-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.4;
  margin: 10px 0 0;
  color: #1B6E2F;
}
.p-hero__mobile-desc {
  color: #55574D;
  font-size: clamp(14px, 3.6vw, 15px);
  line-height: 1.9;
  margin: 18px 0 0;
  text-align: left;
}
.p-hero__mobile-image-wrap {
  position: relative;
  margin: 20px -18px 4px;
}
.p-hero__mobile-image-box {
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  height: 240px;
}
.p-hero__mobile-cta-wrap {
  position: relative;
  padding: 10px 18px 24px;
}
.p-hero__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-hero__mobile-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #EC6D1C;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 19px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(236, 109, 28, 0.3);
}
.p-hero__mobile-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.95);
  color: #1B6E2F;
  border: 1.5px solid #1B6E2F;
  border-radius: 14px;
  padding: 17px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.p-hero__mobile-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 18px;
  background: #EEF4EA;
  color: #33342E;
  font-weight: 700;
  font-size: 13.5px;
}
.p-hero__mobile-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-hero__mobile-spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #B9D6B4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.p-hero__mobile-spec-icon img, .p-hero__mobile-spec-icon svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.p-concern {
  position: relative;
  background-color: #143F1E;
  background-image: url("../img/bg-concern.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-concern__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 63, 30, 0.88), rgba(13, 50, 24, 0.93));
}
.p-concern__inner {
  position: relative;
  padding: clamp(54px, 8vw, 92px) 22px;
}
.p-concern__head {
  text-align: center;
}
.p-concern__sub {
  color: #CBD0C2;
  font-size: 15.5px;
  line-height: 1.9;
  margin: 16px auto 0;
  max-width: 620px;
}
.p-concern__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .p-concern__grid {
    grid-template-columns: 1fr;
  }
}
.p-concern__card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.p-concern__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F8F39;
  margin-top: 8px;
  flex: 0 0 auto;
}
.p-concern__card-text {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.7;
  color: #33342E;
}

.p-menu__inner {
  padding: clamp(54px, 8vw, 96px) 22px;
}
.p-menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  margin-top: 38px;
}
.p-menu__card {
  background: #fff;
  border: 1.5px solid #ECEAE0;
  border-radius: 18px;
  padding: 26px;
  overflow: hidden;
}
.p-menu__card-image {
  margin: -26px -26px 18px;
  height: 168px;
  background: #EEF1EA;
}
.p-menu__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-menu__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #26271F;
  margin: 0 0 8px;
}
.p-menu__card-desc {
  color: #5C5E54;
  font-size: 14.5px;
  line-height: 1.85;
  margin: 0;
}

.p-merit {
  background: #F2F6EF;
}
.p-merit__inner {
  padding: clamp(54px, 8vw, 90px) 22px;
}
.p-merit__panel {
  margin-top: 40px;
  background: #fff;
  border: 1px solid #E9E7DE;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 18px 44px rgba(31, 40, 25, 0.08);
}
.p-merit__image {
  flex: 1 1 400px;
  min-width: 280px;
  min-height: clamp(220px, 52vw, 380px);
  position: relative;
  background: #EEF1EA;
}
.p-merit__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-merit__content {
  flex: 1 1 470px;
  min-width: 300px;
  padding: clamp(32px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-merit__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-merit__item {
  display: flex;
  align-items: center;
  gap: 13px;
}
.p-merit__check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2F8F39;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.p-merit__item-text {
  font-size: 16px;
  font-weight: 500;
  color: #33342E;
  line-height: 1.55;
}

.p-reason {
  position: relative;
  background-color: #143F1E;
  background-image: url("../img/bg-concern.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-reason__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 63, 30, 0.9), rgba(13, 50, 24, 0.94));
}
.p-reason__inner {
  position: relative;
  padding: clamp(54px, 8vw, 92px) 22px;
}
.p-reason__title-accent {
  color: #D7B45C;
  font-size: 1.32em;
  margin: 0 0.06em;
}
.p-reason__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: clamp(36px, 5vw, 52px);
}
.p-reason__image {
  width: 100%;
  height: clamp(190px, 21vw, 210px);
}
.p-reason__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.p-reason__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.p-reason__number {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #D7B45C;
  line-height: 1;
}
.p-reason__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #FBFAF6;
  margin: 0;
}
.p-reason__item-desc {
  color: #CBD0C2;
  font-size: 14.5px;
  line-height: 1.9;
  margin: 10px 0 0;
}

.p-flow__inner {
  padding: clamp(54px, 8vw, 96px) 22px;
}
.p-flow__note {
  text-align: center;
  color: #5C5E54;
  font-size: 14px;
  line-height: 1.9;
  margin: 30px 0 0;
}

.c-step-badge {
  display: inline-block;
  background: #2F8F39;
  color: #fff;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  padding: 5px 13px;
  border-radius: 999px;
}

.p-faq {
  background: #F2F6EF;
}
.p-faq__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 22px;
}
.p-faq__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-faq__item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ECEAE0;
}
.p-faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
}
.p-faq__q-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #2F8F39;
  font-size: 18px;
  flex: 0 0 auto;
}
.p-faq__q-text {
  flex: 1;
  font-weight: 700;
  font-size: 15.5px;
  color: #26271F;
  line-height: 1.6;
}
.p-faq__answer {
  padding: 0 22px 22px 50px;
  color: #55574D;
  font-size: 14.5px;
  line-height: 1.9;
}

.p-store__inner {
  padding: clamp(54px, 8vw, 96px) 22px;
}
.p-store__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 38px;
  align-items: start;
}
.p-store__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.p-store__photo-main {
  grid-column: 1/-1;
  height: clamp(320px, 44vw, 480px);
}
.p-store__photo-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.p-store__photo-sub {
  height: 150px;
}
.p-store__photo-sub img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.p-store__info {
  background: #fff;
  border: 1.5px solid #ECEAE0;
  border-radius: 18px;
  padding: 28px;
}
.p-store__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #26271F;
  line-height: 1.5;
}
.p-store__brand {
  font-size: 13px;
  color: #2F8F39;
  font-weight: 700;
  margin-top: 4px;
}
.p-store__divider {
  height: 1px;
  background: #ECEAE0;
  margin: 20px 0;
}
.p-store__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-store__detail-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.p-store__detail-icon {
  flex: 0 0 auto;
  margin-top: 2px;
}
.p-store__detail-label {
  font-size: 12.5px;
  color: #9A9C8E;
  font-weight: 700;
}
.p-store__detail-value {
  font-size: 15px;
  color: #33342E;
  line-height: 1.7;
}
.p-store__map {
  margin-top: 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E2E6DC;
}

.p-reserve {
  background: #143F1E;
  scroll-margin-top: 72px;
}
.p-reserve__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 18px;
}
.p-reserve__done {
  background: #fff;
  border-radius: 20px;
  padding: clamp(28px, 5vw, 48px);
  margin-top: 34px;
  text-align: center;
  animation: fadeUp 0.35s ease;
}
.p-reserve__done-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #EEF6EB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.p-reserve__done-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #26271F;
  margin: 20px 0 0;
}
.p-reserve__done-body {
  color: #55574D;
  font-size: 15px;
  line-height: 1.9;
  margin: 14px auto 0;
  max-width: 440px;
}
.p-reserve__done-summary {
  background: #F6F8F3;
  border-radius: 14px;
  padding: 20px;
  margin: 26px auto 0;
  max-width: 420px;
  text-align: left;
}
.p-reserve__done-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #E7EBE1;
}
.p-reserve__done-row:last-child {
  border-bottom: none;
}
.p-reserve__done-row-label {
  color: #9A9C8E;
  font-size: 13.5px;
  font-weight: 700;
}
.p-reserve__done-row-value {
  color: #33342E;
  font-size: 14.5px;
  font-weight: 600;
}
.p-reserve__form {
  background: #fff;
  border-radius: 20px;
  padding: clamp(22px, 4vw, 38px);
  margin-top: 34px;
}
.p-reserve__step-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-reserve__step-head + .p-reserve__step-head {
  margin-top: 32px;
}
.p-reserve__step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2F8F39;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.p-reserve__step-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #26271F;
}
.p-reserve__method-group {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.p-reserve__topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.p-reserve__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.p-reserve__field-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #33342E;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.p-reserve__badge-required {
  background: #2F8F39;
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
}
.p-reserve__badge-optional {
  background: #B0B4A5;
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
}
.p-reserve__addr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.p-reserve__addr-sub-label {
  font-size: 12px;
  color: #9A9C8E;
  font-weight: 700;
  margin-bottom: 5px;
}
.p-reserve__addr-readonly {
  width: 100%;
  padding: 13px 14px;
  border-radius: 11px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  background: #F2F6EF;
  color: #33342E;
  outline: none;
  border: 1.5px solid #D5DDD1;
  cursor: default;
}
.p-reserve__date-hint {
  font-size: 13px;
  color: #8E9285;
  margin: 8px 0 12px;
}
.p-reserve__date-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 10px;
}
.p-reserve__no-date {
  background: #F6F8F3;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  color: #8E9285;
  font-size: 14px;
  margin-top: 4px;
}
.p-reserve__slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.p-reserve__flexible-wrap {
  margin-top: 14px;
}
.p-reserve__privacy {
  font-size: 12px;
  color: #9A9C8E;
  line-height: 1.8;
  margin: 22px 0 0;
  text-align: center;
}
.p-reserve__privacy a {
  color: #9A9C8E;
  text-underline-offset: 2px;
}
.p-reserve__tel-row {
  text-align: center;
  margin-top: 16px;
  font-size: 13.5px;
  color: #5C5E54;
}
.p-reserve__tel-row a {
  color: #2F8F39;
  font-weight: 700;
  text-decoration: none;
}
.p-reserve__err {
  color: #C9472F;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 6px;
}
.p-reserve__zip-wrap {
  position: relative;
}
.p-reserve__zip-loading {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #9A9C8E;
  pointer-events: none;
}

.p-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: #143F1E;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.22);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.p-sticky-cta__spacer {
  height: 80px;
}
.p-sticky-cta__tel {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #EAF3E6;
  border-radius: 50%;
  text-decoration: none;
}

.u-text-center {
  text-align: center;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Override DCLogic's injected height:100% so LP content doesn't overflow into #reserve */
#dc-root, #dc-root > .sc-host { height: auto !important; min-height: 100vh; }
/*# sourceMappingURL=style.css.map */