:root {
  --navy: #07324a;
  --blue: #0d8cc7;
  --sky: #d9f5ff;
  --sky-strong: #c8eef8;
  --orange: #ff3d12;
  --yellow: #ffe300;
  --yellow-soft: #fff6a8;
  --green: #06c755;
  --green-dark: #078a3e;
  --black: #111111;
  --text: #123244;
  --muted: #6a747a;
  --white: #ffffff;
  --paper: #f7f7f7;
  --line: #d9e7ec;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #eeeeee;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

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

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

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

.lp {
  position: relative;
  width: min(430px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.06), 0 24px 80px rgba(17, 17, 17, 0.16);
}

.lp-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}

.header-cta {
  padding: 8px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(17, 17, 17, 0.18);
}

.hero {
  background:
    linear-gradient(rgba(217, 245, 255, 0.86), rgba(217, 245, 255, 0.86)),
    radial-gradient(circle at 18% 18%, #ffffff 0 12%, transparent 13%),
    radial-gradient(circle at 80% 38%, #ffffff 0 10%, transparent 11%),
    var(--sky);
}

.support-proof {
  padding: 15px 14px 8px;
  text-align: center;
  background: var(--white);
}

.support-proof span {
  display: inline;
  color: var(--black);
  background: linear-gradient(transparent 58%, var(--yellow-soft) 58%);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.4;
}

.hero-panel {
  position: relative;
  margin: 0 12px;
  padding: 18px 18px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(13, 140, 199, 0.2);
}

.hero-ribbon {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 9px 14px;
  color: var(--white);
  text-align: center;
  background: var(--blue);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.3;
}

.hero-target {
  margin-bottom: 7px;
  text-align: center;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.45;
}

.hero h1 {
  margin-bottom: 9px;
  color: var(--blue);
  text-align: center;
  font-size: 40px;
  font-weight: 950;
  line-height: 1.16;
}

.wave {
  width: 100%;
  height: 14px;
  margin-bottom: 12px;
  background:
    radial-gradient(circle at 8px 6px, transparent 8px, var(--blue) 9px, transparent 10px) 0 0 / 24px 12px repeat-x;
  opacity: 0.82;
}

.hero-message {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(100%, 326px);
  margin-bottom: 14px;
}

.hero-message span,
.hero-message strong {
  display: block;
  width: fit-content;
  padding: 6px 10px;
  font-weight: 950;
  line-height: 1.2;
}

.hero-message span {
  color: var(--navy);
  background: var(--white);
  font-size: 18px;
}

.hero-message strong {
  color: var(--white);
  background: var(--blue);
  font-size: 26px;
  text-align: left;
}

.hero-photo {
  position: relative;
  height: 360px;
  margin: -14px -18px 0;
  overflow: hidden;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(217, 245, 255, 0.3), rgba(255, 255, 255, 0.05));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-photo ul {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 116px;
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
  transform: rotate(-7deg);
}

.hero-photo li {
  width: fit-content;
  padding: 2px 8px 4px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 4px solid var(--blue);
  font-size: 22px;
  font-weight: 950;
}

.medal-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: -78px;
  padding: 0 2px 22px;
}

.medal {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  padding: 12px 6px;
  text-align: center;
  background:
    radial-gradient(circle at 38% 25%, #ffffff 0 20%, #fff8dc 38%, #e9d594 62%, #b7892b 100%);
  border: 5px solid #b99539;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.78),
    inset 0 -10px 18px rgba(150, 108, 23, 0.16),
    0 8px 18px rgba(76, 54, 10, 0.22);
}

.medal span,
.medal strong {
  display: block;
  line-height: 1.1;
}

.medal span {
  color: #47423a;
  font-size: 11px;
  font-weight: 900;
}

.medal strong {
  margin-top: 5px;
  color: #ff3b12;
  font-size: 21px;
  font-weight: 950;
}

.medal:nth-child(3) strong {
  font-size: 18px;
}

.cta-block {
  position: relative;
  padding: 30px 24px 36px;
  text-align: center;
  background: #f5f5f5;
}

.cta-block p {
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 27px;
  font-weight: 950;
  line-height: 1.2;
}

.cta-block p::before,
.cta-block p::after {
  color: var(--blue);
  content: "\\";
  margin: 0 7px;
}

.cta-block p::after {
  content: "/";
}

.line-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 38px 14px 50px;
  color: var(--white);
  background: #06c755 !important;
  background-image: linear-gradient(180deg, #09df64 0%, #05cc58 54%, #04bb50 100%) !important;
  background-repeat: no-repeat;
  border: 8px solid var(--white);
  border-radius: 20px;
  box-shadow:
    0 7px 0 rgba(88, 88, 88, 0.82),
    0 18px 24px rgba(17, 17, 17, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.52) inset;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.12;
  overflow: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: cta-breathe 2.35s ease-in-out infinite;
}

.line-button::before {
  display: none;
}

.line-button::after {
  position: absolute;
  right: 15px;
  z-index: 2;
  content: ">";
  color: var(--white);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 3px 0 rgba(0, 100, 42, 0.32);
  animation: arrow-slide 1.05s ease-in-out infinite;
}

.line-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  padding: 7px;
  background: var(--white);
  border-radius: 18px;
  box-shadow:
    0 4px 0 rgba(0, 116, 48, 0.34),
    0 0 0 2px rgba(255, 255, 255, 0.98) inset;
  animation: line-icon-pop 2.35s ease-in-out infinite;
}

.line-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 13px;
}

