/* 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: 1rem;
}

.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(13rem, 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_points, .analy-fv_cta_btn {
  display: grid;
  align-items: end;
  justify-content: center;
  width: 100%;
}

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

/* 吹き出し本体 */
.balloon {
  background: #fff;
  color: #2174DF;
  font-size: 12px;
  font-weight: bold;
  padding: 0px 18px 3px;
  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;
}

.balloon span {
  font-size: 25px;
}


.sp_hide .btn_download {
  width: 288px;
}


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

#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;
  margin-top: 0rem;
}

.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;
  font-size: 24px;
  margin-top: .3rem;
}

.analy-fv_cta {
  background: transparent;
  box-shadow: none;
  margin: 0;
  padding: .7rem 0;
}

.analy-fv_swiper {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
	
  p.llmo-fv_title {
    margin-top: 0rem;
    font-size: .5rem;
  }

  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;
  }
	  .analy-fv_cta {
    padding: .2rem 0.1rem;
  }
	.analy-fv_bottom-right {
    padding-right: 5px;
}
}


.copys-awards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.copys-awards__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: auto;
  min-width: 0;
}

.copys-awards__leaf {
  display: block;
  width: 40px;
  height: auto;
  flex: 0 0 40px;
}

.copys-awards__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #000;
  line-height: 1;
  min-width: 0;
}

.copys-awards__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 4px 12px 5px;
  border: 2px solid #605A06;
  border-radius: 4px;
  color: #605A06;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0px;
  white-space: nowrap;
}

.copys-awards__label .large {
  font-size: large;
  padding-bottom: 5px;
}

.copys-awards__sub {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
  white-space: nowrap;
}

.copys-awards__main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
}

.copys-awards__main-small {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  margin-right: 2px;
  transform: translateY(-4px);
  color: #605A06;
}

.copys-awards__main-small2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-left: 1px;
  transform: translateY(-4px);
}

.copys-awards__main-small3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin-right: 2px;
  transform: translateY(-4px);
  color: #605A06;
}

.copys-awards__main-large {
  font-size: 66px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.copys-awards__main-unit {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-left: 2px;
  transform: translateY(-6px);
}

.copys-awards__note {
  font-size: 8px;
  /*   font-weight: 700; */
  line-height: 1;
  /*   transform: translateY(-34px); */
  margin-left: 1px;
  color: #605A06;
}

@media (max-width: 1024px) {
  .copys-awards {
    gap: 18px;
  }

  .copys-awards__main {
    align-items: flex-start;
  }

  .copys-awards__leaf {
    width: 40px;
    flex-basis: 40px;
  }

  .copys-awards__label {
    font-size: 15px;
    min-height: 24px;
    padding: 4px 10px;
    margin-bottom: 8px;
    align-items: flex-end;
  }

  .copys-awards__sub {
    font-size: 21px;
  }

  .copys-awards__main-large {
    font-size: 52px;
  }

  .copys-awards__main-unit {
    font-size: 24px;
    transform: translateY(5px);
  }

  .copys-awards__main-small2 {
    font-size: 18px;
    transform: translateY(7px);
  }

  .copys-awards__note {
    font-size: 6px;
  }
}

@media (max-width: 767px) {
  .analy-fv_bottom {
    grid-template-columns: 4fr 1fr;
  }

  .copys-awards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 20px 10px 10px;
  }

  /* 3つ目だけ1カラム占有 */
  .copys-awards__item:nth-child(3) {
    grid-column: 1 / -1;
  }


  .analy-fv_bottom {
    width: 100%;
  }

  .copys-awards__item {
    width: 100%;
    max-width: 340px;
  }

  .copys-awards__label.service_start {
    /*     flex-direction: column; */
  }

  .copys-awards__leaf {
    width: 24px;
    flex-basis: 24px;
  }

  .copys-awards__label {
    font-size: 12px;
    padding: 4px 4px;
  }

  .copys-awards__sub {
    font-size: 24px;
  }

  .copys-awards__main-small3 {
    font-size: 12px;
    transform: translateY(7px);
  }

  .copys-awards__label.sell {
    margin-bottom: 2px;
  }

  .copys-awards__main-large {
    font-size: 24px;
  }

  .copys-awards__main-unit {
    font-size: 16px;
  }

  .copys-awards__main-small2 {
    font-size: 14px;
  }
}







