.lp-new {
  color: #0f172a;
  background: #fff;
  font-family: 'Inter', 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.lp-new a {
  text-decoration: none;
}

.lp-new .lp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ------------------------------
   共通セクション余白
------------------------------ */
.lp-new .lp-section-inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

.lp-new .lp-heading-center,
.lp-new .lp-center-copy {
  text-align: center;
}

.lp-new .lp-section-title {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.25;
}

.lp-new .lp-title-line {
  width: 80px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: #52a7c1;
}

.lp-new .lp-big-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.lp-new .lp-big-text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
  color: #475569;
}

.lp-new .lp-note {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: #64748b;
}

.lp-new .lp-desktop-break {
  display: none;
}

.lp-new .lp-desktop-only,
.lp-new .lp-desktop-only-inline {
  display: none;
}

/* button */
.lp-new .lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  transition: .2s ease;
}

.lp-new .lp-btn:hover {
  transform: translateY(-2px);
}

.lp-new .lp-btn-primary {
  padding: 14px 28px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(to bottom, #3BB4C6, #2A8FA0);
  box-shadow: 0px 11px 9.5px 0.5px rgba(0, 0, 0, 0.22);
}

.lp-new .lp-btn-orange {
  padding: 14px 28px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, rgba(230, 203, 30, 1) 0%, rgba(242, 148, 17, 1) 100%);
  box-shadow: 0px 11px 9.5px 0.5px rgba(0, 0, 0, 0.32);
}

.lp-new .lp-btn-white {
  padding: 14px 28px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

/* reveal */
.lp-new [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease 120ms, transform 600ms ease 120ms;
}

.lp-new [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* hero */
.lp-new .lp-hero {
  position: relative;
  overflow: hidden;
  background: #F4F5F7;
}

.lp-new .lp-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.95), rgba(244,245,247,.9) 45%, rgba(244,245,247,1) 100%);
}

.lp-new .lp-hero-grid {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 28px;
}

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

.lp-new .lp-hero-copy-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.lp-new .lp-hero-subtitle {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: #334155;
  letter-spacing: -0.02em;
}

.lp-new .lp-hero-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 560px);
  max-height: 140px;
  object-fit: contain;
  margin: 0;
}

.lp-new .lp-hero-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.lp-new .lp-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.lp-new .lp-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 92%;
  height: 12px;
  background: #FFE066;
  z-index: -1;
}

.lp-new .lp-hero-lead {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #334155;
}

.lp-new .lp-hero-text {
  margin: 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
  color: #475569;
}

.lp-new .lp-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

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

.lp-new .lp-hero-visual {
  display: none;
  position: relative;
  min-height: 390px;
}

.lp-new .lp-hero-card {
  position: absolute;
  overflow: hidden;
  background: #fff;
}

.lp-new .lp-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-new .lp-hero-card-small-top {
  left: 0;
  top: -18px;
  z-index: 10;
  width: 240px;
  height: 180px;
  border-radius: 32px;
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}

.lp-new .lp-hero-card-main {
  right: 0;
  top: 52px;
  z-index: 20;
  width: 500px;
  height: 360px;
  border-radius: 48px;
  box-shadow: 0 24px 56px rgba(15,23,42,.14);
}

.lp-new .lp-hero-card-small-bottom {
  left: 10px;
  bottom: -50px;
  z-index: 20;
  width: 230px;
  height: 152px;
  border-radius: 32px;
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}

.lp-new .lp-circle {
  position: absolute;
  border-radius: 999px;
}

.lp-new .lp-circle-blue {
  right: 40px;
  top: 6px;
  width: 72px;
  height: 72px;
  background: #E8F4F6;
}

.lp-new .lp-circle-orange {
  right: 32px;
  bottom: 6px;
  width: 56px;
  height: 56px;
  background: #FCE7D6;
}

/* news */
.lp-new .lp-news {
  background: #fff;
  border-bottom: 1px solid rgba(226,232,240,.8);
}

.lp-new .lp-news .lp-container {
  padding-top: 16px;
  padding-bottom: 16px;
}

