@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@700&family=Noto+Sans+JP:wght@100..900&display=swap');


/* ===========================================
   BASE
=========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1c1c1e;
  background-color: #f5f7fa;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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


/* ===========================================
   PARTS
=========================================== */
/* H2 */
.common-h2-wrap {
  position: relative;
  padding: 32px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.common-h2-subtitle {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1d448e;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.common-h2-heading {
  font-size: 40px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1.6;
  letter-spacing: 3.2px;
  text-align: center;
  font-feature-settings: 'palt';
  white-space: nowrap;
}
.common-h2-heading br.sp-only {
  display: none;
}

.common-h2-wrap > span {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  background-image: url(/images/lp_qr/h2_corner-obj.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.common-h2-wrap > span:nth-of-type(1) {
  top: 0;
  left: 0;
}
.common-h2-wrap > span:nth-of-type(2) {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}
.common-h2-wrap > span:nth-of-type(3) {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}
.common-h2-wrap > span:nth-of-type(4) {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}


/* CTA block */
.sec__cta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 12px;
}

.sec__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}

/* Base button style */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 68px;
  width: 224px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.02px;
  font-feature-settings: 'palt';
  flex-shrink: 0;
  transition: 0.2s;
}

.btn--primary {
  background: #1146aa;
  color: #fff;
  box-shadow: 6px 6px 16px 0 rgba(36, 78, 133, 0.3);
}
.btn--primary:hover {
  background: #1d448e;
  box-shadow: 0 0 0 0 rgba(36, 78, 133, 0.3);
}

.btn--secondary {
  background: #fff;
  color: #1146aa;
  box-shadow: 6px 6px 16px 0 rgba(36, 78, 133, 0.2);
}
.btn--secondary:hover {
  box-shadow: 0 0 0 0 rgba(36, 78, 133, 0.2);
}

/* Orange tag badge on primary button */
.btn__tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #e87400;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.72px;
  line-height: 1.4;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  font-feature-settings: 'palt';
}

.btn__label {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.btn__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 16px;
  flex-shrink: 0;
}

/* Tertiary link button */
.btn--tertiary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 12px 24px 12px 8px;
  border-bottom: 1px solid #1146aa;
  color: #1146aa;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.96px;
  line-height: 1.4;
  font-feature-settings: 'palt';
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn--tertiary .btn__arrow {
  right: 2px;
  top: calc(50% + 0.5px);
}

.btn--tertiary:hover {
  opacity: 0.7;
}



/* ===========================================
   HEADER
=========================================== */
.header {
  position: relative;
  z-index: 200;
  background: #f5f7fa;
  width: 100%;
}

.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  animation: headerSlideDown 0.4s ease forwards;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 20px 32px;
  height: 80px;
}

/* --- Logo --- */
.logo {
  display: block;
  flex-shrink: 0;
}

.logo__img {
  position: relative;
  width: 181.33px;
  height: 40px;
  overflow: hidden;
}

.logo__v {
  position: absolute;
  display: block;
}

/* cat icon: leftmost ~40x40 area */
.logo__v--icon {
  top: 0.67%;
  right: 78.09%;
  bottom: 0.67%;
  left: 0.15%;
}

/* text "ラクネコQR": right portion, vertically centered */
.logo__v--text {
  top: 24.07%;
  right: 0.04%;
  bottom: 26.77%;
  left: 31.07%;
}

/* detail elements within cat icon */
.logo__v--d1 {
  top: 44.67%;
  right: 82.72%;
  bottom: 12%;
  left: 4.78%;
}

.logo__v--d2 {
  top: 52.67%;
  right: 85.96%;
  bottom: 20%;
  left: 8.01%;
}

/* --- PC Navigation --- */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list a {
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1e;
  letter-spacing: 0.84px;
  line-height: 1.4;
  white-space: nowrap;
  font-feature-settings: 'palt';
  transition: color 0.2s;
}

.header__nav-list a:hover {
  color: #1146aa;
}

/* --- Header CTA button --- */
.header__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 176px;
  height: 48px;
  padding: 12px 16px;
  background: #1146aa;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.84px;
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: 4px 4px 12px 0 rgba(36, 78, 133, 0.3);
  font-feature-settings: 'palt';
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.2s;
}

.header__cta:hover {
  background: #1d448e;
  box-shadow: 0 0 0 0 rgba(36, 78, 133, 0.3);
}

.btn-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 8px;
  height: 16px;
  flex-shrink: 0;
}



/* ===========================================
   MAIN VISUAL (MV)
=========================================== */
.mv {
  position: relative;
  overflow-x: clip;
}

.mv__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 920px;
  margin: 0 auto;
  padding: 80px 72px 280px;
}

/* --- Left content block --- */
.mv__content {
  position: relative;
  z-index: 3;
  width: 628px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Sub copy */
.mv__sub-copy {
  padding: 0 8px;
}

.mv__sub-copy p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.08px;
  color: #1c1c1e;
  font-feature-settings: 'palt';
}
.mv__sub-copy p br.sp-only {
  display: none;
}

/* --- Main copy (SVG headline) --- */
.mv__main-copy {
  padding-bottom: 48px;
}

.mv__main-copy-box {
  position: relative;
  width: 628px;
  height: 166px;
}

/* Line 1: top-left area (top:0, right:29%, bottom:60%) */
.mv__copy-line1 {
  position: absolute;
  top: 0;
  right: 28.98%;
  bottom: 60.24%;
  left: 0;
}

.mv__copy-line1 picture,
.mv__copy-line1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

/* Navy accent bar between lines */
.mv__copy-accent1 {
  position: absolute;
  top: 44.58%;
  right: 28.98%;
  bottom: 54.22%;
  left: 0;
  background: #1d448e;
}

