@charset "UTF-8";

:root {
  --bg: #fbfaf7;
  --white: #fff;
  --text: #333;
  --muted: #666;
  --line: #eadfd3;
  --main: #900a12;
  --main-dark: #900a12;
  --pink: #ffe7e3;
  --shadow: 0 14px 35px rgba(80, 60, 40, 0.07);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  letter-spacing: 0.04em;
}

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

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

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(880px, calc(100% - 40px));
}

.section-label {
  display: inline-block;
  color: var(--main);
  background: #fee7d4;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.45;
  margin-bottom: 24px;
  text-align: center;
}

.center-text {
  text-align: center;
  color: var(--muted);
}

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

.lp-header-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-logo img {
  width: 180px;
  max-width: 54vw;
}

.header-btn {
  background: var(--main);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  background: radial-gradient(
      circle at top left,
      #fff 0%,
      #fff7f4 34%,
      transparent 35%
    ),
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
  padding: 70px 0 26px;
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--main);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.32;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--main);
}

.lead {
  font-size: 18px;
  color: #555;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-points span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 700;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  background: var(--main);
  color: #fff;
  box-shadow: 0 10px 20px rgba(227, 109, 109, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--main);
  border: 1px solid #913a26;
}

.dummy-image {
  background: linear-gradient(135deg, #f7e9e2, #fee7d4);
  border: 1px solid #eee;
  border-radius: 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9b8d82;
  text-align: center;
  font-weight: 700;
}

.dummy-image small {
  font-weight: 400;
  color: #999;
}

.worry-section,
.benefit-section,
.flow-section,
.column-section {
  padding: 46px 0;
}

.message-section,
.comparison-section,
.faq-section,
.contact-section {
  padding: 86px 0;
  background: #fff;
}

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

.worry-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 700;
}

.message-section {
  text-align: center;
}

.message-section p:not(.section-label) {
  color: #555;
  font-size: 17px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 24px;
  box-shadow: var(--shadow);
}

.number {
  color: var(--main);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 8px;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.scene-section {
  padding: 86px 0;
  background: #fff;
}

.scene-list {
  margin-top: 44px;
  display: grid;
  gap: 34px;
}

.scene-item {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
}

.scene-item.reverse {
  grid-template-columns: 1fr 360px;
}

.scene-item.reverse .scene-img {
  order: 2;
}

.scene-img {
  min-height: 230px;
  border-radius: 22px;
}

.scene-text h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.scene-text p {
  color: var(--muted);
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 38px;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--line);
  padding: 18px 16px;
  text-align: center;
}

.comparison-table thead th {
  background: #fee7d4;
  color: #a77a43;
}

.comparison-table tbody th {
  background: #fff7f4;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.flow-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

.flow-card span {
  color: var(--main);
  font-size: 13px;
  font-weight: 800;
}

.flow-card h3 {
  font-size: 21px;
  margin: 8px 0 10px;
}

.flow-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.more-link-box {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  margin: 34px auto 0;
  box-shadow: var(--shadow);
  max-width: 760px;
}

.more-link-box p {
  color: var(--muted);
  margin-bottom: 16px;
}

.more-link-box a,
.text-link {
  display: inline-block;
  color: var(--main);
  font-weight: 700;
  border-bottom: 1px solid var(--main);
}

.price-section {
  padding: 86px 0;
  background: #fbfaf7;
}

.price-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.price-card {
  min-width: 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  padding: 48px 28px 42px;
  box-shadow: var(--shadow);
}

.price-card h3 {
  text-align: center;
  color: var(--main);
  font-size: 24px;
  margin-bottom: 12px;
}

.price-card .period {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.price-card dl {
  border-top: 1px solid #eee;
  margin: 0;
}

.price-card dl div {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.price-card dl div:first-child {
  display: block;
  text-align: center;
}

.price-card dl div:first-child dt {
  display: block;
  margin-bottom: 12px;
}

.price-card dt {
  min-width: 90px;
  white-space: nowrap;
  word-break: keep-all;
  font-size: 16px;
}

.price-card dd {
  margin: 0;
  white-space: nowrap;
  font-size: 16px;
  color: #888;
}

.price-card .price {
  display: inline-block;
  background: var(--pink);
  color: #9c2222;
  font-size: 18px;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 10px;
}

.price-card .price span,
.option-main span {
  font-size: 12px;
}

.option-box {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.option-box h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.option-main {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 6px;
}

.option-note {
  color: #e75a5a;
  font-size: 14px;
  margin-bottom: 8px;
}

.faq-section {
  text-align: center;
}

details {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 14px;
  text-align: left;
  overflow: hidden;
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 20px 24px;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--main);
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 24px 22px;
  color: var(--muted);
  margin: 0;
}

.column-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 24px;
}

.column-links a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  font-weight: 700;
  text-align: center;
  color: #555;
}

.contact-section {
  background: linear-gradient(135deg, #fff7f4, #fee7d4);
  text-align: center;
  padding-bottom: 110px;
}

.contact-section p {
  color: #555;
}

.contact-buttons {
  justify-content: center;
  margin-top: 28px;
}

.fixed-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: none;
  grid-template-columns: 1fr 1fr;
  z-index: 60;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}

.fixed-cta a {
  text-align: center;
  padding: 14px 8px;
  font-weight: 700;
  color: #fff;
  background: var(--main);
}

.fixed-cta a:nth-child(2) {
  background: #ffaf6e;
}

.lp-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 34px 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
}