.yen-badge {
  position: absolute;
  top: -23px;
  left: -8px;
  display: grid;
  z-index: 3;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow:
    0 6px 14px rgba(17, 17, 17, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  font-size: 27px;
  font-weight: 950;
  animation: yen-pulse 1.5s ease-in-out infinite;
}

.line-copy {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 0;
  min-width: 0;
  flex: 0 1 auto;
  text-align: center;
  transform: translateY(-7px);
}

.line-copy small {
  color: #e9ff7a;
  text-shadow: 0 1px 0 rgba(0, 70, 30, 0.22);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  transform: translateY(-4px);
}

.line-copy strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(0, 99, 40, 0.32),
    0 0 12px rgba(255, 255, 255, 0.14);
}

.condition-section {
  padding: 42px 18px 32px;
  text-align: center;
  background: var(--sky);
}

.condition-section h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.55;
}

.condition-section em {
  color: var(--orange);
  background: linear-gradient(transparent 56%, var(--yellow) 56%);
  font-style: normal;
  font-size: 33px;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.condition-grid div {
  display: grid;
  min-height: 76px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--yellow);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
}

.condition-section > p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
}

.case-section {
  padding: 34px 18px;
  background: var(--sky);
}

.case-section h2,
.job-section h2,
.voice-section h2,
.faq-section h2,
.flow-section h2 {
  margin-bottom: 24px;
  text-align: center;
  color: var(--navy);
  font-size: 29px;
  font-weight: 950;
  line-height: 1.35;
}

.case-section h2 span {
  display: block;
  color: var(--orange);
  font-size: 18px;
}

.success-card {
  padding: 22px 18px 24px;
  margin-bottom: 28px;
  background: var(--white);
  border-right: 7px solid var(--yellow);
  border-bottom: 7px solid var(--yellow);
}

.success-card h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.45;
}

.success-card mark {
  color: var(--white);
  background: var(--orange);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 4px;
}