/* Line 2: bottom full-width area */
.mv__copy-line2 {
  position: absolute;
  top: 60.24%;
  right: 0;
  bottom: 6.02%;
  left: 0;
}

.mv__copy-line2 picture,
.mv__copy-line2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

/* Bottom navy accent bar */
.mv__copy-accent2 {
  position: absolute;
  top: 98.8%;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1d448e;
}

/* --- Form area --- */
.mv__form-wrap {
  position: relative;
  width: 504px;
  background: #d8e4f7;
  padding: 28px 32px 32px;
  flex-shrink: 0;
}

.mv__form-heading {
  position: absolute;
  top: -16px;
  left: 32px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1146aa;
  letter-spacing: 0.96px;
  line-height: 1.6;
  white-space: nowrap;
  font-feature-settings: 'palt';
}

.mv__form-heading-bar {
  display: inline-block;
  width: 2px;
  height: 16px;
  transform: rotate(-20deg);
  background: #1146aa;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.mv__form-heading-bar:nth-of-type(2) {
  transform: rotate(20deg);
}

/* Email input */
.mv__form-hubspot form {
  display: flex;
  flex-wrap: wrap;
}

.mv__form-hubspot .hs_email {
  width: 100%;
  margin-bottom: 12px;
}

.mv__form-hubspot .input input[type="email"] {
  box-sizing: border-box;
  width: 100% !important;
  height: 64px;
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  box-shadow: 4px 4px 12px 0 rgba(89, 94, 100, 0.1); 
  background-color: #fff;
  font-size: 16px;
  color: #1c1c1e;
  letter-spacing: 0.96px;
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: 'palt';
  outline: none;
}

.mv__form-hubspot .input input[type="email"]::placeholder {
  color: #b4b8c3;
}

.mv__form-hubspot .hs-error-msg {
  color: #9f2c18;
  font-size: 12px;
}

.mv__form-hubspot .hs_privacy_policy {
  margin-right: 8px;
}

.mv__form-hubspot .input input[type="checkbox"] {
  margin-right: 8px;
}

.mv__form-hubspot label span {
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: 'palt';
}

.mv__form-hubspot label span.hs-form-required {
  color: #9f2c18;
}

.mv__form-hubspot .hs-richtext a {
  font-size: 12px;
  color: #1146aa;
  text-decoration: underline;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: 'palt';
}
.mv__form-hubspot .hs-richtext a:hover {
  text-decoration: none;
}

.mv__form-hubspot .hs_submit {
  width: 100%;
  margin-top: 16px;
}

.mv__form-hubspot .actions input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  background: #1146aa;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 1.4;
  border: none;
  border-radius: 6px;
  box-shadow: 4px 4px 12px 0 rgba(36, 78, 133, 0.3);
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: 'palt';
  position: relative;
  transition: 0.2s;
}
.mv__form-hubspot .actions input[type="submit"]:hover {
  background: #1d448e;
  box-shadow: 0 0 0 0 rgba(36, 78, 133, 0.3);
}



/* --- Hero image: PC --- */
.mv__hero {
  position: absolute;
  /* Figma: left 23.33% of 1440px = 336px, right -12.22% = extends ~176px off right edge */
  left: 23.33%;
  right: -12.22%;
  bottom: -40px;
  height: 960px;
  z-index: 2;
  pointer-events: none;
}

.mv__hero-photo {
  position: absolute;
  /* main group: left:20%, right:0, top:0, bottom:20.83% */
  top: 0;
  left: 20%;
  right: -8.98%;
  bottom: 20.83%;
  overflow: hidden;
}

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

.mv__hero-deco {
  position: absolute;
  /* sub group bottom-left: inset 52.5% 67.84% 9.43% 0 in a 536x440 container scaled up */
  bottom: 27%;
  left: 1%;
  width: 10%;
  aspect-ratio: 1;
}

.mv__hero-deco img {
  width: 100%;
  height: 100%;
}

/* Hero: SP (hidden on PC) */
.mv__hero-sp {
  display: none;
}

/* --- Decorative bg shape --- */
.mv__bg-obj {
  position: absolute;
  bottom: -402px;
  left: -104px;
  width: 632px;
  height: 760px;
  pointer-events: none;
}

.mv__bg-obj img {
  width: 100%;
  height: 100%;
}


/* ===========================================
   SEC_PROBLEM
=========================================== */
.sec-problem {
  position: relative;
  overflow-x: clip;
}

.sec-problem__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 160px 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* H2 */
.sec-problem__h2 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* 左の装飾ライン (PC only) */
.sec-problem__h2::before {
  content: '';
  position: absolute;
  left: -160px;
  top: 28px;
  width: 128px;
  height: 2px;
  background: #1d448e;
}

.sec-problem__h2 p {
  flex: 1;
  font-size: 32px;
  font-weight: 700;
  color: #1d448e;
  line-height: 1.8;
  letter-spacing: 2.56px;
  font-feature-settings: 'palt';
  text-align: center;
}

/* Problem list: 2-column on PC */
.problem-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 16px;
  isolation: isolate;
}

.problem-list__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: calc(50% - 32px);
  flex-shrink: 0;
}

.problem-list__col--right {
  padding-top: 32px; /* offset: right column starts lower */
}

/* Decorative element (right) */
.problem-list__deco {
  position: absolute;
  bottom: -24px;
  right: -320px;
  width: 432px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
}

.problem-list__deco img {
  width: 100%;
  height: 100%;
}

/* Individual problem card */
.problem-li {
  position: relative;
  background: #fff;
  min-height: 128px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 40px;
  z-index: 2;
}

