/* Google Fonts を読み込む */
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700;900&display=swap');



/* ========================================= 
LPから引き継ぎ
========================================= */
.analy-fv {
    padding-top: 1.5rem;
}

.analy-fv_bg {
    height: 8.42rem;
}

.analy-fv_cta {
    width: min(9rem, 100%);
}

.analy-fv_header h1 .span4 {
    /* 			padding-right: 185px; */
}

@media screen and (min-width: 1024px) {
    .analy-fv_cta {
        min-width: 8rem;
        width: min(9rem, 100%);
    }
}

.analy-sec {
    padding: var(--pt, 1.2rem) var(--pr, max(5%, (100% - 15rem) * 0.5)) var(--pb, 1.2rem) var(--pl, max(5%, (100% - 15rem) * 0.5));
}


/* =========================
   FV 下部 2カラム
========================= */
.analy-fv_bottom {
    display: grid;
    grid-template-columns: 3fr 1fr;
    /* ← 3：1 */
    align-items: end;
    gap: 0;
    margin-top: clamp(24px, 4vw, 64px);
    margin: 0 auto 0;
    padding: 0;
    position: relative;
    width: min(10.5rem, 90%);
}

/* 左：CTA */
.analy-fv_bottom-left {
    min-width: 0;
}

/* 右：代表 */
.analy-fv_bottom-right {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 0;
}

/* =========================
   代表ブロック
========================= */
.analy-fv_ceo {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0px;
    align-items: start;
}

.analy-fv_ceoPhoto {
    width: clamp(80px, 19vw, 193px);
    margin: 0;
}

.analy-fv_ceoPhoto img {
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .18));
    /* max-height: 250px; */
}

/* 縦書き */
/* 代表テキスト全体を縦書きにする（確実に当てる） */
.analy-fv_ceoText {
    margin: 0;

    writing-mode: vertical-rl !important;
    /* まず縦書きを強制 */
    text-orientation: mixed;

    display: flex;
    flex-direction: column-reverse;
    /* 縦書きの列を横に並べる */
    gap: 10px;
    align-items: flex-start;

    letter-spacing: .08em;
    line-height: 1.15;
    color: #111;
    font-weight: 600;
    font-size: clamp(10px, 1.1vw, 16px);
}

/* 列ごとの調整 */
.analy-fv_ceoText .col {
    display: block;
    white-space: nowrap;
}

/* 右側に会社名を置きたい場合（vertical-rlだと先頭が右に来る） */
.analy-fv_ceoText .col-company {
    order: 3;
    /* 一番右 */
    text-orientation: upright;
    /* 英字を1文字ずつ縦積みにする */
    letter-spacing: .18em;
    /* TechSuiteを縦に見やすく */
    /* font-weight: 500; */
    opacity: .95;
}

/* 役職 */
.analy-fv_ceoText .col-role {
    order: 2;
    opacity: .9;
}

/* 名前（左列） */
.analy-fv_ceoText .col-name {
    order: 1;
    /* 一番左 */
    font-weight: 700;
    opacity: .9;
}


/* =========================
   SP対応
========================= */
@media (max-width: 767px) {
    .analy-fv_header h1 .span4 {
        padding-right: 0px;
        font-size: .5rem;
    }

    .analy-fv_ceoText {
        gap: 0;
    }

    .analy-fv_cta {
        min-width: 0;
    }

    .analy-fv_cta_btn a {
        font-size: 0.24rem;
        min-height: 0.9rem;
        padding: 0 2px;
    }

    .analy-fv_cta_points li+li {
        padding-left: 0.1rem;
        margin-left: 0.1rem;
    }

    .analy-fv_cta {
        padding: .2rem 0.1rem;
    }
}

.analy-fv_cta_points, .analy-fv_cta_btn {
    display: grid;
align-items: center;
    justify-content: center;
}

.btn_wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: transparent;
}

/* 吹き出し本体 */
.balloon {
    background: #fff;
    color: #2174DF;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 50px;
    white-space: nowrap;
    position: relative;
    border: 2px solid #2174DF;
    margin-bottom: -10px;
    animation: bounce 1.2s ease-in-out infinite;
    text-align: center;
    line-height: 1.3;
}