.case-image {
  position: relative;
  height: 184px;
  margin-bottom: 12px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.success-card:nth-of-type(1) .case-image img {
  object-position: 50% center;
}

.success-card:nth-of-type(2) .case-image img {
  object-position: 55% center;
}

.success-card:nth-of-type(3) .case-image img {
  object-position: 52% center;
}

.case-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  color: var(--white);
  background: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.case-route {
  position: relative;
  margin: 0 18px 14px;
  text-align: center;
  color: var(--navy);
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.38;
}

.case-route::before,
.case-route::after {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 3px;
  content: "";
  background: var(--navy);
}

.case-route::before {
  left: -28px;
  transform: rotate(55deg);
}

.case-route::after {
  right: -28px;
  transform: rotate(-55deg);
}

.salary-visual {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 104px;
  gap: 6px;
  align-items: end;
  margin-bottom: 18px;
}

.salary-before,
.salary-after {
  display: grid;
  align-content: end;
  min-height: 132px;
  padding: 10px 4px;
  text-align: center;
}

.salary-before::before,
.salary-after::before {
  display: block;
  width: 56px;
  margin: 0 auto 8px;
  content: "";
  background: linear-gradient(#d3d3d3, #efefef);
}

.salary-before::before {
  height: 66px;
}

.salary-after::before {
  height: 102px;
  background: linear-gradient(#ff3d12, #ffe300);
}

.salary-visual span {
  display: block;
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.18;
}

.salary-visual strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.18;
}

.salary-arrow {
  align-self: center;
  color: var(--yellow);
  font-size: 42px;
  font-weight: 950;
}

.up-circle {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  padding: 10px 8px;
  color: var(--navy);
  text-align: center;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.96) 0 20%, transparent 21%),
    radial-gradient(circle at 50% 46%, #fffdf3 0 42%, #f7ebc5 62%, #dbc07a 100%);
  border: 6px solid #b89432;
  border-radius: 50%;
  box-shadow:
    0 4px 0 #7b6221,
    0 10px 18px rgba(17, 17, 17, 0.18),
    inset 0 0 0 4px #fff8db,
    inset 0 0 0 7px rgba(137, 107, 36, 0.24);
}

.up-circle::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px dotted rgba(7, 50, 74, 0.35);
  border-radius: 50%;
}

.up-circle::after {
  position: absolute;
  inset: 5px;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 34%, rgba(255, 255, 255, 0.28) 58%, transparent 74%);
  border-radius: 50%;
  pointer-events: none;
}

.up-circle span,
.up-circle strong {
  position: relative;
  z-index: 1;
}

.up-circle strong {
  color: var(--orange);
  font-size: 23px;
  line-height: 1.05;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.92);
}

.up-circle em {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 15px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.case-copy {
  margin-bottom: 16px;
  color: var(--black);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.78;
}

.success-card small {
  color: #777;
  font-size: 12px;
  font-weight: 700;
}

.worry-section {
  padding: 34px 16px 40px;
  background: linear-gradient(180deg, var(--sky), #b7c0c5);
}

.speech-title {
  position: relative;
  padding: 22px 18px;
  margin-bottom: 26px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
  border-radius: 44px;
}

.speech-title::after {
  position: absolute;
  right: 50%;
  bottom: -17px;
  width: 34px;
  height: 34px;
  content: "";
  background: var(--navy);
  transform: translateX(50%) rotate(45deg);
}

.speech-title span,
.speech-title strong {
  position: relative;
  z-index: 1;
  display: block;
}

.speech-title span {
  font-size: 16px;
  font-weight: 800;
}

.speech-title strong {
  font-size: 26px;
  font-weight: 950;
  line-height: 1.45;
}

.worry-clouds {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.worry-clouds p {
  width: fit-content;
  max-width: 96%;
  margin: 0;
  padding: 14px 18px;
  color: var(--black);
  text-align: center;
  background: var(--yellow-soft);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 950;
}

.worry-clouds p:nth-child(even) {
  justify-self: end;
}

.risk-section {
  padding: 44px 18px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(80, 80, 80, 0.88), rgba(80, 80, 80, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 14px);
}

.risk-section > p:first-child {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 950;
}

.risk-section h2 {
  margin-bottom: 22px;
  padding: 20px 16px;
  color: var(--yellow-soft);
  background: var(--navy);
  font-size: 27px;
  font-weight: 950;
  line-height: 1.45;
}

.risk-box {
  padding: 20px 18px;
  margin-bottom: 20px;
  color: var(--black);
  background: var(--white);
}

.risk-box strong,
.risk-box span {
  display: block;
}

.risk-box strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 950;
}

.risk-box span {
  color: var(--orange);
  font-size: 21px;
  font-weight: 950;
}

.risk-copy {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 900;
}

.agent-section {
  padding: 42px 18px;
  background: #f5f5f5;
  text-align: center;
}

.agent-lead {
  width: fit-content;
  margin: 0 auto 8px;
  padding: 7px 26px;
  color: var(--white);
  background: var(--blue);
  font-size: 20px;
  font-weight: 950;
}

.agent-section h2 {
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.16;
}

.agent-card,
.support-menu {
  padding: 24px 18px;
  margin-bottom: 20px;
  background: var(--white);
}

.agent-card h3,
.support-menu h3 {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--blue);
  font-size: 22px;
  font-weight: 950;
}

.agent-card p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.85;
}