/* Quote mark decoration (top-left) */
.problem-li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: -12px;
  width: 44px;
  height: 36px;
  background-image: url(/images/lp_qr/problem-li_quote.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Corner decoration (bottom-left) */
.problem-li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 18px;
  height: 16px;
  background-image: url(/images/lp_qr/problem-li_corner.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Card text lines */
.problem-li__text {
  font-size: 16px;
  font-weight: 700;
  color: #393c46;
  line-height: 1.8;
  letter-spacing: 0.96px;
  font-feature-settings: 'palt';
  white-space: nowrap;
  text-align: center;
}

.problem-li__block {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.hl-text {
  position: relative;
  display: inline;
  z-index: 2;
  padding: 0 1px;
}

.hl-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #9dc5ff;
  opacity: 0.8;
  z-index: -1;
}

/* Paragraph: ひとつでも当てはまるなら */
.problem-paragraph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 48px;
  border-radius: 999px;
}

.problem-paragraph__text {
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1.8;
  letter-spacing: 1.44px;
  font-feature-settings: 'palt';
  white-space: nowrap;
}

/* Logo in paragraph (larger: 253.867 x 56px) */
.problem-paragraph__logo {
  position: relative;
  width: 253.867px;
  height: 56px;
  overflow: hidden;
  flex-shrink: 0;
}

.problem-paragraph__logo .logo__v--icon {
  top: 0.67%;
  right: 78.09%;
  bottom: 0.67%;
  left: 0.15%;
}

.problem-paragraph__logo .logo__v--text {
  top: 24.07%;
  right: 0.04%;
  bottom: 26.77%;
  left: 31.07%;
}

.problem-paragraph__logo .logo__v--d1 {
  top: 44.67%;
  right: 82.72%;
  bottom: 12%;
  left: 4.78%;
}

.problem-paragraph__logo .logo__v--d2 {
  top: 52.67%;
  right: 85.96%;
  bottom: 20%;
  left: 8.01%;
}


/* ===========================================
   SEC_CONCEPT
=========================================== */
.sec-concept {
  position: relative;
  background: linear-gradient(to bottom, #27335c, #1d448e);
  overflow-x: clip;
}

/* トップウェーブ */
.sec-concept__wave {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 120px;
  z-index: 4;
  pointer-events: none;
}

.sec-concept__wave img {
  width: 100%;
  height: 100%;
  display: block;
}

.sec-concept__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 280px 80px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  z-index: 3;
}

/* --- H2 --- */
.sec-concept .common-h2-subtitle {
  color: #9dc5ff;
}
.sec-concept .common-h2-heading {
  color: #fff;
}

/* --- リード文 --- */
.sec-concept__lead {
  font-size: 18px;
  font-weight: 500;
  color: #f5f7fa;
  line-height: 1.8;
  letter-spacing: 1.08px;
  text-align: center;
  font-feature-settings: 'palt';
  width: 100%;
}

/* --- BEFORE / AFTER 図 --- */
.concept-figure {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  width: 100%;
}

.concept-figure__col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concept-figure__col--before {
  flex: 1;
  max-width: 360px;
}

.concept-figure__col--after {
  flex: 1;
  max-width: 720px;
  min-width: 440px;
}

/* タグ（BEFORE / AFTER） */
.concept-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 32px;
  padding: 4px 12px 6px;
  border: 1px solid #eaf1fb;
  border-radius: 999px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #eaf1fb;
  letter-spacing: 1.6px;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}

/* 図の見出し */
.concept-fig-heading {
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

.concept-fig-heading p {
  font-size: 18px;
  font-weight: 700;
  color: #f5f7fa;
  line-height: 1.8;
  letter-spacing: 1.08px;
  font-feature-settings: 'palt';
  white-space: nowrap;
}

/* --- BEFORE 画像 --- */
.concept-before-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 360 / 256;
}

.concept-before-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PC: 右向き矢印（BEFORE列の右外） */
.concept-arrow {
  position: absolute;
  right: -69px;
  top: 50%;
  transform: translateY(-50%) scaleY(-1);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-arrow img {
  width: 100%;
  height: 100%;
}

/* チェック（×）リスト */
.concept-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: flex-start;
  padding-top: 20px;
  width: 100%;
}

.concept-check-item {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 180px;
  flex-shrink: 0;
}

.concept-check-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.concept-check-item span {
  font-size: 16px;
  font-weight: 500;
  color: #f5f7fa;
  line-height: 1.8;
  letter-spacing: 0.96px;
  font-feature-settings: 'palt';
}

/* --- AFTER 画像 --- */
.concept-after-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 720 / 510;
  overflow: clip;
}

/* 2枚の背景写真 */
.concept-after-photo {
  position: absolute;
  object-fit: cover;
  pointer-events: none;
}

.concept-after-photo--1 {
  top: -33.14%;
  right: 13.56%;
  bottom: -110.78%;
  left: -86.39%;
  width: auto;
  height: auto;
}

.concept-after-photo--2 {
  top: -33.14%;
  right: -45%;
  bottom: -110.77%;
  left: -86.39%;
  width: auto;
  height: auto;
}

/* QRコード背景パネル */
.concept-after-qr-bg {
  position: absolute;
  top: 30.94%;
  right: 40.74%;
  bottom: 32.85%;
  left: 41.88%;
  background: #e3edee;
}

/* QRコード表示 */
.concept-after-qr-panel {
  position: absolute;
  top: 36.89%;
  right: 41.07%;
  bottom: 38.81%;
  left: 42.22%;
  filter: blur(0.5px);
  mix-blend-mode: darken;
  overflow: hidden;
}

