@charset "UTF-8";
/*****************************************
 * vw(数値,幅)の計算
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 1250px) {
  html {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

video,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

.analy-header {
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: #fff;
  opacity: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .analy-header {
    height: 14rem;
  }
}

.analy-header.open {
  position: relative;
  opacity: 1;
  display: block;
}

.analy-header.is-open {
  opacity: 1;
  display: block;
  animation: DownAnime 0.3s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.analy-header__inner {
  margin-inline: auto;
  padding-inline: 25px;
  width: 100%;
  max-width: 1426px;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .analy-header__inner {
    padding-inline: initial;
    padding-left: 3rem;
    padding-right: 11rem;
  }
}

.analy-header_link01 {
  width: 29.4rem;
}
@media screen and (max-width: 768px) {
  .analy-header_link01 {
    width: 30rem;
  }
}

.analy-header__contact {
  display: flex;
  align-items: center;
  column-gap: 2.4rem;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 5.2rem;
  right: 3rem;
  width: 5rem;
  height: 3.6rem;
  cursor: pointer;
}

.hamburger.is-active {
  top: 5.6rem;
  right: 4rem;
  width: 6.2rem;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 0.4rem;
  background-color: #333;
  transition: 0.3s transform, 0.3s opacity;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 1.6rem;
}

.hamburger span:nth-child(3) {
  top: 3.2rem;
}

.hamburger.is-active span:nth-child(1) {
  top: 1.6rem;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 1.6rem;
  transform: rotate(45deg);
}

.drawer {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  padding-left: 16.8rem;
  width: 100%;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.5);
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.drawer.is-open {
  display: block;
  opacity: 1;
}

.drawer__inner {
  position: absolute;
  top: 0;
  right: -60rem;
  padding-top: 14rem;
  width: 60rem;
  height: inherit;
  background-color: #F7F7F7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: right 0.5s ease;
}

.drawer.is-open .drawer__inner {
  right: 0;
}

.drawer__lists {
  width: 100%;
  border-top: 1px solid #B7B7B7;
}

.drawer__list {
  width: 100%;
  background-image: repeating-linear-gradient(90deg, #B7B7B7, #B7B7B7 2px, transparent 2px, transparent 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}

.drawer__link {
  width: 100%;
  padding: 2.5rem 4.2rem 2.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s;
}

.drawer__link:hover {
  opacity: 0.7;
}

.drawer__link .arrow {
  width: 3.2rem;
  background-color: #27A9B5;
}

.drawer__link .arrow::before,
.drawer__link .arrow::after {
  background-color: #fff;
}

.drawer__contact {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.drawer__contact .header-button-tel {
  margin-top: 4rem;
}

.analy-footer {
  z-index: 1;
  position: relative;
  padding: 8rem 0 6rem;
  background-image: url(../img/bg-footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .analy-footer {
    padding: 12rem 0 8rem;
    background-image: url(../img/bg-footer-sp.jpg);
  }
}

.analy-footer::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.9);
}

.analy-footer__inner {
  z-index: 2;
  position: relative;
}

.analy-footer__info {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .analy-footer__info {
    padding-bottom: 8rem;
  }
}

.analy-footer__name {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.analy-footer__name .img {
  width: 30rem;
}
@media screen and (max-width: 768px) {
  .analy-footer__name .img {
    width: 50.3rem;
  }
}

.analy-footer__name > p {
  margin-top: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-footer__name > p {
    font-size: 3.5rem;
  }
}

.analy-footer__place {
  margin-top: 4.2rem;
}

.analy-footer__place dl {
  margin-inline: auto;
  width: 67.6rem;
  display: flex;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .analy-footer__place dl {
    width: 66.9rem;
    flex-direction: column;
    row-gap: 0.6rem;
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 768px) {
  .analy-footer__place dl:not(:first-child) {
    margin-top: 3.2rem;
  }
}

.analy-footer__place dt {
  flex: 1;
}

.analy-footer__place dd {
  width: 79.8%;
}
@media screen and (max-width: 768px) {
  .analy-footer__place dd {
    width: 100%;
  }
}

.analy-footer__copyright {
  padding-top: 5rem;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .analy-footer__copyright {
    padding-top: 6rem;
  }
}

.analy-footer__copyright small {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-footer__copyright small {
    font-size: 2.2rem;
  }
}

.footer-link {
  display: inline-flex;
  align-items: center;
  font-size: 2.5rem; /* 元と同じサイズ */
  font-weight: 700; /* 元と同じ太さ */
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #ffc107;
  padding-bottom: 2px;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-link .icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  background: url("../img/icon-link.svg") no-repeat center/contain; /* アイコン画像 */
}

/* ------------------------------------------------
レスポンシブ表示・非表示
--------------------------------------------------- */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* ------------------------------------------------
インナー
--------------------------------------------------- */
.inner {
  max-width: 1250px;
  margin-inline: auto;
  padding-inline: 25px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 4rem;
  }
}

.inner02 {
  max-width: 1150px;
  margin-inline: auto;
  padding-inline: 25px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .inner02 {
    padding-inline: 4rem;
  }
}

.inner03 {
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: 25px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .inner03 {
    padding-inline: 4rem;
  }
}

.inner04 {
  max-width: 950px;
  margin-inline: auto;
  padding-inline: 25px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .inner04 {
    padding-inline: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-inner02 {
    margin-inline: auto;
    width: 61.2rem;
  }
}

/* ------------------------------------------------
丸みのある白背景
--------------------------------------------------- */
.section-bg {
  margin-inline: auto;
  width: 100%;
  max-width: 1400px;
  background-color: #fff;
  border-radius: 20rem;
}
@media screen and (max-width: 768px) {
  .section-bg {
    padding-inline: 4rem;
  }
}

/* ------------------------------------------------
動画モックアップ
--------------------------------------------------- */
.mockUp {
  z-index: 1;
  position: relative;
  width: 32.2rem;
  height: auto;
  aspect-ratio: 355/721.41;
}
@media screen and (max-width: 768px) {
  .mockUp {
    width: 43.9rem;
  }
}

.mockUp .img01-bg {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 98.8%;
  height: 100%;
  aspect-ratio: 355/721.41;
  border-radius: 5.5rem;
  box-shadow: -0.8rem 2.1rem 4.4rem rgba(88, 89, 92, 0.3);
}
@media screen and (max-width: 768px) {
  .mockUp .img01-bg {
    border-radius: 7.5rem;
  }
}

.mockUp .movie {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 89%;
  border-radius: 4.3rem;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .mockUp .movie {
    border-radius: 6.1rem;
  }
}

.mockUp .movie video {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 319.04/691.17;
  object-fit: cover;
}

.mockUp .img02 {
  z-index: 10;
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.2rem;
}
@media screen and (max-width: 768px) {
  .mockUp .img02 {
    width: 12.6rem;
  }
}

.mockUp .video-player {
  z-index: 10;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  background-color: transparent;
  border-radius: 4rem;
  overflow: hidden;
  cursor: pointer;
}

.mockUp .video-player img {
  aspect-ratio: 319.04/691.17;
}

.mockUp .video-player::before,
.mockUp .video-player::after {
  z-index: 12;
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  height: auto;
  aspect-ratio: 1/1;
  transition: opacity 0.3s;
  opacity: 0.8;
}

.mockUp .video-player:hover::before,
.mockUp .video-player:hover::after {
  opacity: 1;
}

.mockUp .video-player::before {
  left: 50%;
  border: 2px solid #fff;
  width: 8rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .mockUp .video-player::before {
    width: 10rem;
  }
}

.mockUp .video-player::after {
  left: 51%;
  width: 4rem;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 768px) {
  .mockUp .video-player::after {
    width: 5rem;
  }
}

.analy-sec01 .mockUp .video-player img {
  object-fit: cover;
}

.section-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #7290C1;
  text-align: center;
}

.section-text {
  font-size: 4.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-text {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 768px) {
  .section-text .sp-small {
    font-size: 3rem;
  }
}

.section-sub-text {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-sub-text {
    font-size: 2.7rem;
  }
}

.section-sub-text.dot {
  margin-inline: auto;
  padding-inline: 5.3rem;
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .section-sub-text.dot {
    padding-inline: 5.5rem;
    padding: 0 4.6rem 0 3.4rem;
    align-items: flex-end;
    column-gap: 1.6rem;
  }
}

.section-sub-text.dot::before,
.section-sub-text.dot::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 3.9rem;
  height: auto;
  aspect-ratio: 39/42;
  background-image: url(../img/dot-heading.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .section-sub-text.dot::before,
  .section-sub-text.dot::after {
    top: initial;
    bottom: 0;
    width: 3.8rem;
  }
}

.section-sub-text.dot::before {
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .section-sub-text.dot::before {
    transform: initial;
  }
}

.section-sub-text.dot::after {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .section-sub-text.dot::after {
    transform: scale(-1, 1);
  }
}

.section-third-text {
  font-size: 2.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-third-text {
    font-size: 2.7rem;
  }
}

.list-heading01 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .list-heading01 {
    font-size: 3.5rem;
  }
}

.list-heading02 {
  font-size: 3.1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .list-heading02 {
    font-size: 3.8rem;
  }
}

.p-text {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-text {
    font-size: 2.7rem;
  }
}

.p-text-bold {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-text-bold {
    font-size: 2.7rem;
  }
}

.p-small01 {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-small01 {
    font-size: 2.4rem;
  }
}

.p-small01-bold {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-small01-bold {
    font-size: 2.4rem;
  }
}

.p-small02 {
  font-size: max(1.2rem, 10px);
}
@media screen and (max-width: 768px) {
  .p-small02 {
    font-size: max(2.2rem, 10px);
  }
}

/* ------------------------------------------------
テキスト黄色ボーダー
--------------------------------------------------- */
.strong-line {
  display: inline;
  background: linear-gradient(to bottom, transparent 0%, transparent 51.4%, rgba(234, 197, 44, 0.43) 51.4%, rgba(234, 197, 44, 0.43) 100%);
}

