@charset "UTF-8";

:root {
  --paper: #fffdf9;
  --ink: #3b3129;
  --muted: #766c63;
  --line: #e7ded5;
  --beige: #eee6dd;
  --cream: #faf4ec;
  --aqua: #dff0f0;
  --aqua-deep: #a8ced0;
  --pink: #f08984;
  --pink-deep: #df6e68;
  --brown: #826e54;
  --shadow: 0 10px 30px rgba(83, 66, 48, 0.13);
  --font-mincho: "Shippori Mincho B1", "Yu Mincho", "YuMincho", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-round: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --page: 430px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 16% 12%, rgba(240, 137, 132, 0.12), transparent 26%),
    radial-gradient(circle at 86% 30%, rgba(168, 206, 208, 0.20), transparent 25%),
    #f7f2ea;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.62)),
    transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(130, 110, 84, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 110, 84, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

blockquote {
  margin: 0;
}

summary {
  cursor: pointer;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-header,
.lp-firstview,
.lp-section,
.lp-footer {
  width: min(100%, var(--page));
  margin-inline: auto;
  background: var(--paper);
  box-shadow: 0 0 34px rgba(64, 48, 35, 0.08);
}

.lp-header {
  position: static;
  top: auto;
  z-index: 20;
  order: 0;
  border-bottom: 1px solid rgba(201, 188, 172, 0.65);
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(12px);
}

.lp-header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
}

@media (max-width: 759px) {
  .lp-header-inner > .lp-cta-header {
    display: none;
  }
  .lp-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* === Hamburger menu (mobile) ====================================== */
.lp-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 30;
}

.lp-nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lp-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(64, 48, 35, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 18;
}

.lp-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.lp-nav-open {
  overflow: hidden;
}

@media (max-width: 759px) {
  .lp-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 25;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    width: min(78vw, 320px);
    height: 100vh;
    padding: 78px 26px 36px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: -8px 0 28px rgba(64, 48, 35, 0.15);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

  .lp-nav.is-open {
    transform: translateX(0);
  }

  .lp-nav a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(201, 188, 172, 0.55);
    color: var(--brown);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .lp-nav a:first-child {
    border-top: 1px solid rgba(201, 188, 172, 0.55);
  }
}

.lp-logo-text-meta {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.lp-logo-text-main {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 4px 0 0;
  color: var(--brown);
  line-height: 1;
}

.lp-logo-text-name {
  font-family: "Italiana", "Cormorant Garamond", "Shippori Mincho B1", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #5b4632;
  background: linear-gradient(180deg, #6b5439 0%, #8a6f4f 60%, #b08a5f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-logo-text-divider {
  color: rgba(176, 138, 95, 0.45);
  font-size: 18px;
  font-weight: 300;
  transform: translateY(-2px);
}

.lp-logo-text-region {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Shippori Mincho B1", "Yu Mincho", serif;
  font-weight: 600;
  color: #4a3826;
}

.lp-logo-text-region-area {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 1px 1px;
  color: #3b2c1d;
}

.lp-logo-text-region-area::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, #b08a5f, #d6b07a);
  border-radius: 1px;
}

.lp-logo-text-region-label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--brown);
}

.lp-nav {
  display: none;
}

.lp-cta-header {
  display: inline-grid;
  min-width: 78px;
  min-height: 34px;
  place-items: center;
  padding: 7px 10px;
  border-radius: 3px;
  color: #fff;
  background: var(--pink-deep);
  box-shadow: 0 4px 12px rgba(223, 110, 104, 0.24);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.lp-firstview {
  order: 1;
  padding: 0;
  overflow: hidden;
  background: #f8efe8;
}

.lp-firstview-img {
  width: 100%;
}

.lp-section {
  position: relative;
  padding: 46px 18px;
  overflow: hidden;
}

.lp-section-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
}

.lp-width-640,
.lp-width-860 {
  max-width: 100%;
}

.lp-section-title-img {
  width: min(100%, 330px);
  margin: 0 auto 26px;
}

.lp-section::before,
.lp-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lp-worries {
  order: 2;
  padding-top: 50px;
  padding-bottom: 44px;
  background: var(--paper);
}

.lp-worries::before {
  inset: 18px auto auto 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(240, 137, 132, 0.16);
}

.lp-worry-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
}

.lp-worry-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 3px 14px rgba(130, 110, 84, 0.07);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
}

.lp-worry-list li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 15px;
  height: 9px;
  border-bottom: 2px solid var(--pink-deep);
  border-left: 2px solid var(--pink-deep);
  transform: rotate(-45deg);
}

.lp-worry-message {
  margin: 6px auto 0;
  color: var(--brown);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
}

.lp-worry-message-img {
  width: min(100%, 360px);
  margin: 12px auto 0;
}

.lp-reason {
  order: 3;
  background: var(--aqua);
}

.lp-reason::before {
  inset: 0;
  background:
    radial-gradient(circle at 14% 7%, rgba(255, 255, 255, 0.74), transparent 18%),
    radial-gradient(circle at 90% 25%, rgba(255, 255, 255, 0.58), transparent 17%);
}