.concept-after-qr-panel img {
  position: absolute;
  left: 0;
  top: -34.96%;
  width: 100%;
  height: 135.25%;
  object-fit: cover;
}

/* 右側の背景装飾SVG */
.sec-concept::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 592px);
  transform: translateX(-50%);
  width: 1096px;
  z-index: 2;
  pointer-events: none;
  background-image: url(/images/lp_qr/sec-concept_bg-obj.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* 左下装飾（PC only） */
.sec-concept::after {
  content: '';
  position: absolute;
  bottom: -280px;
  left: calc(50% - 676px);
  transform: translateX(-50%);
  width: 328px;
  height: 400px;
  z-index: 1;
  pointer-events: none;
  background-image: url(/images/lp_qr/sec-concept_bottom-deco.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}


/* ===========================================
   SEC_FEATURES
=========================================== */
.sec-features {
  position: relative;
  overflow-x: clip;
}

.sec-features__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  position: relative;
  z-index: 2;
}


/* カードリスト：PC 3列グリッド */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 40px;
  justify-content: center;
  width: 100%;
  padding-top: 32px; /* 番号ラベルがはみ出す分の余白 */
}

/* カード */
.features-card {
  position: relative;
  background: #fff;
  flex: 1 0 0;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 16px 56px;
}

/* 番号ラベル（01〜06） */
.features-card__num {
  position: absolute;
  top: -32px;
  left: 24px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #1146aa;
  line-height: 1;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 6px 6px 0 rgba(17, 70, 170, 0.1);
}

/* アイコンエリア（丸背景） */
.features-card__icon-area {
  width: 144px;
  height: 144px;
  border-radius: 999px;
  background: #e9ebf1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  flex-shrink: 0;
}

/* アイコン本体（64×64px, SVG合成） */
.features-card__icon img {
  position: relative;
  width: 64px;
  height: 64px;
  overflow: clip;
  flex-shrink: 0;
}


/* カードタイトル */
.features-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #1146aa;
  line-height: 1.8;
  letter-spacing: 1.32px;
  text-align: center;
  font-feature-settings: 'palt';
  width: 100%;
}

/* タイトル内の小さいテキスト */
.features-card__title--sm {
  font-size: 14px;
  font-weight: 700;
}

/* カード説明文 */
.features-card__text {
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1e;
  line-height: 1.8;
  letter-spacing: 0.96px;
  text-align: center;
  font-feature-settings: 'palt';
  width: 100%;
}

/* 右下の装飾 */
.sec-features::after {
  content: '';
  position: absolute;
  bottom: -64px;
  left: calc(50% + 636px);
  transform: translateX(-50%);
  width: 328px;
  height: 400px;
  z-index: 1;
  background-image: url(/images/lp_qr/common_bg-obj01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sec-features__deco img {
  width: 100%;
  height: 100%;
}


/* ===========================================
   SEC_CASES
=========================================== */
.sec-cases {
  position: relative;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 80px;
}

.sec-cases__inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Cards list: 3 columns wrap on PC */
.cases-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

/* Individual card */
.case-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  overflow: clip;
  flex-shrink: 0;
  width: calc((100% - 80px) / 3);
}

/* Heading block */
.case-card__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.case-card__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 120px;
  padding: 4px 12px 6px;
  border: 1px solid #1146aa;
  border-radius: 999px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1146aa;
  letter-spacing: 0.84px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.case-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #1146aa;
  letter-spacing: 1.32px;
  line-height: 1.8;
  text-align: center;
  font-feature-settings: 'palt';
  width: 100%;
}

/* Image area: outer clips to 400×280 */
.case-card__img-wrap {
  background: #fff;
  aspect-ratio: 400 / 280;
  overflow: clip;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Inner image frame: 420×280 (overflows 20px per side → clipped) */
.case-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  max-width: none;
}

/* CASE01: QR overlay */
.case01-qr-bg {
  position: absolute;
  top: 39.1%;
  right: 54.43%;
  bottom: 52.84%;
  left: 41.19%;
  background: #e3edee;
}

.case01-qr-panel {
  position: absolute;
  top: 39.7%;
  right: 54.43%;
  bottom: 53.58%;
  left: 41.19%;
  mix-blend-mode: darken;
  overflow: hidden;
}

.case01-qr-panel img {
  position: absolute;
  left: 0;
  top: -34.96%;
  width: 100%;
  height: 135.25%;
  object-fit: cover;
  max-width: none;
}

/* CASE02: zoomed crop */
.case02-photo-crop {
  position: absolute;
  top: -15.07%;
  right: 0;
  bottom: -15.07%;
  left: -30.08%;
}

.case02-photo-crop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

/* Point list */
.case-card__points {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.case-check {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.case-check img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}

.case-check picture {
  flex-shrink: 0;
}

.case-check span {
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1e;
  letter-spacing: 0.96px;
  line-height: 1.8;
  font-feature-settings: 'palt';
  flex: 1;
}

/* Decorative */
.sec-cases::after {
  content: '';
  position: absolute;
  bottom: -240px;
  left: calc(50% + 472px);
  width: 328px;
  height: 400px;
  z-index: 1;
  background-image: url(/images/lp_qr/common_bg-obj01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}


/* ===========================================
   SEC_PRICING
=========================================== */
.sec-pricing {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: #eaf1fb;
  padding: 160px 80px;
}

.sec-pricing__inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto 80px;
  width: 100%;
}

/* Lead */
.pricing-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1c1c1e;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 1.08px;
  font-feature-settings: 'palt';
}

/* --- Base Pricing --- */
.pricing-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  width: 100%;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 2px solid #1146aa;
  flex-shrink: 0;
}

