:root {
  --green-900: #3e1f00;
  --green-800: #4b2a0f;
  --green-700: #776355;
  --green-500: #dac5a6;
  --green-100: #f8f5ee;
  --cream: #f8f5ee;
  --paper: #fffdf8;
  --beige: #dac5a6;
  --ink: #222222;
  --muted: #776355;
  --line: rgba(62, 31, 0, 0.16);
  --line-soft: rgba(62, 31, 0, 0.08);
  --shadow: 0 18px 42px rgba(45, 55, 42, 0.1);
  --content: min(1120px, calc(100% - 40px));
  --radius: 0;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

button {
  font: inherit;
}

.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;
}

.text-nowrap {
  white-space: nowrap;
}

.desktop-line-break {
  display: block;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(22, 59, 46, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 174px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: currentColor;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

h1,
h2 {
  color: var(--green-900);
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.48;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 36px;
}

h3 {
  color: var(--green-900);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(22, 59, 46, 0.18);
}

.button-primary {
  color: #fff;
  background: var(--green-900);
}

.button-outline {
  color: var(--green-900);
  background: #fff;
  border-color: rgba(22, 59, 46, 0.28);
}

.button-map {
  width: 100%;
  min-height: 44px;
  color: #fff;
  background: var(--green-900);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 604px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.92) 27%,
      rgba(255, 255, 255, 0.72) 49%,
      rgba(255, 255, 255, 0.36) 69%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    url("LP使用/1.jpg") center / cover no-repeat;
}

.hero-inner {
  width: var(--content);
  min-height: 604px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 64px 0 70px;
}

.hero-copy {
  max-width: 610px;
}

.hero-lead {
  margin-top: 22px;
  color: #4d564c;
  font-size: 16px;
  line-height: 2;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 370px;
  margin-top: 28px;
}

.cta-note {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.85;
  text-align: center;
}

.hero-actions .cta-note {
  margin: 0;
  color: #4d564c;
  font-weight: 700;
  text-align: left;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 1.45;
  white-space: nowrap;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 78px 0;
  border-bottom: 1px solid var(--line-soft);
}

.section-concern,
.section-coordinate,
.section-consult,
.section-stores {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: var(--cream);
}

.section-umeda-forest {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-wide {
  max-width: 900px;
}

.section-heading-extra-wide {
  max-width: 1040px;
}

.heading-nowrap-wide {
  white-space: nowrap;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.center-copy {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--green-900);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.85;
  text-align: center;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.icon-card {
  display: grid;
  place-items: center;
  min-height: 178px;
  padding: 24px 14px 22px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.icon-card img {
  width: 82px;
  height: 72px;
  object-fit: contain;
}

.icon-card h3 {
  margin-top: 14px;
  font-size: 16px;
}

.reason-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reason-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 30px rgba(45, 55, 42, 0.07);
}

.reason-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.reason-card div {
  padding: 24px 22px 26px;
}

.reason-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--green-900);
  font-family: var(--serif);
  font-weight: 700;
}

.reason-card p,
.place-card p,
.quality-card p,
.consult-copy p,
.closing-copy p,
.choose-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.reason-card p {
  margin-top: 12px;
}

.before-after {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.before-after figure {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.before-after img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.before-after figcaption {
  padding: 13px 14px 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.before-after figcaption span {
  display: block;
  color: var(--green-900);
  font-size: 17px;
  font-weight: 800;
}

.case-link-wrap {
  margin-top: 18px;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--green-900);
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.place-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 216px;
  padding: 26px 18px 24px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.place-card img {
  width: 96px;
  height: 76px;
  object-fit: contain;
}

.place-card h3 {
  margin-top: 16px;
}

.place-card p {
  margin-top: 8px;
}

.pot-gallery {
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 auto;
}

.pot-gallery img {
  height: auto;
  border: 1px solid var(--line);
  object-fit: contain;
  background: #fff;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.strength-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.pot-culture-note {
  max-width: 900px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  text-align: center;
}

.pot-culture-note p {
  font-size: 13px;
  line-height: 1.9;
}

.pot-culture-link-wrap {
  margin-top: 6px;
}

.pot-culture-link {
  display: inline;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
  border-bottom: 1px solid currentColor;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quality-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.quality-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.quality-card div {
  padding: 22px 20px 24px;
}

.quality-card h3 {
  font-size: 22px;
}

.quality-card p {
  margin-top: 12px;
}

.quality-note {
  max-width: 850px;
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--green-900);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
}

.section-bottom-cta {
  margin: 34px auto 0;
  text-align: center;
}

.section-bottom-cta .button {
  width: min(100%, 520px);
  min-height: 58px;
  font-size: 17px;
}

.section-bottom-cta .cta-note {
  font-weight: 800;
}

.choose-title-mobile-break,
.quality-title-mobile-break,
.places-title-mobile-break,
.wide-heading-mobile-break {
  display: none;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.choose-card {
  display: flex;
  flex-direction: column;
  min-height: 586px;
  padding: 30px 26px 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.step-label {
  width: max-content;
  margin: 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--green-900);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.choose-card h3 {
  margin-top: 24px;
  color: var(--green-900);
  text-align: center;
}

.choose-main-icon {
  display: grid;
  place-items: center;
  min-height: 104px;
  margin-top: 10px;
  color: var(--green-900);
}

.choose-main-icon svg,
.choose-row-icon svg,
.choose-consult-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.choose-main-icon-place svg {
  width: 146px;
  height: 92px;
}

.choose-main-icon-leaf svg,
.choose-main-icon-pot svg {
  width: 116px;
  height: 96px;
}

.choose-detail-list {
  display: grid;
  margin-top: 18px;
  border-top: 2px solid rgba(62, 31, 0, 0.42);
}

.choose-detail-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--green-900);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
}

.choose-place-list .choose-detail-row {
  grid-template-columns: 20px minmax(0, 1fr);
}

.choose-item-marker {
  width: 6px;
  height: 44px;
  margin-left: 2px;
  background: var(--green-900);
}

.choose-row-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-900);
}

.choose-detail-row strong {
  display: block;
  color: var(--green-900);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.choose-note {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed rgba(62, 31, 0, 0.28);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
  text-align: center;
}

.choose-consult-box {
  max-width: 1040px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 34px auto 0;
  padding: 22px 44px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.choose-consult-icon {
  width: 74px;
  height: 74px;
  color: var(--green-900);
}

.choose-consult-box p {
  color: var(--green-900);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.9;
}

.choose-consult-action {
  margin-top: 22px;
  text-align: center;
}

.choose-consult-action .button {
  width: min(100%, 520px);
  min-height: 58px;
  font-size: 17px;
}

.consult-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.consult-photo {
  justify-self: center;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.consult-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
}

.consult-copy p:not(.eyebrow) {
  margin-top: 16px;
}

.consult-questions {
  display: grid;
  gap: 10px;
  margin: 24px 0 4px;
}

.consult-questions p {
  position: relative;
  padding: 10px 38px 10px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-900);
  font-weight: 800;
}

.consult-copy .button {
  width: min(100%, 380px);
  margin-top: 26px;
}

.consult-copy .cta-note,
.closing-copy .cta-note {
  margin: 12px 0 0;
  text-align: left;
}

.umeda-forest-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.umeda-forest-copy {
  max-width: 500px;
}

.umeda-forest-copy h2 {
  font-size: 33px;
}

.umeda-forest-heading-line {
  display: block;
  white-space: nowrap;
}

.umeda-forest-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.umeda-forest-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.umeda-forest-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.store-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(45, 55, 42, 0.07);
}

.store-card-feature {
  border-color: rgba(46, 107, 78, 0.34);
}

.store-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.store-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.area-label {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.store-body h3 {
  margin-top: 8px;
  font-size: 19px;
}

.store-body p:not(.area-label) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.store-body .button {
  margin-top: auto;
}

.faq-list {
  max-width: 920px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  background: #fff;
}

summary {
  position: relative;
  cursor: pointer;
  padding: 18px 54px 18px 54px;
  color: var(--green-900);
  font-weight: 800;
  line-height: 1.65;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "Q.";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--green-700);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: solid var(--green-700);
  border-width: 0 1px 1px 0;
  opacity: 0.78;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-answer {
  padding: 0 24px 22px 54px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.faq-answer p + p {
  margin-top: 10px;
}

.closing {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 72px max(20px, calc((100vw - 1120px) / 2)) 82px;
  color: var(--green-900);
  background: #fff;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  z-index: 1;
}

.closing-photos {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
}

.closing-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.closing .eyebrow,
.closing h2,
.closing p {
  color: var(--green-900);
}

.closing .eyebrow::before {
  background: currentColor;
}

.closing-copy p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 18px;
  color: var(--green-800);
  font-size: 15px;
}

.closing-copy .button {
  margin-top: 28px;
  color: #fff;
  background: var(--green-900);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(20px, calc((100vw - 1120px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-900);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer .brand-logo {
  filter: invert(1);
}

.footer p {
  font-size: 14px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .consult-layout,
  .umeda-forest-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .consult-copy,
  .umeda-forest-copy {
    justify-self: center;
    max-width: 720px;
  }

  .umeda-forest-copy {
    width: min(100%, 720px);
  }

  .umeda-forest-photo {
    order: -1;
  }

  .hero-copy {
    max-width: 720px;
  }

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

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

@media (max-width: 920px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line-soft);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .nav-toggle span:not(.sr-only) {
    width: 19px;
    height: 1px;
    margin: 3px 0;
    background: var(--green-900);
  }

  .concern-grid,
  .reason-card-grid,
  .place-grid,
  .strength-list,
  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .choose-card {
    min-height: 0;
  }

  .heading-nowrap-wide {
    white-space: normal;
  }

  .places-title-mobile-break {
    display: block;
  }
}

@media (max-width: 640px) {
  :root {
    --content: min(100% - 28px, 1120px);
  }

  body {
    padding-bottom: 66px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 148px;
  }

  h1 {
    font-size: 29px;
    line-height: 1.52;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-inner {
    min-height: auto;
    gap: 26px;
    padding: 38px 0 54px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.93) 44%,
        rgba(255, 255, 255, 0.72) 73%,
        rgba(255, 255, 255, 0.42) 100%
      ),
      url("LP使用/1.jpg") 74% center / cover no-repeat;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .desktop-line-break {
    display: none;
  }

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

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 370px;
  }

  .hero-points li {
    min-height: 44px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }

  .center-copy {
    font-size: 16px;
    text-align: left;
  }

  .concern-grid,
  .reason-card-grid,
  .place-grid,
  .strength-list,
  .choose-grid,
  .store-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  .concern-grid,
  .place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .icon-card {
    grid-template-columns: 1fr;
    place-items: center;
    align-content: center;
    min-height: 146px;
    padding: 18px 10px 16px;
    text-align: center;
  }

  .icon-card img {
    width: 58px;
    height: 50px;
  }

  .icon-card h3 {
    width: 100%;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
  }

  .reason-card div,
  .store-body {
    padding: 20px 18px 22px;
  }

  .choose-title-mobile-break,
  .quality-title-mobile-break,
  .wide-heading-mobile-break {
    display: block;
  }

  .choose-card {
    padding: 26px 22px 24px;
  }

  .choose-card h3 {
    margin-top: 20px;
  }

  .choose-main-icon {
    min-height: 90px;
  }

  .choose-detail-row {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 68px;
    font-size: 13px;
  }

  .choose-place-list .choose-detail-row {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .choose-note {
    margin-top: 18px;
    font-size: 13px;
    text-align: left;
  }

  .choose-consult-box {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px;
    text-align: left;
  }

  .choose-consult-icon {
    width: 60px;
    height: 60px;
  }

  .choose-consult-box p {
    font-size: 14px;
    line-height: 1.85;
  }

  .before-after img {
    aspect-ratio: 4 / 3;
  }

  .place-card {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    min-height: 194px;
    padding: 20px 12px 18px;
    text-align: center;
  }

  .place-card img {
    width: 58px;
    height: 50px;
  }

  .place-card h3 {
    width: 100%;
    margin-top: 12px;
    font-size: 17px;
  }

  .place-card p {
    width: 100%;
    grid-column: auto;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.75;
  }

  .pot-gallery {
    grid-template-columns: 1fr;
  }

  .pot-gallery img {
    height: auto;
  }

  .pot-culture-note {
    margin-top: 18px;
    padding-top: 16px;
    text-align: left;
  }

  .pot-culture-note p {
    font-size: 12px;
    line-height: 1.85;
  }

  .pot-culture-link {
    font-size: 13px;
    line-height: 1.85;
  }

  .consult-copy .button {
    width: 100%;
  }

  .umeda-forest-layout {
    gap: 26px;
  }

  .umeda-forest-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .umeda-forest-copy h2 {
    font-size: 23px;
    line-height: 1.55;
  }

  summary {
    padding: 17px 44px 17px 48px;
    font-size: 14px;
  }

  summary::before {
    left: 18px;
    top: 16px;
  }

  summary::after {
    right: 20px;
  }

  .faq-answer {
    padding: 0 18px 20px 48px;
    font-size: 13px;
  }

  .closing {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .footer {
    display: grid;
    justify-items: start;
    padding: 28px 20px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: #fff;
    background: var(--green-900);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(22, 59, 46, 0.22);
  }
}

@media (max-width: 360px) {
  h2 {
    font-size: 25px;
    line-height: 1.55;
  }

  .umeda-forest-copy h2 {
    font-size: 18px;
  }
}