.lp-reason-item {
  position: relative;
  margin: 0 0 24px;
  padding: 22px 15px 20px;
  border: 1px solid rgba(168, 206, 208, 0.95);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.lp-reason-item:last-child {
  margin-bottom: 0;
}

.lp-reason-item::before {
  display: grid;
  position: absolute;
  top: -16px;
  left: 50%;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(168, 206, 208, 0.75);
  border-radius: 50%;
  color: #8aaeb0;
  background: #f7fbfb;
  box-shadow: 0 4px 14px rgba(130, 110, 84, 0.08);
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 900;
  transform: translateX(-50%);
}

.lp-reason-item:nth-of-type(1)::before { content: "01"; }
.lp-reason-item:nth-of-type(2)::before { content: "02"; }
.lp-reason-item:nth-of-type(3)::before { content: "03"; }
.lp-reason-item:nth-of-type(4)::before { content: "04"; }
.lp-reason-item:nth-of-type(5)::before { content: "05"; }
.lp-reason-item:nth-of-type(6)::before { content: "06"; }
.lp-reason-item:nth-of-type(7)::before { content: "07"; }

.lp-reason-title-img {
  width: 100%;
  margin: 18px auto 13px;
}

.lp-reason-photo {
  width: 100%;
  margin: 0 0 14px;
  border: 1px solid var(--line);
}

.lp-reason-body,
.lp-flow-body,
.lp-menu-desc,
.lp-voice-text,
.lp-profile-message,
.lp-faq-a,
.lp-access-list {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.85;
}

.lp-voice {
  order: 4;
  background: var(--beige);
}

.lp-voice .lp-section-title-img {
  margin-bottom: 22px;
}

.lp-voice-item {
  margin: 0 0 24px;
  padding: 14px 14px 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lp-voice-item:last-child {
  margin-bottom: 0;
}

.lp-voice-heading-img {
  display: block;
  width: 100%;
  margin: 0 auto 18px;
}

.lp-voice-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 13px;
}

.lp-voice-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lp-voice-text p {
  margin: 0;
}

.lp-voice-text p::first-letter {
  color: var(--pink-deep);
}

.lp-voice-cite {
  display: block;
  margin-top: 12px;
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.lp-menu {
  order: 5;
  background: linear-gradient(#fff, #faf8f5);
}

.lp-menu::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(168, 206, 208, 0.22), transparent 130px);
}

.lp-course-card {
  padding: 26px 22px 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.lp-course-kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 22px 5px;
  background: rgba(240, 137, 132, 0.14);
  color: var(--pink-deep);
  font-family: var(--font-mincho);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.lp-course-title {
  margin: 0 0 18px;
  color: var(--brown);
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.lp-course-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  object-fit: cover;
  object-position: center;
}

.lp-course-body {
  text-align: left;
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}

.lp-course-body p {
  margin: 0 0 14px;
}

.lp-course-body p:last-child {
  margin-bottom: 0;
}

.lp-course-note {
  font-size: 14px;
  color: var(--muted);
}

.lp-samples {
  margin-top: 32px;
}

.lp-samples-title {
  position: relative;
  margin: 0 0 18px;
  padding: 14px 0 12px;
  color: var(--brown);
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
}

.lp-samples-title::before,
.lp-samples-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.lp-samples-title::before { top: 0; }
.lp-samples-title::after { bottom: 0; }

.lp-carousel {
  position: relative;
}

.lp-carousel-viewport {
  overflow: hidden;
  cursor: grab;
}

.lp-carousel-viewport:active {
  cursor: grabbing;
}

.lp-carousel-track {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0 4%;
  box-sizing: border-box;
  list-style: none;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  touch-action: pan-y;
}

.lp-carousel-track.is-quick {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-carousel-track.is-dragging {
  transition: none;
}

.lp-carousel-item {
  flex: 0 0 92%;
  min-width: 0;
  padding: 4px;
  box-sizing: border-box;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-carousel-item:not(.is-active) {
  opacity: 0.45;
  transform: scale(0.94);
}

.lp-carousel-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: cover;
  object-position: center;
}

.lp-carousel-price {
  margin: 0;
  color: var(--brown);
  font-family: var(--font-mincho);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.lp-carousel-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  margin-top: -32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--pink-deep);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 42px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(223, 110, 104, 0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-carousel-arrow::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(223, 110, 104, 0.18);
  z-index: -1;
  animation: lp-carousel-pulse 1.8s ease-out infinite;
}

.lp-carousel-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(223, 110, 104, 0.5);
}

.lp-carousel-prev { left: 6px; }
.lp-carousel-next { right: 6px; }

.lp-carousel-hint {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(92, 61, 48, 0.78);
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 11px;
  letter-spacing: 0.08em;
  pointer-events: none;
  opacity: 0;
  animation: lp-carousel-hint-show 4.5s ease-out 0.6s 1 forwards;
  z-index: 4;
}

.lp-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.lp-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lp-carousel-dot.is-active {
  background: var(--pink-deep);
  transform: scale(1.2);
}

@keyframes lp-carousel-pulse {
  0%   { transform: scale(0.8); opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes lp-carousel-hint-show {
  0%   { opacity: 0; transform: translate(-50%, 6px); }
  10%  { opacity: 1; transform: translate(-50%, 0); }
  80%  { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-carousel-arrow::before { animation: none; }
  .lp-carousel-hint { animation: none; opacity: 0; }
}

.lp-option {
  order: 6;
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.9)),
    var(--cream);
}

.lp-option-card {
  padding: 30px 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

.lp-kicker {
  margin-bottom: 2px;
  color: var(--pink-deep);
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.lp-option-title {
  margin: 0 0 22px;
  color: var(--brown);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.lp-option-list,
.lp-access-list {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.lp-access-map {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: #fff;
}

.lp-access-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.lp-option-list dt,
.lp-option-list dd,
.lp-access-list dt,
.lp-access-list dd {
  margin: 0;
  padding: 11px 8px;
  border-bottom: 1px solid var(--line);
}

.lp-option-list dt,
.lp-access-list dt {
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
}

.lp-option-list dd,
.lp-access-list dd {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
}

.lp-option-list span {
  color: var(--muted);
  font-size: 11px;
}

.lp-benefits {
  order: 7;
  background: var(--paper);
}

.lp-benefits-title {
  margin: 0 auto 24px;
  color: var(--brown);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.lp-benefit-list {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}

.lp-benefit-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 15px;
}

.lp-benefit-list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 12px;
  color: var(--pink-deep);
  font-family: var(--font-round);
  font-weight: 900;
}

.lp-cta-wrap {
  text-align: center;
}

.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 3px;
  color: #fff;
  background: var(--pink-deep);
  box-shadow: 0 8px 18px rgba(223, 110, 104, 0.28);
  font-family: var(--font-sans);
  font-weight: 900;
  text-decoration: none;
}

.lp-cta-coupon {
  order: 8;
  padding-top: 34px;
  padding-bottom: 40px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(90deg, #f5eee5 0, #f5eee5 14px, #f1e8de 14px, #f1e8de 28px);
}

.lp-cta-coupon-final {
  order: 13;
}

.lp-cta-coupon-link {
  display: block;
  width: min(100%, 322px);
  margin: 0 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.lp-cta-coupon-img {
  width: 100%;
  aspect-ratio: 4 / 5; /* next2-pr.net 共通クーポン画像 800×1000 に合わせCLS抑止 */
  height: auto;
  object-fit: contain;
}

.lp-flow {
  order: 9;
  background: var(--beige);
}

.lp-flow-list {
  display: grid;
  gap: 26px;
}

.lp-flow-step {
  position: relative;
  padding: 15px 15px 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.lp-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 0;
  height: 0;
  border-top: 14px solid #cbbdaf;
  border-inline: 18px solid transparent;
  transform: translateX(-50%);
}

.lp-flow-title-img {
  width: 100%;
  margin: 0 auto 12px;
}

.lp-flow-photo {
  width: 100%;
  margin: 0 0 12px;
}

.lp-access {
  order: 10;
  background: var(--aqua);
}

.lp-access-list {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.lp-profile {
  order: 11;
  background: var(--paper);
}

.lp-profile-img {
  width: min(100%, 300px);
  margin: 0 auto 18px;
  box-shadow: var(--shadow);
}

.lp-profile-message {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lp-profile-message p + p {
  margin-top: 1em;
}

.lp-shiryou {
  margin-top: 26px;
}

.lp-shiryou img {
  width: min(100%, 310px);
  margin: 0 auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lp-faq {
  order: 12;
  background: #f7fbfb;
}

.lp-faq-item {
  margin-bottom: 10px;
  border: 1px solid #bddbdc;
  background: #fff;
}

.lp-faq-item summary {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  padding: 12px;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-q,
.lp-faq-a-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--aqua-deep);
  font-family: var(--font-round);
  font-weight: 900;
}

.lp-faq-a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  padding: 0 12px 15px;
}

.lp-faq-a p {
  margin: 0;
}

.lp-footer {
  order: 14;
  padding: 14px 18px;
  color: #fff;
  background: var(--brown);
  text-align: center;
}

.lp-footer-copyright {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  margin: 0;
}

.lp-footer-cta {
  position: fixed;
  right: 50%;
  bottom: 10px;
  z-index: 30;
  width: min(94vw, 390px);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 22px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.lp-footer-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.lp-footer-cta-link {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #25c43a, #08a523);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
  font-family: var(--font-sans);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.lp-footer-cta-badge {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
}

.lp-footer-cta-main {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 900;
}

.lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-reveal.is-visible,
.lp-firstview {
  opacity: 1;
  transform: none;
}

@media (min-width: 760px) {
  :root {
    --page: 760px;
  }

  body {
    padding: 28px 0;
  }

  .lp-header,
  .lp-firstview,
  .lp-section,
  .lp-footer {
    border-inline: 1px solid rgba(201, 188, 172, 0.55);
  }

  .lp-header-inner {
    grid-template-columns: 1fr auto;
    padding: 12px 22px;
  }

  .lp-nav-toggle {
    display: none;
  }

  .lp-nav {
    position: static;
    display: flex !important;
    grid-column: 1 / -1;
    order: 3;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    width: auto;
    height: auto;
    padding: 10px 0 0;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid rgba(201, 188, 172, 0.55);
    font-family: var(--font-sans);
    font-size: 12px;
    transform: none;
    overflow: visible;
  }

  .lp-nav a {
    color: var(--brown);
    text-decoration: none;
    padding: 0;
    border: 0;
    font-size: 12px;
    font-weight: 400;
  }

  .lp-nav a:first-child {
    border-top: 0;
  }

  .lp-section {
    padding: 64px 38px;
  }

  .lp-section-title-img {
    width: min(100%, 390px);
    margin-bottom: 34px;
  }

  .lp-width-640 {
    max-width: 680px;
  }

  .lp-width-860 {
    max-width: 700px;
  }

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

  .lp-reason-body,
  .lp-flow-body,
  .lp-menu-desc,
  .lp-voice-text,
  .lp-profile-message,
  .lp-faq-a,
  .lp-access-list {
    font-size: 16px;
  }

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

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

  .lp-flow-step:not(:last-child)::after {
    display: none;
  }

  .lp-footer-cta {
    width: 380px;
  }
}

@media (min-width: 1024px) {
  :root {
    --page: 1120px;
  }

  body {
    font-size: 16px;
  }

  .lp-header-inner {
    grid-template-columns: auto 1fr auto;
    max-width: 1120px;
    margin-inline: auto;
    padding: 14px 34px;
  }

  .lp-logo-text-meta {
    font-size: 11px;
  }

  .lp-logo-text-name {
    font-size: 30px;
  }

  .lp-logo-text-region {
    font-size: 13px;
  }

  .lp-nav {
    grid-column: auto;
    order: 0;
    gap: 20px;
    padding-top: 0;
    border-top: 0;
    font-size: 13px;
  }

  .lp-cta-header {
    min-width: 116px;
    min-height: 40px;
    font-size: 14px;
  }

  .lp-firstview-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .lp-section {
    padding: 82px 64px;
  }

  .lp-section-inner {
    max-width: 960px;
  }

  .lp-width-640,
  .lp-width-860 {
    max-width: 960px;
  }

  .lp-section-title-img {
    width: min(100%, 440px);
    margin-bottom: 42px;
  }

  .lp-worries .lp-section-inner,
  .lp-benefits .lp-section-inner,
  .lp-option .lp-section-inner,
  .lp-access .lp-section-inner,
  .lp-faq .lp-section-inner {
    max-width: 760px;
  }

  .lp-worry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .lp-worry-list li {
    min-height: 72px;
    display: flex;
    align-items: center;
  }

  .lp-reason .lp-section-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .lp-reason .lp-section-title-img {
    grid-column: 1 / -1;
  }

  .lp-reason-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding: 24px 18px 22px;
  }

  .lp-reason-item:nth-of-type(1) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    column-gap: 28px;
    align-items: center;
  }

  .lp-reason-item:nth-of-type(1) .lp-reason-title-img,
  .lp-reason-item:nth-of-type(1) .lp-reason-body {
    grid-column: 2;
  }

  .lp-reason-item:nth-of-type(1) .lp-reason-photo {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .lp-reason-title-img {
    margin-top: 22px;
  }

  .lp-voice .lp-section-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .lp-voice .lp-section-title-img {
    grid-column: 1 / -1;
  }

  .lp-voice-item {
    margin-bottom: 0;
  }

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

  .lp-voice-images img:nth-child(2) {
    display: none;
  }

  .lp-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .lp-menu-item {
    display: flex;
    flex-direction: column;
  }

  .lp-menu-img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .lp-option-card {
    padding: 40px 44px 34px;
  }

  .lp-benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
  }

  .lp-flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .lp-flow-photo {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .lp-profile .lp-section-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    align-items: start;
  }

  .lp-profile .lp-section-title-img {
    grid-column: 1 / -1;
  }

  .lp-profile-img {
    width: 100%;
    margin: 0;
  }

  .lp-profile-message {
    min-height: 100%;
  }

  .lp-shiryou {
    grid-column: 1 / -1;
  }

  .lp-cta-coupon-link {
    width: 360px;
  }
}

@media (max-width: 430px) {
  .lp-section {
    padding-inline: 16px;
  }

  .lp-logo-text-name {
    font-size: 22px;
  }

  .lp-logo-text-region {
    display: none;
  }

  .lp-menu-price {
    margin-top: -34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .lp-reveal {
    opacity: 1;
    transform: none;
  }
}

/* eimy-nail.com tone alignment */
:root {
  --page: 100%;
  --paper: #fff;
  --beige: #f0e9e3;
  --aqua: #d9e9ea;
  --brown: #5c3d30;
  --shadow: 0 3px 14px rgba(92, 61, 48, 0.16);
}

body {
  align-items: stretch;
  background: #fff;
}

body::before {
  opacity: 0.45;
}

.lp-header,
.lp-firstview,
.lp-section,
.lp-footer {
  width: 100%;
  max-width: none;
  box-shadow: none;
}

.lp-header {
  border-bottom: 0;
  background: #fff;
  box-shadow: 0 2px 14px rgba(92, 61, 48, 0.16);
}

.lp-header-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.lp-cta-header {
  display: none !important;
}

.lp-logo-text-meta {
  color: #5c3d30;
  font-family: var(--font-mincho);
  font-size: 12px;
  font-weight: 800;
}

.lp-logo-text-main {
  color: #5c3d30;
}

.lp-logo-text-name {
  color: #8b6c5b;
}

.lp-firstview {
  background: #fff;
}

.lp-firstview-img {
  width: 100%;
}

.lp-section {
  padding: 40px 18px;
}

.lp-section-inner,
.lp-width-640,
.lp-width-860 {
  max-width: 640px;
}

.lp-section-title-img {
  width: min(100%, 640px);
  margin-bottom: 24px;
}

.lp-worries {
  padding-top: 28px;
  padding-bottom: 20px;
}

.lp-worries::before {
  display: none;
}

.lp-worries::after {
  content: "";
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  transform: translateX(-50%);
  z-index: 2;
}

.lp-worry-list {
  gap: 0;
  width: min(100%, 760px);
  margin: 20px auto 22px;
  padding: 0;
  background: transparent;
}

.lp-worry-list li {
  padding: 9px 8px 9px 34px;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: #424242;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.lp-worry-list li::before {
  top: 15px;
  left: 7px;
  width: 16px;
  height: 10px;
  border-color: #4b9bed;
  border-width: 3px;
}

.lp-worry-message-img {
  width: min(100%, 640px);
  margin-top: 4px;
}

.lp-reason {
  padding-top: 52px;
  background:
    linear-gradient(180deg, #fff 0, rgba(255,255,255,0) 150px),
    #d9e9ea;
}

.lp-reason::before {
  display: none;
}

.lp-reason .lp-section-title-img {
  width: min(100%, 560px);
  margin-bottom: 26px;
}

.lp-reason-item {
  margin-bottom: 28px;
  padding: 0 0 20px;
  border: 0;
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lp-reason-item::before {
  display: none;
}

.lp-reason-title-img {
  width: 100%;
  margin: 0 auto 8px;
  padding: 22px 8px 8px;
}

.lp-reason-photo {
  margin: 0 0 12px;
  padding: 0 18px;
  border: 0;
}

.lp-reason-body {
  padding: 14px 24px 0;
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: 0.03em;
}

.lp-reason-body strong {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #df6e68;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.lp-reason-quote {
  display: inline-block;
  padding-left: 12px;
  border-left: 2px solid #df6e68;
  color: var(--muted);
  margin: 2px 0;
}

.lp-voice {
  background: #f0e9e3;
}

.lp-voice-item {
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lp-menu {
  background: #fff;
}

.lp-menu::before {
  display: none;
}

.lp-menu-item,
.lp-option-card,
.lp-profile-message,
.lp-access-list,
.lp-faq-item {
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.lp-flow {
  background: #f0e9e3;
}

.lp-flow-step {
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.lp-access,
.lp-faq {
  background: #d9e9ea;
}

.lp-cta-coupon {
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(90deg, #f5eee5 0, #f5eee5 14px, #f0e9e3 14px, #f0e9e3 28px);
}

.lp-footer-cta {
  right: 12px;
  bottom: 12px;
  width: min(28vw, 88px);
  transform: translateY(18px);
}

.lp-footer-cta.is-visible {
  transform: translateY(0);
}

.lp-footer-cta-link {
  display: block;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.lp-footer-cta-img {
  width: 100%;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.22));
  pointer-events: none;
}

@media (min-width: 760px) {
  body {
    padding: 0;
  }

  .lp-header,
  .lp-firstview,
  .lp-section,
  .lp-footer {
    border-inline: 0;
  }

  .lp-header-inner {
    grid-template-columns: 1fr;
    padding: 14px 0 0;
  }

  .lp-logo-text {
    padding: 0 40px 20px;
  }

  .lp-logo-text-meta {
    margin-bottom: 7px;
  }

  .lp-logo-text-main {
    display: block;
  }

  .lp-logo-text-name {
    display: block;
    font-size: 34px;
    line-height: 1;
  }

  .lp-logo-text-divider {
    display: none;
  }

  .lp-logo-text-region {
    display: block;
    margin-bottom: 8px;
    color: #c9bcac;
    font-family: var(--font-mincho);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    transform: none;
  }

  .lp-nav {
    display: flex;
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 16px 20px;
    border-top: 0;
    background: #eae2cf;
  }

  .lp-nav a {
    min-width: 130px;
    padding: 0 24px;
    border-right: 2px solid rgba(92, 61, 48, 0.46);
    color: #5c3d30;
    font-family: var(--font-mincho);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
  }

  .lp-nav a:last-child {
    border-right: 0;
  }

  .lp-section {
    padding: 58px 24px;
  }

  .lp-worry-list,
  .lp-menu-grid,
  .lp-flow-list,
  .lp-benefit-list {
    grid-template-columns: 1fr;
  }

  .lp-worry-list {
    width: min(100%, 780px);
    padding-left: 38px;
  }

  .lp-worry-list li {
    font-size: 20px;
    line-height: 2.05;
  }

  .lp-worry-list li::before {
    top: 20px;
  }
}

@media (min-width: 1024px) {
  .lp-header-inner {
    grid-template-columns: 1fr;
    max-width: none;
    padding: 16px 0 0;
  }

  .lp-logo-text {
    padding-left: 48px;
    padding-right: 48px;
  }

  .lp-logo-text-name {
    font-size: 38px;
  }

  .lp-nav {
    grid-column: 1 / -1;
    order: 3;
    margin: 0;
    padding: 18px 20px;
    border-top: 0;
    background: #eae2cf;
  }

  .lp-firstview-img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .lp-section {
    padding: 64px 24px;
  }

  .lp-section-inner,
  .lp-width-640,
  .lp-width-860,
  .lp-worries .lp-section-inner,
  .lp-benefits .lp-section-inner,
  .lp-option .lp-section-inner,
  .lp-access .lp-section-inner,
  .lp-faq .lp-section-inner {
    max-width: 640px;
  }

  .lp-reason .lp-section-inner,
  .lp-voice .lp-section-inner,
  .lp-profile .lp-section-inner {
    display: block;
    max-width: 640px;
  }

  .lp-reason-item,
  .lp-reason-item:nth-of-type(1),
  .lp-voice-item {
    display: block;
    margin-bottom: 28px;
  }

  .lp-reason-item:nth-of-type(1) .lp-reason-title-img,
  .lp-reason-item:nth-of-type(1) .lp-reason-body,
  .lp-reason-item:nth-of-type(1) .lp-reason-photo,
  .lp-profile .lp-section-title-img,
  .lp-shiryou {
    grid-column: auto;
    grid-row: auto;
  }

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

  .lp-voice-images img:nth-child(2) {
    display: block;
  }

  .lp-menu-grid,
  .lp-flow-list {
    grid-template-columns: 1fr;
  }

  .lp-menu-img,
  .lp-flow-photo {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .lp-profile-img {
    width: min(100%, 300px);
    margin: 0 auto 18px;
  }
}

/* === FIRSTVIEW → WORRIES SEAMLESS BLEND ============================ */
.lp-firstview {
  position: relative;
  background: linear-gradient(180deg, #f8efe8 0%, #fdf6ec 70%, #fffdf9 100%) !important;
  padding-bottom: 0 !important;
}

.lp-firstview-picture {
  display: block;
  position: relative;
}

.lp-firstview-img {
  display: block;
  width: 100%;
}

.lp-firstview::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: linear-gradient(180deg, rgba(255,253,249,0) 0%, rgba(255,253,249,0.85) 60%, var(--paper) 100%);
  pointer-events: none;
  z-index: 2;
}

.lp-worries {
  position: relative;
  background: var(--paper) !important;
  padding-top: 18px !important;
  margin-top: -28px;
  z-index: 1;
}

.lp-worries::before {
  content: "" !important;
  position: absolute !important;
  inset: -32px 0 auto 0 !important;
  width: 100% !important;
  height: 60px !important;
  background:
    radial-gradient(120% 100% at 50% 100%, var(--paper) 60%, transparent 75%) !important;
  border-radius: 0 !important;
  pointer-events: none;
  z-index: 1;
}

/* === FINAL LOGO OVERRIDES (must come last to defeat upstream duplicates) === */
.lp-logo-text-meta {
  font-family: var(--font-sans) !important;
  font-size: 9.5px !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  letter-spacing: 0.04em !important;
  line-height: 1.4 !important;
}

.lp-logo-text-main {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 4px 0 0;
  color: var(--brown);
  line-height: 1;
}

.lp-logo-text-name {
  font-family: "Italiana", "Cormorant Garamond", "Shippori Mincho B1", serif !important;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  background: linear-gradient(180deg, #6b5439 0%, #8a6f4f 60%, #b08a5f 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.lp-logo-text-divider {
  color: rgba(176, 138, 95, 0.45) !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  transform: translateY(-2px);
}

.lp-logo-text-region {
  font-family: "Shippori Mincho B1", "Yu Mincho", serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  color: #4a3826 !important;
}

/* === CTA OFFER BLOCK (mia-reference compliant) ======================= */
.lp-cta-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 22px 18px 26px !important;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(83, 66, 48, 0.10);
  max-width: 520px !important;
}

.lp-cta-card .lp-cta-coupon-link {
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.lp-cta-card .lp-cta-coupon-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: none !important;
  filter: none !important;
}

.lp-cta-note {
  margin: 4px 0 6px;
  align-self: flex-start;
  color: #5b4c3d;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.lp-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2bc25a 0%, #1aa849 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow:
    0 6px 0 rgba(15, 110, 50, 0.35),
    0 14px 28px rgba(34, 178, 78, 0.28);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  animation: lp-cta-pulse 2.6s ease-in-out infinite;
}

.lp-cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: skewX(-20deg);
  animation: lp-cta-shine 3.4s ease-in-out infinite;
}

.lp-cta-button:hover,
.lp-cta-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 8px 0 rgba(15, 110, 50, 0.4),
    0 18px 34px rgba(34, 178, 78, 0.36);
}

.lp-cta-button:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 0 rgba(15, 110, 50, 0.35),
    0 6px 14px rgba(34, 178, 78, 0.22);
}

@keyframes lp-cta-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}

@keyframes lp-cta-shine {
  0%   { left: -120%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

.lp-cta-microcopy {
  width: 100%;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #4a3826;
  letter-spacing: 0.02em;
}

.lp-cta-microcopy li {
  position: relative;
  padding-left: 22px;
}

.lp-cta-microcopy li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #2bc25a;
}

.lp-cta-microcopy li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translate(0, -65%) rotate(-45deg);
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

@media (prefers-reduced-motion: reduce) {
  .lp-cta-button {
    animation: none;
  }
  .lp-cta-button::after {
    animation: none;
    display: none;
  }
}

@media (min-width: 760px) {
  .lp-cta-card {
    max-width: 560px !important;
    padding: 28px 30px 34px !important;
    gap: 18px;
  }
  .lp-cta-button {
    min-height: 68px;
    font-size: 19px;
  }
  .lp-cta-microcopy {
    font-size: 13.5px;
  }
}

/* === FLOW: minimal gold line + drop arrow (petal removed) ============ */
.lp-flow-step:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -42px !important;
  transform: translateX(-50%) !important;
  width: 1px !important;
  height: 36px !important;
  border: 0 !important;
  background: linear-gradient(180deg, transparent 0%, #b08a5f 30%, #b08a5f 100%) !important;
  opacity: 0.85 !important;
}

.lp-flow-step:not(:last-child)::before {
  content: "" !important;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #b08a5f;
  opacity: 0.9;
  z-index: 2;
}

.lp-flow-list {
  gap: 60px !important;
}

@media (min-width: 760px) {
  .lp-flow-step:not(:last-child)::after {
    bottom: -54px !important;
    height: 46px !important;
  }
  .lp-flow-step:not(:last-child)::before {
    bottom: -14px;
    border-left-width: 6px;
    border-right-width: 6px;
    border-top-width: 9px;
  }
  .lp-flow-list {
    gap: 76px !important;
  }
}

/* === ACCESS: aqua background + white card + horizontal compact rows == */
.lp-access {
  background: var(--aqua) !important;
}

.lp-access::before,
.lp-access::after {
  display: none !important;
}

.lp-access-list {
  display: grid !important;
  grid-template-columns: minmax(96px, 36%) 1fr !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 6px 14px !important;
  background: #fff !important;
  border: 1px solid rgba(168, 206, 208, 0.55) !important;
  border-radius: 4px !important;
  box-shadow: 0 10px 28px rgba(50, 90, 95, 0.08) !important;
}

.lp-access-list dt {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  padding: 14px 8px 14px 0 !important;
  margin: 0 !important;
  font-family: "Shippori Mincho B1", "Yu Mincho", serif !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  color: var(--brown) !important;
  background: transparent !important;
  border-top: 1px dashed rgba(176, 138, 95, 0.32) !important;
}

.lp-access-list dt:first-of-type,
.lp-access-list dd:nth-of-type(1) {
  border-top: 0 !important;
}

.lp-access-list dd {
  margin: 0 !important;
  padding: 14px 0 14px 4px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.04em !important;
  color: #3b2c1d !important;
  border-top: 1px dashed rgba(176, 138, 95, 0.32) !important;
  display: flex;
  align-items: center;
}

.lp-access-ic {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--pink);
  display: inline-block;
  vertical-align: middle;
}

.lp-access-map {
  margin-top: 18px;
  border: 1px solid rgba(168, 206, 208, 0.55);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(50, 90, 95, 0.08);
}

.lp-access-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.lp-access-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px auto 0;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(130, 110, 84, 0.45);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.lp-access-map-link:hover,
.lp-access-map-link:focus-visible {
  color: var(--pink-deep);
  border-bottom-color: var(--pink-deep);
}

.lp-access-map-link::after {
  content: "→";
  font-size: 14px;
  margin-left: 2px;
  transition: transform 0.18s ease;
}

.lp-access-map-link:hover::after {
  transform: translateX(3px);
}

.lp-access-map-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 760px) {
  .lp-access-list {
    grid-template-columns: minmax(120px, 28%) 1fr !important;
    padding: 8px 22px !important;
  }
  .lp-access-list dt {
    font-size: 14.5px !important;
    padding: 18px 8px 18px 0 !important;
  }
  .lp-access-list dd {
    font-size: 15px !important;
    padding: 18px 0 18px 8px !important;
  }
  .lp-access-list dt:nth-of-type(3) + dd,
  .lp-access-list dt:nth-of-type(5) + dd {
    font-size: 16px !important;
  }
  .lp-access-ic {
    width: 20px;
    height: 20px;
  }
  .lp-access-map iframe {
    height: 360px;
  }
}

/* === MENU CAROUSEL: polaroid-style cards with gold price pill ======= */
.lp-carousel-item {
  position: relative;
  padding: 10px 10px 14px !important;
  background: #fff !important;
  border: 1px solid rgba(176, 138, 95, 0.2) !important;
  box-shadow: 0 10px 24px rgba(83, 66, 48, 0.12) !important;
  transform: rotate(-1.4deg);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.lp-carousel-item:nth-child(even) {
  transform: rotate(1.6deg);
}

.lp-carousel-item:nth-child(3n) {
  transform: rotate(-0.8deg);
}

.lp-carousel-item.is-active {
  transform: scale(1.04) rotate(0deg) !important;
  box-shadow: 0 16px 34px rgba(83, 66, 48, 0.20) !important;
  z-index: 2;
  border-color: rgba(176, 138, 95, 0.4) !important;
}

.lp-carousel-item img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.lp-carousel-price {
  position: absolute !important;
  right: 16px !important;
  bottom: 18px !important;
  margin: 0 !important;
  padding: 6px 14px !important;
  background: linear-gradient(180deg, #d6b07a 0%, #b08a5f 100%) !important;
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 12px rgba(176, 138, 95, 0.4) !important;
  text-align: center !important;
}

@media (min-width: 760px) {
  .lp-carousel-price {
    font-size: 13px !important;
    padding: 7px 18px !important;
  }
}

/* === PROFILE MESSAGE: handwritten letter style (all Klee One) ======= */
.lp-profile-message {
  position: relative !important;
  padding: 36px 22px 28px !important;
  overflow: hidden;
  font-family: "Klee One", "Shippori Mincho B1", serif !important;
}

.lp-profile-message::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  left: 8px;
  font-family: "Cormorant Garamond", "Italiana", "Shippori Mincho B1", serif;
  font-size: 110px;
  line-height: 1;
  color: rgba(223, 110, 104, 0.16);
  pointer-events: none;
  z-index: 0;
  font-weight: 500;
}

.lp-profile-message > p {
  position: relative;
  z-index: 1;
  font-family: "Klee One", "Shippori Mincho B1", serif !important;
  font-size: 16.5px !important;
  font-weight: 500 !important;
  line-height: 1.95 !important;
  letter-spacing: 0.04em !important;
  color: #4a3826 !important;
}

.lp-profile-message p + p {
  margin-top: 18px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

@media (min-width: 760px) {
  .lp-profile-message {
    padding: 44px 32px 34px !important;
  }
  .lp-profile-message::before {
    font-size: 138px;
    top: -22px;
    left: 16px;
  }
  .lp-profile-message > p {
    font-size: 18px !important;
  }
}

/* === FAQ: breathable spacing + smooth open animation ================ */
.lp-faq-item {
  margin-bottom: 14px !important;
  border: 1px solid rgba(168, 206, 208, 0.7) !important;
  border-radius: 4px !important;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-faq-item[open] {
  border-color: rgba(168, 206, 208, 0.95) !important;
  box-shadow: 0 8px 22px rgba(50, 90, 95, 0.08);
}

.lp-faq-item summary {
  grid-template-columns: 34px 1fr !important;
  gap: 16px !important;
  padding: 18px 18px 18px 16px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  cursor: pointer;
}

.lp-faq-item[open] summary {
  border-bottom: 1px dashed rgba(168, 206, 208, 0.6);
}

.lp-faq-item[open] .lp-faq-q {
  background: var(--pink) !important;
}

.lp-faq-a {
  grid-template-columns: 34px 1fr !important;
  gap: 16px !important;
  padding: 18px 18px 22px 16px !important;
  background: rgba(255, 253, 249, 0.5);
}

.lp-faq-a p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 2 !important;
  color: #3b2c1d;
  letter-spacing: 0.02em;
}

@media (min-width: 760px) {
  .lp-faq-item summary {
    padding: 22px 24px 22px 22px !important;
    gap: 20px !important;
    font-size: 16px !important;
  }
  .lp-faq-a {
    padding: 22px 24px 26px 22px !important;
    gap: 20px !important;
  }
  .lp-faq-a p {
    font-size: 15.5px;
  }
}

/* === VOICE HEADING IMAGE: enlarged for impact ======================= */
.lp-voice-heading-img {
  display: block !important;
  width: 116% !important;
  max-width: none !important;
  margin: 6px -8% 8px !important;
}

@media (min-width: 760px) {
  .lp-voice-heading-img {
    width: 108% !important;
    margin: 8px -4% 12px !important;
  }
}

/* === VOICE BODY: paragraph spacing + remove first-letter color ====== */
.lp-voice-text p::first-letter {
  color: inherit !important;
}

.lp-voice-text p {
  margin: 0 0 12px !important;
}

.lp-voice-text p:last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 760px) {
  .lp-voice-text p {
    margin-bottom: 14px !important;
  }
}

/* === VOICE CITE: refined editorial signature ======================== */
.lp-voice-item .lp-voice-cite {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
  margin: 14px 0 22px !important;
  padding: 0 6px !important;
  text-align: right !important;
  font-family: "Shippori Mincho B1", "Yu Mincho", serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: 0.1em !important;
  line-height: 1 !important;
  color: var(--brown) !important;
}

.lp-voice-item .lp-voice-cite::before {
  content: "" !important;
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #b08a5f 100%);
  flex: 0 0 auto;
}

@media (min-width: 760px) {
  .lp-voice-item .lp-voice-cite {
    font-size: 18px !important;
    margin: 14px 0 22px !important;
    letter-spacing: 0.12em !important;
  }
  .lp-voice-item .lp-voice-cite::before {
    width: 40px;
  }
}

/* === VOICE TAGS: 悩みタグで自分事化 ================================ */
.lp-voice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: -2px 0 14px;
  padding: 0;
}

.lp-voice-tags li {
  display: inline-block;
  padding: 4px 11px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #b85852;
  background: #fcecea;
  border: 1px solid rgba(223, 110, 104, 0.18);
  border-radius: 999px;
  line-height: 1.5;
}

@media (min-width: 760px) {
  .lp-voice-tags li {
    font-size: 12.5px;
    padding: 5px 13px;
  }
}

/* === DIVIDER ARROW: full-width yellow chevron between sections ======= */
.lp-divider-arrow {
  order: 2 !important;
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0;
  background: var(--paper);
  line-height: 0;
}

.lp-divider-arrow img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}


/* === HAMBURGER ICON: original symmetric 3-bar (X animation kept) ===== */
.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle-bar:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

/* === HEADER: non-sticky (scrolls away with the page) ================ */
.lp-header {
  position: static !important;
  top: auto !important;
}

/* === BENEFITS CLOSING COPY (replaces removed pink CTA button) ======== */
.lp-benefits-closing {
  margin: 28px auto 0 !important;
  max-width: 520px;
  font-family: "Shippori Mincho B1", "Yu Mincho", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #4a3826;
  text-align: center;
}

@media (min-width: 760px) {
  .lp-benefits-closing {
    font-size: 19px;
    line-height: 2.1;
    margin-top: 36px !important;
  }
}

/* === SHIRYOU SECTION: qualification heading + diploma image ========== */
.lp-shiryou {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 36px !important;
}

.lp-shiryou-title-img {
  display: block !important;
  width: min(100%, 330px) !important;
  height: auto;
  margin: 0 auto 26px !important;
  border: 0 !important;
  box-shadow: none !important;
}

.lp-shiryou img:not(.lp-shiryou-title-img) {
  width: min(100%, 320px) !important;
  margin: 0 auto !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}

.lp-shiryou-caption {
  margin: 4px 0 0 !important;
  font-family: "Shippori Mincho B1", "Yu Mincho", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #4a3826;
  text-align: center;
}

.lp-shiryou-caption sup {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 1px;
}

@media (min-width: 760px) {
  .lp-shiryou-title-img {
    width: min(100%, 390px) !important;
    margin-bottom: 34px !important;
  }
  .lp-shiryou img:not(.lp-shiryou-title-img) {
    width: min(100%, 380px) !important;
  }
}

/* === PROFILE IMAGE: large hero portrait (per nail-mia reference) ====== */
.lp-profile-img {
  width: 100% !important;
  max-width: none !important;
  margin: 4px auto 22px !important;
  border-radius: 2px !important;
  box-shadow: 0 8px 28px rgba(83, 66, 48, 0.14) !important;
}

@media (min-width: 760px) {
  .lp-profile-img {
    width: min(100%, 560px) !important;
    margin: 6px auto 28px !important;
  }
}

/* PC viewport: scale up gracefully */
@media (min-width: 760px) {
  .lp-logo-text-name {
    font-size: 38px !important;
  }
  .lp-logo-text-region {
    font-size: 16px !important;
  }
  .lp-logo-text-meta {
    font-size: 10.5px !important;
  }
}

/* Small phone (≤430px): keep region visible, downsize Welina to fit */
@media (max-width: 430px) {
  .lp-logo-text-region,
  .lp-logo-text-divider {
    display: inline !important;
  }
  .lp-logo-text-name {
    font-size: 26px !important;
  }
  .lp-logo-text-region {
    font-size: 12.5px !important;
    letter-spacing: 0.04em !important;
  }
  .lp-logo-text-divider {
    font-size: 14px !important;
  }
  .lp-logo-text-main {
    gap: 6px !important;
  }
}

/* === Owner Bridge（理由直後のオーナー前出しブロック・装飾控えめ） === */
.lp-owner-bridge {
  order: 3;
  padding: 28px 0 24px;
}
.lp-owner-bridge-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 20px 18px 22px;
  background: #ffffff;
  border-left: 2px solid #df6e68;
}
.lp-owner-bridge-img {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.lp-owner-bridge-text {
  flex: 1;
  min-width: 0;
}
.lp-owner-bridge-role {
  margin: 0 0 2px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #b85852;
  font-weight: 500;
}
.lp-owner-bridge-name {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #3a2a28;
  letter-spacing: 0.04em;
}
.lp-owner-bridge-message {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: #5a4a47;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .lp-owner-bridge {
    padding: 24px 0 20px;
  }
  .lp-owner-bridge-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 0 18px;
    padding: 16px 18px;
    border-left-width: 2px;
  }
  /* <picture> 化により flex item が picture になったため、
     picture 自体に align-self: center を当てる（img の同指定はフォールバック） */
  .lp-owner-bridge-card > picture {
    align-self: center;
  }
  .lp-owner-bridge-img {
    width: 120px;
    height: 120px;
    align-self: center;
  }
  .lp-owner-bridge-text {
    width: 100%;
    text-align: center;
  }
  .lp-owner-bridge-message {
    font-size: 13px;
  }
}