.pricing-card--initial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 240px;
  height: 320px;
}

.pricing-card--monthly {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: calc(100% - 320px);
  height: 320px;
  padding: 0 32px;
}

/* Card ribbon tab */
.pricing-card__tab {
  position: absolute;
  top: -10px;
  left: -13px;
  height: 32px;
  width: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.pricing-card__tab--wide {
  width: 290px;
}

.pricing-card__tab-ribbon {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

.pricing-card__tab-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 1.02px;
  line-height: 1.5;
  font-feature-settings: 'palt';
  z-index: 0;
}

.pricing-card__tab-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.84px;
  font-feature-settings: 'palt';
  z-index: 0;
}

/* Initial card price */
.pricing-card__price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.pricing-card__amount {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #1146aa;
  line-height: 1;
  text-shadow: 4px 4px 0px rgba(17, 70, 170, 0.1);
}

.pricing-card__unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 2;
}

.pricing-card__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1e;
  text-align: center;
  letter-spacing: 0.96px;
  white-space: nowrap;
  font-feature-settings: 'palt';
  line-height: 1.75;
}

/* Plus symbol */
.pricing-plus {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.pricing-plus::before,
.pricing-plus::after {
  content: '';
  position: absolute;
  background: #1d448e;
}

.pricing-plus::before {
  width: 36px;
  height: 8px;
  top: 14px;
  left: 0;
}

.pricing-plus::after {
  width: 8px;
  height: 36px;
  top: 0;
  left: 14px;
}

/* Monthly card: normal price */
.pricing-normal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-normal__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1e;
  letter-spacing: 0.96px;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  font-feature-settings: 'palt';
}

.pricing-normal__price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.pricing-normal__amount {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #1146aa;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-skip-ink: none;
  white-space: nowrap;
}

.pricing-normal__unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 2;
  white-space: nowrap;
}

/* Monthly card: arrow */
.pricing-arrow {
  width: 22px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.pricing-arrow img {
  width: 26px;
  height: 58px;
  flex-shrink: 0;
}

/* Monthly card: special price */
.pricing-special {
  width: 344px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing-special__badge {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #1146aa;
  letter-spacing: 1.08px;
  line-height: 1.6;
  white-space: nowrap;
}

.pricing-special__badge br.sp-only {
  display: none;
}

.pricing-badge-deco {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 28px;
  overflow: hidden;
  flex-shrink: 0;
}

.pricing-badge-deco::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #1146aa;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}

.pricing-badge-deco--left::after {
  transform: translate(-50%, -50%) rotate(-30deg);
}

.pricing-special__price {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.pricing-special__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1e;
  letter-spacing: 1.08px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  padding-top: 8px;
  flex-shrink: 0;
}

.pricing-special__amount {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 88px;
  font-weight: 700;
  color: #1146aa;
  line-height: 1;
  text-shadow: 4px 4px 0px rgba(17, 70, 170, 0.1);
  white-space: nowrap;
}

.pricing-special__unit {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  align-self: stretch;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 4px;
}

.pricing-special__en {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 2;
}

.pricing-special__tax {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 2.8;
}

/* Card footnote */
.pricing-card__footnote {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #393c46;
  text-align: right;
  letter-spacing: 0.72px;
  white-space: nowrap;
  line-height: 1.75;
  font-feature-settings: 'palt';
}
.pricing-card__footnote br.sp-only {
  display: none;
}

/* --- Option card --- */
.pricing-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  border: 2px solid #a2accd;
  height: 152px;
  max-width: 1040px;
  width: 100%;
}

.pricing-option__tab {
  position: absolute;
  top: -10px;
  left: -13px;
  height: 32px;
  width: 149.664px;
}

.pricing-option__tab-ribbon {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

.pricing-option__tab-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1d448e;
  white-space: nowrap;
  letter-spacing: 1.02px;
  line-height: 1.5;
  font-feature-settings: 'palt';
}

.pricing-option__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1e;
  text-align: center;
  letter-spacing: 0.84px;
  white-space: nowrap;
  line-height: 1.5;
  font-feature-settings: 'palt';
}

.pricing-option__price {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  white-space: nowrap;
}

.pricing-option__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1e;
  letter-spacing: 1.08px;
  line-height: 2;
}

.pricing-option__amount-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.pricing-option__amount {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #1146aa;
  line-height: 1;
}

.pricing-option__unit {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #1c1c1e;
}

.pricing-option__en {
  font-size: 18px;
  line-height: 2;
}

.pricing-option__tax {
  font-size: 12px;
  line-height: 2.8;
}

.pricing-option__per {
  font-size: 18px;
  line-height: 2;
}


/* --- Decorative --- */
.sec-pricing__deco-before {
  position: absolute;
  bottom: -120px;
  left: calc(50% - 816px);
  width: 328px;
  height: 400px;
  z-index: 2;
  pointer-events: none;
}

.sec-pricing__deco-after {
  position: absolute;
  bottom: -320px;
  left: calc(50% - 768px);
  width: 328px;
  height: 400px;
  z-index: 1;
  pointer-events: none;
}

.sec-pricing__deco-before img,
.sec-pricing__deco-after img {
  width: 100%;
  height: 100%;
}