/* ========================================= 
AI
========================================= */
#analy-case.analy-sec01 {
  padding-top: 1.5rem;
}

.findy-support {
  background: #dfe3ea;
  padding: 88px 20px;
}

.findy-support__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.findy-support__content {
  width: 100%;
  max-width: 485px;
}

.findy-support__title {
  margin: 0 0 28px;
  color: #2f73da;
  font-size: 24px;
  /*   font-weight: 900; */
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.findy-support__text {
  margin: 0;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.findy-support__lead {
  position: relative;
  display: block;
  width: fit-content;
  margin: 28px auto 5px;
  padding: 0 22px;
  color: #2f73da;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.findy-support__lead::before,
.findy-support__lead::after {
  content: "";
  position: absolute;
  bottom: 31%;
  width: 15px;
  height: 1px;
  background: #2f73da;
}

.findy-support__lead::before {
  left: 15px;
  transform: translateY(-50%) rotate(35deg)
}

.findy-support__lead::after {
  right: 15px;
  transform: translateY(-50%) rotate(-35deg)
}

.findy-support__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  min-height: 74px;
  padding: 18px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f73da 0%, #2468cf 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.findy-support__button::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.findy-support__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.findy-support__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  flex-shrink: 0;
}

.findy-support__button-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.findy-support__image-wrap {
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
}

.findy-support__image {
  display: block;
  width: 100%;
  height: auto;
}

/* PC only 微調整 */
@media (min-width: 768px) {
  .findy-support {
    overflow: hidden;
  }

  .findy-support__image-wrap {
    margin-right: 8px;
  }
}

/* SP */
@media (max-width: 767px) {
  #analy-case.analy-sec01 {
    padding: 40px 20px 50px;
  }

  .findy-support {
    padding: 56px 20px 64px;
  }
	.findy-support__lead::before {
    left: -10px;
}
.findy-support__lead::after {
    right: -10px;
}
  .findy-support__inner {
    flex-direction: column;
    align-items: center;
    gap: 34px;
  }

  .findy-support__content {
    max-width: 100%;
  }

  .findy-support__title {
    margin-bottom: 20px;
    font-size: .4rem;
    line-height: 1.5;
  }
	#first-time  .findy-support__title {
    font-size: .3rem;
  }

  .findy-support__text {
    font-size: 15px;
    line-height: 1.95;
  }

  .findy-support__lead {
    display: block;
    margin: 24px auto 4px;
    padding: 0;
    text-align: center;
    font-size: 15px;
  }

  .findy-support__button {
    min-height: 62px;
    padding: 16px 20px;
    font-size: 18px;
  }

  .findy-support__image-wrap {
    max-width: 320px;
  }
}

/* ========================================= 
お悩み
========================================= */
.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;
}

.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: 24px;
  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;
}

.media-solution {
  padding: 10px 0px;
}

.media-solution__inner {
  /*   max-width: 1050px; */
  margin: 0 auto;
  padding: 24px 18px 18px;
  border-radius: 22px;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(28, 53, 87, 0.12);
}

.media-solution__title {
  margin: 0 0 18px;
  color: #333;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
  text-align: center;
}

.media-solution__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px 8px;
}

.media-solution__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px 12px;
  background: #EAEFEF;
  border-radius: 4px;
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.03em;
  text-align: center;
  box-sizing: border-box;
}

/* PC */
@media (min-width: 768px) {
  .media-solution__item {
    min-height: 72px;
  }
}

/* SP */
@media (max-width: 767px) {
  .media-solution__inner {
    padding: 22px 12px 14px;
    border-radius: 18px;
  }

  .media-solution__title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.5;
  }

  .media-solution__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .media-solution__item {
    min-height: 64px;
    padding: 10px 8px;
    font-size: 14px;
    line-height: 1.55;
  }
}

