/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-size: 10px;
  color: #333;
  background: #fff;
}
a { text-decoration: none; color: inherit; }

@media (max-width: 840px) {
  html { font-size: 8px; }
}

@media (min-width: 788px) {
  br.sp-only { display: none; }
}

section {
  margin-bottom: 0;
}

/* ===== Section Wrapper ===== */
.rental-section {
  background: #F0F6FF;
}

.sm-container {
    max-width: calc(1200px + 8rem);
    margin: 0 auto;
    padding: 8rem 4rem;
}

/* ===== Eyebrow ===== */


span.title-eyebrow {
    font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 150%;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.032rem;
    background: linear-gradient(107deg, #0085CD 0%, #0866D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span.title-eyebrow::before {
  content: "・";
  background: linear-gradient(107deg, #0085CD 0%, #0866D0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* ===== Section Heading ===== */
h2.title-heading {
  color: #000F1B;
font-size: 4rem;
font-weight: 600;
letter-spacing: 0.08rem;
text-align: left;
margin-top: 1.6rem;
      line-height: 150%;

}

.section-intro {
    margin-top: 5.6rem;
    color: var(--black, #000F1B);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.032rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  font-weight: 400;
}
.badge--blue {
  background: #0078c8;
  color: #fff;
}
.badge--outline {
  border: 1.5px solid #098BDE;
  color: #0078c8;
  background: #fff;
  padding: 0.05rem 0.8rem;
}

/* ===== Product Grid ===== */
section.sec2 {
    background: #F0F6FF;
}

.product-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem;
}

@media (max-width: 840px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Product Card ===== */
.product-card {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1 0 0;
    background: #FFF;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.06);
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 120, 200, 0.15);
}

.product-card__name {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    color: #0458B5;
    font-size: 2rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.04rem;
}

.product-card__flow {
    font-size: 1.4rem;
    color: #000F1B;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.028rem;
    min-height: 4.8rem;
}

/* ===== Product Image Wrapper ===== */
.product-card__img-wrap {
  width: 100%;
  background: #f4f8fc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card__no-image {
  font-size: 11px;
  color: #aaa;
}

/* タグ群 */
.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tag {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 2px;
  line-height: 1.6;

}

.tag--type {
    border-radius: 0.4rem;
    background: #098BDE;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.024rem;
    border-radius: 0.4rem;
    background: var(--main_sub1, #098BDE);
    padding: 0.2rem 0.8rem;
    justify-content: center;
}

.tag--stock {
  background: #0078c8;
  color: #fff;
}
.tag--size {
  background: #fff;
  color: #555;
  border: 1px solid #ccc;
}
.tag--option {
  background: #fff6e6;
  color: #d07000;
  border: 1px solid #f0c870;
}

/* 詳しく見る リンク */
.product-card__link {
    color: #0078c8;
    font-weight: 600;
    display: inline-flex;
    gap: 2px;
    display: block;
    text-align: right;
    font-size: 1.6rem;
}

.product-card__link::after {
  position: relative;
  top: 0.5rem;
  content: "";
  background: url("../images/arrow-right-blue.svg") no-repeat center;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
}

.product-card__link:hover {
  text-decoration: underline;
  color: #0078c8;
}


/* ================================================
   HERO SECTION
   ================================================ */

.demo-mv {
  color: #fff;
}

/* 全幅ラッパー（画像が端まで伸びるため max-width なし） */
.demo-mv__inner {
    position: relative;
    z-index: 1;
    background-image: url("../images/demo_mv_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
}

/* ===== 左：製品画像群 ===== */
.demo-mv__img-left {
    position: relative;
    text-align: right;
    top: 6rem;
}

.demo-mv__img-left img {
  width: clamp(18rem, 24vw, 29rem);
  height: auto;
}

/* ===== 中央：テキスト ===== */
.demo-mv__body {
    margin: 0 auto;
    align-items: center;
    text-align: center;
    padding: 8rem 0;
    gap: 14px;
    position: relative;
}

.demo-mv__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
    position: relative; /* ← 追加 */
}

.demo-mv__title-wrap::after {
    content: '';
    position: absolute;
    right: -9rem;
    top: 2rem;
    transform: translateY(-50%);
    width: clamp(12rem, 14vw, 16.9rem);
    height: clamp(12rem, 14vw, 16.9rem);
    background-image: url('../images/icon_demo_mv_fee_badge.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.demo-mv__catch {
    font-size: 13px;
    letter-spacing: 0.04em;
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.04rem;
}

.demo-mv__divider {
  display: inline-block;
  width: 40rem;
  height: 0.2rem;
  border: 0;
  border-top: 2px dotted #E2E7EE;
  margin-top: 0.8rem;
}


.demo-mv__title {
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.096rem;
    margin-top: 2.4rem;
}

.demo-mv__title span {
    font-weight: 700;
    font-size: 6.4rem;
    letter-spacing: 0.128rem;
}
.demo-mv__wrap {
  display: flex;
  justify-content: center;
}

.demo-mv__free-badge {
    position: absolute;
    right: -15rem;
    top: 2rem;
}

img.demo-mv__free-icon {
    position: absolute;
    width: 16.9rem;
    height: 16.9rem;
    top: 2rem;
    right: 28rem;
}

/* 3つのアイコン説明 */
.demo-mv__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

li.demo-mv__feature {
    min-width: 26.5rem;
    align-items: center;
    text-align: left;
    display: flex;
    padding: 2rem;
    gap: 1rem;
    font-size: 1.6rem;
    border-radius: 4px;
    color: white;
    position: relative;
    background: linear-gradient(
        -45deg,
        rgba(15, 110, 177, 0.25) 0%,
        rgba(15, 110, 177, 0.40) 50%,
        rgba(15, 110, 177, 1) 100%
    );
    border: 1px solid rgba(0, 207, 255, 0.4);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.15);
}

.demo-mv__feature img {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

p.demo-mv__feature-text {
  display: block;
font-size: 1.6rem;
font-weight: 600;
line-height: 150%; /* 2.4rem */
letter-spacing: 0.032rem;
}

/* リンク注釈 */
.demo-mv__note {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.032rem;
    margin-top: 3.2rem;
}

.demo-mv__note::before {
  content: "＼ ";
}
.demo-mv__note::after {
  content: " ／";
}

/* CTAボタン */
.demo-mv__cta-wrap {
    display: inline-block;
    margin-top: 0.8rem;
}

a.demo-mv_btn {
    position: relative;
    display: flex;
    color: var(--white, #FFF);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 0.3125rem;
    background: #EB8310;
    padding: 1.6rem 7.6rem 1.6rem 5.6rem;
    align-items: center;
    border: none;
    transition: filter 0.3s;
    border-radius: 0.5rem;
}
a.demo-mv_btn:hover {
    filter: brightness(1.1);
}

.demo-mv_btn span {
    padding: 0.4rem;
    border-radius: 0.2rem;
    border: 1px solid var(--white, #FFF);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.16rem;
    margin-right: 2rem;
}

a.demo-mv_btn:after {
    position: absolute;
    right: 1.6rem;
    content: "";
    display: inline-block;
  width: 2.4rem;
height: 2.4rem;
    margin-left: 1rem;
    background: url("../images/icon_btn_arrow.svg") no-repeat center / contain;
}
.demo-mv__free-tag {
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff6600;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 4px;
  transition: filter 0.2s;
  white-space: nowrap;
}
.btn-cta:hover {
  filter: brightness(1.1);
}
.btn-cta::after {
  content: "▶";
  font-size: 10px;
}

/* ===== 右：製品画像 ===== */
.demo-mv__right {
    position: relative;
    align-content: flex-end;
    bottom: 6rem;
}
.demo-mv__img-right {
    width: clamp(14rem, 20vw, 24.3rem);
    height: auto;
}



/* ================================================
   TROUBLE SECTION（お困りではありませんか？）
   ================================================ */

.trouble {
  background: #1a5fa8;
  padding: 40px 0;
  position: relative;
}

.trouble::after {
  content: "";
  position: absolute;
  left: 0;
  bottom:-4.8rem;
  width: 100%;
  height: 4.8rem;
  background: #1a5fa8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.trouble__inner {
  color: #fff;
  max-width: calc(1200px + 8rem);
  padding: 0 4rem;
  margin: 0 auto;
}

.trouble__heading {
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.04rem;
}

.trouble__heading strong {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.056rem;
}

.trouble__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.4rem;
  gap: 1.6rem;
}

@media (max-width: 680px) {
  .trouble__cards { grid-template-columns: 1fr; }
}

.trouble-card {
    background: #fff;
    padding: 2.4rem;
    gap: 0.8rem;
    border-radius: 0.5rem;
    position: relative;
}

.trouble-card img {
    position: absolute;
    bottom: 1.6rem;
    right: 1.63rem;
    width: 3.2rem;
    height: 3.2rem;
}

.trouble-card__text {
  color: #222;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 0.032rem;
}

.trouble-card__text span {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
}



/* ================================================
   SOLUTION SECTION（無料のデモ機貸出で解消できます）
   ================================================ */

.solution {
  padding: 100px 0 4.97rem;
  background: #fff;
}

.solution__inner {
    max-width: calc(1270px + 8rem);
    padding: 0 4rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    align-items: center;
}

.solution__text {
  max-width: 66rem;
}

.solution__eyebrow {
    font-weight: 500;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.048rem;
    background: linear-gradient(107deg, #0085CD 0%, #0866D0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution__heading {
    font-size: 4rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.08rem;
    background: linear-gradient(107deg, #0085CD 0%, #0866D0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.8rem;
    text-align: left;
}

.solution__divider {
    width: 100%;
    height: 0.2rem;
    border: 0;
    border-top: 3px dotted  #639EE1 ;
    margin: 4px 0
}
.solution__item {
    display: inline-block; /* pのテキスト幅に合わせて縮む */
}

.solution__lead {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: flex-start;
    margin-top: 4rem;
}

.solution__lead p {
    display: inline-block;
    color: var(--main, #0458B5);
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.04rem;
    margin-top: 0.8rem;
}

.solution__body {
    color: #000F1B;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.036rem;
    margin-top: 1.6rem;
}

.solution__img {
  width: 100%;
  max-width: 56.4rem; /* これ以上は大きくならない */
  height: auto;
  margin-left: auto; /* 右寄せにしたい場合 */
}

.solution__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 564 / 392.625;
  object-fit: cover;
  display: block;
}

/* ================================================
   MERITS SECTION（3つのメリット）
   ================================================ */

@media (max-width: 680px) {
  .merits__cards { grid-template-columns: 1fr; }
  .merits__heading { font-size: 22px; }
}

.merits__cards {
    display: flex;
    align-items: center;
    margin-top: 4rem;
    gap: 3.2rem;
  align-items: stretch;
}

.merit-card {
    display: flex;
    padding: 2.4rem;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1 0 0;
    border-radius: 0.8rem;
    background: rgba(0, 133, 205, 0.10);
}

.merit-card__label {
font-size: 1.6rem;
font-weight: 600;
line-height: 150%; /* 2.1rem */
letter-spacing: 0.028rem;
background: var(--gradation-new, linear-gradient(107deg, #0085CD 0%, #0866D0 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display:block;
align-items: center;

}

.merit-card__label span {
font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
font-size: 2.4rem;
font-weight: 700;
line-height: 100%;
letter-spacing: 0.048rem;
margin-left: 0.4rem;
}

.merit-card__title {
color: var(--main, #0458B5);
font-size: 2.4rem;
font-weight: 600;
line-height: 150%; /* 3.6rem */
letter-spacing: 0.048rem;
text-align: left;
margin-top: 0.8rem;
margin-bottom: 0.6rem;
}

hr.demo-merit__divider {
    display: block;
    width: 100%;
    height: 0.2rem;
    border: 0;
    border-top: 2px dotted #fff;
    margin-top: 1.2rem;
}

.merit-card__body {
font-size: 1.6rem;
font-weight: 600;
line-height: 175%; /* 2.8rem */
letter-spacing: 0.032rem;
}




/* ================================================
   CTA BANNER（まずは無料デモ機で）
   ================================================ */
.cta-banner {
    background: url(../images/img_demo_cta_bg.png);
    background-size: cover;
    background-position: center;
    padding: 56px 24px;
    text-align: center;
    color: #fff;
}

.cta-banner__eyebrow {
    letter-spacing: 0.05em;
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.08rem;
}

.cta-banner__heading {
    text-align: center;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 175%;
    letter-spacing: 0.144rem;
}

.cta-banner__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    flex-wrap: wrap;
    margin-top: 3.2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6600;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  transition: filter 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.1); }

.cta-banner__btns a.-cta_btn {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.072rem;
  border-radius: 0.5rem;
  line-height: 150%;
  min-width: 38.4rem;
  align-items: center;
  transition: filter 0.3s;
}

.cta-banner__btns a.-cta_btn:hover {
  filter: brightness(1.1);
}

.cta_btn_contact.-cta_btn:hover {
  background-color: #1a324d;
}
.demo-mv_btn.-cta_btn {
  padding: 2.4rem 7.6rem 2.4rem 8.8rem;
}
.demo-mv_btn.-cta_btn::before {
    position: absolute;
    content: "";
    width: 12rem;
    height: 12rem;
    top: -3rem;
    left: -1.5rem;
    background: url("../images/img_cta_demo.png") no-repeat center / contain;}

a.cta_btn_contact{
  position: relative;
  align-items: center;
  color: var(--white, #FFF);
  text-align: center;
  background: #001731;
  padding: 2.4rem 6rem 2.4rem 4rem;
}

.cta-banner__btns a.-cta_btn::after {
    position: absolute;
    right: 1.6rem;
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-left: 1rem;
    background: url("../images/icon_btn_arrow.svg") no-repeat center / contain;
}

.cta_btn_contact:hover { background: rgba(255,255,255,0.25); }

.cta-banner__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.072rem;
}

a.cta-banner__tel-number {
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
}

.cta-banner__tel-hours {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.056rem;
}

a.cta-banner__tel-number::before {
    content: "";
    display: inline-block;
    margin-right: 0.4rem;
    background: url("../images/ico_tel_white.svg") no-repeat center / contain;
    width: 2.2rem;
    height: 2.2rem;
    aspect-ratio: 1/1;
    vertical-align: middle;
    margin-bottom: 0.4rem;
}


/* ================================================
   FLOW SECTION（デモ機貸し出しの流れ）
   ================================================ */

.flow__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.flow__eyebrow {
  font-size: 12px;
  color: #0078c8;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}

.flow__heading {
  font-size: 28px;
  font-weight: 900;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
}

/* 上段4ステップ */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}

/* ステップ間の矢印 */
.flow__steps .flow-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #0078c8;
  font-weight: 700;
}

@media (max-width: 680px) {
  .flow__steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .flow__steps .flow-step:not(:last-child)::after { display: none; }
}

.flow-step {
    position: relative;
    border: 2px solid #0078c8;
    border-radius: 6px;
    padding: 20px 16px 16px;
    margin: 0 16px;
    border-radius: 0.5rem;
    border: 2px solid var(--gray-lighter, #E2E7EE);
    background: var(--white, #FFF);
}

.flow-step:first-child { margin-left: 0; }
.flow-step:last-child { margin-right: 0; }

.flow-step__label {
    text-align: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(107deg, #0085CD 0%, #0866D0 100%);
    letter-spacing: 0.08em;
    padding: 0.8rem 1.6rem;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    line-height: 100%;
    letter-spacing: 0.028rem;
    border-radius: 2.4rem;
}

.flow-step__icon {
  font-size: 28px;
  line-height: 1;
}

.flow-step__title {
    color: #0458B5;
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.04rem;
}

.flow-step__body {
  font-size: 11px;
  color: #555;
  line-height: 1.7;
}

.flow-step__note {
  font-size: 10px;
  color: #888;
  margin-top: 4px;
}

/* 下段（STEP05 + ご選択後） */
.flow__bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}

@media (max-width: 680px) {
  .flow__bottom { grid-template-columns: 1fr; }
}

.flow__bottom-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.flow-step--gray {
  border-color: #ccc;
}
.flow-step--gray .flow-step__label {
  color: #888;
}

.flow__choice-label {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}


/* ================================================
   FAQ SECTION（よくあるご質問）
   ================================================ */

.faq {
  margin-bottom: 8rem;
}

.faq__inner {
    max-width: calc(960px + 8rem);
    margin: 0 auto;
    padding: 0 4rem 8rem;
}

.faq__eyebrow {
  font-size: 12px;
  color: #0078c8;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}

.faq__heading {
  font-size: 28px;
  font-weight: 900;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #dde3ea;
}
.faq-item:first-child {
  border-top: 1px solid #dde3ea;
}

.faq-item span.faq-item__q-label {
  background: var(--gradation-new, linear-gradient(107deg, #0085CD 0%, #0866D0 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 100%; /* 2.8rem */
  letter-spacing: 0.056rem;
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.faq-item__q {
    display: flex;
    align-items: flex-start;
    padding: 2rem 0;
    cursor: pointer;
    color:#0458B5;
    font-weight: 600;
    line-height: 150%;
    font-size: 2rem;
    letter-spacing: 0.04rem;
    gap: 0.8rem;
}
.faq-item__q::marker { display: none; }

/* .faq-item__q::before {
    content: "";
    background: url("../images/ico_demo_faq.svg") no-repeat center;
    margin-right: 0.8rem;
    width: 3.1rem;
    height: 2.8rem;
} */
.faq-item__q-toggle {
  margin-left: auto;
  font-size: 18px;
  color: #0078c8;
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .faq-item__q-toggle {
  transform: rotate(45deg);
}

.faq-item__a {
    padding-bottom: 2.4rem;
    color: var(--black, #000F1B);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.032rem;
}
.step-list {
    display: flex;
    gap: 3.2rem;
    margin-bottom: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    display: flex;
    padding: 2.4rem;
    gap: 1.6rem;
    border-radius: 0.5rem;
    border: 2px solid #E2E7EE;
    flex-direction: column;
    position: relative;
}

.step-title {
    color: var(--main, #0458B5);
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.04rem;
}

.step-card p {
  max-width: 22rem;
  font-size: 1.6rem;
}

.step-card-desc {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-direction: column;
}

.step-card-desc span {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 175%;
  letter-spacing: 0.028rem;
  margin-top: 1.6rem;
}

.step-badge {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding: 0.8rem 1.6rem;
  align-items: center;
  align-self: stretch;
  line-height: 1;
  border-radius: 2.4rem;
  background: var(--gradation-new, linear-gradient(107deg, #0085CD 0%, #0866D0 100%));
}

.step-icon {
  text-align: center;
  width: 4rem;
height: 4rem;
aspect-ratio: 1/1;
margin: 0 auto;
}

.step-card::after {
    content: '';
    background: url(../images/arrow-right-blue.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -3.5rem;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
}

.step-card:nth-child(6)::after,
.step-card:nth-child(7)::after {
  display: none;
}


.step-card-wrap {
  display: flex;
  gap: 4.2rem;
}

.step-card-wrap_item {
    display: flex;
    text-align: center;
    gap: 1.2rem;
    flex-direction: column;
}

.step-card-wrap_item P {
  text-align: left;
}

.step-card-wrap_item .step-title {
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

hr.step-card-wrap_divider {
  width: 0;
  height: 29rem;
  border: 0;
  border-left: 0.15rem dotted #E2E7EE;
}

.step-card:last-child {
  border: none;
  justify-content: flex-end;
}

.-center-title {
  text-align: center;
  margin-bottom: 4rem;
}
.-center-title.-flow-title {
  margin-bottom: 6.4rem;
}

.-center-title h2.title-heading {
  text-align: center;
}

.cta-footer-contact {
  border-radius: 0 0 1rem 1rem;
background: #001731;
}
.cta-footer-demo {
  padding: 7.2rem 14rem;
  font-weight: 600;
  line-height: 150%;
}

.cta-footer-demo span {
font-size: 2rem;
letter-spacing: 0.08rem;
}

article #sec5 .cta-footer-demo h2 {
font-size: 3.6rem;
letter-spacing: 0.144rem;
margin-top: 0.8rem;
}

.cta-footer-demo__des {
    display: flex;
    align-items: center;
    margin-top: 4.8rem;
    gap: 2.4rem;
    justify-content: center;
    line-height: 150%;
    letter-spacing: 0.072rem;
}

.cta-footer-demo__des p {
    max-width: 52rem;
    font-size: 1.8rem;
}

.cta-footer-demo__des .header_btn.-cta_btn {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white, #FFF);
font-size: 1.8rem;
font-weight: 700;
}


/* CTA 下部 濃紺部分 */
.header_btn.-footer_btn {
background: #001731;
    border: 1.5px solid var(--white, #FFF);
    font-size: 1.6rem;
}
.header_btn.-footer_btn:hover {
  background: #1a324d;
}

.cta-footer-demo {
  background-image: url(../images/img_demo_footer_cta.png);
}

.cta-mail {
    border-right: 1px solid #fff;
}

@media (max-width: 1263px) {
  .step-card:last-child {
    width: 100%;
  }
  .step-card:last-child .step-card-desc p {
    max-width: 100%;
  }
  .step-card:last-child .step-card-desc span {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .solution__inner,
  .merits__cards,
  .cta-banner__tel {
    flex-direction: column;
  }

  .step-card::after {
    display: none;
  }

  .step-card-wrap {
    flex-direction: column;
  }

  hr.step-card-wrap_divider {
    width: 100%;
    height: 0;
    border: 0;
    border-top: 0.15rem dotted #E2E7EE;
  }

  .cta-footer-demo {
    width: 100%;
    padding: 4rem 2rem;
  }

  .cta-footer-demo h2 {
   margin-top: 1rem;
  }

  .cta-footer-demo__des {
    flex-direction: column;
    gap: 3rem;
  }

  .cta-footer-demo__des .header_btn.-cta_btn {
    width: 100%;
  }

  .cta-mail {
    border-right: none;
    margin-bottom: 4rem;
  }

  br.pc-only { display: none; }

  li.demo-mv__feature,
.demo-mv__note,
.trouble-card__text,
span.title-eyebrow,
.section-intro,
.merit-card__body,
.step-card p,
.faq-item__a,
.header_btn.-footer_btn {
    font-size: 1.8rem;
}

.product-card__flow,
.product-card__link,
.step-card-desc span {
    font-size: 1.6rem;
}

}

@media (max-width: 840px) {
  /* .demo-mv__inner {
    grid-template-columns: 180px 1fr 140px;
    min-height: 220px;
  }
  .demo-mv__title { font-size: 28px; }
  .demo-mv__img-left img { width: 200px; }
  /* .demo-mv__img-right { width: 160px; } */
.demo-mv__title-wrap::after {
    display: none;
  }
  .demo-mv__title span { font-size: 5rem; }
  h2.title-heading { font-size: 3.5rem; }
  .solution__lead p { font-size: 1.8rem; }

}

@media (max-width: 600px) {
  .demo-mv__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .demo-mv__img-left,
  .demo-mv__right { display: none; }
  .demo-mv__body { padding: 32px 20px; }
  .demo-mv__title { font-size: 26px; white-space: normal; }
}