:root {
  color-scheme: light;
  --green: #003250;
  --green-3: #7E913B;
  --green-2: #164b66;
  --leaf: #7e9aac;
  --cream: #f5f8f9;
  --paper: #ffffff;
  --ink: #132530;
  --muted: #5d6f79;
  --gold: #d6a742;
  --red: #ac0009;
  --line: #d7e1e6;
  --shadow: 0 18px 44px rgba(32, 27, 22, 0.14);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 50, 80, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(0, 50, 80, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

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

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

.fixed-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.fixed-cta a,
.main-button,
.sub-button {
  max-width: 400px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0;
  background: #ff5600;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.fixed-cta a {
  max-width: ;
}

.fixed-cta a:hover,
.main-button:hover,
.sub-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.main-button.dark {
  background: var(--green);
}

.sub-button {
  color: var(--green);
  background: var(--paper);
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 6px clamp(18px, 4vw, 56px);
  background: rgba(245, 248, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo img {
  width: 62px;
}

.lp-header nav {
  display: flex;
  gap: 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.section-pad {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 6vw, 86px);
  scroll-margin-top: 90px;
}

.section-checker {
  position: relative;
  overflow: hidden;
}

.section-checker::before,
.section-checker::after {
  position: absolute;
  z-index: 0;
  width: 100px;
  height: 100px;
  background:
    linear-gradient(45deg, var(--leaf) 25%, transparent 25% 75%, var(--leaf) 75%),
    linear-gradient(45deg, transparent 25%, rgba(126, 154, 172, 0.4) 25% 75%, transparent 75%);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
  content: "";
  opacity: 0.42;
}

.section-checker::before {
  top: 0;
  right: 0;
}

.section-checker::after {
  bottom: 0;
  left: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 46px) clamp(18px, 4vw, 64px);
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 18%, rgba(72, 130, 161, 0.62), transparent 30%),
    linear-gradient(122deg, #001c2d 0%, #003250 52%, #0e536f 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  gap: clamp(20px, 2.5vw, 38px);
  align-items: center;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-tsurukichi{
  position: absolute;
  top: 10px;
  right: 0;
  width: 200px;
}


.hero-eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 5px 16px;
  color: #001f32;
  font-size: clamp(20px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.12em;
  background: #fff;
  border-radius: 999px;
}

.tag,
.small-title {
  margin: 0 0 12px;
  color: var(--green);
  font-size: clamp(20px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.tag{
  text-align: left;
  font-size: 48px;
}

.small-title.light {
  color: #fff;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

h1 span {
  color: #ffe23a;
  background: linear-gradient(transparent 76%, rgba(255, 86, 0, 0.82) 0);
}

h2 {
  margin-bottom: 34px;
  color: var(--green);
  font-size: clamp(30px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
}

h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.25;
}

.lead {
  width: min(640px, 100%);
  margin-bottom: 13px;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 700;
  line-height: 1.65;
}

.hero-visual {
  align-self: end;
  min-height: 600px;
}

.hero-visual img {
  position: absolute;
  right: -18%;
  bottom: -72px;
  width: min(760px, 58vw);
  max-width: none;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.35));
}

.hero-brand {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
}

.hero-brand strong {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  color: #001f32;
  background: #ffe23a;
  border-radius: 6px;
  font-weight: 800;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(650px, 100%);
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: grid;
  justify-items: center;
  padding: 7px 5px;
  color: #001f32;
  line-height: 1.25;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.18);
}

.hero-benefits b {
  color: var(--red);
  font-size: clamp(32px, 1.5vw, 21px);
}

.hero-benefits span {
  font-size: 20px;
  font-weight: 800;
}

.hero-offer {
  width: min(650px, 100%);
  padding: 20px;
  color: #001f32;
  background: #fff;
  border: 4px solid #ffe23a;
  border-radius: 20px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

.hero-offer-label {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.hero-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.4vw, 18px);
  margin-bottom: 8px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.hero-price > span {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.25;
}

.hero-price del {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 23px);
}

.hero-price b {
  padding: 30px 24px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 48px);
  background: var(--red);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.hero-price b small,
.hero-price strong small {
  font-size: 0.42em;
}

.hero-price strong {
  color: var(--red);
  font-size: clamp(48px, 5vw, 68px);
  margin-bottom: 20px;
}

.hero-offer .main-button {
  padding: 20px 0;
  max-width: none;
  min-height: 60px;
  border-width: 2px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-offer .main-button span {
  margin-left: 10px;
}

.hero-offer > small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.sponsor-badge {
  position: absolute;
  top: -6%;
  right: -70px;
  z-index: 2;
  display: grid;
  padding: 14px 18px;
  color: #001f32;
  line-height: 1.25;
  text-align: center;
  background: #fff;
  border: 3px solid #ffe23a;
  border-radius: 16px;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(3deg);
}

.sponsor-badge span {
  font-size: 24px;
  font-weight: 800;
}

.sponsor-badge strong {
  font-size: clamp(48px, 2.5vw, 36px);
}

.sponsor-badge strong span{
  font-size: 24px;
}

.sponsor-badge b {
  margin-top: 4px;
  padding: 8px 16px;
  color: #fff;
  font-size: 32px;
  background: var(--red);
  border-radius: 5px;
}

.hero-visual-caption {
  position: absolute;
  left: -2%;
  bottom: 62px;
  z-index: 2;
  display: grid;
  padding: 10px 18px;
  color: #001f32;
  line-height: 1.35;
  text-align: center;
  background: #ffe23a;
  border: 3px solid #001f32;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(-2deg);
}

.hero-visual-caption span {
  font-size: 12px;
  font-weight: 800;
}

.hero-visual-caption strong {
  font-size: clamp(15px, 1.5vw, 20px);
}

.movie {
  background: var(--paper);
  text-align: center;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 22px;
}

.movie-grid article {
  min-height: 420px;
  padding: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--paper);
  background: linear-gradient(160deg, #001b2c, var(--green-2));
  border: 5px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.play {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 26px;
  padding-left: 6px;
  color: var(--green);
  font-family: system-ui, sans-serif;
  font-size: 34px;
  background: var(--paper);
  border-radius: 50%;
}

.movie-grid p {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.green-section {
  color: var(--paper);
  background:var(--green-3);
}

.green-section h2{
  color: var(--paper);
}


.green-section h3 {
  color: var(--green);
}

.support-cards,
.weapon-grid,
.sales-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-cards article,
.weapon-grid article,
.sales-grid article,
.voice-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 24px;
  box-shadow: 7px 7px 0 rgba(32, 27, 22, 0.95);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.support-cards article:hover,
.weapon-grid article:hover,
.sales-grid article:hover,
.voice-grid article:hover {
  transform: translate(4px, 4px);
  box-shadow: 3px 3px 0 rgba(32, 27, 22, 0.95);
}

.support-cards b,
.weapon-grid span {
  display: inline-block;
  color: var(--red);
  font-size: 24px;
  font-weight: 800;
}

.support-cards p,
.weapon-grid p,
.voice-grid p {
  color: var(--muted);
  font-weight: 700;
}

.recommend {
  text-align: center;
}

.worry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0 auto 46px;
  list-style: none;
}

.worry-list li {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 18px;
  color: var(--green);
  font-size: clamp(20px, 1.8vw, 22px);
  font-weight: 700;
  background: var(--paper);
  border: 3px solid var(--green);
  border-radius: 18px;
}


.solve-box {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 22px 34px;
  background: #eef5f8;
  border: 4px solid var(--green);
  border-radius: 999px;
}

.solve-box img {
  width: 96px;
}

.solve-box p {
  margin: 0;
  color: var(--green);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
}

.solve-box span {
  color: var(--red);
}

.campaign {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 130, 137, 0.26), transparent 80%),
    var(--paper);
}

.campaign-card {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 60px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 50, 80, 0.06), transparent 32%),
    var(--paper);
  border: 4px solid var(--green);
  border-radius: 28px;
  box-shadow: 10px 10px 0 rgba(0, 50, 80, 0.16);
}

.campaign-card::before {
  position: absolute;
  top: 15px;
  right: -56px;
  width: 190px;
  height: 42px;
  transform: rotate(35deg);
  background: var(--red);
  content: "";
  opacity: 0.95;
}

.campaign-card h2 {
  width: min(720px, 100%);
  margin: 0 auto;
  color: var(--green);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.22;
  background: transparent;
  font-weight: 800 !important;
}

.campaign-card h2 span {
  display: block;
  padding: 20px 20px;
  color: #ff5600;
  font-size: clamp(46px, 5vw, 79px);
  font-weight: 800;
}

.deadline {
  display: inline-block;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0 0 24px;
  padding: 20px 30px;
  color: var(--red);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  background: rgba(155, 37, 43, 0.08);
  border: 2px solid rgba(155, 37, 43, 0.24);
  border-radius: 999px;
}

.slots {
  display: block;
  width: min(900px, 100%);
  margin: 0 auto 26px;
  padding: 30px 20px;
  color: var(--green);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.5;
  background:
    linear-gradient(transparent 80%, rgba(192, 64, 0, 0.16) 70%),
    #f7fbfd;
  border: 3px solid var(--green);
  border-radius: 18px;
}

.slots del {
  color: var(--red);
  font-size: 1.08em;
  text-decoration-thickness: 5px;
}

.slots strong {
  color: var(--red);
  font-size: 1.5em;
  line-height: 0.8;
}

.campaign-button {
  min-width: min(520px, 100%);
  min-height: 68px;
  margin-bottom: 28px;
  font-size: clamp(22px, 2.8vw, 34px);
  background: #5A8DEE;
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-weight: 700;
}

.campaign-button::after {
  margin-left: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1em;
  content: "＞";
}

.campaign-button {
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.campaign-note {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--red);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
}

.campaign-note span {
  text-decoration: underline;
  text-decoration-color: rgba(155, 37, 43, 0.22);
  text-decoration-thickness: 9px;
  text-underline-offset: -3px;
}

.weapon {
  background: var(--cream);
}

.weapon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 42px;
}

.proposal-photo,
.area img,
.family img {
  width: min(1040px, 100%);
  margin: 0 auto;
  border: 5px solid var(--ink);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.family img{
    border: 5px solid #fff;
}

.sales-grid article {
  text-align: center;
}

.sales-grid h3 {
  color: var(--green);
}

.sales-grid strong {
  display: block;
  color: var(--red);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
}

.sales-grid small {
  color: var(--muted);
  font-weight: 800;
}

.fineprint {
  margin: 24px auto 0;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.voices {
  background: var(--paper);
}

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

.voice-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.voice-grid h3 {
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 700;
}

.voice-grid p {
  font-size: 17px;
}

.voice-grid b {
  color: var(--green);
  text-align: right;
  display: block;
}

.center-text {
  max-width: 760px;
  margin: -12px auto 28px;
  color: var(--muted);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.chat-box {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.chat-box div {
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 800;
  background: var(--paper);
  border: 3px solid var(--green);
  border-radius: 18px;
  box-shadow: 5px 5px 0 rgba(0, 50, 80, 0.2);
}

.chat-box b {
  color: var(--red);
}

.area {
  text-align: center;
  background: var(--paper);
}

.area p,
.family p {
  max-width: 900px;
  margin: -10px auto 30px;
  font-size: 20px;
  font-weight: 700;
}

.family {
  text-align: center;
}

.family img {
  max-height: 640px;
  object-fit: cover;
}

.final {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 50, 80, 0.14), transparent 30%),
    var(--cream);
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.cf7-entry {
  width: min(940px, 100%);
  margin: 34px auto 0;
  padding: clamp(22px, 4vw, 36px);
  text-align: left;
  background: rgba(255, 255, 255, 0.94);
  border: 4px solid var(--green);
  border-radius: 28px;
  box-shadow: 8px 8px 0 rgba(0, 50, 80, 0.16);
}

.cf7-label {
  margin: 0 0 22px;
  color: var(--green);
  text-align: center;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
}

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

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form .full {
  grid-column: 1 / -1;
}

.wpcf7-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 700;
}

.required {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  background: var(--red);
  border-radius: 999px;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 12px;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: 4px solid rgba(155, 37, 43, 0.16);
  border-color: var(--red);
}

.submit-row {
  text-align: center;
}

.wpcf7-submit {
  min-width: min(360px, 100%);
  min-height: 58px;
  padding: 0 28px;
  color: var(--paper);
  font: inherit;
  font-weight: 700;
  background: #009fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 6px 6px 0 var(--ink);
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.wpcf7-submit:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.contact {
  margin: 26px 0 0;
  color: var(--muted);
  font-weight: 800;
}

footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 18px 90px;
  color: var(--paper);
  background: #001f32;
}

footer img {
  width: 110px;
}

footer small {
  font-family: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  from {
    transform: translateY(0) rotate(-2deg);
  }

  to {
    transform: translateY(-16px) rotate(2deg);
  }
}

@media (max-width: 980px) {

  .lp-header nav {
    display: none;
  }

  .hero,
  .hero-inner,
  .support-cards,
  .weapon-grid,
  .sales-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-benefits,
  .hero-offer {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 530px;
    margin: 10px auto -42px;
  }

  .hero-visual img {
    right: 50%;
    bottom: -42px;
    width: min(680px, 100vw);
    transform: translateX(50%);
  }

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

@media (max-width: 680px) {
  .campaign-card::before{
    content: none;
  }

  .fixed-cta {
    right: 12px;
    left: 12px;
  }

  .fixed-cta a {
    width: 100%;
    max-width: 100%;
  }

  .logo img {
    width: 56px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-inner {
    gap: 16px;
  }

  h1 {
    font-size: clamp(34px, 7vw, 48px);
    line-height: 1.24;
  }

  .hero-tsurukichi{
    display: none;
  }

  .hero-benefits{
      grid-auto-flow: column;
  }

  .hero-brand strong {
    display: block;
    width: fit-content;
    margin: 5px auto 0;
  }

  .hero-benefits {
    gap: 5px;
  }

  .hero-benefits li {
    padding: 8px 2px;
  }

  .hero-benefits b {
    font-size: 15px;
  }

  .hero-benefits span {
    font-size: 10px;
  }

  .hero-offer {
    padding: 12px 10px 14px;
  }

  .hero-price {
    gap: 6px;
  }

  .hero-price strong {
    font-size: 58px;
    line-height: 1.2;
  }

  .hero-price b {
    padding: 8px;
    font-size: 30px;
  }

  .hero-visual {
    min-height: 400px;
    margin-bottom: -42px;
  }

  .hero-visual img {
    bottom: -42px;
    width: 520px;
  }

  .sponsor-badge {
    top: 2%;
    right: 0;
    padding: 9px 12px;
  }

  .sponsor-badge strong {
    font-size: 23px;
  }

  .hero-visual-caption {
    left: auto;
    right: 50%;
    bottom: 68px;
    width: max-content;
    max-width: 92%;
    padding: 8px 12px;
    transform: translateX(50%) rotate(-2deg);
  }

  .movie-grid,
  .worry-list,
  .voice-grid,
  .wpcf7-form {
    grid-template-columns: 1fr;
  }

  .movie-grid article {
    min-height: 300px;
  }

  .solve-box {
    flex-direction: column;
    border-radius: 28px;
  }

  .entry-actions {
    display: grid;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--paper);
  background: #003250;
}

.hero::before {
  content: none;
}

.hero-picture {
  display: block;
  width: 100%;
}

.hero-picture img {
  width: 100%;
  height: auto;
}

.hero-cta {
  position: absolute;
  top: 73.8%;
  left: 51.8%;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34.5%;
  min-height: clamp(58px, 6.2vw, 120px);
  padding: 0 clamp(20px, 3vw, 72px);
  color: #fff;
  font-size: clamp(24px, 2.6vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  background: #5a8dee;
  border-radius: 999px;
  box-shadow: 0 clamp(5px, 0.7vw, 16px) clamp(8px, 0.9vw, 18px) rgba(0, 0, 0, 0.45);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), filter 220ms var(--ease);
}

.hero-cta:hover {
  transform: translateY(3px);
  filter: brightness(1.04);
  box-shadow: 0 clamp(3px, 0.45vw, 10px) clamp(6px, 0.7vw, 14px) rgba(0, 0, 0, 0.42);
}

.hero-cta {
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 767px) {
  .hero-cta {
    top: 40.4%;
    left: 10.4%;
    width: 79%;
    min-height: clamp(54px, 14vw, 106px);
    padding: 0 clamp(18px, 5vw, 40px);
    font-size: clamp(22px, 7vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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


.sales-case {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.sales-person {
  margin-bottom: 30px;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
}

.sales-row {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 20px;
  align-items: center;
}

.sales-before,
.sales-after {
  position: relative;
  padding: 60px 30px 40px;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(0,0,0,.15);
}

.label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 30px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
}

.before {
  background: #aaa;
  color: #fff;
}

.after {
  background: #ac0009;
  color: #fff;
}

.sales-before p,
.sales-after p {
  margin-bottom: 20px;
  color: #333;
  font-size: 22px;
  font-weight: 700;
}

.amount {
  color: #222;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
}

.amount span {
  font-size: 80px;
    color: #ff2d9a;
}

.sales-before .amount span{
  font-size: 64px;
   color: #998790;
}

.sales-arrow {
  text-align: center;
  font-size: 70px;
  color: #fff;
  font-weight: 800;
}

@media(max-width:768px){

  .sales-row{
    grid-template-columns:1fr;
  }

  .sales-arrow{
    transform:rotate(90deg);
    font-size:50px;
  }

  .amount span{
    font-size:64px;
  }

  .sales-person{
    font-size:28px;
  }

}


.reveal{
	opacity: 1;
}

/* add 260722 */

@media (max-width: 767px){
  .worry-list li{
    padding: 0;
    min-height: 70px;
  }

  .sales-person{
    line-height: 1.3;
  }
}