@media screen and (max-width: 900px) {
  .lp-header-inner {
    height: 64px;
  }

  .header-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .hero {
    padding: 20px 0 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1.08fr;
    gap: 64px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .dummy-image {
    min-height: 260px;
  }

  .worry-section,
  .benefit-section,
  .flow-section,
  .column-section,
  .message-section,
  .comparison-section,
  .faq-section,
  .contact-section,
  .scene-section,
  .price-section {
    padding: 32px 0;
  }

  .worry-grid,
  .benefit-grid,
  .flow-grid,
  .column-links,
  .price-cards {
    grid-template-columns: 1fr;
  }

  .scene-item,
  .scene-item.reverse {
    grid-template-columns: 1fr;
  }

  .scene-item.reverse .scene-img {
    order: 0;
  }

  .price-cards {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .fixed-cta {
    display: grid;
  }

  .lp-footer {
    padding-bottom: 72px;
  }
}

@media screen and (max-width: 420px) {
  .section-inner,
  .section-inner.narrow,
  .hero-inner,
  .lp-header-inner {
    width: calc(100% - 28px);
  }

  .btn {
    min-width: 0;
    width: 100%;
  }

  .price-card {
    padding: 42px 22px 36px;
  }

  .option-main {
    font-size: 18px;
  }
}

.hero-visual {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 55px rgba(80, 40, 40, 0.12);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  display: block;
}
@media screen and (max-width: 900px) {
  .hero-visual {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .hero-visual img {
    object-position: center center;
  }
}

@media screen and (max-width: 900px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

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

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-points span {
    text-align: center;
    font-size: 13px;
  }
}

@media screen and (max-width: 420px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero {
    padding: 22px 0 20px;
  }

  .hero-visual {
    margin-top: 6px;
  }
}

.lp-video {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.lp-video video {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .lp-video {
    max-width: none;
  }
}

.section-image {
  position: relative;
  background: var(--white);
}
.section-image > img,
.section-image picture img {
  background: #f3dfd8;
}

.machine-section {
  padding: 90px 0;
  background: #fff;
}

.machine-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.machine-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(80, 40, 40, 0.1);
  background: #fff;
}

.machine-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

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

.machine-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 14px 35px rgba(80, 60, 40, 0.07);
}

.machine-card span {
  display: inline-block;
  color: #900a12;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.machine-card h3 {
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 14px;
  color: #333;
}

.machine-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .machine-section {
    padding: 62px 0;
  }

  .machine-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 34px;
  }

  .machine-image {
    border-radius: 24px;
  }

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

  .machine-card {
    padding: 26px 22px;
  }

  .machine-card h3 {
    font-size: 20px;
  }

  .machine-card p {
    font-size: 14px;
  }
}