.strong-line02 {
  display: inline;
  background: linear-gradient(to bottom, transparent 0%, transparent 12.8%, rgba(234, 197, 44, 0.43) 12.8%, rgba(234, 197, 44, 0.43) 95%, transparent 95%, transparent 100%);
}

/* ------------------------------------------------
背景黒色吹き出し
--------------------------------------------------- */
.black-speech {
  position: relative;
  background-color: #333;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.black-speech::before {
  position: absolute;
  content: "";
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.7rem;
  height: auto;
  aspect-ratio: 27/21;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #333;
}

.analy-sec01__bottom .black-speech {
  padding: 0.3rem 1rem 0.5rem;
  width: 13.6rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.header-tel {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #27A9B5;
}

@media screen and (max-width: 768px) {
  .header-tel.pc-only {
    display: none;
  }
}

.header-tel .icon,
.header-button-tel .icon {
  width: 2.4rem;
  height: auto;
  aspect-ratio: 24/42;
}

.header-button .icon {
  width: 2.4rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .header-button .icon {
    width: 3.3rem;
  }
}

.header-button {
  z-index: 10;
  position: relative;
  padding: 1.2rem 1.2rem 1.1rem 1.8rem;
  width: 28.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.8rem;
  border-radius: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .header-button {
    padding: 1.8rem 2.2rem;
    width: 28.4rem;
    border-radius: 13rem;
    column-gap: 0.8rem;
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}

.header-button:hover {
  opacity: 1;
}

.header-button::before {
  z-index: 5;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #333;
  border-radius: 3rem;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .header-button::before {
    border: 0.2rem solid #333;
    border-radius: 13rem;
  }
}

.header-button::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0.5rem;
  left: 0.4rem;
  width: 100%;
  height: 100%;
  background-color: #EAC52C;
  border-radius: 3rem;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .header-button::after {
    left: 0.5rem;
    border-radius: 13rem;
  }
}

.header-button:hover::after {
  background-color: #fff;
}

.arrow {
  position: relative;
  width: 2.6rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.header-button .arrow {
  background-color: #fff;
  transition: background-color 0.3s;
}

.header-button:hover .arrow {
  background-color: #DB494D;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 35%;
  width: 8px;
  height: 2px;
  transform-origin: calc(100% - 1px) 50%;
}
@media screen and (max-width: 768px) {
  .arrow::before,
  .arrow::after {
    width: 0.9rem;
  }
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.header-button .arrow::before,
.header-button .arrow::after {
  background-color: #DB494D;
  transition: background-color 0.3s;
}

.header-button:hover .arrow::before,
.header-button:hover .arrow::after {
  background-color: #fff;
}

.header-button.header-button-tel {
  column-gap: 1.4rem;
  font-size: 3.2rem;
  color: #fff;
}

.header-button.header-button-tel::after {
  background-color: #27A9B5;
}

@media screen and (max-width: 768px) {
  .drawer__contact .header-button {
    width: 52.4rem;
    height: 8.8rem;
  }
}

@media screen and (max-width: 768px) {
  .drawer__contact .header-button .icon {
    width: 3.5rem;
  }
}

@media screen and (max-width: 768px) {
  .drawer__contact .header-button.header-button-tel .icon {
    width: 2.4rem;
  }
}

.drawer__contact .header-button.header-button-tel {
  transition: color 0.3s;
}

.drawer__contact .header-button.header-button-tel:hover {
  color: #27A9B5;
}

.drawer__contact .header-button.header-button-tel::after {
  transition: background-color 0.3s;
}

.drawer__contact .header-button.header-button-tel:hover::after {
  background-color: #fff;
}

.drawer__contact .header-button.header-button-tel .icon img {
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .drawer__contact .header-button.header-button-tel:hover .icon img {
    filter: invert(50%) sepia(73%) saturate(452%) hue-rotate(137deg) brightness(97%) contrast(86%);
  }
}

.submit-button {
  margin-inline: auto;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.6rem;
  width: 30rem;
  border-radius: 3.7rem;
  background-color: #27A9B5;
  border: 2px solid #27A9B5;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .submit-button {
    padding: 3.1rem;
    column-gap: 1.9rem;
    width: 100%;
    border-radius: 6rem;
    font-size: 3rem;
  }
}

.submit-button::after {
  content: "";
  width: 0.6rem;
  height: auto;
  aspect-ratio: 4/8;
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: filter 0.3s;
}
@media screen and (max-width: 768px) {
  .submit-button::after {
    width: 1.2rem;
  }
}

.submit-button:hover {
  background-color: #fff;
  color: #27A9B5;
}

.submit-button:hover::after {
  filter: invert(53%) sepia(27%) saturate(1129%) hue-rotate(137deg) brightness(101%) contrast(85%);
}

.thanks-button.submit-button {
  flex-direction: row-reverse;
  background-color: #E57D21;
  border: 2px solid #E57D21;
}

.thanks-button.submit-button:hover {
  background-color: #fff;
  color: #E57D21;
}

.thanks-button.submit-button::after {
  transform: scale(-1, 1);
}

.thanks-button.submit-button:hover::after {
  filter: invert(46%) sepia(83%) saturate(626%) hue-rotate(351deg) brightness(101%) contrast(85%);
}

/* ------------------------------------------------
fv ロゴスライダー
--------------------------------------------------- */
.infinite-slider {
  width: 100%;
  overflow: hidden;
}

.infinite-track {
  width: max-content;
  display: flex;
  column-gap: min(1.5625vw, 24px);
  animation: scroll-left 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .infinite-track {
    column-gap: 1.4rem;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.slide {
  width: min(13.9973958333vw, 215px);
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .slide {
    width: 22.1rem;
  }
}

/* ------------------------------------------------
analy-sec03 swiper
--------------------------------------------------- */
.swiper-button__container {
  z-index: 50;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65.8%;
  padding-inline: 0.8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1439px) {
  .swiper-button__container {
    width: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .swiper-button__container {
    width: 74.8rem;
  }
}

.swiper-prev,
.swiper-next {
  position: relative;
  width: 7.7rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #27A9B5;
  border-radius: 50%;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.swiper-prev::before,
.swiper-prev::after,
.swiper-next::before,
.swiper-next::after {
  position: absolute;
  content: "";
  top: calc(50% - 2px);
  width: 2.6rem;
  height: 4px;
  border-radius: 9999px;
  background-color: #fff;
}

.swiper-prev::before,
.swiper-prev::after {
  left: 35%;
  transform-origin: 2px 50%;
}

.swiper-next::before,
.swiper-next::after {
  right: 35%;
  transform-origin: calc(100% - 2px) 50%;
}

.swiper-prev::before {
  transform: rotate(47deg);
}

.swiper-prev::after {
  transform: rotate(-47deg);
}

.swiper-next::before {
  transform: rotate(47deg);
}

.swiper-next::after {
  transform: rotate(-47deg);
}

.swiper-pagination {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}

.analy-sec07 .swiper-pagination {
  justify-content: initial;
}

.swiper-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}

.swiper-pagination-bullet {
  margin: 0;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #dddddd;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: #27A9B5;
}

.swiper-pagination-bullet:hover {
  opacity: 0.8;
}

/* ------------------------------------------------
FV
背景カラフルパス
--------------------------------------------------- */
.analy-fv__img01,
.analy-fv__img02 {
  animation: fvFadeUp 0.4s ease-out 0s both;
}

@keyframes fvFadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomFromRightBottom {
  0% {
    opacity: 0;
    transform: translate3d(40rem, 20rem, 12rem) scale(0.1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes zoomFromRightTop {
  0% {
    opacity: 0;
    transform: translate3d(15rem, -3rem, 12rem) scale(0.1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes zoomFromLeftBottom {
  0% {
    opacity: 0;
    transform: translate3d(-40rem, 20rem, 12rem) scale(0.1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes zoomFromLeftTop {
  0% {
    opacity: 0;
    transform: translate3d(-40rem, -20rem, 12rem) scale(0.1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.analy-fv__bg-vector .img01 {
  animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
}

.analy-fv__bg-vector .img02 {
  animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
}

.analy-fv__bg-vector .img03 {
  animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
}

.analy-fv__bg-vector .img04 {
  animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
}

.analy-fv__text-area {
  opacity: 0;
  animation: fvFadeIn 1.2s ease-out 1.4s forwards;
}

@keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------------------------------
モックアップ動画
--------------------------------------------------- */
.mockUp {
  opacity: 0;
}

.mockUp.is-animated {
  animation: fvFadeUp 0.4s ease-out 0s both;
}

/* ------------------------------------------------
analy-sec06
背景カラフルパス
--------------------------------------------------- */
.analy-sec06__bg-vector .img01,
.analy-sec06__bg-vector .img02,
.analy-sec06__bg-vector .img03,
.analy-sec06__bg-vector .img04 {
  opacity: 0;
}

.analy-sec06__bg-vector.is-animated .img01 {
  animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
}

.analy-sec06__bg-vector.is-animated .img02 {
  animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
}

.analy-sec06__bg-vector.is-animated .img03 {
  animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
}

.analy-sec06__bg-vector.is-animated .img04 {
  animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
}

/* ------------------------------------------------
左右両端に弾ける
背景カラフルパス
--------------------------------------------------- */
.side-bg-vector .img01,
.side-bg-vector .img02,
.side-bg-vector .img03,
.side-bg-vector .img04,
.bg-vectors .vectors01,
.bg-vectors .vectors02,
.bg-vectors .vectors03,
.bg-vectors .vectors04 {
  opacity: 0;
}

.side-bg-vector.is-animated .img01,
.bg-vectors.is-animated .vectors01 {
  animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
}

.side-bg-vector.is-animated .img02,
.bg-vectors.is-animated .vectors02 {
  animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
}

.side-bg-vector.is-animated .img03,
.bg-vectors.is-animated .vectors03 {
  animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
}

.side-bg-vector.is-animated .img04,
.bg-vectors.is-animated .vectors04 {
  animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
}

.analy-sec01 .imgUp {
  opacity: 0;
}

.analy-sec01 .imgUp.is-animated {
  animation: fvFadeUp 0.4s ease-out 0s both;
}

/* ------------------------------------------------
fv 背景カラフルパス
--------------------------------------------------- */
.analy-fv__bg-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.analy-fv__bg-vector .img01 {
  position: absolute;
  width: min(11.9140625vw, 183px);
  top: min(5.9244791667vw, 91px);
  left: min(5.2083333333vw, 80px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img01 {
    width: 18.9rem;
    top: 75.4rem;
    left: 4.3rem;
  }
}

.analy-fv__bg-vector .img02 {
  position: absolute;
  width: min(26.4322916667vw, 406px);
  top: min(28.125vw, 432px);
  left: min(0.78125vw, 12px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img02 {
    width: 32.5rem;
    top: 105.3rem;
    left: 3.8rem;
  }
}

.analy-fv__bg-vector .img03 {
  position: absolute;
  width: min(17.8385416667vw, 274px);
  top: min(10.3515625vw, 159px);
  right: min(0.6510416667vw, 10px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img03 {
    width: 23.5rem;
    top: 67.6rem;
    right: -4.2rem;
  }
}

.analy-fv__bg-vector .img04 {
  position: absolute;
  width: min(19.2708333333vw, 296px);
  top: min(28.90625vw, 444px);
  right: min(0.3255208333vw, 5px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img04 {
    width: 25.9rem;
    top: 99.8rem;
    right: 1.6rem;
  }
}

/* ------------------------------------------------
sec01背景カラフルパス
--------------------------------------------------- */
.analy-sec01__bg-vector {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.analy-sec01__bg-vector .img01 {
  position: absolute;
  width: 1.7rem;
  top: 25.4rem;
  left: -4.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img01 {
    width: 2.2rem;
    top: 34.2rem;
    left: -6rem;
  }
}

.analy-sec01__bg-vector .img02 {
  position: absolute;
  width: 1.7rem;
  top: 31.8rem;
  left: -1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img02 {
    width: 2.3rem;
    top: 42.8rem;
    left: -0.6rem;
  }
}

.analy-sec01__bg-vector .img03 {
  position: absolute;
  width: 1.1rem;
  top: 35.4rem;
  left: -9.1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img03 {
    width: 1.5rem;
    top: 47.6rem;
    left: -11.7rem;
  }
}

.analy-sec01__bg-vector .img04 {
  position: absolute;
  width: 1.3rem;
  top: 48rem;
  left: -13.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img04 {
    display: none;
  }
}

.analy-sec01__bg-vector .img05 {
  position: absolute;
  width: 1.7rem;
  top: 43.8rem;
  left: -6.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img05 {
    width: 2.2rem;
    top: 59.2rem;
    left: -8.5rem;
  }
}

.analy-sec01__bg-vector .img06 {
  position: absolute;
  width: 18.5rem;
  top: 32.4rem;
  left: -4.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img06 {
    width: 25.2rem;
    top: 43.6rem;
    left: -5.5rem;
  }
}

.analy-sec01__bg-vector .img07 {
  position: absolute;
  width: 2.3rem;
  top: 52.4rem;
  left: -3.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img07 {
    width: 3.1rem;
    top: 70.8rem;
    left: -4.4rem;
  }
}

.analy-sec01__bg-vector .img08 {
  position: absolute;
  width: 1.3rem;
  top: 6.4rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img08 {
    width: 1.7rem;
    top: 8.3rem;
    right: -0.6rem;
  }
}

.analy-sec01__bg-vector .img09 {
  position: absolute;
  width: 1.7rem;
  top: 9.7rem;
  right: -5.5rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img09 {
    width: 2.2rem;
    top: 12.7rem;
    right: -8.1rem;
  }
}

.analy-sec01__bg-vector .img10 {
  position: absolute;
  width: 10.2rem;
  top: 12.6rem;
  right: -6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img10 {
    width: 13.9rem;
    top: 16.9rem;
    right: -8.8rem;
  }
}

.analy-sec01__bg-vector .img11 {
  position: absolute;
  width: 1.5rem;
  top: 25.5rem;
  right: -5.3rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img11 {
    width: 2rem;
    top: 34.2rem;
    right: -7.7rem;
  }
}

.analy-sec01__bg-vector .img12 {
  position: absolute;
  width: 3.5rem;
  top: 32rem;
  right: -5.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img12 {
    width: 4.7rem;
    top: 43.2rem;
    right: -8.2rem;
  }
}

.analy-sec01__bg-vector .img13 {
  position: absolute;
  width: 1.7rem;
  top: 40.3rem;
  right: -6.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-vector .img13 {
    width: 2.3rem;
    top: 54.4rem;
    right: -9.5rem;
  }
}

/* ------------------------------------------------
sec02 背景カラフルパス
--------------------------------------------------- */
.analy-sec02__bg-vector {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.analy-sec02__bg-vector .img01 {
  position: absolute;
  width: 5.4rem;
  top: 10.2rem;
  left: -5.1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img01 {
    width: 7.4rem;
    top: 12.9rem;
    left: -6.8rem;
  }
}

.analy-sec02__bg-vector .img02 {
  position: absolute;
  width: 1.7rem;
  top: 11.6rem;
  left: 2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img02 {
    width: 2.3rem;
    top: 14.8rem;
    left: 2.9rem;
  }
}

.analy-sec02__bg-vector .img03 {
  position: absolute;
  width: 1.6rem;
  top: 15.3rem;
  left: 3.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img03 {
    width: 2.2rem;
    top: 19.9rem;
    left: 4.6rem;
  }
}

.analy-sec02__bg-vector .img04 {
  position: absolute;
  width: 1.3rem;
  top: 26.9rem;
  left: -9.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img04 {
    width: 1.7rem;
    top: 35.6rem;
    left: -12.9rem;
  }
}

.analy-sec02__bg-vector .img05 {
  position: absolute;
  width: 1.6rem;
  top: 26rem;
  left: -4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img05 {
    width: 2.2rem;
    top: 34.4rem;
    left: -3rem;
  }
}

.analy-sec02__bg-vector .img06 {
  position: absolute;
  width: 18.4rem;
  top: 17.6rem;
  left: -0.5rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img06 {
    width: 25.1rem;
    top: 23rem;
    left: -0.5rem;
  }
}

.analy-sec02__bg-vector .img07 {
  position: absolute;
  width: 3.7rem;
  top: 32.2rem;
  left: -8.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img07 {
    width: 5rem;
    top: 42.8rem;
    left: -7.1rem;
  }
}

.analy-sec02__bg-vector .img08 {
  position: absolute;
  width: 1.7rem;
  top: 33.1rem;
  left: 1.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img08 {
    width: 2.3rem;
    top: 44.1rem;
    left: 2.4rem;
  }
}

.analy-sec02__bg-vector .img09 {
  position: absolute;
  width: 2.8rem;
  top: 48.1rem;
  left: -3.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img09 {
    width: 3.9rem;
    top: 64.6rem;
    left: -4.5rem;
  }
}

.analy-sec02__bg-vector .img10 {
  position: absolute;
  width: 1.5rem;
  top: 44.5rem;
  left: 2.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img10 {
    width: 2rem;
    top: 59.7rem;
    left: 3.9rem;
  }
}

.analy-sec02__bg-vector .img11 {
  position: absolute;
  width: 3.7rem;
  top: 44.3rem;
  left: 9.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img11 {
    width: 5rem;
    top: 59.3rem;
    left: 13.3rem;
  }
}

.analy-sec02__bg-vector .img12 {
  position: absolute;
  width: 5.4rem;
  top: 53rem;
  right: 5.3rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img12 {
    width: 7.4rem;
    top: 71rem;
    right: 7rem;
  }
}

.analy-sec02__bg-vector .img13 {
  position: absolute;
  width: 1.3rem;
  top: 51.4rem;
  right: -2.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img13 {
    width: 1.7rem;
    top: 69rem;
    right: -3.3rem;
  }
}

.analy-sec02__bg-vector .img14 {
  position: absolute;
  width: 1.6rem;
  top: 45.3rem;
  right: 1.3rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img14 {
    width: 2.2rem;
    top: 60.7rem;
    right: 1.6rem;
  }
}

.analy-sec02__bg-vector .img15 {
  position: absolute;
  width: 1.3rem;
  top: 44.3rem;
  right: -6.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img15 {
    width: 1.7rem;
    top: 59.3rem;
    right: -9.3rem;
  }
}

.analy-sec02__bg-vector .img16 {
  position: absolute;
  width: 6.6rem;
  top: 31.8rem;
  right: -3.3rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img16 {
    width: 9rem;
    top: 42.3rem;
    right: -4.8rem;
  }
}

.analy-sec02__bg-vector .img17 {
  position: absolute;
  width: 1.5rem;
  top: 24.5rem;
  right: -7.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img17 {
    width: 2rem;
    top: 32.4rem;
    right: -10.6rem;
  }
}

.analy-sec02__bg-vector .img18 {
  position: absolute;
  width: 10.2rem;
  top: 10.2rem;
  right: -8.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img18 {
    width: 13.9rem;
    top: 12.9rem;
    right: -12rem;
  }
}

.analy-sec02__bg-vector .img19 {
  position: absolute;
  width: 1.6rem;
  top: 7.8rem;
  right: -8.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img19 {
    width: 2.2rem;
    top: 9.7rem;
    right: -12.2rem;
  }
}

.analy-sec02__bg-vector .img20 {
  position: absolute;
  width: 1.3rem;
  top: 6.5rem;
  right: -1.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img20 {
    width: 1.7rem;
    top: 7.8rem;
    right: -2.1rem;
  }
}

.analy-sec02__bg-vector .img21 {
  position: absolute;
  width: 1.9rem;
  top: 0.4rem;
  right: -4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img21 {
    width: 2.6rem;
    top: 0;
    right: -5.7rem;
  }
}

.analy-sec02__bg-vector .img22 {
  position: absolute;
  width: 1.5rem;
  top: -0.3rem;
  right: 2.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-vector .img22 {
    width: 2rem;
    top: -1.4rem;
    right: 3.4rem;
  }
}

/* ------------------------------------------------
左右両端に広がる 背景カラフルパス
--------------------------------------------------- */
.side-bg-vector {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.side-bg-vector .img01 {
  position: absolute;
  width: 19rem;
}
@media screen and (max-width: 768px) {
  .side-bg-vector .img01 {
    width: 18.2rem;
  }
}

.side-bg-vector .img02 {
  position: absolute;
  width: 21.8rem;
}
@media screen and (max-width: 768px) {
  .side-bg-vector .img02 {
    width: 21rem;
  }
}

.side-bg-vector .img03 {
  position: absolute;
  width: 24.7rem;
}
@media screen and (max-width: 768px) {
  .side-bg-vector .img03 {
    width: 20.3rem;
  }
}

.side-bg-vector .img04 {
  position: absolute;
  width: 29.8rem;
}
@media screen and (max-width: 768px) {
  .side-bg-vector .img04 {
    width: 24.1rem;
  }
}

.analy-sec01__sub .side-bg-vector .img01 {
  top: -24rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .analy-sec01__sub .side-bg-vector .img01 {
    width: 21.1rem;
    top: -13.3rem;
    left: -5.8rem;
  }
}

.analy-sec01__sub .side-bg-vector .img02 {
  top: -0.8rem;
  left: -10.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__sub .side-bg-vector .img02 {
    width: 28.8rem;
    top: 13.7rem;
    left: -14.9rem;
  }
}

.analy-sec01__sub .side-bg-vector .img03 {
  top: -24.4rem;
  right: -3.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__sub .side-bg-vector .img03 {
    width: 26rem;
    top: -16.8rem;
    right: -11.9rem;
  }
}

.analy-sec01__sub .side-bg-vector .img04 {
  top: -4.7rem;
  right: -13.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__sub .side-bg-vector .img04 {
    width: 29.8rem;
    top: 8.7rem;
    right: -19.4rem;
  }
}

.analy-sec04 .side-bg-vector .img01 {
  top: 12.8rem;
  left: 3.2rem;
}

.analy-sec04 .side-bg-vector .img02 {
  top: 36rem;
  left: -7.5rem;
}

.analy-sec04 .side-bg-vector .img03 {
  top: 12rem;
  right: -6.7rem;
}

.analy-sec04 .side-bg-vector .img04 {
  top: 34.2rem;
  right: -18.9rem;
}

/* ------------------------------------------------
sec01-bottom 背景カラフルパス
--------------------------------------------------- */
.analy-sec01-bottom__bg-vectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.analy-sec01-bottom__bg-vectors .vectors {
  position: absolute;
}

.analy-sec01-bottom__bg-vectors .vectors01 {
  top: 1.3rem;
  left: -1.5rem;
  width: 21.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__bg-vectors .vectors01 {
    top: 2.3rem;
    left: -1.5rem;
    width: 21.8rem;
  }
}

.analy-sec01-bottom__bg-vectors .vectors02 {
  top: 31.3rem;
  left: -5.3rem;
  width: 33.5rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__bg-vectors .vectors02 {
    top: 27.3rem;
    left: -3.3rem;
    width: 33.5rem;
  }
}

.analy-sec01-bottom__bg-vectors .vectors03 {
  top: 7.2rem;
  right: -3.2rem;
  width: 28.1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__bg-vectors .vectors03 {
    top: 4.2rem;
    right: -7.2rem;
    width: 28.1rem;
  }
}

.analy-sec01-bottom__bg-vectors .vectors04 {
  top: 32.3rem;
  right: 0.3rem;
  width: 26rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__bg-vectors .vectors04 {
    top: 26.3rem;
    right: -2.7rem;
    width: 26rem;
  }
}

/* ------------------------------------------------
sec06 モックアップ背景カラフルパス
--------------------------------------------------- */
.analy-sec06 .side-bg-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.analy-sec06 .side-bg-vector .img01 {
  top: 27.8rem;
  left: -10.9rem;
  width: 9.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06 .side-bg-vector .img01 {
    width: 10.8rem;
    top: 27.8rem;
    left: -10.9rem;
  }
}

.analy-sec06 .side-bg-vector .img02 {
  top: 30.5rem;
  left: -1.9rem;
  width: 29.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06 .side-bg-vector .img02 {
    width: 33.5rem;
    top: 32.5rem;
    left: -16.9rem;
  }
}

.analy-sec06 .side-bg-vector .img03 {
  top: 8.2rem;
  left: 25.7rem;
  width: 16.9rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06 .side-bg-vector .img03 {
    width: 19rem;
    top: 1.2rem;
    left: 37.7rem;
  }
}

.analy-sec06 .side-bg-vector .img04 {
  top: 29.5rem;
  left: 29.3rem;
  width: 11.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06 .side-bg-vector .img04 {
    top: 25.5rem;
    left: 42.3rem;
  }
}

/* ------------------------------------------------
fv
--------------------------------------------------- */
.analy-fv {
  z-index: 1;
  position: relative;
  overflow: hidden;
  background-color: #F7F7F7;
}

.analy-fv__bg-circle {
  z-index: -1;
  position: absolute;
  bottom: min(0.6510416667vw, 10px);
  left: 49.9%;
  transform: translateX(-50%);
  width: min(116.6666666667vw, 1792px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-circle {
    left: 55%;
    width: 138.3rem;
  }
}

.analy-fv__main {
  z-index: 1;
  position: relative;
}

.analy-fv__inner {
  z-index: 5;
  position: relative;
  margin-inline: auto;
  padding: min(10.8072916667vw, 166px) 0 min(8.0729166667vw, 124px);
  width: 100%;
  max-width: 1536px;
}
@media screen and (max-width: 768px) {
  .analy-fv__inner {
    padding: 9.9rem 0 68.5rem;
  }
}

.analy-fv__bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(53.125vw, 816px);
  height: 100%;
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-img {
    width: 100%;
  }
}

.analy-fv__img01 {
  z-index: 2;
  position: absolute;
  top: min(16.9270833333vw, 260px);
  right: min(16.2109375vw, 249px);
  width: min(36.9791666667vw, 568px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .analy-fv__img01 {
    top: 77rem;
    right: 18.6rem;
    width: 56.8rem;
  }
}

.analy-fv__img02 {
  z-index: 1;
  position: absolute;
  top: min(4.5572916667vw, 70px);
  right: min(5.5989583333vw, 86px);
  width: min(31.1848958333vw, 479px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .analy-fv__img02 {
    top: 66.4rem;
    right: 1.8rem;
    width: 47.8rem;
  }
}

.analy-fv__bg-img img {
  position: relative;
}

.analy-fv__text-area {
  position: relative;
  padding-left: min(7.3567708333vw, 113px);
}
@media screen and (max-width: 768px) {
  .analy-fv__text-area {
    margin-inline: auto;
    padding-left: initial;
    width: 68.3rem;
  }
}

.analy-fv__main-title .sub-text {
  padding: min(0.2604166667vw, 4px) min(0.9114583333vw, 14px);
  width: fit-content;
  background-color: #333;
  border-radius: min(0.390625vw, 6px);
  font-size: min(1.953125vw, 30px);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .analy-fv__main-title .sub-text {
    padding: 0.4rem 1.4rem;
    border-radius: 0.6rem;
    font-size: 3.1rem;
  }
}

.analy-fv__main-title .sub-text .strong {
  color: #EAC52C;
}

.analy-fv__main-title .title {
  margin-top: min(0.2604166667vw, 4px);
  font-size: min(3.2552083333vw, 50px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .analy-fv__main-title .title {
    margin-top: 0.8rem;
    font-size: 5.2rem;
  }
}

.analy-fv__main-title .title .strong {
  color: #DB494D;
}

.analy-fv__main-title .title .small {
  font-size: min(2.9296875vw, 45px);
}
@media screen and (max-width: 768px) {
  .analy-fv__main-title .title .small {
    font-size: 4.6rem;
  }
}

.analy-fv__main-title .title .large {
  font-size: min(3.90625vw, 60px);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .analy-fv__main-title .title .large {
    font-size: 5.2rem;
  }
}

.analy-fv__main-title .description {
  margin-top: min(1.3671875vw, 21px);
  font-size: min(1.3671875vw, 21px);
  font-size: 500;
}
@media screen and (max-width: 768px) {
  .analy-fv__main-title .description {
    margin-top: 3rem;
    font-size: 2.4rem;
  }
}

.analy-fv__badge {
  margin-top: min(2.0833333333vw, 32px);
}
@media screen and (max-width: 768px) {
  .analy-fv__badge {
    margin-top: 5rem;
  }
}

.analy-fv__badge-lists {
  display: flex;
  align-items: center;
  column-gap: min(1.8229166667vw, 28px);
}
@media screen and (max-width: 768px) {
  .analy-fv__badge-lists {
    justify-content: center;
    column-gap: 1.4rem;
  }
}

.analy-fv__badge-list {
  width: min(11.8489583333vw, 182px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .analy-fv__badge-list {
    width: 19.1rem;
    column-gap: 0.5rem;
  }
}

.analy-fv__badge-list .leaf-icon {
  width: min(2.1484375vw, 33px);
}
@media screen and (max-width: 768px) {
  .analy-fv__badge-list .leaf-icon {
    width: 3.2rem;
  }
}

.analy-fv__badge-list .leaf-icon.reverse {
  transform: scale(-1, 1);
}

.analy-fv__badge-list .text {
  font-size: min(1.3020833333vw, 20px);
}
@media screen and (max-width: 768px) {
  .analy-fv__badge-list .text {
    font-size: 2.2rem;
  }
}

.analy-fv__badge-textArea {
  text-align: center;
}

.analy-fv__badge-list .strong {
  margin-top: fv(4);
  font-size: min(1.953125vw, 30px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  column-gap: min(0.5208333333vw, 8px);
  color: #CC9E11;
}
@media screen and (max-width: 768px) {
  .analy-fv__badge-list .strong {
    margin-top: 0.4rem;
    column-gap: 0.8rem;
    font-size: 3.6rem;
  }
}

.analy-fv__badge-list .strong .icon-arrow {
  margin-bottom: min(0.3255208333vw, 5px);
  width: min(1.0416666667vw, 16px);
}
@media screen and (max-width: 768px) {
  .analy-fv__badge-list .strong .icon-arrow {
    margin-bottom: 0.6rem;
    width: 1.7rem;
  }
}

.analy-fv__slide-heading {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-fv__slide-heading {
    font-size: 3.1rem;
  }
}

.analy-fv__slide-subHeading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-fv__slide-subHeading {
    font-size: 2.1rem;
  }
}

.analy-fv__slide-container {
  z-index: 10;
  position: relative;
  margin-top: 3.2rem;
}

/* ------------------------------------------------
sec01
--------------------------------------------------- */
.analy-sec01 {
  padding-top: 8rem;
  background-color: #F7F7F7;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .analy-sec01 {
    padding-top: 14rem;
    padding-bottom: 12rem;
  }
}

.analy-sec01 .section-sub-text {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01 .section-sub-text {
    margin-top: 2.2rem;
    font-size: 3rem;
    font-weight: 500;
  }
}

.analy-sec01 .section-text {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01 .section-text {
    font-size: 4.5rem;
  }
}

.analy-sec01 .section-third-text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01 .section-third-text {
    margin-top: 2rem;
    font-size: 2.7rem;
  }
}

.analy-sec01-main {
  background-color: #fff;
}

.analy-sec01-main__bg {
  position: relative;
  padding-bottom: 12rem;
  background-image: linear-gradient(to bottom, #f7f7f7, #efefef);
  border-bottom-left-radius: 20rem;
  border-bottom-right-radius: 20rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__bg {
    border-bottom-left-radius: 15rem;
    border-bottom-right-radius: 15rem;
  }
}

.analy-sec01-main__bg::before {
  position: absolute;
  content: "";
  bottom: -5.1rem;
  left: 50%;
  width: 24.2rem;
  height: auto;
  aspect-ratio: 242/111;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #F0F0F0;
  border-radius: 0.4rem;
}

.analy-sec01-main__head-lists {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__head-lists {
    margin-top: 6rem;
    column-gap: 1.6rem;
  }
}

.analy-sec01-main__list {
  z-index: 1;
  position: relative;
}

.analy-sec01-main__list .point {
  z-index: 10;
  position: absolute;
  top: -2.5rem;
  left: 0;
  padding-right: 0.1rem;
  width: 10.8rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__list .point {
    width: 9.3rem;
  }
}

.analy-sec01-main__list .point::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  right: 0.8rem;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__list .point::before {
    right: 0.6rem;
  }
}

.analy-sec01-main__list:nth-child(1) .point::before {
  background-color: #27A9B5;
}

.analy-sec01-main__list:nth-child(2) .point::before {
  background-color: #E57D21;
}

.analy-sec01-main__list .point::after {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #333;
  border-radius: 50%;
}

.analy-sec01-main__list .title {
  padding: 2.5rem 0 2.4rem 12.6rem;
  background-color: #fff;
  border-top-left-radius: 20rem;
  border-top-right-radius: 20rem;
  font-size: 2.1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__list .title {
    padding: 1.4rem 0 1.3rem 9.6rem;
    font-size: 2.2rem;
    font-weight: 400;
    border-top-left-radius: 7rem;
    border-top-right-radius: 7rem;
  }
}

.analy-sec01-main__list .strong {
  font-size: 3.1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__list .strong {
    font-size: 3rem;
  }
}

.analy-sec01-main__list:nth-child(1) .strong {
  color: #27A9B5;
}

.analy-sec01-main__list:nth-child(2) .strong {
  color: #E57D21;
}

.analy-sec01-main__list:nth-child(1) .title {
  border-top: 2px solid #52BAC4;
  border-right: 2px solid #52BAC4;
  border-left: 2px solid #52BAC4;
}

.analy-sec01-main__list:nth-child(2) .title {
  border-top: 2px solid #EA974D;
  border-right: 2px solid #EA974D;
  border-left: 2px solid #EA974D;
}

.analy-sec01-main__list .img {
  border-bottom-left-radius: 10rem;
  border-bottom-right-radius: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__list .img {
    border-bottom-left-radius: 7rem;
    border-bottom-right-radius: 7rem;
  }
}

.analy-sec01-main__arrow {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 9.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__arrow {
    margin-top: 1.8rem;
    column-gap: 5.7rem;
  }
}

.analy-sec01-main__arrow .black-speech {
  padding: 0.6rem 1rem 0.9rem;
  width: 23.1rem;
  font-size: 3.1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__arrow .black-speech {
    padding: 0.4rem 1rem 0.6rem;
    width: 18.3rem;
    font-size: 2.7rem;
  }
}

.analy-sec01-main__arrow .img {
  width: 7.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__arrow .img {
    width: 5.4rem;
  }
}

.analy-sec01-main__bottom {
  margin: 2.4rem auto 0;
  width: 75.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__bottom {
    width: 68.8rem;
  }
}

.analy-sec01-main__bottom .title {
  padding: 3.2rem 1rem;
  background-color: #fff;
  border-top: 2px solid #8ABD5B;
  border-right: 2px solid #8ABD5B;
  border-left: 2px solid #8ABD5B;
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__bottom .title {
    padding: 3rem 1rem 2.7rem;
    font-size: 2.7rem;
  }
}

.analy-sec01-main__bottom .title .strong {
  font-size: 3.1rem;
  font-weight: 700;
  color: #6DAD32;
}
@media screen and (max-width: 768px) {
  .analy-sec01-main__bottom .title .strong {
    font-size: 3.5rem;
  }
}

.analy-sec01-main__bottom .img {
  border-bottom-left-radius: 10rem;
  border-bottom-right-radius: 10rem;
  overflow: hidden;
}

.analy-sec01-sub {
  background-color: #F7F7F7;
}

.analy-sec01-sub {
  padding: 11.5rem 0 9.8rem;
  background-color: #fff;
  border-bottom-left-radius: 20rem;
  border-bottom-right-radius: 20rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-sub {
    padding: 12.2rem 0 10rem;
    border-bottom-left-radius: 15rem;
    border-bottom-right-radius: 15rem;
  }
}

.analy-sec01-sub__inner {
  z-index: 1;
  position: relative;
}

.analy-sec01-sub__text {
  font-size: 3.1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec01-sub__text {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.8;
  }
}

.analy-sec01-sub__text .strong-line02 {
  font-size: 3.7rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec01-sub__text .strong-line02 {
    font-size: 4.5rem;
    font-weight: 700;
  }
}

.analy-sec01-bottom {
  padding: 12rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom {
    padding: 14.3rem 4rem 0;
  }
}

.analy-sec01-bottom__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__inner {
    padding-inline: initial;
    padding-bottom: 12rem;
    flex-direction: column;
  }
}

.analy-sec01-bottom__text-area {
  padding: 9.5rem 0 9.5rem 5rem;
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__text-area {
    padding: 10rem 0 2.6rem;
    width: 100%;
    text-align: center;
  }
}

.analy-sec01-bottom__head-text {
  font-size: 2.5rem;
  font-size: 500;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__head-text {
    font-size: 3rem;
  }
}

.analy-sec01-bottom__speech {
  margin: 2rem 0 0 13.6rem;
  padding: 0.3rem 4rem 0.5rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__speech {
    margin: 2rem auto 0;
    font-size: 2.4rem;
    font-weight: 700;
  }
}

.analy-sec01-bottom__large-text {
  margin-top: 1.5rem;
  font-size: 4.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__large-text {
    font-size: 4.5rem;
  }
}

.analy-sec01-bottom__large-text .strong {
  color: #27A9B5;
}

.analy-sec01-bottom__sub-text {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__sub-text {
    margin-top: 3.2rem;
    font-size: 2.7rem;
  }
}

.analy-sec01-bottom__sub-text .strong-line {
  font-weight: 700;
}

.analy-sec01-bottom__img-area {
  z-index: 1;
  position: relative;
  width: 52.5%;
  height: 60.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__img-area {
    width: 100%;
    height: 44.5rem;
  }
}

.analy-sec01-bottom__bg-vectors {
  z-index: 1;
}

.analy-sec01-bottom__img {
  z-index: 1;
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 52.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01-bottom__img {
    top: 0;
    left: 3.8rem;
    width: 54.5rem;
  }
}

/* ------------------------------------------------
sec02
--------------------------------------------------- */
.analy-sec02 {
  padding: 12rem 2.5rem 0;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .analy-sec02 {
    padding: 12rem 4rem 0;
  }
}

.analy-sec02__bg {
  padding: 8rem 0;
}

.analy-sec02__head .section-text {
  margin-top: 2.2rem;
  font-size: 3.7rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec02__head .section-text {
    font-size: 3rem;
  }
}

.analy-sec02__head .section-text .strong {
  color: #27A9B5;
}
@media screen and (max-width: 768px) {
  .analy-sec02__head .section-text .strong {
    font-size: 4.5rem;
  }
}

.analy-sec02__head .sub-heading {
  margin: 2.2rem auto 0;
  padding: 0.1rem 4.1rem 0.3rem;
  width: fit-content;
  background-color: #333;
  border-radius: 5rem;
  font-size: 4.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec02__head .sub-heading {
    padding: 0.2rem 6rem 0.4rem;
    font-size: 4.5rem;
  }
}

.analy-sec02__content {
  margin-top: 6rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .analy-sec02__content {
    flex-direction: column;
    row-gap: 10rem;
  }
}

.analy-sec02__plan {
  padding: 6rem 7rem 7rem;
  width: 45.6%;
  border: 3px solid #CDCDCD;
  border-radius: 15rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__plan {
    padding: 7rem 3rem 8rem;
    width: 100%;
  }
}

.analy-sec02__plan-head {
  padding-bottom: 2rem;
  border-bottom: 1px solid #CDCDCD;
}

.analy-sec02__plan-head .heading {
  margin-inline: auto;
  padding: 0 4.1rem;
  width: fit-content;
  background-color: #DB494D;
  border-radius: 3.3rem;
  font-size: 2.1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec02__plan-head .heading {
    font-size: 2.7rem;
  }
}

.analy-sec02__plan-head .heading-text {
  font-size: 3.7rem;
  font-weight: 700;
  color: #DB494D;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec02__plan-head .heading-text {
    font-size: 4.5rem;
  }
}

.analy-sec02__plan-head .heading-text .strong {
  font-family: "Montserrat", sans-serif;
  font-size: 7.4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .analy-sec02__plan-head .heading-text .strong {
    font-size: 12.8rem;
  }
}

.analy-sec02__plan ul {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  row-gap: 3.2rem;
}

.analy-sec02__plan li {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__plan li {
    column-gap: 1.6rem;
  }
}

.analy-sec02__plan .img {
  width: 6.3rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__plan .img {
    width: 7.1rem;
  }
}

.analy-sec02__plan .text-area {
  flex: 1;
}

.analy-sec02__plan li:nth-child(1) .title {
  color: #27A9B5;
}

.analy-sec02__plan li:nth-child(2) .title {
  color: #EAC52C;
}

.analy-sec02__plan li:nth-child(3) .title {
  color: #E57D21;
}

.analy-sec02__plan li:nth-child(4) .title {
  color: #6DAD32;
}

.analy-sec02__plan li:nth-child(5) .title {
  color: #7290C1;
}

.analy-sec02__plan .p-text {
  margin-top: 0.6rem;
}

.analy-sec02__text-area {
  padding-left: 9.9rem;
  width: 54.4%;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area {
    padding-left: 0;
    width: 100%;
  }
}

.analy-sec02__text-area-head .p-text {
  line-height: 1.8;
}

.analy-sec02__text-area-head .p-text:not(:first-child) {
  margin-top: 3.2rem;
}

.analy-sec02__text-area-head .p-text .strong-line {
  font-weight: 700;
}

.analy-sec02__text-area-bottom {
  margin-top: 8rem;
}

.analy-sec02__text-area-bottom > p {
  font-size: 3.1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area-bottom > p {
    font-size: 3.8rem;
  }
}

.analy-sec02__text-area-bottom > p .strong {
  font-size: 3.7rem;
  font-weight: 700;
  color: #27A9B5;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area-bottom > p .strong {
    font-size: 4.5rem;
  }
}

.analy-sec02__text-area-bottom > .img-container {
  margin-top: 3.2rem;
}

.analy-sec02__text-area-bottom > .img-container .img:nth-child(1),
.analy-sec02__text-area-bottom > .img-container .img:nth-child(2) {
  width: 50rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area-bottom > .img-container .img:nth-child(1),
  .analy-sec02__text-area-bottom > .img-container .img:nth-child(2) {
    width: 100%;
  }
}

.analy-sec02__text-area-bottom > .img-container .img:nth-child(3) {
  width: 47.1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area-bottom > .img-container .img:nth-child(3) {
    width: 57.3rem;
  }
}

/* ------------------------------------------------
sec03
--------------------------------------------------- */
.analy-sec03 {
  z-index: 1;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 10rem;
  background-color: #F7F7F7;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .analy-sec03 {
    padding-top: 14rem;
  }
}

.analy-sec03__bg {
  z-index: 1;
  position: absolute;
  top: 12rem;
  left: 47%;
  transform: translateX(-50%);
  width: 196rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__bg {
    left: 50%;
    width: 135.6rem;
  }
}

.analy-sec03__inner {
  z-index: 10;
  position: relative;
}

.analy-sec03 .section-text {
  margin-top: 2.4rem;
  font-size: 4.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec03 .section-text {
    margin-top: 2.2rem;
    font-size: 4.5rem;
  }
}

.analy-sec03__content {
  margin-top: 6.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__content {
    margin-top: 1.5rem;
  }
}

.analy-sec03__content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 19rem;
  row-gap: 5.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__content ul {
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    row-gap: 3.5rem;
  }
}

.analy-sec03__content li {
  width: 35.5rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__content li {
    width: 50rem;
  }
}

.analy-sec03__content .speech-body {
  z-index: 1;
  position: relative;
}

.analy-sec03__content .speech-img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.analy-sec03__content .speech-body p {
  position: relative;
  padding: 3.7rem 0 2.8rem;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec03__content .speech-body p {
    padding: 5rem 0 3.7rem;
    font-size: 3rem;
  }
}

.analy-sec03__content .name {
  font-size: 2.1rem;
  font-weight: 700;
  color: #27A9B5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec03__content .name {
    font-size: 2.7rem;
  }
}

.analy-sec03__content .movie-area {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__content .movie-area {
    margin-top: 3.2rem;
  }
}

.analy-sec03__mockUp {
  width: 100%;
}

/* ------------------------------------------------
sec04
--------------------------------------------------- */
.analy-sec04 {
  z-index: 10;
  position: relative;
  padding-bottom: 12rem;
  background-color: #F7F7F7;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .analy-sec04 {
    padding-bottom: 14rem;
    overflow: visible;
  }
}

.analy-sec04__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-inline: auto;
  width: 100%;
  height: 100%;
  max-width: 1536px;
}
@media screen and (max-width: 768px) {
  .analy-sec04__bg {
    top: -33rem;
  }
}

@media screen and (max-width: 768px) {
  .analy-sec04__bg-sp {
    position: relative;
    width: 100%;
  }
}

.analy-sec04__head {
  position: relative;
}

.analy-sec04 .section-text {
  margin-top: 2.2rem;
}

.analy-sec04__content {
  position: relative;
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .analy-sec04__table .img {
    margin: 6rem auto 0;
  }
}

@media screen and (max-width: 768px) {
  .analy-sec04__table:not(:first-child) .img {
    width: 61.6rem;
  }
}

/* ------------------------------------------------
sec05
--------------------------------------------------- */
.analy-sec05 {
  padding-bottom: 12rem;
  background-color: #F7F7F7;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .analy-sec05 {
    padding-bottom: 14rem;
  }
}

.analy-sec05__inner {
  z-index: 1;
  position: relative;
}

.analy-sec05__head .text {
  margin-top: 2.3rem;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec05__head .text {
    margin-top: 2.2rem;
    font-size: 3rem;
  }
}

.analy-sec05__head .section-sub-text {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec05__head .section-sub-text {
    font-size: 4.5rem;
  }
}

.analy-sec05__main {
  margin-top: 6rem;
}

.analy-sec05__slide-container {
  padding-bottom: 7rem;
}

.analy-sec05__slide {
  padding: 5rem 8rem;
  min-height: 44.8rem;
  background-color: #fff;
  border-radius: 8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec05__slide {
    padding: 6rem 4rem;
    min-height: 69rem;
  }
}

.analy-sec05__slide.swiper-slide-active {
  box-shadow: 2rem 2rem 0 0 #7290C1;
}

.analy-sec05__slide .head {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec05__slide .head {
    column-gap: 3rem;
  }
}

.analy-sec05__slide .head .img {
  width: 12.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec05__slide .head .img {
    width: 16.7rem;
  }
}

.analy-sec05__slide .company {
  display: flex;
  align-items: center;
  column-gap: 2.4rem;
}

.analy-sec05__slide .company-lists {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  column-gap: 2.4rem;
  row-gap: 1.6rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .analy-sec05__slide .company-lists {
    column-gap: 1.6rem;
    row-gap: 1.6rem;
  }
}

.analy-sec05__slide .company-list {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .analy-sec05__slide .company-list {
    font-size: 2.4rem;
  }
}

.analy-sec05__slide .company-list .title {
  padding: 0 1.2rem 0.2rem;
  background-color: #7290C1;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec05__slide .company-list .title {
    font-size: 2.4rem;
  }
}

.analy-sec05__slide .text-area {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec05__slide .text-area {
    margin-top: 3.2rem;
  }
}

.analy-sec05__slide .text-area .title {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec05__slide .text-area .title {
    font-size: 3.5rem;
  }
}

.analy-sec05__main .text-container {
  min-height: 20.1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec05__main .text-container {
    min-height: 37.3rem;
  }
}

.analy-sec05__main .text {
  margin-top: 1.6rem;
}

.analy-sec05__main .text .strong-line {
  font-weight: 700;
}

/* ------------------------------------------------
sec06
--------------------------------------------------- */
.analy-sec06 {
  padding-inline: 2.5rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .analy-sec06 {
    padding-inline: 4rem;
  }
}

.analy-sec06__bg {
  padding: 8rem 0 9.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__bg {
    padding: 10rem 0;
  }
}

.analy-sec06 .section-sub-text {
  margin-top: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .analy-sec06 .section-sub-text {
    font-weight: 400;
  }
}

.analy-sec06 .section-text {
  margin-top: 1rem;
  font-size: 3.7rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec06 .section-text {
    font-size: 3rem;
  }
}

.analy-sec06 .section-text .strong {
  font-size: 4.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec06 .section-text .strong {
    font-size: 4.5rem;
  }
}

.analy-sec06__main {
  margin-top: 6rem;
}

.analy-sec06__main-inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .analy-sec06__main-inner {
    flex-direction: column-reverse;
    row-gap: 8rem;
    justify-content: center;
  }
}

.analy-sec06 .mockUp-area {
  padding-left: 9.4rem;
  width: 48%;
}
@media screen and (max-width: 1023px) {
  .analy-sec06 .mockUp-area {
    width: 46%;
  }
}
@media screen and (max-width: 768px) {
  .analy-sec06 .mockUp-area {
    padding-left: initial;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.analy-sec06__text-area {
  width: 52%;
}
@media screen and (max-width: 1023px) {
  .analy-sec06__text-area {
    width: 54%;
  }
}
@media screen and (max-width: 768px) {
  .analy-sec06__text-area {
    width: 100%;
  }
}

.analy-sec06__tag-lists {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  row-gap: 0.8rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .analy-sec06__tag-lists {
    column-gap: 1.6rem;
    row-gap: 1.6rem;
  }
}

.analy-sec06__tag-list {
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  background-color: #fff;
}

.analy-sec06__tag-list:nth-child(1) {
  border: 2px solid #27A9B5;
  color: #27A9B5;
}

.analy-sec06__tag-list:nth-child(2) {
  border: 2px solid #E57D21;
  color: #E57D21;
}

.analy-sec06__tag-list:nth-child(3) {
  border: 2px solid #DB494D;
  color: #DB494D;
}

.analy-sec06__tag-list:nth-child(4) {
  border: 2px solid #6DAD32;
  color: #6DAD32;
}

.analy-sec06__text-area > p {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .analy-sec06__text-area > p {
    font-size: 2.7rem;
  }
}

.analy-sec06__text-area .text01 {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__text-area .text01 {
    margin-top: 1.6rem;
  }
}

.analy-sec06__speech-lists {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-lists {
    row-gap: 1.4rem;
  }
}

.analy-sec06__speech-list {
  display: flex;
  align-items: center;
  column-gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-list {
    column-gap: 2.8rem;
    justify-content: space-between;
  }
}

.analy-sec06__speech-lists .img {
  width: 10.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-lists .img {
    width: 14.8rem;
  }
}

.analy-sec06__speech-lists .speech-area {
  width: 30.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-lists .speech-area {
    width: auto;
    flex: 1;
  }
}

.analy-sec06__speech-lists .speech {
  position: relative;
  padding: 1.7rem 2rem 1.9rem 2.1rem;
  width: 29.6rem;
  background-color: #fff;
  border: 2px solid #27A9B5;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-lists .speech {
    padding: 2.6rem 5rem 3.6rem 2.7rem;
    width: 41.3rem;
  }
}

.analy-sec06__speech-lists .speech::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 0.75rem 1.2rem 0.75rem 0;
  border-color: transparent #27A9B5 transparent transparent;
  translate: -100% -50%;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-lists .speech::before {
    border-width: 0.9rem 1.5rem 0.9rem 0;
  }
}

.analy-sec06__speech-lists .speech::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.1rem;
  border-style: solid;
  border-width: 0.52rem 0.9rem 0.52rem 0;
  border-color: transparent #fff transparent transparent;
  translate: -100% -50%;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-lists .speech::after {
    border-width: 0.67rem 1.2rem 0.67rem 0;
  }
}

.analy-sec06__speech-lists .speech p {
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-lists .speech p {
    column-gap: 0.8rem;
    font-size: 2.7rem;
    line-height: 1.6;
  }
}

.analy-sec06__speech-lists .speech p::before {
  content: "";
  width: 2.4rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .analy-sec06__speech-lists .speech p::before {
    width: 3.3rem;
  }
}

.analy-sec06__text-area .text02 {
  margin-top: 2.4rem;
}

.analy-sec06__text-area .large-text {
  margin-top: 1.6rem;
  display: flex;
  row-gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 2.5rem;
  font-weight: 700;
  color: #27A9B5;
}
@media screen and (max-width: 768px) {
  .analy-sec06__text-area .large-text {
    font-size: 3.5rem;
  }
}

.analy-sec06__text-area .large-text .sp-strong {
  display: contents;
}
@media screen and (max-width: 768px) {
  .analy-sec06__text-area .large-text .sp-strong {
    display: block;
    padding: 0 0.8rem 0.2rem;
    background-color: #27A9B5;
    border-radius: 0.4rem;
    color: #fff;
  }
}

.analy-sec06__text-area .large-text .strong {
  padding: 0 0.8rem 0.2rem;
  background-color: #27A9B5;
  border-radius: 0.4rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .analy-sec06__text-area .large-text .strong {
    padding: initial;
    border-radius: initial;
  }
}

.analy-sec06__text-area .large-text .strong:nth-child(1) {
  margin-left: 1.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__text-area .large-text .strong:nth-child(1) {
    margin-left: 0;
  }
}

.analy-sec06__text-area .large-text .strong:nth-child(3) {
  margin-right: 0.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec06__text-area .large-text .strong:nth-child(3) {
    margin-right: 0;
  }
}

/* ------------------------------------------------
sec07
--------------------------------------------------- */
.analy-sec07 {
  padding-top: 17rem;
  padding-bottom: 12rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .analy-sec07 {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
}

.analy-sec07__head .black-speech {
  margin: 2.2rem auto 0;
  padding: 0.3rem 0 0.5rem;
  width: 42.8rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .analy-sec07__head .black-speech {
    margin: 2rem auto 0;
    width: 49.6rem;
    font-size: 2.4rem;
  }
}

.analy-sec07__head .section-sub-text {
  margin-top: 1.7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec07__head .section-sub-text {
    margin-top: 1.5rem;
    font-size: 3.5rem;
    font-weight: 500;
  }
}

.analy-sec07 .section-text {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec07 .section-text {
    margin-top: 0.8rem;
    font-size: 4.5rem;
  }
}

.analy-sec07__content {
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .analy-sec07__content {
    margin-top: 6rem;
  }
}

.analy-sec07__table {
  z-index: 1;
  position: relative;
  margin-inline: auto;
  width: 107rem;
}
@media screen and (max-width: 768px) {
  .analy-sec07__table {
    width: 100%;
  }
}

.analy-sec07__content-speech {
  z-index: 2;
  position: absolute;
  top: -2.4rem;
  right: 22.8rem;
  padding: 0.3rem 1rem 0.5rem;
  width: 18.7rem;
  background-color: #fff;
  border: 2px solid #27A9B5;
  border-radius: 5rem;
}

.analy-sec07__content-speech::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 0.8rem 0.45rem 0 0.45rem;
  border-color: #27A9B5 transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .analy-sec07__content-speech::before {
    border-width: 0.9rem 1.5rem 0.9rem 0;
  }
}

.analy-sec07__content-speech::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 0.39rem 0.22rem 0 0.22rem;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .analy-sec07__content-speech::after {
    border-width: 0.67rem 1.2rem 0.67rem 0;
  }
}

.analy-sec07__content-speech p {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .analy-sec07__table-sp {
    display: flex;
    align-items: flex-end;
  }
}

.analy-sec07__table-title {
  margin-bottom: 6rem;
  width: 26.4rem;
}

.analy-sec07__slide-container {
  padding-bottom: 6rem;
  flex: 1;
}

.analy-sec07__slide-wrapper {
  display: flex;
  align-items: flex-end;
}

.analy-sec07__slide {
  width: 26.4rem;
}

img.management-table {
  width: 100%;
  max-width: 1024px; /* 表示領域に応じて調整 */
  height: auto;
}

/* ------------------------------------------------
sec08
--------------------------------------------------- */
.analy-sec08 {
  padding: 0 2.5rem 12rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .analy-sec08 {
    padding: 0 4rem 14rem;
  }
}

.analy-sec08__bg {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .analy-sec08__bg {
    padding: 10rem 0;
  }
}

.analy-sec08__head .section-text {
  margin-top: 2.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec08__head .section-text {
    font-size: 4.5rem;
  }
}

.analy-sec08-content {
  margin-top: 6rem;
}

.analy-sec08-content__items {
  margin-inline: auto;
  width: 91rem;
}
@media screen and (max-width: 768px) {
  .analy-sec08-content__items {
    width: 100%;
  }
}

.analy-sec08-content__items:not(:first-child) {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .analy-sec08-content__items:not(:first-child) {
    margin-top: 4.5rem;
  }
}

.analy-sec08-content__item {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3.2rem;
}

.analy-sec08-content__item.reverse {
  margin-top: 3.5rem;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .analy-sec08-content__item.reverse {
    margin-top: 4.5rem;
  }
}

.analy-sec08-content__item .img {
  width: 10.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec08-content__item .img {
    width: 13.2rem;
  }
}

.analy-sec08-content__item .speech-area {
  position: relative;
  padding: 2.8rem 2rem 2.8rem 2.5rem;
  border-radius: 1rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .analy-sec08-content__item .speech-area {
    border-radius: 2rem;
  }
}

.analy-sec08-content__item:nth-child(odd) .speech-area {
  background-color: #27A9B5;
}

.analy-sec08-content__item:nth-child(even) .speech-area {
  background-color: #ECF9FF;
}

.analy-sec08-content__item .speech-area::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: auto;
  aspect-ratio: 1/1;
}

.analy-sec08-content__item:nth-child(odd) .speech-area::before {
  left: -1.5rem;
  background-color: #27A9B5;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.analy-sec08-content__item:nth-child(even) .speech-area::before {
  right: -1.5rem;
  background-color: #ECF9FF;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.analy-sec08-content__item:nth-child(odd) .speech-area p {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .analy-sec08-content__item:nth-child(odd) .speech-area p {
    font-size: 2.7rem;
  }
}

.analy-sec08-content__item:nth-child(even) .speech-area p {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec08-content__item:nth-child(even) .speech-area p {
    font-size: 2.7rem;
  }
}

.analy-sec08-content__item .speech-area .strong-line {
  font-weight: 700;
}

/* ------------------------------------------------
sec08
--------------------------------------------------- */
.analy-sec09 {
  padding: 12rem 0 16rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09 {
    padding: 14rem 0;
  }
}

.analy-sec09__head {
  margin-bottom: 4.5rem;
}

.analy-sec09__head .section-text {
  margin-top: 2.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__head .section-text {
    margin-top: 1.8rem;
  }
}

.analy-sec09__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 5.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__content {
    display: flex;
    margin-top: 1.8rem;
    flex-direction: column;
  }
}

.analy-sec09__text-area {
  width: 57.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__text-area {
    width: 100%;
  }
}

.analy-sec09__speech {
  z-index: 1;
  position: relative;
  padding: 4.3rem 1rem 4.9rem 13.2rem;
  width: 57.2rem;
  background-color: #fff;
  border: 2px solid #27A9B5;
  border-radius: 4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__speech {
    padding: 3.4rem 1rem 3.5rem 14.4rem;
    width: 100%;
  }
}

.analy-sec09__speech::before {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 2rem 1rem 0 1rem;
  border-color: #27A9B5 transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .analy-sec09__speech::before {
    border-width: 2.4rem 1.2rem 0 1.2rem;
  }
}

.analy-sec09__speech::after {
  z-index: 2;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 1.55rem 0.78rem 0 0.78rem;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .analy-sec09__speech::after {
    border-width: 1.85rem 0.93rem 0 0.93rem;
  }
}

.analy-sec09__speech .speech-illust {
  z-index: 10;
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  width: 12rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__speech .speech-illust {
    left: 1.3rem;
    width: 14.1rem;
  }
}

.analy-sec09__speech p {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec09__speech p {
    font-size: 3rem;
  }
}

.analy-sec09__speech .strong-line {
  font-size: 3.7rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec09__speech .strong-line {
    font-size: 4.5rem;
  }
}

.analy-sec09__text-area-img {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__text-area-img {
    margin-top: 7.5rem;
  }
}

.analy-sec09__text-area-bottom {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__text-area-bottom {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 768px) {
  .analy-sec09__text-area-bottom .section-sub-text {
    font-size: 3.8rem;
  }
}

.analy-sec09__text-area-bottom .section-sub-text .strong {
  color: #27A9B5;
}

.analy-sec09__bottom-lists {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__bottom-lists {
    margin-top: 3.2rem;
  }
}

.analy-sec09__bottom-list {
  width: 27.5rem;
  display: flex;
  align-items: center;
  column-gap: 1.4rem;
  font-size: 2.1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .analy-sec09__bottom-list {
    width: 38.3rem;
    font-size: 3rem;
  }
}

.analy-sec09__bottom-list::before {
  content: "";
  width: 2.4rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .analy-sec09__bottom-list::before {
    width: 3rem;
  }
}

.analy-sec09__form-area {
  padding: 6.2rem 5.4rem;
  background-color: #F7F7F7;
  border-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .analy-sec09__form-area {
    margin-top: 8rem;
    padding: 10rem 3.6rem;
    width: 100%;
    border-radius: 15rem;
  }
}

@media screen and (max-width: 768px) {
  .analy-sec09__form-text {
    text-align: center;
  }
}

/* ------------------------------------------------
form
--------------------------------------------------- */
.analy-form01 {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .analy-form01 {
    margin-top: 6rem;
  }
}

.analy-form01__container {
  display: flex;
  flex-direction: column;
  row-gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .analy-form01__container {
    row-gap: 5rem;
  }
}

.analy-form01__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .analy-form01__list {
    row-gap: 0.3rem;
  }
}

.analy-form01__label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analy-form01__label label {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-form01__label label {
    column-gap: 0.6rem;
    font-size: 3rem;
  }
}

.required {
  padding: 0.1rem 0.9rem 0.2rem;
  background-color: #DB494D;
  border-radius: 0.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .required {
    padding: 0 0.7rem 0.2rem;
    font-size: 2.4rem;
  }
}

.analy-form01__input {
  width: 100%;
}

.analy-form01__input input,
.analy-form01__input select,
.analy-form01__input textarea {
  padding: 1.4rem 1rem;
  width: 100%;
  height: 6rem;
  background-color: #fff;
  border: 1px solid #A2A6B0;
  border-radius: 0.4rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .analy-form01__input input,
  .analy-form01__input select,
  .analy-form01__input textarea {
    padding: 1.8rem 2.4rem;
    border-radius: 1rem;
    height: 8rem;
    font-size: 2.8rem;
  }
}

.analy-form01__input textarea {
  height: auto;
}

.analy-form01__input input.invalid,
.analy-form01__input select.invalid,
.analy-form01__input textarea.invalid {
  background-color: #FFF2F2;
  border: 2px solid #DB494D;
}

.analy-form01__input input::placeholder,
.analy-form01__input textarea::placeholder {
  color: #AAAAAA;
}

.remarks {
  font-size: 1.6rem;
  font-weight: 500;
  color: #AAAAAA;
}
@media screen and (max-width: 768px) {
  .remarks {
    font-size: 2.4rem;
  }
}

.analy-form01__acceptance {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .analy-form01__acceptance {
    margin-top: 6rem;
  }
}

.analy-form01__data-checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.analy-form01__data-checkbox label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

input[type=checkbox] {
  display: none;
}

.analy-form01__data-checkbox .analy-form01__data-check {
  position: relative;
  padding-left: 2.6rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .analy-form01__data-checkbox .analy-form01__data-check {
    padding-left: 3.2rem;
    font-size: 2.7rem;
  }
}

.analy-form01__data-checkbox .analy-form01__data-check::before,
.analy-form01__data-checkbox .analy-form01__data-check::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.analy-form01__data-checkbox .analy-form01__data-check::before {
  left: 0;
  width: 2.1rem;
  background-color: #fff;
  border: 1px solid #9F9F9F;
}
@media screen and (max-width: 768px) {
  .analy-form01__data-checkbox .analy-form01__data-check::before {
    width: 2.7rem;
  }
}

.analy-form01__data-checkbox .analy-form01__data-check::after {
  left: 0.4rem;
  width: 1.3rem;
  background-color: #27A9B5;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .analy-form01__data-checkbox .analy-form01__data-check::after {
    left: 0.5rem;
    width: 1.6rem;
  }
}

.analy-form01_link01 {
  font-weight: 700;
  color: #27A9B5;
  text-decoration: underline;
}

input[type=checkbox]:checked + .analy-form01__data-check::after {
  opacity: 1;
}

.analy-form01__button {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .analy-form01__button {
    margin-top: 5rem;
  }
}

.analy-form01__error-message {
  font-size: 1.6rem;
  font-weight: 500;
  color: #DB494D;
}
@media screen and (max-width: 768px) {
  .analy-form01__error-message {
    margin-top: 0.3rem;
    font-size: 2.2rem;
  }
}

/* ------------------------------------------------
thanks
--------------------------------------------------- */
.analy-thanks {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .analy-thanks {
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
}

.analy-thanks::before {
  position: absolute;
  content: "";
  top: 10rem;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1536/605;
  background-image: url(../img/bg-thanks-vectors.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .analy-thanks::before {
    top: 0;
    aspect-ratio: 768/424;
    background-image: url(../img/bg-thanks-vectors-sp.png);
  }
}

.analy-thanks__head .img {
  margin-inline: auto;
  width: 33rem;
}

.analy-thanks__head .section-sub-text.dot {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .analy-thanks__head .section-sub-text.dot {
    margin-top: 5rem;
    padding: 0 5.4rem 0;
  }
}

.analy-thanks__head .section-heading {
  margin-top: 2.2rem;
}

.analy-thanks__content-inner > p {
  margin-top: 5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-thanks__content-inner > p {
    font-size: 2.7rem;
    text-align: left;
  }
}

.analy-thanks_link01 {
  margin: 3rem auto 0;
  padding-bottom: 1.4rem;
  display: block;
  width: 45rem;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 768px) {
  .analy-thanks_link01 {
    margin: 4rem auto 0;
    padding: 1.4rem 13.8rem 1.7rem;
    width: 100%;
    background-color: #27A9B5;
    border-bottom: none;
    border-radius: 5rem;
  }
}

.analy-thanks_link01 .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #27A9B5;
}
@media screen and (max-width: 768px) {
  .analy-thanks_link01 .title {
    margin-inline: auto;
    width: 33.6rem;
    color: #fff;
  }
}

.analy-thanks_link01 .title::before,
.analy-thanks_link01 .title::after {
  content: "";
  width: 37.2%;
  height: 1px;
  background-color: #CCCCCC;
}
@media screen and (max-width: 768px) {
  .analy-thanks_link01 .title::before,
  .analy-thanks_link01 .title::after {
    width: 33%;
    background-color: #fff;
  }
}

.analy-thanks_link01 .tel {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: #27A9B5;
}
@media screen and (max-width: 768px) {
  .analy-thanks_link01 .tel {
    color: #fff;
  }
}

.analy-thanks_link01 .tel::before {
  content: "";
  width: 2.7rem;
  height: auto;
  aspect-ratio: 27.08/45.83;
  background-image: url(../img/icon-tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .analy-thanks_link01 .tel::before {
    width: 2.1rem;
    background-image: url(../img/icon-tel-white.svg);
  }
}

.analy-thanks__content > p:nth-child(3) {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .analy-thanks__content > p:nth-child(3) {
    margin-top: 4rem;
  }
}

.analy-thanks__button {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .analy-thanks__button {
    margin-top: 12rem;
  }
}

/*# sourceMappingURL=style.css.map */
