:root {
  --color-main: #de4d52;
  --color-main-hover: #c12932;
  --color-main-hover-secondary: #fceaed;
  --color-text: #1f2933;
  --color-muted: #475569;
  --color-border: #e9aeb5;
  --color-bg: #fff7f7;
  --color-card: #ffffff;
  --shadow: 0 18px 45px rgba(193, 41, 50, .16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.75;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 36px;
  border-radius: 999px;
  background: #165AA7;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 14px 26px rgba(21,101,192,.28);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover {
  background: #0D4E96;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(13,71,161,.30);
}
.btn--small { min-height: 44px; padding: 0 20px; font-size: 14px; }
.btn--ghost { background: #fff; color: var(--color-main-hover); border: 1px solid var(--color-border); box-shadow: none; }
.btn--ghost:hover { background: var(--color-main-hover-secondary); color: var(--color-main-hover); }

/* ===============================
   FV / HERO
=============================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 36px;
  background: linear-gradient(180deg, #fff1f3 0%, #fff 100%);
}

.hero .container {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 24px 28px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
}

.kicker{
    display:inline-block;
    align-self:flex-start;
    width:auto;

    padding:10px 18px;

    color:var(--color-main);
    font-size:15px;
    font-weight:800;
    line-height:1;

    background:#fff;
    border:1.5px solid var(--color-main);
    border-radius:999px;
}

.kicker::before{
    display:none;
}

.kicker::before{
    display:none;
}

.hero h1 {
  margin: 18px 0 20px;

  font-size: 50px;
  line-height: 1.25;
  letter-spacing: -.03em;
  font-weight: 900;
}

.hero h1 .accent{
  color: var(--color-main-hover);
}

.keep{
  white-space: nowrap;
}

.hero__badges{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  margin-top:16px;
  gap:12px 24px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:0;
  margin-right:0;
  border:none;
  background:transparent;
  box-shadow:none;
  color:#165AA7;
  font-size:18px;
  font-weight:800;
  line-height:1.4;
}

.badge::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:#165AA7;
  flex-shrink:0;
}

.hero__subaction{
  margin-top:18px;
}

.hero__subaction a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:52px;
  padding:0 40px;

  border:1px solid #165AA7;
  border-radius:999px;

  background:#fff;
  color:#165AA7;

  font-size:18px;
  font-weight:800;

  box-shadow:0 6px 14px rgba(21,90,167,.08);
  transition:.2s;
}

.hero__subaction a:hover{
  background:#eef6ff;
  border-color:#165AA7;
  color:#165AA7;
}

.hero__photo{
  position:relative;
}

.hero__photo img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  border:8px solid #fff;
  border-radius:22px;
  box-shadow:0 18px 38px rgba(222,77,82,.18);
}

.hero__label{
  position:absolute;
  left:18px;
  bottom:18px;

  padding:10px 16px;

  background:rgba(0,0,0,.45);
  backdrop-filter:blur(3px);

  border:none;
  border-radius:8px;

  color:#fff;
  font-size:14px;
  font-weight:700;
    
  letter-spacing:.05em;   /* ←追加 */

  line-height:1.5;         /* ←追加 */

  box-shadow:none;
}

.hero__label .normal{
  color:#fff;
  font-weight:600;
}

.hero__label .strong{
  color:#fff;
  font-weight:900;
}

.hero__label span{
  color:#fff;
}

.hero__label .normal{
  font-weight:600;
}

.hero__label .strong{
  font-weight:900;
}


/* FV CTA */
.hero__noticebox{
  margin-top:28px;
  padding:28px 34px 32px;

  border:none;

  border-radius:20px;

  background:#fff;

  box-shadow:0 10px 28px rgba(0,0,0,.06);

  text-align:center;
}

.hero__actions{
    display:flex;
    justify-content:center;
    margin-bottom:24px;   /* ←追加（20〜30pxがおすすめ） */
}

.page .hero__actions .btn.btn--main{
    width:90%;
    max-width:880px;
    min-height:96px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;

    padding:0 56px;

    font-size:32px;
    font-weight:800;
    line-height:1;

    border-radius:999px;

    background:#de4d52;
    color:#fff;

    box-shadow:
        0 8px 0 #b83b40,
        0 20px 34px rgba(222,77,82,.30);
}

.btn__arrow{
    position:relative;
    width:40px;
    height:40px;
    background:#fff;
    border-radius:50%;
    flex-shrink:0;
}

.btn__arrow::before{
    content:"";
    position:absolute;
    left:12px;
    top:50%;
    width:11px;
    height:11px;
    border-top:4px solid #de4d52;
    border-right:4px solid #de4d52;
    transform:translateY(-50%) rotate(45deg);
}

.btn__arrow:hover{
    background:#c12932;
    transform:translateY(-2px);

    box-shadow:
        0 9px 0 #9f2028,
        0 22px 36px rgba(193,41,50,.34);
}


.hero__formnote {
  width: fit-content;
  margin: 14px auto 24px;
  padding: 0;
  border-radius: 0;

  background: none;

  color: #555;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.hero__formnote strong {
  color: #1f2933;
  font-weight: 800;
}

/* Notice */
.notice {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  box-shadow: none;
}
.notice__head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.notice__icon{
    width:56px;      /* 44→56 */
    height:56px;

    border-radius:50%;

    background:#fdecee;

    display:grid;
    place-items:center;

    color:#de4d52;

    font-size:34px;   /* 24→34 */
    font-weight:900;
}
.notice__title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.notice-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  white-space:nowrap;
}
.notice-accent {
  color: var(--color-main);
  font-weight: 900;
}