/* 外枠（三角の青） */
.balloon::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 8px 0 8px;
    border-style: solid;
    border-color: #2174DF transparent transparent transparent;
}

/* 内側（三角の白） */
.balloon::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.sp_hide .btn_download {
    width: 288px;
}


/* ========================================= 
ヘッダー
========================================= */

.btn_meeting::before {
    content: "";
    background: url(../img/desktop_fill.png) no-repeat center / contain;
    width: .96em;
    height: 1.6em;
}
#analy-fv {
  position: relative;
  overflow: hidden;
}

/* 背景画像を完全に背面へ */
#analy-fv picture,
#analy-fv .analy-fv_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#analy-fv .analy-fv_bg {
  object-fit: cover;
  z-index: 0;
}

/* オーバーレイ */
#analy-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ECF1F866;
  z-index: 1;
  pointer-events: none;
}

/* コンテンツを前面に */
#analy-fv .analy-fv_header,
#analy-fv .analy-fv_bottom,
#analy-fv .analy-fv_swiper,
#analy-fv .analy-fv_note {
  position: relative;
  z-index: 2;
}

.analy-header_logo {
    width: auto;
    margin: 0;
}
.analy-header_logo a {
    font-size: 0.3rem;
    color: #2174DF;
    font-weight: 600;
	line-height: 1;
}
.llmo-header_power {
      font-size: 0.15rem;
    color: #2174DF;
  text-align: right;
	line-height: 1;
}
.llmo-header-left {
    margin: 0 .2rem 0 .2rem;
}
.analy-header {
    left: 1.2rem;
    width: calc(100% - 2.6rem);
    justify-content: space-between;
padding: 0 20px;
}
@media screen and (max-width: 768px) {
    .analy-header {
        width: 90%;
        left: 5%;
        margin: .2rem 0;
    }
}
/* ========================================= 
FV
========================================= */
#analy-fv {
  position: relative;
  overflow: hidden;
}
/* 背景画像を完全に背面へ */
#analy-fv picture,
#analy-fv .analy-fv_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#analy-fv .analy-fv_bg {
  object-fit: cover;
  z-index: 0;
object-position: center 125%;
}

/* オーバーレイ */
#analy-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #eaf1fac2;
  z-index: 1;
  pointer-events: none;
}

/* コンテンツを前面に */
#analy-fv .analy-fv_header,
#analy-fv .analy-fv_bottom,
#analy-fv .analy-fv_swiper,
#analy-fv .analy-fv_note {
  position: relative;
  z-index: 2;
}

h1 span.span2 {
    color: #2174DF;
}
h1 span.span3 {
    color: #000;
}
.analy-fv_header h1 .span1 {
    gap: 0;
	    line-height: 1.2;
}
.analy-fv_header h1 {
    color: black;
}
p.llmo-fv_title {
    color: #2174DF;
    font-weight: 600;
    font-size: .6rem;
/*     filter: drop-shadow(0 0 0.2rem #fff); */
    line-height: 1;
}

.llmo-fv_sec {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.analy-fv_header p {
    gap: 0;
}
.llmo-fv_power {
    text-align: right;
    color: #2174DF;
    margin: 0 !important;
}

p.llmo-fv_content {
    color: black;
    font-family: Zen Old Mincho;
	font-weight: 400;
}
.analy-fv_cta {
    background: transparent;
    box-shadow: none;
	margin: 0;
	    padding: .4rem 0;
}
.analy-fv_swiper {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
	p.llmo-fv_title {
    margin-top: .2rem;
}
   p.llmo-fv_content {
font-size: 14px;
    line-height: normal;
    }
#analy-fv .analy-fv_bg {
/*     height: 60vh;
    min-height: auto; */
  }
	#analy-fv {
    max-height: 65vh;
}
}