/* ========================================= 
メリット
========================================= */
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;
  padding: 15px 3px;
}

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

.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 1px 10px;
  margin: 10px 15px;
  text-align: center;
  min-width: 120px;
  max-width: 100%;
  color: #FFF;
  font-size: 16px;
  background: #2174DF;
  border-radius: 150px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border: 3px solid transparent;
  border-top: 10px solid #2174DF
}

.balloon1 p {
  margin: 0;
  padding: 0;
}



.feature-card__image img {
  display: block;
  width: 77px;
  height: auto;
}

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

.feature-card__title {
  margin: 0 0 14px;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
}

.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;
  list-style: disc;
  padding-left: 1.2em;
}

.feature-card__text li {
  list-style: disc;
}

.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;
	  padding-top: 30px;
  }

  .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 8px 20px;
  }

  .feature-card__title {
    margin-bottom: 16px;
    font-size: 18px;
    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;
  margin-top: 100px;
}

.sec04-approach__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  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-bottom: 10px;
}

.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: auto;
  height: 250px;
}

.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: cetnter;
}

.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: 1.5em;
    	        white-space: nowrap;
  }

  .analy-sec_title.merit .large {
/*     margin-bottom: 2.5em; */
  }

  .sec04-approach__image img {
    height: 150px;
  }

  .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__grid {
    margin-top: 50px;
  }

  .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__head {
    align-items: center;
  }

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

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


/* ========================================= 
MERIT
========================================= */
#merit .feature-card {
  padding: 0 0 10px;
}

#merit .feature-card__image {
  padding: 0;
}

#merit .feature-card__image img {
  width: 100%;
}

#merit ul.feature-card__text {
  list-style: none;
  padding-left: 0;
}

#merit ul.feature-card__text li {
  position: relative;
  padding-left: 1.2em;
  list-style: none;
  text-align: left;
}

#merit ul.feature-card__text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: bold;
}

#merit .media-solution__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 18px 8px;
}

#merit .media-solution__title {
  background: #2174DF;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 20px;
  padding: 16px 0;
}

#merit .media-solution__inner {
  padding: 0;
  border-radius: 10px;
}

#merit .media-solution__item {
  background: white;
}

@media (max-width: 767px) {
  #merit .media-solution__title {
    font-size: 18px;
    padding: 16px 8px;
  }

  #merit .media-solution__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding-bottom: 20px;
  }

  #merit .media-solution__item img {
    width: 200px;
  }
}