.support-menu {
  text-align: left;
}

.support-menu ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-menu li {
  position: relative;
  padding-left: 28px;
  color: var(--black);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.55;
}

.support-menu li::before {
  position: absolute;
  left: 0;
  color: var(--yellow);
  content: "●";
}

.reason-section {
  padding: 0 18px 38px;
  background: #f5f5f5;
}

.reason-section h2 {
  position: relative;
  margin: 0 -18px 42px;
  padding: 34px 18px;
  color: var(--white);
  text-align: center;
  background: #19aedd;
  font-size: 29px;
  font-weight: 950;
  line-height: 1.45;
}

.reason-section h2::after {
  position: absolute;
  right: 50%;
  bottom: -22px;
  width: 44px;
  height: 44px;
  content: "";
  background: #19aedd;
  transform: translateX(50%) rotate(45deg);
}

.reason-card {
  position: relative;
  padding: 34px 20px 24px;
  margin-bottom: 28px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 8px;
}

.reason-card span {
  position: absolute;
  top: -22px;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 950;
  transform: translateX(-50%);
}

.reason-card h3 {
  margin-bottom: 14px;
  color: var(--black);
  text-align: center;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.45;
}

.reason-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.proof-section {
  padding: 44px 18px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)),
    var(--yellow-soft);
}

.proof-section > p {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 8px 26px;
  color: var(--white);
  background: #19aedd;
  font-size: 25px;
  font-weight: 950;
}

.proof-section h2 {
  margin-bottom: 24px;
  color: var(--orange);
  text-shadow: 2px 2px 0 var(--white);
  font-size: 33px;
  font-weight: 950;
  line-height: 1.36;
}

.proof-numbers {
  display: grid;
  gap: 10px;
}

.proof-numbers div {
  padding: 14px;
  color: var(--white);
  background: var(--orange);
}

.proof-numbers span,
.proof-numbers strong {
  display: block;
  line-height: 1.2;
}

.proof-numbers span {
  font-size: 16px;
  font-weight: 800;
}

.proof-numbers strong {
  font-size: 31px;
  font-weight: 950;
}