/* ===============================
   SECTION COMMON
=============================== */
.section { padding: 48px 0; }
.section--pale { background: linear-gradient(180deg, #fff, var(--color-bg)); }
.section--point { padding-top: 32px; }
.section__head { margin-bottom: 16px; }
.section__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .08em;
  color:#165AA7;
  padding-bottom: 6px;
  border-bottom:3px solid #b9d4f2;
}
.section h2 {
  margin: 8px 0 10px;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.35;
  letter-spacing: -.04em;
}
.section__lead {
  margin: 0;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
}

/* POINT */
.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.point {
  padding: 44px 36px;
  background: #fff;
  border-radius: var(--radius-lg);
  border:1px solid #D9DEE5;
 box-shadow:0 10px 28px rgba(222,77,82,.10);
}
.point__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.point__head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
}
.point__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}
.point__head .point__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin: 0;
}
.point__icon img,
.point__head .point__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.point h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.45;
  min-height: 58px;
}
.point p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

/* CATEGORY */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border:1px solid #D9DEE5;
  box-shadow: 0 10px 28px rgba(222,77,82,.10);
  display: flex;
  flex-direction: column;
  transition: .25s ease;
}
.card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: .2s;
}
.card__body {
  padding: 18px 18px 20px;
  flex: 1;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.4;
  min-height: 36px;
}
.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

/* USE CASE */
.usecase {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.usecase__list {
  display: grid;
  gap: 18px;
  grid-template-rows: repeat(3, 1fr);
}
.usecase__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 22px;
  align-items: center;
  background: #fff;
  border:1px solid #D9DEE5;
  border-radius: 20px;
box-shadow:0 10px 28px rgba(222,77,82,.10);
}
.usecase__num{
  width:34px;
  height:34px;

  border-radius:12px;

  background:#4B5563;     

  color:#fff;

  display:grid;
  place-items:center;

  font-size:16px;
  font-weight:900;
}
.usecase__item h3 {
  margin: 0;
  font-size: 22px;
}
.usecase__item p {
  margin: 2px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 400;
}
.usecase__photo { height: 100%; }
.usecase__photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  min-height: 320px;
}

/* FLOW */
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  counter-reset: flow;
}
.flow__item {
  position: relative;
  padding: 24px;
  min-height: 135px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #f0d1d4;
  box-shadow: 0 10px 24px rgba(222,77,82,.08);
}
.flow__item:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  font-size: 38px;
  font-weight: 900;
  color: var(--color-main);
  background: transparent;
}
.flow__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.flow__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.flow__item h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 12px;
}
.flow__item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

/* CTA */
.cta {
  padding: 16px 0 64px;
  background: var(--color-bg);
}
.cta__box {
  padding: 40px;
  border-radius: 30px;
  background: #fff;

  border: none;

  box-shadow: 0 8px 24px rgba(0,0,0,.05);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  letter-spacing: -.03em;
}
.cta p {
  margin: 0;
  color: var(--color-muted);
}
.cta__box .btn{
    min-width:520px;
    min-height:74px;

    padding:0 48px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;              /* ←追加 */

    background:#de4d52;
    color:#fff;

    font-size:26px;
    font-weight:800;
    line-height:1;

    border-radius:999px;

    box-shadow:
        0 6px 0 #b83b40,
        0 16px 28px rgba(222,77,82,.25);

    transition:.2s;
}

.cta__box .btn:hover {
  background: #c12932 !important;

  box-shadow:
    0 7px 0 #9f2028,
    0 18px 30px rgba(193,41,50,.30) !important;
}

