@charset "UTF-8";

/* ========================================
   スカパー！メンバーズ ポイントLP
   Design tokens:
     Blue       #0045cc
     Yellow     linear-gradient(#ffc500, #ffef00)
     CTA red    #cc0033 / #c03
     CTA shadow 0 8px 0 #990000
     Text       #222
     Font       LINE Seed JP
     Inner max  900px (1200px: flow / anchor)
     Radius     40px / 24px / 16px / 8px
     Breakpoint 768px (SP: max-width 768px)
   ======================================== */

/* ----------------------------------------
   Fonts (LINE Seed JP)
---------------------------------------- */
@font-face {
  font-family: "LINE Seed JP";
  src: url("/service/portal/members/point/fonts/LINESeedJP-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed JP";
  src: url("/service/portal/members/point/fonts/LINESeedJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed JP";
  src: url("/service/portal/members/point/fonts/LINESeedJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed JP";
  src: url("/service/portal/members/point/fonts/LINESeedJP-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------
   Variables (local scope via custom props)
---------------------------------------- */
.point-lp {
  --point-lp-blue: #0045cc;
  --point-lp-yellow-start: #ffc500;
  --point-lp-yellow-end: #ffef00;
  --point-lp-yellow-gradient: linear-gradient(180deg, var(--point-lp-yellow-start) 0%, var(--point-lp-yellow-end) 30%, var(--point-lp-yellow-end) 70%, var(--point-lp-yellow-end) 100%);
  --point-lp-yellow-gradient-reverse: linear-gradient(180deg, var(--point-lp-yellow-end) 0%, var(--point-lp-yellow-end) 30%, var(--point-lp-yellow-end) 70%, var(--point-lp-yellow-start) 100%);
  --point-lp-cta: #cc0033;
  --point-lp-cta-shadow: #990000;
  --point-lp-text: #222;
  --point-lp-inner: 900px;
  --point-lp-inner-wide: 1200px;
  --point-lp-radius-lg: 40px;
  --point-lp-radius-md: 24px;
  --point-lp-radius-sm: 16px;
  --point-lp-radius-xs: 8px;
  --point-lp-img: /service/portal/members/point/img/;
  --point-lp-font: "LINE Seed JP", "Noto Sans JP", sans-serif;
  color: var(--point-lp-text);
  font-family: var(--point-lp-font);
  overflow: hidden;
}

/* ----------------------------------------
   Common layout
---------------------------------------- */
.point-lp-inner {
  position: relative;
  z-index: 1;
  max-width: var(--point-lp-inner);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.point-lp-flow .point-lp-inner {
  max-width: var(--point-lp-inner-wide);
}

.point-lp-cv .point-lp-inner {
  max-width: 1260px;
}

.point-lp .is-em {
  color: var(--point-lp-cta);
  font-weight: bold;
}

.point-lp .pc-only {
  display: none;
}

.point-lp .sp-only {
  display: inline;
}

@media (min-width: 769px) {
  .point-lp .pc-only {
    display: inline;
  }

  .point-lp .sp-only {
    display: none;
  }
}

/* ----------------------------------------
   Background patterns (yellow / blue)
---------------------------------------- */
.point-lp-bg-yellow,
.point-lp-bg-blue {
  position: relative;
  overflow: hidden;
}

.point-lp-bg-yellow {
  background: var(--point-lp-yellow-gradient);
}

.point-lp-bg-yellow::before,
.point-lp-bg-yellow::after,
.point-lp-bg-blue::before,
.point-lp-bg-blue::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
}

.point-lp-bg-yellow::before,
.point-lp-bg-yellow::after {
  background-image: url("/service/portal/members/point/img/bg_yellow.png");
}

.point-lp-bg-blue {
  background: var(--point-lp-blue);
}

.point-lp-bg-blue::before,
.point-lp-bg-blue::after {
  background-image: url("/service/portal/members/point/img/bg_blue.png");
}

.point-lp-bg-yellow::before,
.point-lp-bg-blue::before {
  top: 0;
  left: 0;
  background-position: left top;
}

.point-lp-bg-yellow::after,
.point-lp-bg-blue::after {
  right: 0;
  bottom: 0;
  background-position: left top;
  transform: scale(-1, -1);
}

/* ----------------------------------------
   Common CTA button
---------------------------------------- */
.point-lp-cv-btn {
  position: relative;
  width: 440px;
  max-width: 440px;
  margin: 40px auto 0;
  padding-top: 18px;
  text-align: center;
}

.point-lp-cv-btn__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: inline-block;
  padding: 2px 40px;
  border: 2px solid var(--point-lp-cta);
  border-radius: 20px;
  background: #fff;
  color: var(--point-lp-cta);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
  transform: translateX(-50%);
}

.point-lp-cv-btn__link {
  display: block;
  position: relative;
  padding: 20px 48px 20px 24px;
  border-radius: 70px;
  background: var(--point-lp-cta);
  box-shadow: 0 8px 0 var(--point-lp-cta-shadow);
  color: #fff !important;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.point-lp a.point-lp-cv-btn__link:link,
.point-lp a.point-lp-cv-btn__link:visited,
.point-lp a.point-lp-cv-btn__link:hover,
.point-lp a.point-lp-cv-btn__link:active {
  color: #fff !important;
}

.point-lp-cv-btn__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  background: url("/service/portal/members/point/img/icon/chevron_right.png") no-repeat center / contain;
  transform: translateY(-50%) rotate(-90deg);
}

.point-lp-cv-btn__link:hover {
  opacity: 0.9;
}

.point-lp-cv-btn__link:active {
  box-shadow: 0 4px 0 var(--point-lp-cta-shadow);
  transform: translateY(4px);
}

/* Dark variant (campaign section on blue bg) */
.point-lp-cv-btn--dark .point-lp-cv-btn__link {
  border: 2px solid #fff;
  box-shadow: 0 8px 0 #fff;
}

.point-lp-cv-btn--dark .point-lp-cv-btn__link:active {
  box-shadow: 0 4px 0 #fff;
}

/* ----------------------------------------
   KV
---------------------------------------- */
.point-lp-kv {
  padding: 24px 0 48px;
  text-align: center;
}

.point-lp-kv .point-lp-inner {
  max-width: 1260px;
}

.point-lp-kv__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  margin: 0 0 24px;
}

.point-lp-kv__label {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 4px 8px;
  border-radius: var(--point-lp-radius-xs);
  background: var(--point-lp-blue);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.point-lp-kv__lead {
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
  margin: 0;
  color: var(--point-lp-blue);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.point-lp-kv__title {
  margin: 0 0 20px;
}

.point-lp-kv__title img {
  display: block;
  width: 1213px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.point-lp-kv__text {
  width: 1213px;
  max-width: 100%;
  margin: 0 auto;
  color: #222;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  text-align: left;
}

/* ----------------------------------------
   Anchor navigation
---------------------------------------- */
.point-lp-anchor {
  background: var(--point-lp-blue);
}

.point-lp-anchor__list {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--point-lp-inner-wide);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.point-lp-anchor__item {
  width: 50%;
  box-sizing: border-box;
  border: none;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.point-lp-anchor__item:nth-child(2n) {
  border-right: none;
}

.point-lp-anchor__item:nth-child(3n) {
  border-bottom: none;
}

.point-lp-anchor__item:nth-child(4n) {
  border-bottom: none;
}

.point-lp-anchor__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 10px 12px;
  color: #fff !important;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease;
  border-bottom: 4px solid #002c82;
}

.point-lp a.point-lp-anchor__link:link,
.point-lp a.point-lp-anchor__link:visited,
.point-lp a.point-lp-anchor__link:hover,
.point-lp a.point-lp-anchor__link:active {
  color: #fff !important;
}

.point-lp-anchor__link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.point-lp-anchor__link span {
  color: #fff;
}

.point-lp-anchor__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.point-lp-anchor__chevron {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

/* ----------------------------------------
   About
---------------------------------------- */
.point-lp-about {
  padding: 56px 0;
  background: var(--point-lp-yellow-gradient-reverse);
}

.point-lp-about__title {
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.4;
}

.point-lp-about__title img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.point-lp-about__text {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}

.point-lp-about__text p {
  margin: 0 0 16px;
}

.point-lp-about__text p:last-child {
  margin-bottom: 0;
}

.point-lp-about__tag {
  display: inline-block;
  margin: 0 8px 0 0;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--point-lp-cta);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  vertical-align: middle;
}

.point-lp-about__text .is-em {
  color: var(--point-lp-cta);
  font-weight: bold;
}

.point-lp-about__note {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.8;
}

.point-lp-about__feature {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--point-lp-inner);
  margin: 0 auto;
  padding: 56px 16px;
  border-radius: var(--point-lp-radius-lg);
  background: var(--point-lp-blue);
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.point-lp-about__feature-title {
  margin: 0;
  color: var(--point-lp-yellow-end);
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}

.point-lp-about__feature-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.point-lp-about__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 0;
  max-width: 150px;
  text-align: center;
}

.point-lp-about__feature-item img {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
}

.point-lp-about__feature-item h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.point-lp-about__feature-item .point-lp-about__feature-note,
.point-lp-about__feature-item small {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.point-lp-about__feature-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

.point-lp-about__feature-text .is-em {
  color: var(--point-lp-yellow-end);
  font-weight: bold;
}

.point-lp-about__notice {
  max-width: 740px;
  margin: 60px auto 0;
  padding: 24px 20px;
  border: 2px solid var(--point-lp-cta);
  border-radius: var(--point-lp-radius-md);
  background: #fff;
}

.point-lp-about__notice-title {
  margin: 0 0 16px;
  color: var(--point-lp-cta);
  font-size: 23px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.point-lp-about__notice p {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.7;
}

.point-lp-about__notice p:last-child {
  margin-bottom: 0;
}

.point-lp-about__notice a {
  color: var(--point-lp-blue);
  text-decoration: underline;
}

.point-lp-about__notice a:hover {
  text-decoration: none;
}

/* ----------------------------------------
   Point
---------------------------------------- */
.point-lp-point {
  padding: 56px 0;
  background: #fff;
}

.point-lp-point__badge-wrap {
  position: relative;
  display: table;
  margin: 0 auto 24px;
}

.point-lp-point__badge-wrap::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid var(--point-lp-blue);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  transform: translateX(-50%);
}

.point-lp-point__badge {
  display: inline-block;
  margin: 0;
  padding: 8px 20px;
  border-radius: var(--point-lp-radius-sm);
  background: var(--point-lp-blue);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.point-lp-point__badge::after {
  display: none;
}

.point-lp-point__catch {
  margin: 0 0 8px;
  color: var(--point-lp-blue);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.point-lp-point__title {
  margin: 0 0 40px;
  color: var(--point-lp-text);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.point-lp-point__lead {
  max-width: 900px;
  margin: 0 auto 40px;
  color: var(--point-lp-text);
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}

.point-lp-point__how-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

.point-lp-point__how {
  padding: 40px 16px;
  border-radius: var(--point-lp-radius-lg);
  background: var(--point-lp-blue);
  color: #fff;
  box-sizing: border-box;
}

.point-lp-point__how-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 16px;
  padding: 0 16px;
  border-radius: var(--point-lp-radius-xs);
  background: #fff;
  color: var(--point-lp-blue);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  box-sizing: border-box;
}

.point-lp-point__how-label span {
  font-size: 24px;
}

.point-lp-point__how-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

.point-lp-point__how-main + .point-lp-point__how-note {
  margin-top: 24px;
}

.point-lp-point__how-body {
  flex: 1;
  min-width: 0;
  width: 100%;
  text-align: left;
}

.point-lp-point__how-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.point-lp-point__how-text {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.8;
}

.point-lp-point__how-text:last-child {
  margin-bottom: 0;
}

.point-lp-point__how-text--sub {
  font-size: 16px;
}

.point-lp-point__how-visual {
  flex-shrink: 0;
  width: 100%;
  max-width: 210px;
}

.point-lp-point__how-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.point-lp-point__how-note {
  padding: 24px 16px;
  border-radius: var(--point-lp-radius-md);
  background: #fff;
  color: var(--point-lp-text);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.point-lp-point__how-note-title,
.point-lp-point__how-note > p:first-child {
  margin: 0 0 8px;
  color: var(--point-lp-blue);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
}

.point-lp-point__how-note .is-em {
  color: var(--point-lp-cta);
  font-weight: bold;
}

.point-lp-point__how-note p {
  margin: 0 0 4px;
}

.point-lp-point__how-note p:last-child {
  margin-bottom: 0;
}

/* Placeholder for image areas (dev) */
.point-lp-point__how-visual:not(:has(img)),
.point-lp-flow__visual:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: var(--point-lp-radius-xs);
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.point-lp-flow__visual:not(:has(img)) {
  background: #eef3ff;
  color: #888;
}

/* ----------------------------------------
   Campaign
---------------------------------------- */
.point-lp-campaign {
  padding: 100px 0;
  color: #fff;
}

.point-lp-campaign__head {
  margin-bottom: 40px;
}

.point-lp-campaign__catch {
  margin: 0 0 8px;
  color: #ffef00;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.point-lp-campaign__title {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.point-lp-campaign__body {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.point-lp-campaign__main-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.point-lp-campaign__main {
  width: 100%;
  margin: 0 auto;
}

.point-lp-campaign__main img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.point-lp-campaign__detail-wrap {
  position: relative;
  width: 100%;
}

.point-lp-campaign__detail-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 261px;
  height: 50px;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  color: var(--point-lp-blue);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  pointer-events: none;
}

.point-lp-campaign__detail-badge-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.point-lp-campaign__detail-badge-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.point-lp-campaign__detail-badge-text {
  position: relative;
  z-index: 1;
  padding-top: 5px;
  white-space: nowrap;
}

.point-lp-campaign__detail {
  overflow: hidden;
  margin-top: 20px;
  border-radius: var(--point-lp-radius-lg);
  background: #fff;
  color: var(--point-lp-text);
}

.point-lp-campaign__detail-head {
  padding: 32px 20px 16px;
  background: #fff;
  text-align: center;
}

.point-lp-campaign__detail-title,
.point-lp-campaign__other-title {
  margin: 0;
  color: var(--point-lp-blue);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.point-lp-campaign__other-title {
  padding: 32px 20px 16px;
}

.point-lp-campaign__table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 2px 0;
  background: #0045CC;
}

.point-lp-campaign__row {
  display: flex;
  align-items: stretch;
  gap: 2px;
  margin: 0;
  background: #fff;
}

.point-lp-campaign__row dt {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  margin: 0;
  padding: 10px;
  background: #99ddff;
  color: var(--point-lp-text);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  box-sizing: border-box;
}

.point-lp-campaign__row dd {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 10px 20px;
  background: #fff;
  font-size: 14px;
  line-height: 1.8;
  box-sizing: border-box;
}

.point-lp-campaign__row dd p {
  margin: 0;
}

.point-lp-campaign__row dd p + p {
  margin-top: 8px;
}

.point-lp-campaign__row dd ul {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}

.point-lp-campaign__row dd li {
  margin: 0;
}

.point-lp-campaign__detail-foot {
  margin: 0;
  padding: 16px 20px 32px;
  background: #fff;
  font-size: 14px;
  line-height: 1.8;
  color: var(--point-lp-text);
}

.point-lp-campaign__detail-foot p {
  margin: 0;
}

.point-lp-campaign__other-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.point-lp-campaign__sub-title {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.point-lp-campaign__other-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.point-lp-campaign__other {
  overflow: hidden;
  border-radius: var(--point-lp-radius-lg);
  background: #fff;
  color: var(--point-lp-text);
}

.point-lp-campaign__other-foot {
  height: 32px;
  background: #fff;
  border-radius: 0 0 var(--point-lp-radius-lg) var(--point-lp-radius-lg);
}

.point-lp-campaign__body .point-lp-cv-btn {
  margin-top: 0;
}

/* ----------------------------------------
   Flow
---------------------------------------- */
.point-lp-flow {
  padding: 56px 0;
  background: #fff;
}

.point-lp-flow .point-lp-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.point-lp-flow__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  text-align: center;
}

.point-lp-flow__catch {
  margin: 0;
  color: var(--point-lp-blue);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.point-lp-flow__title {
  margin: 0;
  color: var(--point-lp-text);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.point-lp-flow__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
}

.point-lp-flow__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.point-lp-flow__step {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  background: var(--point-lp-blue);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

.point-lp-flow__step span {
  font-size: 24px;
}

.point-lp-flow__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 343px;
}

.point-lp-flow__body {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.point-lp-flow__visual {
  flex-shrink: 0;
  width: 100px;
}

.point-lp-flow__item--03 .point-lp-flow__visual {
  width: 125px;
}

.point-lp-flow__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.point-lp-flow__txt {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.point-lp-flow__item-title {
  margin: 0;
  color: var(--point-lp-text);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}

.point-lp-flow__txt p {
  margin: 0;
  color: var(--point-lp-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.point-lp-flow__note {
  margin: 0;
  color: var(--point-lp-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.point-lp-flow__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 40px;
  height: 20px;
  margin: 0;
}

.point-lp-flow__arrow picture {
  display: block;
  width: 100%;
  height: 100%;
}

.point-lp-flow__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.point-lp-flow .point-lp-cv-btn {
  margin-top: 0;
}

/* ----------------------------------------
   CV (final)
---------------------------------------- */
.point-lp-cv {
  padding: 56px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--point-lp-yellow-start) 0%, var(--point-lp-yellow-end) 30%, var(--point-lp-yellow-end) 70%, var(--point-lp-yellow-start) 100%);
}

.point-lp-cv__title {
  margin: 0 0 24px;
  line-height: 1.4;
}

.point-lp-cv__title img {
  display: block;
  width: 1213px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ----------------------------------------
   PC (min-width 769px)
---------------------------------------- */
@media (min-width: 769px) {
  .point-lp-inner {
    /* padding: 0 40px; */
  }

  .point-lp-flow .point-lp-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .point-lp-cv-btn {
    margin-top: 48px;
    padding-top: 22px;
  }

  .point-lp-cv-btn__badge {
    font-size: 24px;
  }

  .point-lp-cv-btn__link {
    font-size: 26px;
    padding-top: 28px;
    padding-bottom: 14px;
  }

  .point-lp-bg-yellow::before,
  .point-lp-bg-yellow::after,
  .point-lp-bg-blue::before,
  .point-lp-bg-blue::after {
    width: 60%;
    height: 100%;
  }

  /* KV */
  .point-lp-kv {
    padding: 80px 0;
  }

  .point-lp-kv .point-lp-inner {
    max-width: 1260px;
  }

  .point-lp-kv__head {
    gap: 16px;
    margin-bottom: 32px;
  }

  .point-lp-kv__label {
    padding: 8px 16px 8px 24px;
    border-radius: var(--point-lp-radius-sm);
    font-size: 32px;
  }

  .point-lp-kv__lead {
    font-size: 48px;
  }

  .point-lp-kv__text {
    font-size: 20px;
    text-align: center;
  }

  /* Anchor */
  .point-lp-anchor {
    border-bottom: 8px solid #002c82;
  }

  .point-lp-anchor__list {
    flex-wrap: nowrap;
  }

  .point-lp-anchor__item {
    width: 25%;
    border: none;
    border-right: 2px solid #fff;
  }

  .point-lp-anchor__item:nth-child(2n) {
    border-right: 2px solid #fff;
  }

  .point-lp-anchor__item:nth-child(n + 3) {
    border-bottom: none;
  }

  .point-lp-anchor__item:last-child {
    border-right: none;
  }

  .point-lp-anchor__link {
    gap: 10px;
    min-height: 56px;
    padding: 5px 12px;
    font-size: 15px;
    border: none;
  }

  /* About */
  .point-lp-about {
    padding: 100px;
  }

  .point-lp-about__text {
    font-size: 20px;
    text-align: center;
  }

  .point-lp-about__tag {
    padding: 4px 20px;
    font-size: 20px;
  }

  .point-lp-about__note {
    font-size: 16px;
  }

  .point-lp-about__feature {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 24px 40px;
    align-items: center;
    justify-content: center;
    padding: 56px 40px;
  }

  .point-lp-about__feature-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 36px;
  }

  .point-lp-about__feature-list {
    grid-column: 2;
    grid-row: 1 / span 2;
    gap: 16px;
    margin: 0;
  }

  .point-lp-about__feature-item {
    flex: 0 0 auto;
    max-width: none;
    width: 200px;
  }

  .point-lp-about__feature-item img {
    width: 200px;
    height: 200px;
  }

  .point-lp-about__feature-text {
    grid-column: 1;
    grid-row: 2;
    font-size: 20px;
  }

  .point-lp-about__notice {
    padding: 32px;
  }

  /* Point */
  .point-lp-point {
    padding: 100px 0;
  }

  .point-lp-point__badge {
    font-size: 30px;
  }

  .point-lp-point__catch {
    margin-bottom: 16px;
    font-size: 48px;
  }

  .point-lp-point__title {
    margin-bottom: 40px;
    font-size: 54px;
  }

  .point-lp-point__lead {
    font-size: 20px;
    text-align: center;
  }

  .point-lp-point__how {
    padding: 40px;
  }

  .point-lp-point__how-label {
    justify-content: flex-start;
    font-size: 24px;
  }

  .point-lp-point__how-label span {
    font-size: 28px;
  }

  .point-lp-point__how-main {
    flex-direction: row;
    align-items: self-start;
    gap: 16px;
  }

  .point-lp-point__how-body {
    text-align: left;
  }

  .point-lp-point__how-title {
    font-size: 36px;
    text-align: left;
  }

  .point-lp-point__how-text {
    font-size: 20px;
  }

  .point-lp-point__how-text--sub {
    font-size: 18px;
    width: 102%;
  }

  .point-lp-point__how-visual {
    width: auto;
    max-width: 210px;
  }

  .point-lp-point__how:nth-child(2) .point-lp-point__how-visual {
    max-width: 298px;
  }

  .point-lp-point__how:nth-child(3) .point-lp-point__how-visual {
    max-width: 319px;
  }

  .point-lp-point__how-list {
    gap: 24px;
  }

  .point-lp-point__how-note {
    padding: 24px 40px;
    border-radius: var(--point-lp-radius-sm);
    font-size: 20px;
    text-align: left;
  }

  .point-lp-point__how-note-title,
  .point-lp-point__how-note > p:first-child {
    font-size: 24px;
  }

  /* Campaign */
  .point-lp-campaign__head {
    margin-bottom: 40px;
  }

  .point-lp-campaign__catch {
    margin-bottom: 16px;
    font-size: 48px;
  }

  .point-lp-campaign__title {
    font-size: 60px;
  }

  .point-lp-campaign__main {
    max-width: 900px;
  }

  .point-lp-campaign__main img {
    border-radius: var(--point-lp-radius-lg);
  }

  .point-lp-campaign__detail-badge {
    width: 300px;
    height: 60px;
    font-size: 24px;
  }

  .point-lp-campaign__detail-badge-text {
    padding-top: 7px;
  }

  .point-lp-campaign__detail {
    margin-top: 30px;
  }

  .point-lp-campaign__detail-title,
  .point-lp-campaign__other-title {
    font-size: 28px;
  }

  .point-lp-campaign__row dt {
    width: 90px;
    background: #d9f2ff;
    font-size: 16px;
  }

  .point-lp-campaign__row dd {
    padding: 10px 16px;
    font-size: 16px;
  }

  .point-lp-campaign__detail-foot {
    font-size: 16px;
  }

  .point-lp-campaign__sub-title {
    font-size: 48px;
  }

  .point-lp-campaign__other-list {
    flex-direction: row;
    align-items: stretch;
  }

  .point-lp-campaign__other {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .point-lp-campaign__other-list .point-lp-campaign__other-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .point-lp-campaign__other .point-lp-campaign__table {
    flex: 1;
  }

  /* Flow */
  .point-lp-flow {
    padding: 100px 0;
  }

  .point-lp-flow__head {
    gap: 24px;
  }

  .point-lp-flow__catch {
    font-size: 48px;
  }

  .point-lp-flow__title {
    font-size: 60px;
  }

  .point-lp-flow__list {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
  }

  .point-lp-flow__item {
    flex: 1;
    min-width: 0;
  }

  .point-lp-flow__content {
    max-width: 360px;
  }

  .point-lp-flow__item--03 .point-lp-flow__content {
    max-width: none;
  }

  .point-lp-flow__item--03 .point-lp-flow__body {
    gap: 8px;
  }

  .point-lp-flow__step {
    font-size: 24px;
  }

  .point-lp-flow__step span {
    font-size: 28px;
  }

  .point-lp-flow__item-title {
    font-size: 28px;
  }

  .point-lp-flow__txt p {
    font-size: 20px;
  }

  .point-lp-flow__note {
    font-size: 16px;
  }

  .point-lp-flow__arrow {
    align-self: center;
    width: 35px;
    height: 40px;
    margin-top: 0;
  }

  .point-lp-flow__arrow img {
    transform: rotate(-90deg);
    transform-origin: center;
  }

  .point-lp-point__how-body {
    flex: 1;
  }

  /* CV */
  .point-lp-cv {
    padding: 100px 0 120px;
  }

  .point-lp-cv .point-lp-inner {
    max-width: 1107px;
  }

  .point-lp-cv__title {
    margin-bottom: 48px;
  }
}

/* ----------------------------------------
   SP fine-tuning (max-width 768px)
---------------------------------------- */
@media (max-width: 768px) {
  .point-lp-kv {
    padding-right: 16px;
    padding-left: 16px;
  }

  .point-lp-kv__label {
    width: 100%;
  }

  .point-lp-anchor__link {
    font-size: 12px;
  }

  .point-lp-about {
    padding: 100px 16px;
  }
  .point-lp-about__title{
    margin-bottom: 40px;
  }

  .point-lp-about__notice {
    margin-top: 40px;
  }

  .point-lp-about__notice-title {
    font-size: 20px;
  }

  .point-lp-about__notice p {
    font-size: 18px;
  }

  .point-lp-cv-btn {
    width: 100%;
    max-width: 100%;
  }

  .point-lp-cv-btn__link {
    font-size: 20px;
    padding: 20px 40px 10px 16px;
  }

  .point-lp-point {
    padding: 100px 16px;
  }

  .point-lp-point__how:nth-child(2) .point-lp-point__how-visual,
  .point-lp-point__how:nth-child(3) .point-lp-point__how-visual {
    max-width: 100%;
  }

  .point-lp-campaign {
    padding: 100px 16px;
  }

  .point-lp-flow {
    padding: 100px 16px 50px;
  }

  .point-lp-cv {
    padding: 100px 16px;
  }

}