/* ========================================= 
CASE STUDY
========================================= */
.case-study {
  background: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

.success-contents {
  overflow: hidden;
  padding: 0 var(--pr, max(5%, (100% - 15rem) * 0.5)) 0 var(--pl, max(5%, (100% - 15rem) * 0.5));
  background: #DBE7ED
}

.success-contents__inner {
  position: relative;
  max-width: 1366px;
  min-height: 400px;
  margin: 0 auto;
  /*   padding: 90px 0 70px 170px; */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

a.btn_download {
  max-width: 420px;
}

.success-contents__content {
  position: relative;
  z-index: 2;
  max-width: 64x;
}

.success-contents__title {
  margin: 0;
  color: #2b2b2b;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.success-contents__line {
  width: 48px;
  height: 5px;
  margin: 24px 0 40px;
  background: #2f73da;
  border-radius: 999px;
}

.success-contents__text {
  margin: 0 0 32px;
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.success-contents__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 448px);
  min-height: 72px;
  padding: 18px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f73da 0%, #2468cf 100%);
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.success-contents__button::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.success-contents__button:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.success-contents__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.success-contents__button-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.success-contents__visual {
  position: absolute;
  top: 0px;
  right: -168px;
  width: 865px;
  z-index: 1;
  pointer-events: none;
}

.success-contents__image {
  display: block;
  width: 100%;
  height: auto;
}

/* PC */
@media (min-width: 768px) {
  .success-contents__text br {
    display: block;
  }
}

/* SP */
@media (max-width: 767px) {
  .case-study {
    padding: 50px 20px 70px;
  }

  .success-contents__inner {
    min-height: auto;
    padding: 50px 0;
  }

  .success-contents__content {
    max-width: 100%;
  }

  .success-contents__title {
    font-size: .4rem;
    line-height: 1.45;
  }

  .success-contents__line {
    width: 44px;
    height: 4px;
    margin: 10px 0 12px;
  }

  .success-contents__text {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .success-contents__button {
    width: 100%;
    min-height: 64px;
    padding: 16px 20px;
    font-size: 18px;
  }

  .success-contents__visual {
    top: 0;
    right: auto;
    width: calc(100% + 190px);
  }

  .success-contents__image {
    opacity: 0.2;
  }

}



/* ========================================= 
導入実績
========================================= */
.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #2174DF;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 40px;
  line-height: 1.5;
}

.cards-container {
  display: flex;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  justify-content: center;
}

.case-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 420px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(0, 0, 0, 0.06);
}

/* Photo area */
.card-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.card-photo .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #2174DF;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Card body */
.card-body {
  padding: 24px 24px 28px;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.company-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.company-meta {
  font-size: 11px;
  color: #8a8fa8;
  font-weight: 500;
}

.card-headline {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.65;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 12.5px;
  color: #5a5f7a;
  line-height: 1.8;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.card-headline .accent {
  color: #2174DF;
  font-weight: 800;
}

/* KPI row */
.kpi-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.kpi-item {
  flex: 1;
  background: #f0f3ff;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.kpi-value {
  font-size: 20px;
  font-weight: 800;
  color: #2174DF;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 10px;
  color: #6b7194;
  margin-top: 3px;
  font-weight: 500;
  line-height: 1.4;
}

/* Support detail */
.support-section {
  border-top: 1px solid #eef0f6;
  padding-top: 14px;
}

.support-label {
  font-size: 10px;
  font-weight: 700;
  color: #2174DF;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.support-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.support-list li {
  font-size: 11px;
  color: #4b5168;
  background: #f5f7fa;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}



@media (max-width: 900px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
	  margin: 10px auto 0;
  }

  .case-card {
    width: 100%;
    max-width: 420px;
  }
}

/* ========================================= 
選ばれる理由
========================================= */
#reason {
  padding-top: 100px;
  padding-bottom: 100px;
}

.success-contents {
  position: relative;
  overflow: hidden;
}

.success-contents::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100vw, 1500px);
  aspect-ratio: 1366 / 923;
  background: url("https://media-partners.techsuite.co.jp/wp-content/themes/swell_child/img/Vector-687.png") no-repeat right bottom / contain;
  pointer-events: none;
  z-index: 0;
}

#reason .success-contents__content {
  max-width: 600px;
}

.cta-button2 {
  max-width: 420px;
}

.cta-button2 .btn_download::before {
  content: none;
}


.bottom-stats__inner {
  max-width: 640px;
  margin: 0 auto;
  background: #f8fafb;
  box-shadow: 0 8px 24px rgba(28, 53, 87, 0.12);
  border-radius: 14px;
  padding: 12px 24px 14px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  box-sizing: border-box;
}

.bottom-stats__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bottom-stats__label {
  margin: 0 0 12px;
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.bottom-stats__value {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: #2f73da;
  line-height: 1;
}

.bottom-stats__number {
  font-size: 50px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.bottom-stats__unit {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  padding-bottom: 7px;
}


/* 右画像 */
#reason .success-contents__visual {
  width: 100%;
  right: -20vw;
  flex: 0 0 600px;
  display: flex;
  justify-content: flex-end;
  max-height: 580px;
}

#reason .success-contents__image {
  display: block;
  width: 100%;
  max-width: 50vw;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

/* SP */
@media (max-width: 767px) {
  #reason {
    padding: 60px 20px 40px;
  }

  .bottom-stats {
    padding: 0px;
  }

  .bottom-stats__inner {
    padding: 10px 8px 10px;
    /* flex-direction: column; */
    gap: 8px;
  }

  .bottom-stats__label {
margin-bottom: 4px;
    font-size: 12px;
  }

  .bottom-stats__number {
    font-size: 24px;
  }

  .bottom-stats__unit {
    padding-bottom: 1px;
  }
	.bottom-stats__value {
    gap: 1px;
}
	#reason .success-contents__visual {
    right: 0;
}
}