.cta-middle,
.cta-bottom {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.job-section {
  padding: 42px 18px;
  background: #f3f3f3;
}

.job-section h2 {
  color: var(--yellow-soft);
  background: var(--navy);
  padding: 22px 14px;
  margin: 0 -18px 28px;
}

.job-card {
  margin-bottom: 24px;
  padding-bottom: 22px;
  background: var(--white);
  border: 3px solid #1aafd8;
}

.job-photo {
  height: 175px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    url("./assets/case-woman-office.jpg") center / cover;
}

.job-photo.alt {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("./assets/hero-consultation.png");
  background-position: 60% center;
}

.job-photo.third {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("./assets/case-man-office.jpg");
  background-position: center;
}

.job-card h3 {
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 22px 20px 18px;
  padding: 7px 14px;
  color: var(--white);
  background: #1aafd8;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.35;
}

.job-card ul {
  display: grid;
  gap: 8px;
  padding: 0 22px;
  margin: 0;
  list-style: none;
}

.job-card li {
  position: relative;
  padding-left: 30px;
  color: var(--black);
  font-size: 20px;
  font-weight: 950;
}

.job-card li::before {
  position: absolute;
  left: 0;
  color: #1aafd8;
  content: "✓";
}

.voice-section {
  padding: 44px 18px;
  background: #fffbd8;
}

.voice-card {
  position: relative;
  padding: 54px 22px 24px;
  margin-bottom: 28px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 10px;
  box-shadow: 8px 8px 0 rgba(255, 61, 18, 0.16);
}

.voice-card span {
  position: absolute;
  top: -2px;
  right: -2px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 0 8px 0 8px;
  font-size: 16px;
  font-weight: 950;
}

.voice-card h3 {
  display: inline;
  color: var(--white);
  background: linear-gradient(90deg, #f3a82f, var(--orange));
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 1px 6px;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.65;
}

.voice-card p {
  margin: 24px 0 0;
  color: var(--black);
  border-top: 2px dotted var(--navy);
  padding-top: 18px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.85;
}

.anxiety-section {
  padding: 42px 18px;
  background: #eeeeee;
}

.anxiety-section h2 {
  margin: 0 -18px 28px;
  padding: 26px 18px;
  color: var(--yellow-soft);
  text-align: center;
  background: var(--navy);
  font-size: 27px;
  font-weight: 950;
  line-height: 1.45;
}

.chat-list {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.chat-list p {
  position: relative;
  width: 88%;
  margin: 0;
  padding: 16px 18px;
  color: var(--black);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.12);
  font-size: 18px;
  font-weight: 900;
}

.chat-list p:nth-child(even) {
  justify-self: end;
}

.answer-box {
  padding: 24px 18px;
  background: var(--white);
  border-top: 6px solid var(--yellow);
}

.answer-box h3 {
  margin-bottom: 14px;
  text-align: center;
  color: var(--black);
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
  font-size: 32px;
  font-weight: 950;
}

.answer-box p {
  margin-bottom: 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 850;
}

.notice-section {
  padding: 42px 18px;
  background:
    repeating-linear-gradient(-45deg, #111111 0 10px, var(--yellow) 10px 20px) top / 100% 28px no-repeat,
    repeating-linear-gradient(-45deg, #111111 0 10px, var(--yellow) 10px 20px) bottom / 100% 28px no-repeat,
    var(--yellow);
}

.notice-section h2 {
  margin: 26px 0 20px;
  color: var(--orange);
  text-align: center;
  background: linear-gradient(transparent 58%, var(--yellow-soft) 58%);
  font-size: 31px;
  font-weight: 950;
}

.notice-section p {
  padding: 24px 18px;
  margin-bottom: 26px;
  color: var(--navy);
  text-align: center;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 850;
}

.flow-section {
  padding: 42px 18px;
  background: var(--sky);
}

.flow-section ol {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-section li {
  position: relative;
  padding: 24px 18px;
  text-align: center;
  background: var(--white);
}

.flow-section li::after {
  position: absolute;
  right: 50%;
  bottom: -26px;
  width: 0;
  height: 0;
  content: "";
  border-top: 26px solid #1aafd8;
  border-right: 26px solid transparent;
  border-left: 26px solid transparent;
  transform: translateX(50%);
}

.flow-section li:last-child::after {
  display: none;
}

.flow-section li span {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 36px;
  color: var(--white);
  background: #1aafd8;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 950;
}

.flow-section li strong {
  display: block;
  color: var(--navy);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.45;
}

.faq-section {
  padding: 42px 22px 116px;
  background: var(--white);
}

.faq-section h2 {
  color: var(--navy);
}

.qa {
  padding: 22px 0;
  border-bottom: 2px dotted #999;
}

.qa h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.55;
}

.qa p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.qa strong {
  color: #27bfd0;
  margin-right: 6px;
}

.lp-footer {
  padding: 28px 18px 116px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}

.lp-footer p {
  margin-bottom: 8px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lp-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.legal-page {
  background: #f6f8f9;
}

.legal-page .lp-header {
  position: sticky;
}

.legal-hero {
  padding: 42px 22px 32px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 50, 74, 0.95), rgba(8, 77, 104, 0.94)),
    radial-gradient(circle at 28% 14%, rgba(255, 227, 0, 0.3), transparent 32%);
}

.legal-hero p {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.32;
}

.legal-hero span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.legal-content {
  padding: 28px 20px 72px;
  background: var(--white);
}

.legal-content > p,
.legal-content li,
.legal-content dd,
.company-note p {
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.9;
}

.legal-content > p {
  margin-bottom: 24px;
}

.legal-content h2,
.company-note h2 {
  padding-bottom: 8px;
  margin: 30px 0 12px;
  color: var(--navy);
  border-bottom: 3px solid var(--yellow);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.45;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
  margin: 0 0 18px;
}

.legal-content a {
  color: var(--blue);
  overflow-wrap: anywhere;
  font-weight: 850;
}

.legal-list,
.company-table {
  display: grid;
  gap: 0;
  margin: 14px 0 24px;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.legal-list div,
.company-table div {
  display: grid;
  grid-template-columns: 112px 1fr;
  border-bottom: 1px solid var(--line);
}

.legal-list dt,
.legal-list dd,
.company-table dt,
.company-table dd {
  margin: 0;
  padding: 13px 12px;
}

.legal-list dt,
.company-table dt {
  color: var(--navy);
  background: #eef8fb;
  font-size: 13px;
  font-weight: 950;
}

.legal-list dd,
.company-table dd {
  background: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.legal-contact {
  display: grid;
  gap: 6px;
  padding: 16px;
  margin: 14px 0 26px;
  background: #f3fbfd;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
}

.legal-contact strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
}

.company-note {
  padding: 2px 0 4px;
}

.text-link {
  display: inline-block;
  margin-top: 4px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-back {
  display: grid;
  min-height: 52px;
  place-items: center;
  margin-top: 32px;
  color: var(--white) !important;
  background: var(--black);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.18);
  font-size: 15px;
  font-weight: 950;
}

.fixed-cta {
  position: fixed;
  z-index: 40;
  right: 50%;
  bottom: 10px;
  width: min(386px, calc(100vw - 24px));
  opacity: 0;
  pointer-events: none;
  transform: translateX(50%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fixed-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}

.line-button.compact {
  min-height: 66px;
  border-radius: 999px;
  padding: 9px 34px 9px 52px;
  font-size: 17px;
  border-width: 6px;
}

.line-button.compact::after {
  display: block;
  right: 14px;
  font-size: 26px;
}

.line-button.compact .line-icon {
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 13px;
}

.line-button.compact .yen-badge {
  top: -13px;
  left: -4px;
  width: 48px;
  height: 48px;
  border-width: 4px;
  font-size: 18px;
}

.line-button.compact .line-copy small {
  font-size: 9px;
}

.line-button.compact .line-copy strong {
  font-size: 16px;
}

.line-button.compact .line-copy {
  transform: translateY(-5px);
}

@keyframes cta-shine {
  0%,
  34% {
    transform: translateX(-130%) skewX(-12deg);
  }

  70%,
  100% {
    transform: translateX(130%) skewX(-12deg);
  }
}

@keyframes cta-breathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

@keyframes arrow-slide {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(7px);
  }
}

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

  48% {
    transform: scale(1.07);
  }
}

@keyframes line-icon-pop {
  0%,
  100% {
    transform: scale(1);
  }

  52% {
    transform: scale(1.035);
  }
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 227, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff, #f2fbf5);
}

.redirect-card {
  width: 100%;
  padding: 34px 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(6, 199, 85, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}

.redirect-card img {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  object-fit: contain;
  border-radius: 10px;
}

.redirect-card p {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 950;
}

.redirect-card h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.4;
}

.redirect-button {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(17, 17, 17, 0.2);
  font-size: 16px;
  font-weight: 950;
}

@media (min-width: 740px) {
  .lp {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 36px;
  }

  .line-button {
    padding-right: 38px;
    padding-left: 50px;
  }

  .line-copy strong {
    font-size: 19px;
  }

  .hero-message strong {
    font-size: 24px;
  }

  .salary-visual {
    grid-template-columns: 1fr 28px 1fr;
  }

  .up-circle {
    grid-column: 1 / -1;
    width: 112px;
    justify-self: center;
  }
}