.lp-new .lp-news-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-new .lp-news-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.lp-new .lp-news-more {
  font-size: 14px;
  font-weight: 700;
  color: #2A8FA0;
}

.lp-new .lp-news-list {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
}

.lp-new .lp-news-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(226,232,240,.8);
  transition: .2s ease;
}

.lp-new .lp-news-item:last-child {
  border-bottom: 0;
}

.lp-new .lp-news-item:hover {
  background: rgba(248,250,252,.7);
}

.lp-new .lp-news-item-empty {
  justify-content: center;
  color: #64748b;
  background: #fff;
  pointer-events: none;
}

.lp-new .lp-news-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 96px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
}

.lp-new .news-badge-campaign {
  background: #FFF7E6;
  color: #C27803;
  border: 1px solid #F5D7A1;
}

.lp-new .news-badge-update {
  background: #EAF2F8;
  color: #1E4F7A;
  border: 1px solid #C9DCEC;
}

.lp-new .news-badge-info {
  background: #F4F5F7;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.lp-new .lp-news-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
}

.lp-new .lp-news-item-text {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #334155;
}

.lp-new .lp-news-arrow {
  flex-shrink: 0;
  color: #94a3b8;
}

.lp-new .lp-mobile-more {
  margin-top: 12px;
}

/* generic sections */
.lp-new .lp-section-soft {
  border-top: 1px solid rgba(226,232,240,.8);
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.lp-new .lp-section-white,
.lp-new .lp-line-section {
  border-top: 1px solid rgba(226,232,240,.8);
  background: #fff;
}

/* step cards */
.lp-new .lp-step-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.lp-new .lp-step-wrap {
  position: relative;
}

.lp-new .lp-step-card {
  height: 100%;
  border-radius: 24px;
  border: 4px solid #9ab3d3;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
  transition: .2s ease;
}

.lp-new .lp-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}

.lp-new .lp-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-new .lp-step-icon {
  position: relative;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f8fbfc;
  border: 1px solid #d6e6eb;
  box-shadow: 0 4px 10px rgba(15,23,42,.04);
  flex-shrink: 0;
}

.lp-new .lp-step-icon::before,
.lp-new .lp-step-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.lp-new .lp-step-card:hover .lp-step-icon {
  transform: translateY(-1px);
  transition: .2s ease;
}

/* search */
.lp-new .lp-step-icon-search::before {
  width: 18px;
  height: 18px;
  border: 2.5px solid #2A8FA0;
  border-radius: 999px;
  left: 16px;
  top: 14px;
}

.lp-new .lp-step-icon-search::after {
  width: 10px;
  height: 2.5px;
  background: #2A8FA0;
  border-radius: 999px;
  transform: rotate(45deg);
  left: 30px;
  top: 31px;
}

/* phone */
.lp-new .lp-step-icon-phone::before {
  width: 18px;
  height: 18px;
  border: 2.5px solid #2A8FA0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 8px;
  transform: rotate(40deg);
  left: 18px;
  top: 16px;
}

.lp-new .lp-step-icon-phone::after {
  width: 8px;
  height: 8px;
  border-top: 2.5px solid #2A8FA0;
  border-right: 2.5px solid #2A8FA0;
  transform: rotate(12deg);
  right: 15px;
  top: 15px;
  border-radius: 2px;
}

/* folder */
.lp-new .lp-step-icon-folder::before {
  width: 24px;
  height: 15px;
  background: #2A8FA0;
  border-radius: 4px;
  left: 16px;
  top: 22px;
}

.lp-new .lp-step-icon-folder::after {
  width: 12px;
  height: 6px;
  background: #74c1cf;
  border-radius: 3px 3px 0 0;
  left: 18px;
  top: 17px;
}

.lp-new .lp-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #2A8FA0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(42,143,160,.20);
}

.lp-new .lp-step-title {
  margin: 24px 0 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lp-new .lp-step-text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
  color: #475569;
}

.lp-new .lp-step-arrow {
  display: none;
}

/* line section */
.lp-new .lp-line-section-inner {
  position: relative;
}

.lp-new .lp-line-content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  margin-top: 48px;
}