/* ========================================= 
戦略からコンテンツ制作・改善まで一気通貫で支援
========================================= */

.comparison-table-section {
  width: 100%;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 1030px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-family: inherit;
}

.comparison-table th,
.comparison-table td {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 10px;
}

.comparison-table thead th:last-child,
.comparison-table tbody td:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table__head {
  background: #2f73da;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 18px 10px;
  height: 84px;
}

.comparison-table__head--blank {
  background: transparent;
  border-right: 2px solid #000;
  width: 360px;
}

.comparison-table__rowhead {
  width: 360px;
  background: #174aa8;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 14px 18px;
  height: 82px;
}

.comparison-table td {
  background: #EDF2FA;
  color: #174aa8;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  height: 82px;
  padding: 8px;
}

.comparison-table td .mark--circle {
  font-size: 45px;
  transform: translateY(-6px);
}

.comparison-table td .mark {
  display: inline-block;
  line-height: 1;
}

/* SP */
@media (max-width: 767px) {
  .comparison-table-section {
    /*     width: fit-content; */
  }

  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 650px;
  }

  .comparison-table__head {
    font-size: 14px;
    padding: 6px 7px;
    height: 40px;
  }

  .comparison-table__head--blank,
  .comparison-table__rowhead {
    width: 120px;
  }

  .comparison-table__rowhead {
    font-size: 14px;
    padding: 6px 7px;
    height: 40px;
    ;
  }

  .comparison-table td .mark--circle {
    font-size: 18px;
    transform: translateY(-0px);
    line-height: 0.3;
  }

  .comparison-table td {
    font-size: 18px;
    height: 20px;
  }

  th.comparison-table__head, .comparison-table td {
    width: 50px;
  }
}


/* ========================================= 
はじめてでも失敗しない理由
========================================= */
#first-time {
  padding-top: 70px;
  padding-bottom: 70px;
}

#first-time .findy-support__title {
  color: black;
}

#first-time .success-contents__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

#first-time .success-contents__content,
#first-time .success-contents__visual {
  width: 100%;
  max-width: none;
  flex: none;
}

#first-time .success-contents__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#first-time .success-contents__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: auto;
  right: auto;
}

#first-time .findy-support__title {
  margin: 0;
}

.media-feature-cards {
  padding: 0px;
}

.media-feature-cards__inner {
  /*   max-width: 540px; */
  margin: 0 auto;
}

.media-feature-card+.media-feature-card {
  margin-top: 12px;
}

.media-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px 14px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.media-feature-card__icon {
  flex: 0 0 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-feature-card__icon img {
  display: block;
  width: 88px;
  height: auto;
}

.media-feature-card__content {
  flex: 1 1 auto;
  min-width: 0;
}

.media-feature-card__title {
  margin: 0 0 8px;
  color: #2f73da;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.media-feature-card__text {
  margin: 0;
  color: #2b2b2b;
  font-size: 17px;
/*   font-weight: 700; */
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* SP */
@media (max-width: 767px) {
  #first-time {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  #first-time .success-contents__inner {
    grid-template-columns: 1fr;
  }

  #first-time .success-contents__inner {
    padding: 0;
  }

  .media-feature-card {
    padding: 12px 14px 12px 12px;
  }

  .media-feature-card__icon {
    flex: 0 0 64px;
  }

  .media-feature-card__icon img {
    width: 64px;
  }

  .media-feature-card__title {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.45;
  }

  .media-feature-card__text {
    font-size: 14px;
    line-height: 1.65;
  }
}


/* ========================================= 
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: .4rem;
}

#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;
  }

  .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;
  }
}