/* ========================================= 
AI
========================================= */
#analy-case.analy-sec01 {
    padding-top: 1.5rem;
}
.analy-sec_title .large {
    position: relative;
    display: inline-block;
    margin-bottom: 2em;
}
.analy-sec_title .large:before {
  content: '';
  position: absolute;
  bottom: -25px;
  display: inline-block;
  width: 60px;
  height: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #2174DF;
  border-radius: 2px;
}

.case-present {
	text-align: center;
	margin-bottom: 20px;
}
.ai-search-section {
  max-width: 1080px;
  margin: 0 auto;
}

.ai-search-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.ai-search-card, .ai-search-graph {
    background: #FFF;
    /* border: 2px solid #2f74b7; */
    border-radius: 14px;
    box-sizing: border-box;
    box-shadow: 0px 4px 14px 0px #36637C40;
}

.ai-search-card {
  padding: 26px 22px 24px;
}

.ai-search-card__image {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ai-search-card__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.ai-search-card__title {
  margin: 0 0 16px;
  text-align: center;
  color: #2d73dd;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
}

.ai-search-card__title span {
  font-size: 1.9em;
  font-weight: 800;
  line-height: 1;
}

.ai-search-card__text {
  margin: 0;
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.ai-search-card__text span {
  color: #2d73dd;
  font-weight: 800;
  font-size: xx-large;
}
span.text-blue {
    font-size: medium;
    color: #2d73dd;
}

.ai-search-graph {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 18px 22px 20px;
}

.ai-search-graph__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 18px;
  margin: 0 0 14px;
  border: 1.5px solid #2d73dd;
  border-radius: 999px;
  background: #fff;
  color: #2d73dd;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.ai-search-graph__label span {
  font-size: 1.3em;
  font-weight: 800;
}

.ai-search-graph__label--small {
  min-height: 34px;
  padding: 6px 16px;
  font-size: 13px;
}

.ai-search-graph__chart img {
  width: 100%;
  height: auto;
  display: block;
}

.ai-search-graph__chart--small img {
  max-width: 100%;
}

.ai-search-graph__left {
    text-align: center;
}
.ai-search-graph__right {
    text-align: center;
}
.ai-search-graph__note {
  margin: 10px 0 0;
  color: #777;
  font-size: 14px;
  line-height: 1.7;
	text-align: left;
}

.ai-search-graph__desc {
  margin: 0 0 12px;
  color: #444;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

.ai-search-graph__desc span {
  color: #2d73dd;
  font-weight: 800;
	font-size: x-large;
}

@media (max-width: 960px) {
  .ai-search-cards {
    grid-template-columns: 1fr;
  }

  .ai-search-graph {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
#analy-case.analy-sec01 {
    padding: 1rem 16px 1.5rem
}
  .ai-search-card {
    padding: 20px 16px;
  }

  .ai-search-card__image {
    height: auto;
  }

  .ai-search-card__title {
    font-size: 17px;
  }

  .ai-search-card__text {
    font-size: 14px;
  }

  .ai-search-graph {
    gap: 20px;
    padding: 16px;
  }

  .ai-search-graph__label {
    font-size: 12px;
    padding: 6px 12px;
  }
.ai-search-graph__label span {
    display: contents;
}
  .ai-search-graph__desc {
    font-size: 14px;
  }

  .ai-search-graph__note {
    font-size: 12px;
  }
	.case-present {
        font-size: 12px;
}
}


/* ========================================= 
お悩み
========================================= */
.sec03-case {
  padding: 0px 20px 140px;
  background: #fff;
}

.sec03-case__inner {
  max-width: 1060px;
  margin: 0 auto;
}

.sec03-case__title {
  margin: 0;
  color: #2d2d2d;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.sec03-case__line {
  display: block;
  width: 50px;
  height: 6px;
  margin: 20px auto 42px;
  background: #2684ff;
  border-radius: 999px;
}

.sec03-case__list {
  display: grid;
  gap: 18px;
}

.sec03-case__item {
  position: relative;
  display: grid;
  grid-template-columns: 140px 120px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 162px;
  padding: 0px 34px 0px 0;
/*   background: #f5f5f5; */
  border: 3px solid #14a3ff;
  border-radius: 14px;
  overflow: hidden;
}

.sec03-case__badge {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.sec03-case__badge img {
  width: 130px;
  height: auto;
  display: block;
  margin-top: -3px;
  margin-left: -3px;
}

.sec03-case__person {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec03-case__person img {
  width: 94px;
  height: auto;
  display: block;
}

.sec03-case__content {
  padding-right: 8px;
}

.sec03-case__heading {
  margin: 0 0 3px;
  color: #2d7df6;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.sec03-case__text {
  margin: 0;
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.sec03-case__bottom {
  margin-top: 42px;
  text-align: center;
}

.sec03-case__arrow {
  position: relative;
  width: 0;
  height: 0;
  margin: 0 auto 26px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid #2d7df6;
}

.sec03-case__lead {
  margin: 0;
  color: #2d2d2d;
font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.sec03-case__lead span {
  color: #2d7df6;
  font-size: 50px;
  font-weight: 800;
}


@media (max-width: 900px) {
  .sec03-case__title {
    font-size: 36px;
  }

  .sec03-case__item {
    grid-template-columns: 110px 90px 1fr;
    gap: 14px;
    padding: 22px 20px 22px 0;
  }

  .sec03-case__badge img {
    width: 102px;
  }

  .sec03-case__person img {
    width: 74px;
  }

  .sec03-case__heading {
    font-size: 19px;
  }

  .sec03-case__text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .sec03-case {
    padding: 0px;
  }

  .sec03-case__title {
    font-size: 28px;
  }

  .sec03-case__line {
    margin: 16px auto 28px;
  }

  .sec03-case__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 16px 18px;
  }

  .sec03-case__badge {
    position: absolute;
    top: -3px;
    left: -3px;
    z-index: 2;
  }

  .sec03-case__badge img {
    width: 88px;
    margin: 0;
  }

  .sec03-case__person {
    justify-content: flex-start;
    padding-top: 34px;
   margin: 0 auto;
    min-height: 84px;
  }

  .sec03-case__person img {
    width: 72px;
  }

  .sec03-case__content {
    padding-right: 0;
  }

  .sec03-case__heading {
    font-size: 18px;
    line-height: 1.5;
  }

  .sec03-case__text {
    font-size: 14px;
    line-height: 1.8;
  }
	
	 .sec03-case__bottom {
    margin-top: 30px;
  }

  .sec03-case__arrow {
    margin-bottom: 20px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 16px;
  }

  .sec03-case__lead {
    font-size: 20px;
    line-height: 1.45;
  }
	.sec03-case__lead span {
    font-size: 32px;
}
}

.analy-sec02 {
    background: #fff;
}


/* ========================================= 
メリット
========================================= */
h2.analy-sec_title.merit .large:before {
    background-color: transparent;
}
.analy-sec_title.merit .large {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5em;
}
h2.analy-sec_title.merit .medium:before {
    content: '';
    position: absolute;
    bottom: -25px;
    display: inline-block;
    width: 60px;
    height: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #2174DF;
    border-radius: 2px;
}
h2.analy-sec_title.merit .medium{
	margin-bottom: 40px;
	position: relative;
}
h2.analy-sec_title.merit .medium span {
font-size: x-large;
}


.feature-sec03 {
padding: 40px 0px 0;
/*   background: #f5f5f5; */
}

.feature-sec03__inner {
  max-width: 1440px;
  margin: 20px auto 0;
}

.feature-sec03__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
/*   background: #f7f7f7; */
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(28, 53, 87, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.feature-card__image {
  line-height: 0;
	padding: 10px 5px 0;
}

.feature-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-card__body {
  padding: 10px 10px 15px;
}

.feature-card__title {
  margin: 0 0 14px;
  color: #222;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.feature-card__title span {
  color: #2b72e8;
  font-weight: 800;
/* 	font-size: 22px; */
}
.feature-card__title span span.large {
    font-size: 22px;
}

.feature-card__text {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.feature-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.feature-card__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
/*   min-height: 42px; */
  padding: 4px 8px;
  border: 2px solid #2b72e8;
  border-radius: 999px;
  color: #2b72e8;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.feature-card__tags span.large {
    border: none;
    font-weight: bold;
    padding: 0;
    font-size: x-large;
    align-items: flex-end;
}
.feature-sec03 .analy-fv_cta_btn,
.analy-sec05 .analy-fv_cta_btn{
    align-items: center;
    justify-content: center;
    margin-top: 30px;
	gap: 40px;
}

@media (max-width: 1280px) {
  .feature-card__body {
    padding: 24px 24px 24px;
  }

  .feature-card__title {
    font-size: 24px;
  }

  .feature-card__text {
    font-size: 16px;
  }

  .feature-card__tags span {
    font-size: 14px;
    min-height: 38px;
    padding: 5px 10px;
  }
}

@media (max-width: 960px) {
  .feature-sec03 {
    padding: 70px 0 0;
  }

  .feature-sec03__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card__title {
    font-size: 26px;
  }

  .feature-card__text {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .feature-card {
    border-radius: 14px;
  }

  .feature-card__body {
    padding: 20px 16px 20px;
  }

  .feature-card__title {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.5;
  }

  .feature-card__text {
    font-size: 15px;
    line-height: 1.8;
  }

  .feature-card__tags {
    gap: 10px;
    margin-top: 18px;
  }

  .feature-card__tags span.large {
    font-size: 24px;
	padding-bottom: 7px;
  }
		h2.analy-sec_title.merit .medium {
    font-size: 16px;
}
	h2.analy-sec_title.merit .medium span {
    font-size: 20px;
}
	.feature-sec03 .analy-fv_cta_btn,
.analy-sec05 .analy-fv_cta_btn{
    align-items: center;
    justify-content: center;
    margin-top: 30px;
	gap: 10px;
}
}




/* ========================================= 
approach
========================================= */
.sec04-approach {
/*   padding: 110px 20px 120px;
  background: #f5f5f5; */
}

.sec04-approach__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.analy-sec_title {
    white-space: normal;
}

.sec04-approach .analy-sec_title .large:before{
    content: '';
    position: absolute;
    bottom: -25px;
    display: inline-block;
    width: 60px;
    height: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: transparent;
    border-radius: 2px;
}

.sec04-approach__eyebrow {
  margin: 0 0 18px;
  color: #2174DF;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
}

.sec04-approach__lead {
  margin: 0 0 18px;
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.sec04-approach__title {
  margin: 0;
  color: #222;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.sec04-approach .analy-sec_title .large {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5em;
}

.sec04-approach__flow {
  max-width: 980px;
  margin: 0px auto 72px;
	position: relative;
}
.sec04-approach__flow:before{
    content: '';
    position: absolute;
    bottom: -25px;
    display: inline-block;
    width: 60px;
    height: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #2174DF;
    border-radius: 2px;
}


.sec04-approach__flow img {
  display: block;
  width: 100%;
  height: auto;
	max-width: 480px;
}

.sec04-approach__grid {
  display: grid;
  row-gap: 50px;
}

.sec04-approach__item {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  column-gap: 42px;
}

.sec04-approach__item--02,
.sec04-approach__item--04 {
  grid-template-columns: 420px 1fr;
}

.sec04-approach__head {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
}

.sec04-approach__no {
  min-width: 140px;
}

.sec04-approach__label {
  display: block;
  margin-bottom: 4px;
  color: #2174DF;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}

.sec04-approach__num {
  display: block;
  position: relative;
  padding-bottom: 14px;
  color: #2174DF;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
	text-align: center;
}

.sec04-approach__num::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 78px;
    height: 4px;
    background: #2174DF;
}

.sec04-approach__item-title {
  margin: 0 0 6px;
  color: #2174DF;
font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.sec04-approach__desc {
  margin: 0;
  color: #222;
  font-weight: 700;
}

.sec04-approach__desc--large {
  font-size: 24px;
  line-height: 1.5;
margin-left: 22px;
}

.sec04-approach__desc span {
  color: #2174DF;
}

.sec04-approach__list {
  margin: 16px 0 0;
  padding-left: 1.2em;
  color: #444;
	margin-left: 22px;
}

.sec04-approach__list li {
  margin-bottom: 0px;
  font-size: 19px;
  line-height: 1.9;
		list-style: disc;
}

.sec04-approach__list li:last-child {
  margin-bottom: 0;
}

.sec04-approach__image {
  text-align: center;
}

.sec04-approach__image img {
  display: inline-block;
  width: 100%;
      height: 192px;
}

.sec04-approach__image--01 {
  max-width: 420px;
  justify-self: center;
}

.sec04-approach__image--02 {
  max-width: 360px;
  justify-self: start;
}

.sec04-approach__image--03 {
  max-width: 470px;
  justify-self: end;
}

.sec04-approach__image--04 {
  max-width: 360px;
  justify-self: start;
}

@media (max-width: 1280px) {
  .sec04-approach {
    padding: 90px 20px 100px;
  }
.analy-sec_title .large {
        font-size: .4rem;
        margin-bottom: 2.5em;
    }
  .sec04-approach__eyebrow {
    font-size: 22px;
  }

  .sec04-approach__lead {
    font-size: 17px;
  }

  .sec04-approach__title {
    font-size: 44px;
  }

  .sec04-approach__flow {
    max-width: 820px;
    margin: 28px auto 56px;
  }

  .sec04-approach__item,
  .sec04-approach__item--02,
  .sec04-approach__item--04 {
    grid-template-columns: 1fr 340px;
    column-gap: 28px;
  }

  .sec04-approach__item--02,
  .sec04-approach__item--04 {
    grid-template-columns: 340px 1fr;
  }

  .sec04-approach__label {
    font-size: 22px;
  }

  .sec04-approach__num {
    font-size: 52px;
  }

  .sec04-approach__item-title {
    font-size: 42px;
  }

  .sec04-approach__desc--large {
    font-size: 22px;
  }

  .sec04-approach__list li {
    font-size: 16px;
  }

  .sec04-approach__image--01,
  .sec04-approach__image--02,
  .sec04-approach__image--03,
  .sec04-approach__image--04 {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .sec04-approach {
    padding: 0;
  }

  .sec04-approach__title {
    font-size: 34px;
  }

  .sec04-approach__lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .sec04-approach__flow {
    margin: 0px auto 42px;
  }

  .sec04-approach__item,
  .sec04-approach__item--02,
  .sec04-approach__item--04,
  .sec04-approach__item--03 {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .sec04-approach__item--02 .sec04-approach__image,
  .sec04-approach__item--04 .sec04-approach__image {
    order: 2;
  }

  .sec04-approach__item--02 .sec04-approach__text,
  .sec04-approach__item--04 .sec04-approach__text {
    order: 1;
  }

  .sec04-approach__head {
    gap: 16px;
    margin-bottom: 16px;
  }

  .sec04-approach__no {
    min-width: 96px;
  }

  .sec04-approach__label {
    font-size: 16px;
  }

  .sec04-approach__num {
    font-size: 30px;
    padding-bottom: 10px;
  }

  .sec04-approach__num::after {
    width: 52px;
    height: 3px;
  }

  .sec04-approach__item-title {
    font-size: 34px;
  }

  .sec04-approach__desc--large {
    font-size: 19px;
    line-height: 1.7;
  }

  .sec04-approach__list {
    margin-top: 12px;
  }

  .sec04-approach__list li {
    font-size: 14px;
    line-height: 1.8;
  }

  .sec04-approach__image {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .sec04-approach__eyebrow {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .sec04-approach__title {
    font-size: 28px;
    line-height: 1.5;
  }

  .sec04-approach__flow {
    margin-bottom: 60px;
  }

  .sec04-approach__grid {
    row-gap: 28px;
  }

  .sec04-approach__head {
    align-items: center;
  }

  .sec04-approach__item-title {
    font-size: 24px;
    margin-bottom: 0;
  }

  .sec04-approach__desc--large {
    font-size: 17px;
  }
}


/* ========================================= 
CASE STUDY
========================================= */
.analy-sec05 {
    background: #fff;
}

.home .cam {
    max-width: 700px;
    margin: 0 auto 50px;
}
.case-study-sec {
/*   padding: 40px 20px 20px; */
/*   background: #f5f5f5; */
}

.case-study-sec__inner {
  max-width: 1760px;
  margin: 0 auto;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.case-study-card {
/*   background: #f7f7f7; */
/*   border: 2px solid #2174DF; */
  border-radius: 18px;
  overflow: hidden;
  box-shadow:0 8px 24px rgba(28, 53, 87, 0.12);
}

.case-study-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.case-study-card__body {
  padding: 26px 30px 30px;
}

.case-study-card__head {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.case-study-card__case {
  display: inline-block;
	    width: fit-content;
}

.case-study-card__case-label {
  display: block;
  color: #2174DF;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
	    white-space: nowrap;
}

.case-study-card__case-no {
    display: block;
    position: relative;
    margin-top: 0;
    padding-bottom: 10px;
    color: #2174DF;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.case-study-card__case-no::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  background: #2174DF;
}

.case-study-card__company {
  margin: 0;
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.case-study-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-study-card__stat {
  background: #fff;
  border-radius: 16px;
  padding: 8px 16px 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.case-study-card__stat-label {
/*   margin: 0 0 10px; */
  color: #444;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}

.case-study-card__stat-value {
  margin: 0;
  color: #2174DF;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.case-study-card__note {
margin: 22px 0 0;
    padding: 20px 20px;
    border: 1px solid #24A148;
    border-radius: 16px;
    background: #DDF4E3;
    color: #4d4d4d;
    font-size: 12px;
    line-height: 1.8;
    border-left: solid 7px #24A148;
}

#case-study .analy-fv_cta_btn {
    grid-template-columns: auto;
}

#case-study .analy-fv_cta_btn a {
    padding: 0 10px;
}


@media (max-width: 1400px) {
  .case-study-card__body {
    padding: 22px 22px 24px;
  }

  .case-study-card__company {
    font-size: 28px;
  }

  .case-study-card__case-label {
    font-size: 22px;
  }

  .case-study-card__case-no {
    font-size: 52px;
  }

  .case-study-card__stat-label {
    font-size: 16px;
  }

  .case-study-card__stat-value {
    font-size: 34px;
  }

  .case-study-card__note {
    font-size: 15px;
  }
}

@media (max-width: 960px) {
  .case-study-sec {
    padding: 24px 0px 16px;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-study-card__head {
    grid-template-columns: 90px 1fr;
    margin-bottom: 20px;
  }

  .case-study-card__company {
    font-size: 24px;
  }

  .case-study-card__case-label {
    font-size: 18px;
  }

  .case-study-card__case-no {
    font-size: 42px;
    padding-bottom: 14px;
  }

  .case-study-card__case-no::after {
    width: 56px;
    height: 3px;
  }

  .case-study-card__stat-label {
    font-size: 15px;
  }

  .case-study-card__stat-value {
    font-size: 30px;
  }

  .case-study-card__note {
    margin-top: 18px;
    padding: 16px 18px;
  }
}

@media (max-width: 640px) {
.home .cam {
    margin: 0 auto 0px;
}
.cam {
    margin: 0 auto 0px;
}
  .case-study-card {
    border-radius: 14px;
  }

  .case-study-card__body {
    padding: 18px 14px 18px;
  }

  .case-study-card__head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-study-card__company {
    font-size: 22px;
    text-align: left;
  }

  .case-study-card__stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-study-card__stat {
    border-radius: 12px;
/*     padding: 16px 12px; */
  }

  .case-study-card__stat-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .case-study-card__stat-value {
    font-size: 28px;
  }

  .case-study-card__note {
    font-size: 14px;
    line-height: 1.7;
    border-width: 2px;
    border-radius: 12px;
  }
}



/* ========================================= 
price
========================================= */
.support-table-sec {
  padding: 160px 0px 0px;
  background: #fff;
}
.support-table-sec .normal {
	position: relative;
}
.support-table-sec .normal:before {
	content: '';
    position: absolute;
    bottom: -25px;
    display: inline-block;
    width: 60px;
    height: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #2174DF;
    border-radius: 2px;
}
.support-table-sec > p {
    text-align: center;
	margin: 60px 0 40px;
}

.support-table-sec__inner {
  max-width: 1920px;
  margin: 0 auto;
}

#analy-suppport {
    margin: 50px 0 0;
    min-height: 330px;
}

.support-table {
  display: grid;
  gap: 0;
}

.support-table__row {
  display: grid;
  grid-template-columns: 35.5% 64.5%;
}


.support-table__cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  border: 2px solid #FFF;
  box-sizing: border-box;
}

.support-table__cell--head {
  height: 50px;
/*   background: #f7f7f7; */
  color: #222;
font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
}

.support-table__cell--left,
.support-table__cell--right {
/*   background: #dfe8f4; */
  color: #2174DF;
  font-weight: 800;
  line-height: 1.5;
}

.support-table__cell--left {
/*   width: 35.5%; */
  height:52px;
  font-size: 20px;
  padding: 20px 24px;
	background: #DCE6F9;
}

.support-table__cell--right {
/*   width: 64.5%; */
font-size: 20px;
  padding: 20px 8px;
		background: #EDF2FA;
}

.support-table__row:first-child .support-table__cell:first-child {
  border-top-left-radius: 16px;
}

.support-table__row:first-child .support-table__cell:last-child {
  border-top-right-radius: 16px;
}

.support-table__cell {
    border-radius: 8px;
}
.support-table-sec__notes {
  margin-top: 11px;
}

.support-table-sec__notes p {
  margin: 0;
  color: #444;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 1400px) {
  .support-table__cell--head {
    height: 60px;
    font-size: 24px;
  }

  .support-table__cell--left {
    height: 80px;
    font-size: 18px;
  }

  .support-table__cell--right {
    font-size: 18px;
  }

  .support-table-sec__notes p {
font-size: 11px;
  }
}

@media (max-width: 900px) {
	#analy-suppport {
    margin: 90px 0 40px;
}
	.support-table-sec > p {
		margin: 60px 0 20px;
		        font-size: 12px;
	}
	.support-table-sec {
    padding: 60px 0px 0px;
}
  .support-table {
    display: block;
  }

  .support-table__cell {
    display: block;
    width: 100%;
  }

    .support-table__cell--head {
        height: auto;
        padding: 8px 4px;
        font-size: 16px;
    }

.support-table__cell--left, .support-table__cell--right {
        height: auto;
        padding: 4px 4px;
        font-size: 14px;
    }

  .support-table__row:first-child .support-table__cell:first-child {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }

  .support-table__row:first-child .support-table__cell:last-child {
    border-top-right-radius: 0;
  }

  .support-table__row:last-child .support-table__cell:first-child {
    border-bottom-left-radius: 0;
  }

  .support-table__row:last-child .support-table__cell:last-child {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
  }

}


/* ========================================= 
FAQ
========================================= */

.analy-sec08 h3 {
    margin-top: 0;
}

.analy-sec09 p.llmo-fv_title {
    font-size: .5rem;
}

/* ========================================= 
フッター
========================================= */
#analy-footer .llmo-fv_title {
    color: white;
    font-size: .3rem;
}

#analy-footer .llmo-fv_power {
        color: white;
        font-size: .1rem;
}

#analy-footer .llmo-fv_sec {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 900px) {
#analy-footer .llmo-fv_title {
    color: white;
    font-size: .6rem;
}
.analy-footer_info {
    justify-items: center;
}
}

/* ========================================= 
ダウンロード
========================================= */
.analy-download_content_detail figure {
    width: min(4.9rem, 100%);
    margin-top: .3rem;
}
@media (max-width: 900px) {
.section_consult .analy-download_content_detail, .analy-meeting_content_detail {
   justify-items: center;
}
}