.lp-new .lp-line-phone {
  display: none;
  position: absolute;
  right: 6%;
  top: 180px;
  pointer-events: none;
}

.lp-new .lp-line-phone-inner {
  position: relative;
  width: 420px;
}

.lp-new .lp-line-phone-glow {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 80px;
  bottom: 32px;
  border-radius: 999px;
  background: rgba(42,143,160,.12);
  filter: blur(48px);
  z-index: -1;
}

.lp-new .lp-line-phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(15,23,42,.18));
}

.lp-new .lp-line-copy {
  max-width: 720px;
}

.lp-new .lp-line-box {
  margin-top: 32px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: #DCEAF8;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(15,23,42,.05);
}

.lp-new .lp-line-message {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15,23,42,.08);
  margin-bottom: 16px;
}

.lp-new .lp-line-message:last-child {
  margin-bottom: 0;
}

.lp-new .lp-line-tail {
  position: absolute;
  left: -6px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
}

.lp-new .lp-line-avatar {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #E6F2F7;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  flex-shrink: 0;
}

.lp-new .lp-line-body {
  flex: 1;
  min-width: 0;
}

.lp-new .lp-line-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #06C755;
}

.lp-new .lp-line-text {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  color: #334155;
}

.lp-new .lp-line-time {
  margin-top: 4px;
  white-space: nowrap;
  font-size: 11px;
  color: #94a3b8;
}

/* pricing */
.lp-new .lp-section-pricing {
  border-top: 1px solid #e2e8f0;
  background: #cae8f1;
}

.lp-new .lp-price-stack {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-new .lp-price-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  padding: 24px 20px;
  box-shadow: 0 24px 60px rgba(15,23,42,.10);
}

.lp-new .lp-price-grid {
  display: grid;
  gap: 24px;
}

.lp-new .lp-price-num-wrap {
  display: flex;
  align-items: flex-start;
}

.lp-new .lp-price-num {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid #52a7c1;
  color: #52a7c1;
  font-size: 28px;
  font-weight: 700;
}