/* RESPONSIVE — TB (max-width: 1200px) */
@media (max-width: 1200px) {
  .pricing-base {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

    .pricing-heading {
    font-size: 28px;
    letter-spacing: 2px;
    white-space: normal;
  }

  .pricing-card--initial {
    width: 100%;
    height: 200px;
  }

  .pricing-card--monthly {
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 320px;
    padding: 64px 20px 112px;
    gap: 24px;
  }

  .pricing-normal {
    align-items: flex-start;
    top: 64px;
  }

  .pricing-arrow {
    transform: rotate(90deg);
    width: 22px;
    height: 56px;
  }

  .pricing-arrow img {
    width: 22px;
    height: 56px;
    transform: none;
  }

  .pricing-special {
    width: 280px;
  }

  .pricing-special__badge br.sp-only {
    display: block;
  }

  .pricing-special__label {
    font-size: 14px;
  }

  .pricing-special__amount {
    font-size: 80px;
  }

  .pricing-special__en {
    line-height: 1;
  }

  .pricing-special__unit {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .pricing-special__tax {
    font-size: 12px;
  }

  .pricing-card__footnote {
    bottom: 8px;
    right: 8px;
    font-size: 12px;
    white-space: normal;
    text-align: right;
  }
  .pricing-card__footnote br.sp-only {
    display: block;
  }

  .pricing-option {
    gap: 24px;
    height: 248px;
  }

  .pricing-option__price {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}



/* ===========================================
   SEC_FAQ
=========================================== */
.sec-faq {
  position: relative;
  background: #fff;
  padding: 160px 80px;
  overflow-x: clip;
}

.sec-faq::before {
  content: '';
  position: absolute;
  top: -344px;
  left: calc(50% - 816px);
  width: 376px;
  height: 600px;
  z-index: 2;
  background-image: url(/images/lp_qr/common_bg-obj02.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sec-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}


/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #f5f7fa;
  padding: 48px;
  max-width: 960px;
  width: 100%;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 16px 20px;
  border-bottom: 1px solid #ededf0;
}

.faq-a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
}

.faq-label {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #005dd7;
  letter-spacing: 1.2px;
  line-height: 1;
  width: 16px;
  flex-shrink: 0;
  font-feature-settings: 'palt';
}

.faq-question {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 2;
  letter-spacing: 1.08px;
  font-feature-settings: 'palt';
}

.faq-answer {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1e;
  line-height: 2;
  letter-spacing: 0.96px;
  font-feature-settings: 'palt';
}


/* ===========================================
   SEC_CTA
=========================================== */
.sec-cta {
  position: relative;
  isolation: isolate;
  z-index: 3;
  overflow-x: clip;
  background: linear-gradient(to bottom, #27335c, #1d448e);
}

.sec-cta::before {
  content: '';
  position: absolute;
  top: -128px;
  left: calc(50% + 472px);
  width: 328px;
  height: 400px;
  z-index: 2;
  background-image: url(/images/lp_qr/common_bg-obj01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sec-cta__block {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 160px 0;
}

/* CTA decoratives */
.sec-cta__block::after {
  content: '';
  position: absolute;
  bottom: -360px;
  left: calc(50% - 928px);
  width: 448px;
  height: 560px;
  z-index: 1;
  background-image: url(/images/lp_qr/cta_bg-obj01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  clip-path: inset(0 0 360px 0);
}

.sec-cta__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  width: 100%;
  padding: 0 40px;
  gap: 40px;
}

/* Main copy */
.cta-copy {
  flex-shrink: 0;
  width: 545px;
  margin: 0 auto;
}

.cta-copy__l1,
.cta-copy__l2 {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transform: skewX(-14deg) scaleY(0.97);
  transform-origin: left center;
  line-height: 1.3;
}

.cta-copy__l1 {
  font-size: 52px;
  margin-bottom: 4px;
}

.cta-copy__l2 {
  font-size: 48px;
}

/* Button area */
.cta-button-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 0 40px;
  width: 400px;
}

.cta-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.08px;
  line-height: 1.8;
  white-space: nowrap;
  font-feature-settings: 'palt';
}

/* Large CTA button */
.btn-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 400px;
  height: 80px;
  padding: 12px 16px;
  background: #fff;
  color: #1d448e;
  border-radius: 10px;
  box-shadow: 10px 10px 20px 0 rgba(35, 37, 43, 0.5);
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  opacity: 0.9;
}

.btn-cta__tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: #e87400;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.72px;
  line-height: 1.4;
  border-radius: 999px;
  white-space: nowrap;
  font-feature-settings: 'palt';
  width: 240px;
  text-align: center;
}

.btn-cta__label {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1d448e;
  text-align: center;
  letter-spacing: 1.02px;
  line-height: 1.4;
  font-feature-settings: 'palt';
}

.btn-cta__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 16px;
  flex-shrink: 0;
}


/* ===========================================
   FOOTER
=========================================== */
.footer {
  background: #393c46;
  padding: 0 80px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Footer logo */
.footer-logo {
  position: relative;
  width: 181.333px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo__v {
  position: absolute;
  display: block;
}

.footer-logo__v--main {
  top: 0.67%;
  right: 0.04%;
  bottom: 0.67%;
  left: 0.15%;
  width: calc(100% - 0.19%);
  height: calc(100% - 1.34%);
}

.footer-logo__v--d {
  top: 52.67%;
  right: 85.96%;
  bottom: 20%;
  left: 8.01%;
}

/* Footer nav */
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  width: 100%;
}

.footer-nav a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.84px;
  line-height: 1.4;
  white-space: nowrap;
  font-feature-settings: 'palt';
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* Copyright */
.footer-copy {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #b4b8c3;
  text-align: right;
  letter-spacing: 0.72px;
  line-height: 1.4;
  font-feature-settings: 'palt';
  white-space: nowrap;
}


/* ===========================================
   SEC_NEW
=========================================== */
.sec-new {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 120px 80px 160px;
  background: #fff;
  overflow-x: clip;
}

.sec-new__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  padding: 80px 0;
}