.footer { padding: 24px 0 32px; background: #fff; color: #8a95a3; font-size: 12px; }
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.mobile-fixed { display: none; }

.sp-br,
.sp-only { display: none; }

/* ===============================
   TABLET
=============================== */
@media (max-width: 920px) {
  .hero__grid,
  .usecase {
    grid-template-columns: 1fr;
  }

  .points {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta__box {
    display: block;
    text-align: center;
  }

.cta__box .btn {
    width: 100%;
    max-width: 340px;
    min-width: 0;

    min-height: 72px;

    margin-top: 22px;
    padding: 12px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 18px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
}
}

.pc-only{
  display:inline;
}

/* ===============================
   SMARTPHONE
=============================== */
@media (max-width: 640px) {
  .sp-br,
  .sp-only { display: block; }
    .pc-only{
    display:none;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding: 24px 0 0;
  }

  .hero .container {
    padding: 18px 14px 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: 24px;
    line-height: 1.35;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.8;
  }

.hero__badges{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    margin-top:12px;
}


  .badge{
    width:100%;
    font-size:18px;
  }

  .hero__subaction {
    text-align: center;
  }

  .hero__subaction a {
    min-height: 44px;
    font-size: 15px;
    padding: 0 22px;
  }

  .hero__photo {
    width: 90%;
    margin: 0 auto;
    transform: none;
  }

  .hero__photo img {
    border-radius: 22px;
    border-width: 6px;
  }

  .hero__label {
    position: static;
    margin-top: 12px;
    border-radius: 18px;
    text-align: center;
    font-size: 13px;
    padding: 10px 12px;
  }

  .hero__noticebox {
    margin-top: 20px;
    padding: 18px 14px 22px;
  }

.page .hero__actions .btn.btn--main{
    width:100%;
    max-width:320px;
    min-width:0;

    min-height:56px;

    padding:0 18px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;

    font-size:18px;
    font-weight:800;
    line-height:1.2;

    white-space:nowrap;
}
    
  .hero__formnote {
    width: 100%;
    margin: 10px auto 18px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.5;
  }

  .notice {
    width: 100%;
    gap: 10px;
  }

  .notice__head {
    flex-direction: column;
    gap: 8px;
  }

  .notice__icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
.notice__title {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.notice-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
  white-space: normal;
}

.notice {
  width: 100%;
  padding: 0 12px;
}

.notice__body {
  width: 100%;
}

  .section {
    padding: 42px 0;
  }

  .section--point {
    padding-top: 58px;
  }

  .section__eyebrow {
    font-size: 20px;
  }

  .section h2 {
    font-size: 27px;
    line-height: 1.4;
  }

  .section__lead {
    font-size: 16px;
  }

  .point {
    padding: 24px 22px;
  }

  .point__head {
    gap: 12px;
  }

  .point__head .point__icon {
    width: 64px;
    height: 64px;
  }

  .point__head h3 {
    font-size: 21px;
  }

  .point p {
    font-size: 16px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card img {
    aspect-ratio: 16 / 10;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 16px;
  }

  .usecase {
    gap: 22px;
  }

  .usecase__photo img {
    min-height: auto;
  }

  .usecase__item {
    padding: 20px;
  }

  .usecase__item h3 {
    font-size: 20px;
  }

  .usecase__item p {
    font-size: 16px;
  }

  .usecase .section__head h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .flow__item {
    padding: 22px;
    min-height: auto;
  }

  .flow__item h3 {
    font-size: 21px;
  }

  .flow__item p {
    font-size: 16px;
  }

  .flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    right: -38px;
    bottom: auto;
    transform: translate(-50%, 16px);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 20px solid var(--color-main);
    background: none;
    padding: 0;
    font-size: 0;
  }

  .cta {
    padding-bottom: 40px;
  }

  .cta__box {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .cta h2 {
    font-size: 25px;
  }

  .cta p {
    font-size: 15px;
  }

.cta__box .btn{
    width:100%;
    max-width:320px;
    min-width:0;

    min-height:56px;

    padding:0 18px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    font-size:18px;
    font-weight:800;
    line-height:1.2;

    white-space:nowrap;
}
    
}

/* iPad幅ではFLOWの矢印を維持 */
@media (min-width: 641px) and (max-width: 1100px) {
  .flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
  }

  .flow__item:not(:last-child)::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 38px;
    font-weight: 900;
    color: var(--color-main);
    background: transparent;
  }
}



/* 対応カテゴリを見る：青に戻す */
.hero__subaction a{
  border:1px solid #165AA7 !important;
  color:#165AA7 !important;
  background:#fff !important;
}

.hero__subaction a:hover{
  background:#eef6ff !important;
  border-color:#165AA7 !important;
  color:#165AA7 !important;
}

/* FLOWだけ赤 */
.flow-section .section__eyebrow{
    color:#de4d52 !important;
    border-bottom:3px solid #efb4b8 !important;
}

.btn__arrow{
    width:30px;
    height:30px;
}

.btn__arrow::before{
    left:9px;
    width:8px;
    height:8px;
    border-top:3px solid #de4d52;
    border-right:3px solid #de4d52;
}

/* ヘッダーのカート内だけ、LP用の赤い丸を消す */
.headerNavi__link.is-cart .badge::before{
    content:none !important;
    display:none !important;
}