.lp-new .lp-price-title {
  display: inline-block;
  margin: 0;
  border-bottom: 5px solid #fed169;
  font-size: 32px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.lp-new .lp-price-content {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.lp-new .lp-price-text {
  font-size: 17px;
  line-height: 1.95;
  font-weight: 600;
  color: #334155;
}

.lp-new .lp-price-text-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-new .lp-price-text-group p {
  margin: 0;
}

.lp-new .lp-price-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-new .lp-price-image {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
}

.lp-new .lp-price-note {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
  color: #334155;
}

/* guide */
.lp-new .lp-guide-grid {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.lp-new .lp-guide-card {
  position: relative;
}

.lp-new .lp-guide-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-new .lp-guide-num {
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  color: #64748b;
}

.lp-new .lp-guide-icon {
  position: relative;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(15,23,42,.04);
  flex-shrink: 0;
}

.lp-new .lp-guide-icon::before,
.lp-new .lp-guide-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.lp-new .lp-guide-card:hover .lp-guide-icon {
  transform: translateY(-1px);
  transition: .2s ease;
}

.lp-new .lp-guide-tone-emerald {
  background: rgba(16,185,129,.08);
  border-color: #d1fae5;
}

.lp-new .lp-guide-tone-sky {
  background: rgba(14,165,233,.08);
  border-color: #dbeafe;
}

.lp-new .lp-guide-tone-amber {
  background: rgba(245,158,11,.08);
  border-color: #fde68a;
}

/* user */
.lp-new .lp-guide-icon-user::before {
  width: 16px;
  height: 16px;
  border: 2.5px solid #475569;
  border-radius: 999px;
  left: 22px;
  top: 14px;
}

.lp-new .lp-guide-icon-user::after {
  width: 24px;
  height: 12px;
  border: 2.5px solid #475569;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  left: 18px;
  top: 33px;
}

/* edit */
.lp-new .lp-guide-icon-edit::before {
  width: 18px;
  height: 22px;
  border: 2.5px solid #475569;
  border-radius: 4px;
  left: 20px;
  top: 16px;
}

.lp-new .lp-guide-icon-edit::after {
  width: 14px;
  height: 2.5px;
  background: #475569;
  border-radius: 999px;
  transform: rotate(-45deg);
  left: 25px;
  top: 31px;
  box-shadow: 0 -6px 0 0 #475569;
}

/* handshake */
.lp-new .lp-guide-icon-handshake::before {
  width: 14px;
  height: 10px;
  border: 2.5px solid #475569;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  left: 15px;
  top: 25px;
  transform: rotate(12deg);
}

.lp-new .lp-guide-icon-handshake::after {
  width: 14px;
  height: 10px;
  border: 2.5px solid #475569;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  right: 15px;
  top: 25px;
  transform: rotate(-12deg);
}

.lp-new .lp-guide-title {
  margin: 24px 0 0;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lp-new .lp-guide-text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
  color: #475569;
}

.lp-new .lp-guide-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  margin-top: 28px;
}

.lp-new .lp-guide-bar-emerald {
  background: #a7f3d0;
}

.lp-new .lp-guide-bar-sky {
  background: #bae6fd;
}

.lp-new .lp-guide-bar-amber {
  background: #fde68a;
}

/* campaign */
.lp-new .lp-campaign {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(226,232,240,.8);
}

.lp-new .lp-campaign-bg {
  position: absolute;
  inset: 0;
}

.lp-new .lp-campaign-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-new .lp-campaign-overlay-white {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.60);
}

.lp-new .lp-campaign-overlay-gold {
  position: absolute;
  inset: 0;
  background: rgba(249,201,123,.20);
  mix-blend-mode: multiply;
}

.lp-new .lp-campaign-inner {
  position: relative;
}

.lp-new .lp-campaign-head {
  padding-top: 72px;
  padding-bottom: 0;
  text-align: center;
}

.lp-new .lp-campaign-body {
  padding-top: 48px;
  padding-bottom: 72px;
}

.lp-new .lp-campaign-card {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(255,255,255,.8);
  padding: 24px 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}

.lp-new .lp-campaign-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,.96), rgba(255,255,255,.72) 42%, rgba(255,255,255,.38) 100%);
}

.lp-new .lp-campaign-content {
  position: relative;
}

.lp-new .lp-campaign-top {
  position: relative;
  text-align: center;
}

.lp-new .lp-campaign-cracker {
  display: none;
  position: absolute;
  left: -80px;
  top: -12px;
  width: 320px;
  transform: rotate(-14deg);
  filter: drop-shadow(0 20px 40px rgba(15,23,42,.28));
  pointer-events: none;
}

.lp-new .lp-campaign-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-new .lp-campaign-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(to bottom, #E79B2E, #C97514);
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  box-shadow: 0 12px 30px rgba(201,117,20,.35);
}

.lp-new .lp-campaign-copy {
  margin-top: 32px;
  text-align: center;
}

.lp-new .lp-campaign-main {
  margin: 0;
  font-size: clamp(1.6rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #334155;
}

.lp-new .lp-campaign-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 6px 10px;
  margin: 10px 0 0;
  color: #334155;
}

.lp-new .lp-campaign-sub {
  font-size: clamp(1.3rem, 4.8vw, 3rem);
  line-height: 1;
  font-weight: 700;
}

.lp-new .lp-campaign-price {
  background: linear-gradient(to bottom, #F8C54B, #E39A17);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.6rem, 10vw, 6rem);
  line-height: 1;
  font-weight: 900;
}

.lp-new .lp-campaign-note-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.lp-new .lp-campaign-note-box {
  max-width: 720px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  padding: 18px 16px;
  text-align: left;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 500;
  color: #475569;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  backdrop-filter: blur(6px);
}

.lp-new .lp-campaign-note-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-new .lp-campaign-note-list p {
  margin: 0;
}

.lp-new .lp-campaign-note-list span {
  font-weight: 700;
  color: #334155;
}

.lp-new .lp-campaign-mobile-btn {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.lp-new .lp-campaign-mobile-btn .lp-btn {
  width: 100%;
  max-width: 320px;
}

/* proof */
.lp-new .lp-proof {
  border-top: 1px solid rgba(226,232,240,.8);
  background: #eaeef6;
}

.lp-new .lp-proof-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-new .lp-proof-text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  color: #475569;
}

.lp-new .lp-proof-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.lp-new .lp-proof-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,.06);
  transition: .3s ease;
}