/* Tag */
.sec-new__h2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec-new__tag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-new__tag-icon {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: clip;
  flex-shrink: 0;
}

.sec-new__tag-icon img {
  position: absolute;
  top: 4.16%;
  right: 3.57%;
  bottom: 4.17%;
  left: 5.14%;
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.sec-new__tag-text {
  font-size: 16px;
  font-weight: 700;
  color: #e87400;
  letter-spacing: 1.28px;
  line-height: 1.6;
  font-feature-settings: 'palt';
  white-space: nowrap;
}

.sec-new__heading {
  font-size: 36px;
  font-weight: 700;
  color: #23252b;
  letter-spacing: 2.88px;
  line-height: 1.6;
  font-feature-settings: 'palt';
}

.sec-new__lead {
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1e;
  letter-spacing: 0.96px;
  line-height: 1.8;
  font-feature-settings: 'palt';
}

/* Feature card list */
.new-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
}

.new-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 640px;
  padding: 24px 32px;
  background: #f5f7fa;
  border: 1px solid #d8e4f7;
}

.new-card__icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: clip;
  flex-shrink: 0;
}

.new-card__icon-wrap img {
  position: absolute;
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.new-card__text-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.new-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1146aa;
  letter-spacing: 1.08px;
  line-height: 1.6;
  font-feature-settings: 'palt';
  width: 160px;
  flex-shrink: 0;
}

.new-card__desc {
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1e;
  letter-spacing: 0.84px;
  line-height: 1.8;
  font-feature-settings: 'palt';
  flex: 1;
  min-width: 0;
}

/* Hero photo */
.sec-new__photo {
  position: absolute;
  right: -152px;
  top: calc(50% - 121.5px);
  transform: translateY(-50%);
  width: 972px;
  height: 640px;
  z-index: 4;
  pointer-events: none;
}

