
.is-sp-only {
  display: none;
}
.is-pc-only {
  display: block;
}
.global-logo {
  transition: opacity 0.3s ease!important;
}

.global-header-nav-list-item {
  position: relative;
}

@media (any-hover: hover) {
  .global-logo:hover {
    opacity: 0.6!important;color: inherit;
  }

  .global-header-nav-list :where(.global-header-nav-list-item) a:hover {
    color: var(--color-text-high)!important;
    opacity: 1!important;
  }

  .global-header-nav-list-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;          /* 最初は幅ゼロ */
    height: 2px;
    background-color: var(--color-text-high);
    transition: width 0.3s ease;
  }
  .global-header-nav-list-item:hover::after {
    width: 100%;       /* ホバーで全幅に広がる */
  }
}

.lp-button {
  border-radius: 23px;
  border: 2px solid var(--Intra-deep-blue, #1B4F9C);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  font-size: var(--font-size-sm);
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  width: 135px;
  transition: opacity 0.3s ease;
}

.lp-button-demo {
  background: #FFF;
  color: var(--Intra-deep-blue, #1B4F9C);
}

.lp-button-consult {
  background: var(--Intra-yellow, #FFD726);
  color: var(--Intra-deep-blue, #1B4F9C);
}

@media (any-hover: hover) {
  .lp-button-demo:hover, .lp-button-consult:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}


/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(116deg, #2093E0 11.59%, #2476ED 62.48%);
  padding: 72px 0 24px;
}

/* 背景画像レイヤー */
.hero-bg-img {
    position: absolute;
    top: -35%;
    right: -35%;
    background: url(/images/lp/fv_ui.png) center / cover no-repeat;
    width: 80%;
    z-index: 0;
    opacity: 0.2;
    transform: rotate(-20deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: var(--layout-content-width);
}

.hero-text {
  flex: 0 0 auto;
  font-weight: 700;
}


.hero-sub {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: var(--font-size-text-2xl, 24px);
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.hero-headline {
  color: #FFF;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 53.2px */
  letter-spacing: 1.52px;
}

.hero-headline .highlight-box {
  display: inline;
  background: var(--Intra-white, #FFF);
  color: #196EE8;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1.52px;
  padding: 4px 10px;
  margin-right: 4px;
}

.hero-headline .brand {
  display: block;
}

.hero-desc {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.hero-badges img {
  display: block;
  border-radius: 4px;
  width: auto;
  height: 48px;
}

.hero-cta, .bottom-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero-cta a, .bottom-cta a {
  border-radius: 34.002px;
  border: 1px solid var(--Intra-deep-blue, #1B4F9C);
  box-shadow: 1px 3px 0 0 #003E99;
  display: flex;
  width: 260px;
  padding: 14px var(--spacing-xl, 32px);
  justify-content: center;
  align-items: center;
  color: var(--Intra-deep-blue, #1B4F9C);
  font-size: var(--font-size-text-xl, 20px);
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
  z-index: 0;
    transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .hero-cta a:hover, .bottom-cta a:hover { 
    opacity: 0.6;
    text-decoration: none;
  }
}

.btn-demo {
  background: #FFF;
}

.btn-consult-wrap {
  position: relative;
}

.btn-consult {
  background: var(--Intra-yellow, #FFD726);
}

.btn-tag {
  position: absolute;
  top: -18px;
  left: 20%;
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  background-color: #1b4f9c;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 0.25;
  color: #ffffff;
  z-index: 1;
}

.btn-tag::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 14px 10px 0 10px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.btn-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10.6px 7.5px 0 7.5px;
  border-color: #1b4f9c transparent transparent;
  translate: -50% 100%;
}

/* ─── intro-band ─── */
.intro-band {
  color: var(--Intra-white, #FFF);
  text-align: center;
  font-size: var(--font-size-text-sm, 14px);
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.7px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.intro-band::before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.intro-band::after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.intro-band::before, .intro-band::after {
  display: inline-block;
  width: 68px;
  height: 3px;
  margin-top: 16px;
  background-color: #fff;
  content: "";
}

.intro-band-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 2.4px;
  margin: 0;
}

.intro-band .num {
  color: var(--Intra-yellow, #FFD726);
  font-family: Montserrat;
  font-size: var(--font-size-text-5xl, 48px);
  font-weight: 700;
  line-height: 160%; /* 76.8px */
  letter-spacing: 2.4px;
}

.intro-band strong {
  font-size: 2.4rem;
  font-weight: 700;
}

/* ─── case-carousel ─── */
.case-carousel{
  margin: 15px 0 0;
  overflow: hidden;
}

.case-carousel-list {
  overflow: visible !important; /* slickのデフォルトを上書き */
}

.slick-slide {
  margin: 0 8px;
}

.slick-list {
  margin: 0 -8px;
}

.case-carousel-item{
  display: flex;
  align-items: center;
  margin: 4px;
}

/* ── お悩み ── */
.problem {
  padding: 84px 0 60px;
  position: relative;
  background-color: transparent;
  isolation: isolate;
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F2F7FF;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 208.8px),  /* 右端のカット量 */
    0 100%                        /* 左端はそのまま */
  );
  z-index: -2;
  mix-blend-mode: multiply;
}

/* bg1：右下カット・薄い青（bg2の上） */
.problem::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #E0ECFF;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,                    /* 右端はそのまま */
    0 calc(100% - 112.18px)      /* 左端のカット量 */
  );
  z-index: -1;
  mix-blend-mode: multiply;
}
.problem-inner {
  margin-inline: var(--layout-content-width);
  z-index: 2;
  position: relative;
}

.problem-heading {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
  letter-spacing: 1.6px;
  margin-bottom: 48px;
}

.problem-catch {
  background: #fff;
  color: var(--Intra-blue, #186FED);
  display: inline-block;
  margin: 0;
}

.problem-title {
  color: #0A264F;
  margin: 0;
}

/* ── カード ── */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.problem-card {
  display: flex;
  padding: 16px 9px 26px 9px;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--Intra-blue, #186FED);
  background: #FFF;
}

.problem-card__img {
  display: flex;
  width: 150px;
  height: 150px;
  padding: 17px 4px;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1/1;
}

.problem-card__img img {
  max-height: 100%;
  object-fit: contain;
}

.problem-card__title {
  color: var(--Intra-blue, #186FED);
  text-align: center;
  /* colorkrew/text-xl-b */
  font-family: "Noto Sans JP";
  font-size: var(--font-size-text-xl, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

.problem-card__text {
  color: var(--Intra-blue-gray, #526788);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--font-size-text-md, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
}

/* ── 注意帯 ── */
.problem-notice {
  padding: var(--spacing-lg, 24px) 132px var(--spacing-lg, 24px) var(--spacing-2xl, 40px);
  border-radius: 10px;
  border: 1px solid var(--Intra-yellow, #FFD726);
  background: #FFFAE5;
  position: relative;
}
.problem-notice__text {
  color: var(--Intra-dark-blue, #0A264F);
  text-align: center;
  font-size: var(--font-size-text-lg, 18px);
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}
.notice-lead { margin: 0; }

.notice-main {
  margin: 0;
}

.notice-main strong {
  color: var(--Intra-blue, #186FED);
  font-size: var(--font-size-text-2xl, 24px);
  line-height: 160%;
  letter-spacing: 1.2px;
}

.notice-note {
  color: var(--Intra-dark-blue, #0A264F);
  font-size: var(--font-size-text-xs, 12px);
  font-weight: 500;
  line-height: 140%; /* 16.8px */
}

.problem-notice__char {
  position: absolute;
  right: -5%;
  bottom: -45px;
  text-align: center;
}

.problem-notice__char img {
  height: 240px;
  object-fit: contain;
}

/* ── CTA ── */
.problem-cta {
  text-align: center;
  margin: 40px 0 0;
}

.problem-cta p {
  color: var(--Intra-dark-blue, #0A264F);
  font-size: 32px;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
  letter-spacing: 1.6px;
}

.problem-cta strong {
  color: var(--Intra-blue, #186FED);
  font-size: 32px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.6px;
}

.problem-cta strong span {
  font-size: var(--font-size-text-4xl, 40px);
  letter-spacing: 2px;
}

.problem-cta__arrow {
  text-align: center;
}
.problem-cta__arrow img {
  width: 120px;
}

/* ── SP ── */



/* ─── 強み ─── */
.strength {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.strength-bg {
  position: absolute;
  width: 55%;
  height: 70%;
  left: -5%;
  z-index: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  opacity: 0.7;
}

.strength-inner {
  margin-inline: var(--layout-content-width);
  position: relative;
  z-index: 2;
}

/* ─── 見出し ─── */
.strength-heading {
  text-align: center;
  margin-bottom: 56px;
}

.strength-sub {
  color: var(--Intra-dark-blue, #0A264F);
  font-size: var(--font-size-text-xl, 20px);
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

.strength-title {
  color: var(--Intra-blue, #186FED);
  font-size: var(--font-size-text-4xl, 40px);
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

.strength-title span {
  color: var(--Intra-dark-blue, #0A264F);
}

/* ─── アイテム（左右2カラム） ─── */
.strength-item {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 56px;
}

.strength-item:last-child {
  margin-bottom: 0;
}

/* 逆順（テキスト左・画像右） */
.strength-item .reverse {
  flex-direction: row-reverse;
}

/* 画像 */
.strength-item__img {
  flex: 0 0 44%;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
  aspect-ratio: 45/32;
}

.strength-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキスト */
.strength-item__body {
  flex: 1 1 auto;
}

/* タグラベル */
.strength .item-tag {
  padding: 4px 8px;
  background: var(--Intra-deep-blue, #1B4F9C);
  color: var(--Intra-white, #FFF);
  font-size: var(--font-size-text-2xl, 24px);
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.2px;
  display: inline-block;
  margin: 0 0 8px;
}

/* 大見出し */
.strength .item-title {
  padding: 4px 8px;
  background: var(--Intra-deep-blue, #1B4F9C);
  color: var(--Intra-white, #FFF);
  font-size: var(--font-size-text-2xl, 24px);
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.2px;
  display: inline-block;
}

.strength .item-title span {
  color: var(--Intra-yellow, #FFD726);
}

/* 本文 */
.item-text {
  color: var(--Intra-blue-gray, #526788);
  font-size: var(--font-size-text-lg, 18px);
  font-weight: 500;
  line-height: 160%; /* 28.8px */
}

/* ─── SP ─── */

/* ─── 3つの価値 ─── */
.value {
  background: #F2F7FF;
  padding: 80px 0;
  position: relative;
}

.value-bg__layer1,
.value-bg__layer2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: 0;
}

.value-inner {
  margin-inline: var(--layout-content-width);
  position: relative;
  z-index: 2;
}

/* ─── 見出し ─── */
.value-heading {
  text-align: center;
  margin-bottom: 48px;
}

.value-title {
  color: var(--Intra-blue, #0A264F);
  text-align: center;
  font-size: var(--font-size-text-4xl, 40px);
  font-weight: 700;
  line-height: 160%; /* 64px */
  letter-spacing: 2px;
}

.value-title span {
  color: var(--Intra-blue, #186FED);
}

/* ─── アイテムリスト ─── */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 64px;
}

/* ─── 各アイテム ─── */
.value-item {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* 画像エリア */
.value-item__img {
  flex: 0 0 46%;
  border-radius: 10px;
  overflow: hidden;
  height: 284px;
  align-self: stretch;
  aspect-ratio: 45/32;
}

.value-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキストエリア */
.value-item__body {
  position: relative;
  flex: 1 1 auto;
}

/* 番号 */
.value .item-num {
  display: block;
  margin-bottom: 0; /* リセット */
  position: relative;
  z-index: 0;
}

.value .item-num img {
  height: 80px;
  width: auto;
  display: block;
  opacity: 0.8; /* 少し透かして馴染ませる */
}

/* 小見出し */
.value .item-title {
  color: var(--Intra-dark-blue, #0A264F);
  font-size: var(--font-size-text-2xl, 24px);
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.2px;
  margin-top: -40px; 
  position: relative;
  z-index: 1; /* 数字より前面に */
  padding-left: 4px;
}

/* 本文 */
.value .item-text {
  color: var(--Intra-blue-gray, #526788);
  font-size: var(--font-size-text-lg, 18px);
  font-weight: 500;
  line-height: 160%; /* 28.8px */
}

/* ─── CTA ─── */
.value-cta {
  text-align: center;
}

.value-cta__tag {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 24px;
  border-radius: 9999px;
  background-color: #186fed;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}

.value-cta__tag::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #186fed transparent transparent;
  translate: -50% 100%;
}

.value-cta__text {
  color: var(--Intra-dark-blue, #0A264F);
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
  letter-spacing: 1.6px;
  margin: 0;
}

.value-cta__text strong {
  color: #186FED;
  font-weight: 700;
  background-image: linear-gradient(0deg, transparent, #ffdd49 2px, #ffdd49 10px, transparent 10px);
}

/* ─── SP ─── */



/* ─── 主要機能の紹介 ─── */
.lp-features {
  background: linear-gradient(90deg, #1F93E0 21.84%, #2476ED 83.26%);
  padding: 80px 0 32px;
  position: relative;
}

.lp-features__bg1 {
  position: absolute;
  width: 45%;
  z-index: 0;
  right: 5%;
  top: 5%;
  opacity: 0.4;
}

.lp-features__bg2 {
  position: absolute;
  width: 45%;
  z-index: 0;
  left: 5%;
  top: 30%;
  opacity: 0.4;
}

.lp-features-inner {
  margin-inline: var(--layout-content-width);
  position: relative;
  z-index: 2;
}

/* ─── 見出し ─── */
.lp-features-heading {
  text-align: center;
  margin-bottom: 48px;
}

.lp-features-sub {
  color: var(--Intra-white, #FFF);
  text-align: center;
  font-size: var(--font-size-text-xl, 20px);
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
  margin: 0;
}

.lp-features-sub span {
  font-size: var(--font-size-text-2xl, 24px);
}

.lp-features-title {
  color: var(--Intra-white, #FFF);
  text-align: center;
  font-size: var(--font-size-text-4xl, 40px);
  font-weight: 700;
  line-height: 160%; /* 64px */
  letter-spacing: 2px;
}

/* ─── 白いボックス ─── */
.lp-features-box {
  background: #fff;
  border-radius: 10px;
  padding: 40px 32px 48px;
  margin-bottom: 24px;
}

/* ─── グループ ─── */
.lp-features-group {
  margin-bottom: 32px;
}

.lp-features-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* グループヘッダー */
.group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.group-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.group-title {
  color: var(--Intra-dark-blue, #0A264F);
  font-size: var(--font-size-text-lg, 18px);
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

/* ─── アイテムグリッド ─── */
.group-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* 各アイテム */
.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 4px;
  background: var(--Intra-light-blue-2, #E5EFFF);
  box-shadow: 1px 1px 2.5px 0 rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .feature-item:hover {
    background: #CDE1FF;
    transform: translateY(-3px);
  }
}

.feature-item:hover {
  background: #e3f0fb;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.1);
}

.feature-item__text {
  flex: 1;
}

.feat-title {
  color: var(--Intra-dark-blue, #0A264F);
  font-family: "Noto Sans JP";
  font-size: var(--font-size-text-md, 16px);
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
  margin: 0;
}

.feat-desc {
  color: var(--Intra-blue-gray, #526788);
  font-size: var(--font-size-text-sm, 14px);
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.7px;
  margin: 0;
}

/* ─── SP ─── */

/* ─── 拡張機能 ─── */
.expand {
  background: linear-gradient(90deg, #1F93E0 21.84%, #2476ED 83.26%);
  padding: 0;
}

.expand-inner {
  margin-inline: var(--layout-content-width);
}

/* ─── ラベル ─── */
.expand-label {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
  letter-spacing: 1.6px;
  margin: 0;
}

/* ─── 大ボックス ─── */
.expand-box {
  border-radius: 10px;
  background: rgba(9, 88, 200, 0.70);
  padding: 56px 32px;
  margin: 24px 0 62px;
  position: relative;
}

/* ＋装飾 */
.plus-icon {
  position: absolute;
  top: -90px;
  left: -8px;
}

.expand-box__header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.expand-box__sub {
  color: var(--Intra-white, #FFF);
  text-align: center;
  font-size: var(--font-size-text-xl, 20px);
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
  margin: 0;
}

.expand-box__title {
  color: var(--Intra-white, #FFF);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.6px;
}

.expand-box__title span {
  color: #FFD726; /* 黄色みで強調 */
}

/* ─── 4カラムカード ─── */
.expand-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.expand-card {
  background: #fff;
  border-radius: 10px;
  padding: var(--spacing-lg, 24px) var(--spacing-md, 16px);
}

.expand-card__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
}

.expand-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expand-card__title {
  color: var(--Intra-dark-blue, #0A264F);
  font-size: var(--font-size-text-lg, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.expand-card__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 0 20px;
}

.expand-card__list li {
  color: var(--Intra-blue, #186FED);
  font-size: var(--font-size-text-md, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
  list-style: disc;
  cursor: pointer;
  taransition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .expand-card__list li:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}
.expand-card__list a {
  color: var(--Intra-blue, #186FED);
  text-decoration: none;
}

.expand-card__list a:hover {
  color: #1565c0;
  text-decoration: none;
}

.expand-card__list__icon {
  display: inline-flex;
  align-items: center;
}
.expand-card__list__icon img {
  width: 16px;
}

/* ─── リリース実績 ─── */
.expand-release {
  text-align: center;
  padding-bottom: 0;
}

.release-title {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
  letter-spacing: 1.6px;
}

.release-title strong {
  font-size: var(--font-size-text-6xl, 56px);
  line-height: 100%; /* 56px */
  letter-spacing: 2.8px;
  background: var(--5, linear-gradient(180deg, #FFE98A 29.33%, #FFB224 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.release-deco {
  width: 5.294px;
  height: 41.712px;
  transform: rotate(151.944deg);
  flex-shrink: 0;
}

.release-deco img {
  vertical-align: middle;
}

.release-sub {
  color: #FFF;
  text-align: center;
  font-size: var(--font-size-text-xl, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

.release-sub span {
  color: var(--Intra-yellow, #FFD726);
}

.release-note {
  padding: var(--spacing-sm, 12px) var(--spacing-xl, 32px);
  margin: 24px 0 32px;
  border-radius: 10px;
  background: #FFF;
  display: inline-block;
}

.release-note p {
  color: var(--Intra-blue, #186FED);
  text-align: center;
  font-size: var(--font-size-text-md, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
  margin: 0;
}

.release-img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.release-img img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* ─── SP ─── */

/* ─── お客様の声 ─── */
.testimonials {
  background: #F2F7FF;
  padding: 80px 0;
}
.testimonials-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

/* ===== Swiper wrapper ===== */
.voice-swiper-wrapper {
  position: relative;
}
.swiper {
  overflow: hidden;
  padding: 8px 4px 40px; /* 下: ページネーション用 */
}

/* ===== Card ===== */
.voice-card {
  padding: 32px 24px 24px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 10px;
  border: 1px solid var(--Intra-blue, #186FED);
  background: var(--Intra-white, #FFF);
  position: relative;
}
.voice-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

/* カテゴリバッジ */
.voice-card__badge {
  display: inline-flex;
  padding: var(--spacing-xxs, 8px) var(--spacing-sm, 12px);
  align-items: center;
  gap: 4px;
  border-radius: 0 6px 0 6px;
  background: var(--Intra-blue, #186FED);
  position: absolute;
  right: -1px;
  top: 0;
}

.voice-card__badge img {
  border-radius: 50%;
  background: #D0E3FF;
  padding: 6px;
}

.voice-card__badge p {
  color: #FFF;
  font-size: var(--font-size-text-md, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
  margin: 0;
}

.voice-card__title {
  color: var(--Intra-dark-blue, #0A264F);
  font-size: var(--font-size-text-xl, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

.voice-card__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}

.voice-card__desc {
  color: var(--Intra-blue-gray, #526788);
  font-size: var(--font-size-text-md, 16px);
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
  margin: 0;
}

.voice-card__avatar {
  width: 120px;
}
.voice-card__avatar img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== ナビゲーション矢印 ===== */
.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
  position: static;
  margin: 0;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}

.swiper-controls .swiper-button-prev::after,
.swiper-controls .swiper-button-next::after {
  content: '' !important;
  display: none;
  text-rendering: initial;
}

.swiper-controls .swiper-button-next svg, .swiper-controls .swiper-button-prev svg {
  fill: #186FED;
}

/* ===== ページネーション ===== */
.swiper-controls .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.swiper-controls .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: #BCCDE7;
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
}
.swiper-controls .swiper-pagination-bullet-active {
  background: #186FED;
}

.button, .modal-button-prev, .modal-button-next {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .button:hover, .modal-button-prev:hover, .modal-button-next:hover {
    opacity: 0.7;
    background: none!important;
  }
}

.faq-section {
  margin-inline: var(--layout-content-width);
  padding-block: var(--spacing-3xl);
}

.faq-title {
  color: var(--Intra-dark-blue, #0A264F);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--font-size-text-4xl, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: 2px;
}

/* ===== アコーディオンリスト ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 40px 0 0;
}

/* ===== 1アイテム ===== */
.faq-list-item {
  border: 1.5px solid #186FED;
  border-radius: 10px;
  overflow: hidden;
  background: var(--Intra-light-blue-2, #E5EFFF);
}
.faq-list-item.is-open {
}

/* ===== トリガー（質問行） ===== */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: var(--spacing-lg, 24px) 30px 20px 30px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .faq-trigger:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}
/* Q バッジ */
.faq-trigger__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #186FED;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-trigger__text {
  flex: 1;
  color: var(--Intra-blue, #186FED);
  font-size: var(--font-size-text-xl, 20px);
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

/* シェブロンアイコン */
.faq-trigger__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #186FED;
  transition: transform .3s ease;
}
.faq-list-item.is-open .faq-trigger__icon {
  transform: rotate(180deg);
}

/* ===== アンサーパネル ===== */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  background: var(--Intra-white, #FFF);
}
.faq-list-item.is-open .faq-panel {
  border-top: var(--letter-spacing-1, 1px) solid var(--Intra-blue, #186FED);
  grid-template-rows: 1fr;
}

.faq-panel__inner {
  overflow: hidden;
}

.faq-panel__body {
  padding: var(--spacing-lg, 24px) 30px;
  color: #526788;
  font-size: var(--font-size-text-md, 16px);
  font-weight: 500;
  line-height: 160%; /* 25.6px */
}

/* リスト形式の回答 */
.faq-panel__body ul {
  margin-top: 8px;
  padding-left: 1.2em;
}
.faq-panel__body li {
  margin-bottom: 4px;
  list-style: disc;
}

/* ===== セクション全体 ===== */
.cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl, 32px);
  align-self: stretch;
  background: var(--4, linear-gradient(116deg, #2093E0 11.59%, #2476ED 62.48%));
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* コンテンツ */
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-inline: var(--layout-content-width);
  padding-block: var(--spacing-3xl);
}

/* サブテキスト（上） */
.cta-inner__sub {
  color: var(--Intra-white, #FFF);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
  letter-spacing: 1.6px;
  margin: 0;
}

/* メインコピー */
.cta-inner__title {
  color: var(--Intra-yellow, #FFD726);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.6px;
}

/* 説明文 */
.cta-inner__desc {
  color: var(--Intra-white, #FFF);
  text-align: center;
  font-size: var(--font-size-text-xl, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
  margin-bottom: 32px;
}



.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* ロゴ */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo__img {
  height: 28px;
  width: auto;
}


/* ナビ */
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-nav__row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav__row .footer-nav__link {
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.7px;
}

@media (any-hover: hover) {
  .footer-nav__row .footer-nav__link:hover {
    opacity: 0.6!important;color: inherit;
    transition: opacity 0.3s ease!important;
  }
}

.footer-nav__row2 {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-nav__row2 .footer-nav__link {
  color: #FFF;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-nav__row2 .footer-nav__link:hover {
  color: #fff;
}
.footer-nav__row2 .footer-nav__link img {
  width: 9px;
  height: 9px;
}
/* ================================================
   SP（max-width: 1024px）
   ================================================ */
@media screen and (max-width: 1024px) {
  .global-logo, .global-header-nav-button {
    z-index: 101;
  }

  .global-header-nav {
    padding: 32px 0 16px;
    z-index: 100;
  }

  .global-header-nav-list {
    gap: 0!important;
    padding: 0;
  }
  .global-header-nav-list-item{
    border-bottom: 1px dashed var(--Intra-dark-blue, #0A264F);
    padding: 12px 0;
  }

  @media (any-hover: hover) {
    .global-header-nav-list-item::after {
        content: none;
    }
  }
}
/* ================================================
   SP（max-width: 999px）
   ================================================ */
@media screen and (max-width: 999px) {
  .is-pc-only {
    display: none;
  }

  .is-sp-only {
    display: block;
  }


  .hero {
    padding: 32px 0;
  }

  .hero-bg-img {
    top: -9%;
  }

  .hero-image{
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .hero-inner {
    height: auto;
    flex-direction: column-reverse;
  }

  .hero-text {
    text-align: center;
    padding: 0;
  }
  .hero-sub { font-size: 16px; }
  .hero-headline { font-size: 22px; }
  .hero-headline .highlight-box { 
    font-size: 22px; 
    padding: 0px 8px;
  }
  .hero-desc { 
    font-size: 14px; 
    text-align: left;
  }
  .hero-badges { justify-content: center; }
  .hero-badges img { height: 64px; }
  .hero-cta, .bottom-cta {
    flex-direction: column-reverse;
    margin-top: 32px 24px 0;
  }
  .intro-band { margin: 32px 5px 0; }
  .intro-band-text { letter-spacing: 0.8px; }
  .intro-band strong { font-size: 20px; }
  .intro-band .num { font-size: 40px; }

  /* ── お悩み ── */
  .problem { padding: 48px 24px 0; }
  .problem::before {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      0 calc(100% - 48px)
    );
  }
  .problem::after {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 48px),
      0 100%
    );
  }
  .problem-inner { max-width: 100%; padding: 0; }
  .problem-heading { margin-bottom: 24px; line-height: 1.3; }
  .problem-catch { font-size: 24px; padding: 5px 12px; }
  .problem-title { font-size: 18px; margin-top: 10px; }

  .problem-cards { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
  .problem-card { width: 300px; margin: 0 auto; }
  .problem-card__text { margin-top: 5px; }
  .problem-notice__text { font-size: 14px; text-align: left; }
  .notice-main strong { font-size: 18px; }
  .problem-cta { margin: 100px 0 0; }

  .problem-notice { padding: 24px 24px 62px; } /* 下にキャラ分 */

  .problem-notice__char {
    bottom: -80px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .problem-notice__char img {
    height: 126px;
    margin: 0 auto;
  }

  .problem-cta p { font-size: 20px; letter-spacing: 1px; }
  .problem-cta strong { font-size: 20px; }
  .problem-cta strong span { font-size: 28px; }

  /* ── 強み ── */
  .strength { padding: 48px 24px 24px; }
  .strength-inner { max-width: 100%; padding: 0; }
  .strength-title { font-size: 24px; }
  .strength-heading { margin-bottom: 24px; }
  .strength-sub { font-size: 14px; }
  .strength .item-tag, .strength .item-title {
    font-size: 18px;
  }
  .strength-item {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
  }
  .strength-item.reverse {
    flex-direction: column-reverse;
    gap: 28px;
    margin-bottom: 40px;
  }

  .strength-item__img {
    flex: none;
    width: 100%;
  }
  .strength-bg {
    left: 0;
    top: 0;
    z-index: 0;
  }

  .strength .item-text  { font-size: 16px; }

  /* ── 3つの価値 ── */
  .value { padding: 48px 24px 48px; }
  .value-heading { margin-bottom: 24px; }
  .value-title { font-size: 22px; }

  .value-list { gap: 40px; }

  .value-item {
    flex-direction: column;
    gap: 20px;
  }
  .value .item-num {
    width: 60px;
  }
  .value .item-title {
    font-size: 18px;
    margin-top: -25px;
  }

  .value .item-text {
    font-size: 16px;
    margin-top: 5px;
  }
  .value-item__img {
    flex: none;
    width: 100%;
  }
  .value-cta__tag { font-size: 14px; }
  .value-cta__text  { font-size: 20px; }
  .value-cta__text strong { font-size: 20px; }

  /* ── 主要機能 ── */
  .lp-features { padding: 48px 0 0; }
  .lp-features-inner { max-width: 100%; }
  .lp-features-heading { margin-bottom: 24px; }
  .lp-features-heading .lp-features-sub { font-size: 14px; }
  .lp-features-sub span { font-size: 14px; }
  .lp-features-title { font-size: 24px; }
  .lp-features-box { padding: 8px 20px; }
  .lp-features-group { 
    border-bottom: 0.5px solid var(--Intra-blue, #186FED);
    padding: 24px 0 8px;
    margin: 0;
  }

  /* 開閉の矢印 */
  .group-header::after {
    content: '';
    display: block;
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #186FED;
    border-bottom: 2px solid #186FED;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  .lp-features-group.is-active .group-header::after {
    transform: rotate(-135deg); /* 開いたら上向き */
  }
  .lp-features-group.is-active .group-items {
    /* JSでmax-heightをセット */
  }
  .group-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    grid-template-columns: 1fr; /* 1カラムに */
    gap: 16px;
  }
  .group-title { font-size: 16px; }
  .feat-title { font-size: 13px; }
  .feat-desc  { font-size: 11px; }

  /* ── 拡張機能 ── */
  .expand-label { font-size: 24px; }
  .expand-inner { padding: 0; }
  .plus-icon {
    top: -80px;
    left: 5px;
  }
  .plus-icon svg { width: 60px; }
  .expand-box { padding: 40px 24px; margin: 24px 0 0; }

  .expand-box__title { font-size: 24px; }

  .expand-cards {
    grid-template-columns: repeat(2, 1fr); /* 2カラムに */
    gap: 10px;
  }
  .expand-box__sub { font-size: 14px; }
  .expand-card__title { font-size: 16px; }
  .expand-card__list li { font-size: 14px; }

  .expand-release { padding: 24px 24px 0; }
  .release-title { font-size: 24px; flex-wrap: wrap; }
  .release-deco { display: none; }
  .release-sub { font-size: 14px; }
  .release-title strong { font-size: 40px; }
  .release-note { padding: 12px 20px; font-size: 13px; }

  .testimonials {
    padding-block: var(--spacing-xl);
    padding-inline: var(--layout-content-width)
  }
  .testimonials-title { font-size: 24px; margin-bottom: 24px; }
  .voice-card__title { font-size: 16px; }
  .voice-card__desc { font-size: 14px; }
  .voice-card__badge p { font-size: 12px; }
  .voice-card__avatar { width: 73px; height: auto;}
  .faq-title { font-size: 24px; }
  .faq-trigger  { padding: 12px; }
  .faq-trigger__text { font-size: 16px; }
  .faq-trigger__badge { width: 24px; height: 24px; font-size: 14px; }
  .faq-trigger__icon { width: 16px; height: 16px;}
  .faq-panel__body { padding: 12px; font-size: 14px; }

  .cta-inner__sub { font-size: 24px; }
  .cta-inner__title { font-size: 24px; }
  .cta-inner__desc { font-size: 14px; margin-bottom: 40px; }
  
  .global-footer {
    padding: 32px 24px 40px!important;
    margin: 0!important;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 16px;
    border-bottom: none;
  }
  .footer-nav { align-items: flex-start; width: 100%; }
  .footer-nav__row, .footer-nav__row2 {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .footer-nav__row .footer-nav__link {
    padding: 16px 0;
    border-bottom: 1px dashed #fff;
    width: 100%;
  }
  .footer-nav__row2 .footer-nav__link {
    padding: 4px 0;
    width: 100%;
  }
}