.lp-new .lp-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.lp-new .lp-proof-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f8fafc;
}

.lp-new .lp-proof-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.lp-new .lp-proof-card:hover .lp-proof-image {
  transform: scale(1.04);
}

.lp-new .lp-proof-copy {
  padding: 18px 16px;
}

.lp-new .lp-proof-title {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lp-new .lp-proof-body {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  color: #475569;
}

/* register */
.lp-new .lp-register {
  border-top: 1px solid rgba(226,232,240,.8);
  background: #fff;
}

.lp-new .lp-register-inner {
  max-width: 980px;
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.lp-new .lp-register-text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  color: #475569;
}

.lp-new .lp-register-count-wrap {
  margin-top: 48px;
}

.lp-new .lp-register-count {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.lp-new .lp-register-count span {
  font-size: 70px;
  font-weight: 900;
  color: #2A8FA0;
}

.lp-new .lp-register-note {
  margin: 16px 0 0;
  font-size: 14px;
  color: #64748b;
}

/* contact */
.lp-new .lp-contact {
  position: relative;
  overflow: hidden;
}

.lp-new .lp-contact-bg {
  position: absolute;
  inset: 0;
}

.lp-new .lp-contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-new .lp-contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(58,166,191,.55), rgba(92,184,204,.45), rgba(110,198,214,.55));
  mix-blend-mode: multiply;
}

.lp-new .lp-contact-inner {
  position: relative;
  padding-top: 88px;
  padding-bottom: 88px;
  text-align: center;
  color: #fff;
}

.lp-new .lp-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-new .lp-contact-title-en {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .02em;
}

.lp-new .lp-contact-title-ja {
  margin: 0;
  font-size: 12px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.9);
}