.sec-new__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Decorative elements */
.sec-new::after {
  content: '';
  position: absolute;
  bottom: -256px;
  left: calc(50% - 816px);
  width: 376px;
  height: 600px;
  z-index: 2;
  background-image: url(/images/lp_qr/common_bg-obj02.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}


/* ===========================================
   RESPONSIVE — SP (max-width: 767px)
=========================================== */
@media (max-width: 767px) {

  /* --- Header SP --- */
  .header__inner {
    height: 64px;
    padding: 12px 16px;
  }

  .logo__img {
    width: 163.2px;
    height: 36px;
  }

  .header__nav-list {
    display: none;
  }

  .header__cta {
    width: auto;
    height: 48px;
  }

  .header__cta .btn-arrow {
    display: none;
  }


  /* --- H2 SP --- */
  .common-h2-wrap {
    padding: 24px 32px;
    max-width: 100%;
  }

  .common-h2-heading {
    font-size: 28px;
  }


  /* --- CTA button SP --- */
  .sec__cta-row {
    flex-direction: column;
  }

  .btn {
    width: 320px;
  }


  /* --- MV SP --- */

  .mv__inner {
    padding: 40px 16px 0;
    min-height: auto;
    /* bottom padding creates space for the SP hero image (440px + some margin) */
    padding-bottom: 400px;
  }

  .mv__content {
    width: 100%;
    gap: 32px;
  }

  /* Sub copy */
  .mv__sub-copy p {
    font-size: 17px;
    letter-spacing: 1.02px;
  }
  .mv__sub-copy p br.sp-only {
    display: block;
  }

  /* Main copy */
  .mv__main-copy {
    padding-bottom: 32px;
  }

  .mv__main-copy-box {
    width: 100%;
    height: auto;
    aspect-ratio: 628 / 166;
  }

  /* Form */
  .mv__form-wrap {
    width: 100%;
    padding: 28px 16px 32px;
  }

  .mv__form-heading {
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
  }

  .form-email {
    width: 100%;
  }

  .form-options {
    gap: 16px;
  }

  .btn-submit {
    width: 100%;
  }

  /* Hero: hide PC, show SP */
  .mv__hero {
    display: none;
  }

  .mv__hero-sp {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% - 9px));
    bottom: -16px;
    width: 536px;
    height: 440px;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }

  .mv__hero-sp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* BG object: SP position */
  .mv__bg-obj {
    bottom: -300px;
    left: -300px;
  }

  /* --- SEC_PROBLEM SP --- */
  .sec-problem__inner {
    padding: 120px 16px 120px;
    gap: 48px;
  }

  /* H2: no left accent line, smaller font */
  .sec-problem__h2::before {
    display: none;
  }

  .sec-problem__h2 p {
    font-size: 24px;
    letter-spacing: 1.92px;
  }

  /* Cards: single column */
  .problem-list {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .problem-list__col {
    width: 100%;
    gap: 32px;
  }

  .problem-list__col--right {
    padding-top: 0;
  }

  /* Cards: size on SP */
  .problem-li {
    padding: 24px 32px;
  }

  .problem-li::before {
    width: 36px;
    height: 30px;
    top: -8px;
    left: 12px;
  }

  /* Hide right decorative element on SP */
  .problem-list__deco {
    display: none;
  }

  .problem-li__text {
    white-space: normal;
  }

  /* Paragraph: stack vertically on SP */
  .problem-paragraph {
    flex-direction: column;
    gap: 20px;
    padding: 24px 16px;
  }

  .problem-paragraph__logo {
    width: 254px;
    height: 56px;
  }

  /* --- SEC_CONCEPT SP --- */
  .sec-concept__wave {
    width: 100%;
    height: auto;
  }

  .sec-concept__inner {
    padding: 200px 16px 160px;
    gap: 80px;
  }

  /* H2: テキスト折り返し */
  .concept-heading {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .common-h2-heading br.sp-only {
    display: block;
  }

  .concept-heading__line {
    display: block;
  }

  /* リード文 */
  .sec-concept__lead {
    font-size: 16px;
  }

  /* BEFORE/AFTER: 縦積みレイアウト */
  .concept-figure {
    flex-direction: column;
    gap: 120px;
    align-items: center;
    padding-top: 0;
  }

  .concept-figure__col--before {
    max-width: 280px;
    width: 100%;
  }

  .concept-figure__col--after {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }

  /* SP: 見出しテキスト折り返し許可 */
  .concept-fig-heading p {
    white-space: normal;
  }

  /* SP: BEFORE 画像アスペクト比変更 */
  .concept-before-img-wrap {
    aspect-ratio: 280 / 199;
  }

  /* SP: 下向き矢印（BEFORE の画像下中央） */
  .concept-arrow {
    right: unset;
    top: unset;
    transform: none;
    bottom: -160px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg) scaleY(-1);
    width: 72px;
    height: 72px;
  }

  /* SP: チェックリスト */
  .concept-check-item {
    width: 140px;
    gap: 0;
  }
  .concept-check-icon {
    width: 24px;
    height: 24px;
  }
  .concept-check-item span {
    font-size: 14px;
  }

  /* SP: AFTER 画像アスペクト比変更 */
  .concept-after-img-wrap {
    aspect-ratio: 358 / 254;
  }

  /* SP: 背景装飾 */
  .sec-concept::before {
    left: 0;
    transform: inherit;
    background-size: cover;
    background-position: left;
  }

  /* 左下装飾は非表示 */
  .sec-concept__bottom-deco {
    display: none;
  }

  /* --- SEC_FEATURES SP --- */
  .sec-features__inner {
    padding: 120px 16px;
    gap: 80px;
  }

  .features-heading {
    font-size: 28px;
    letter-spacing: 2px;
    white-space: normal;
  }

  /* SP: 1列縦積み */
  .features-list {
    flex-direction: column;
    gap: 64px;
    align-items: stretch;
    padding-top: 32px;
  }

  .features-card {
    min-width: unset;
    width: 100%;
  }

  /* SP: 装飾を小さく右下に */
  .sec-features::after {
    bottom: -24px;
    left: unset;
    right: -48px;
    transform: none;
    width: 164px;
    height: 200px;
  }

  /* --- SEC_NEW SP --- */
  .sec-new {
    padding: 104px 16px 120px;
  }

  .sec-new__inner {
    padding-top: 0;
    padding-bottom: 280px;
  }

  .sec-new__heading {
    font-size: 26px;
    letter-spacing: 2.24px;
  }

  .new-card-list {
    padding: 0;
    width: 100%;
  }

  .new-card {
    width: 100%;
    padding: 24px 20px;
    align-items: flex-start;
    gap: 12px;
  }

  .new-card__text-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  /* SP: hero photo — smaller, anchored to bottom-right */
  .sec-new__photo {
    right: -79px;
    bottom: 400px;
    top: auto;
    transform: none;
    width: 502px;
    height: 331px;
  }

  /* SP: CTA buttons stacked */
  .sec-new__cta-row {
    flex-direction: column;
  }

  .btn-new--primary,
  .btn-new--secondary {
    width: 320px;
  }

  /* SP: decoratives — smaller, fixed position near left edge */
  .sec-new::after {
    bottom: -160px;
    left: -96px;
    width: 188px;
    height: 300px;
  }

  /* --- SEC_CASES SP --- */
  .sec-cases {
    padding: 120px 16px;
  }

  .cases-list {
    flex-direction: column;
    gap: 80px;
  }

  .case-card {
    width: 100%;
  }

  /* SP: decoratives */
  .sec-cases::after {
    width: 164px;
    height: 200px;
    bottom: -56px;
    right: -96px;
    left: unset;
  }

  /* --- SEC_PRICING SP --- */
  .sec-pricing {
    padding: 120px 20px 160px;
  }



  /* --- SEC_FAQ SP --- */
  .sec-faq {
    padding: 120px 20px 160px;
  }

  .faq-heading {
    font-size: 28px;
    letter-spacing: 2px;
    white-space: normal;
  }

  .faq-item {
    padding: 32px 20px;
  }

  .faq-q,
  .faq-a {
    padding: 0 4px;
  }

  .faq-q {
    padding-bottom: 16px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .sec-faq::before {
    top: -140px;
    left: -96px;
    width: 188px;
    height: 300px;
  } 


  /* --- SEC_CTA SP --- */
  .sec-cta__block::before {
    top: -72px;
    left: inherit;
    right: -64px;
    width: 164px;
    height: 200px;
  }

  .sec-cta__block {
    padding: 120px 0 160px;
  }

  .sec-cta__block::after {
    left: -112px;
    bottom: -112px;
    width: 224px;
    height: 284px;
    clip-path: inset(0 0 112px 0);
  }

  .sec-cta__inner {
    flex-direction: column;
    align-items: center;
    gap: 56px;
    padding: 0 20px;
  }

  .cta-copy {
    width: 100%;
  }

  .cta-copy__l1 {
    font-size: 36px;
  }

  .cta-copy__l2 {
    font-size: 32px;
  }

  .cta-button-wrap {
    padding: 0;
    width: 100%;
  }

  .cta-lead {
    white-space: normal;
    text-align: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 340px;
  }

  .sec-cta::before {
    top: -72px;
    right: -64px;
    left: inherit;
    width: 164px;
    height: 200px;
  }

  /* --- FOOTER SP --- */
  .footer {
    padding: 0 20px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 48px 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .footer-copy {
    text-align: center;
  }

}