.lp-new .lp-contact-text {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

.lp-new .lp-contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.lp-new .lp-contact-buttons .lp-btn {
  width: 100%;
  max-width: 320px;
}

/* tablet and desktop */
@media (min-width: 640px) {
  .lp-new .lp-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lp-new .lp-section-inner,
  .lp-new .lp-register-inner {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .lp-new .lp-campaign-head {
    padding-top: 88px;
    padding-bottom: 0;
  }

  .lp-new .lp-section-title {
    font-size: 40px;
  }

  .lp-new .lp-big-title {
    font-size: 42px;
  }

  .lp-new .lp-title-line {
    width: 112px;
    margin-top: 16px;
  }

  .lp-new .lp-desktop-only-inline {
    display: inline-flex;
  }

  .lp-new .lp-hero-grid {
    padding-top: 120px;
    padding-bottom: 32px;
  }

  .lp-new .lp-hero-logo {
    max-width: min(100%, 620px);
    max-height: 150px;
  }

  .lp-new .lp-hero-title {
    font-size: 52px;
  }

  .lp-new .lp-hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .lp-new .lp-hero-buttons .lp-btn {
    width: auto;
    min-width: 220px;
  }

  .lp-new .lp-btn-primary,
  .lp-new .lp-btn-orange,
  .lp-new .lp-btn-white {
    padding: 16px 34px;
    font-size: 16px;
  }

  .lp-new .lp-news-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .lp-new .lp-news-item {
    padding: 14px 20px;
  }

  .lp-new .lp-news-item-text {
    font-size: 14px;
  }

  .lp-new .lp-mobile-more {
    display: none;
  }

  .lp-new .lp-step-grid,
  .lp-new .lp-guide-grid {
    gap: 32px;
  }

  .lp-new .lp-line-content,
  .lp-new .lp-step-grid,
  .lp-new .lp-price-stack,
  .lp-new .lp-guide-grid,
  .lp-new .lp-proof-grid,
  .lp-new .lp-register-count-wrap {
    margin-top: 56px;
  }

  .lp-new .lp-line-box {
    padding: 24px;
  }

  .lp-new .lp-line-message {
    gap: 16px;
    padding: 20px;
  }

  .lp-new .lp-line-avatar {
    width: 40px;
    height: 40px;
  }

  .lp-new .lp-price-card {
    padding: 32px;
    border-radius: 34px;
  }

  .lp-new .lp-price-num {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .lp-new .lp-price-title {
    font-size: 44px;
  }

  .lp-new .lp-price-text {
    font-size: 18px;
  }

  .lp-new .lp-price-note {
    font-size: 18px;
  }

  .lp-new .lp-campaign-body {
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .lp-new .lp-campaign-card {
    border-radius: 32px;
    padding: 32px;
  }

  .lp-new .lp-campaign-badge {
    padding: 16px 30px;
    font-size: 24px;
  }

  .lp-new .lp-campaign-note-box {
    padding: 22px 24px;
    font-size: 14px;
  }

  .lp-new .lp-proof-grid {
    gap: 24px;
  }

  .lp-new .lp-proof-copy {
    padding: 20px;
  }

  .lp-new .lp-register-count {
    font-size: 52px;
  }

  .lp-new .lp-register-count span {
    font-size: 96px;
  }

  .lp-new .lp-contact-inner {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .lp-new .lp-contact-title-en {
    font-size: 52px;
  }

  .lp-new .lp-contact-title-ja {
    font-size: 14px;
  }

  .lp-new .lp-contact-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .lp-new .lp-contact-buttons .lp-btn {
    width: auto;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .lp-new .lp-desktop-break {
    display: inline;
  }

  .lp-new .lp-desktop-only {
    display: inline-flex;
  }

  .lp-new .lp-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-top: 120px;
    padding-bottom: 36px;
  }

  .lp-new .lp-hero-logo {
    max-width: 560px;
    max-height: 145px;
  }

  .lp-new .lp-hero-title {
    font-size: 60px;
  }

  .lp-new .lp-hero-lead {
    font-size: 26px;
  }

  .lp-new .lp-hero-text {
    font-size: 18px;
  }

  .lp-new .lp-hero-visual {
    display: block;
  }

  .lp-new .lp-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
  }

  .lp-new .lp-step-arrow {
    pointer-events: none;
    position: absolute;
    right: -18px;
    top: 50%;
    display: block;
    transform: translateY(-50%);
  }

  .lp-new .lp-step-arrow-line {
    width: 40px;
    height: 1px;
    background: #9ac3d5;
  }

  .lp-new .lp-step-arrow-head {
    width: 16px;
    height: 16px;
    border-top: 2px solid #9ac3d5;
    border-right: 2px solid #9ac3d5;
    transform: rotate(45deg);
    margin-left: 32px;
    margin-top: -9px;
  }

  .lp-new .lp-line-phone {
    display: block;
  }

  .lp-new .lp-price-card {
    padding: 64px 56px;
    border-radius: 40px;
  }

  .lp-new .lp-price-grid {
    grid-template-columns: 140px 1fr;
    gap: 48px;
  }

  .lp-new .lp-price-num-wrap {
    justify-content: center;
  }

  .lp-new .lp-price-num {
    width: 96px;
    height: 96px;
    font-size: 40px;
  }

  .lp-new .lp-price-content {
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center;
  }

  .lp-new .lp-price-image {
    max-width: 380px;
  }

  .lp-new .lp-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    margin-top: 56px;
  }

  .lp-new .lp-campaign-head {
    padding-top: 96px;
    padding-bottom: 0;
  }

  .lp-new .lp-campaign-body {
    padding-top: 56px;
    padding-bottom: 96px;
  }

  .lp-new .lp-campaign-card {
    border-radius: 36px;
    padding: 48px 56px;
  }

  .lp-new .lp-campaign-cracker {
    display: block;
  }

  .lp-new .lp-campaign-mobile-btn {
    display: none;
  }

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

  .lp-new .lp-register-inner {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .lp-new .lp-contact-inner {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .lp-new .lp-contact-title-en {
    font-size: 64px;
  }
}