@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;
  -webkit-transition: opacity 0.3s;
  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;
  -o-object-fit: cover;
     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: 10rem;
  }
}

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

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

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.analy-header__inner {
  margin-inline: auto;
  padding-inline: 25px;
  width: 100%;
  max-width: 1392px;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .analy-header__inner {
    padding-inline: 1.8rem;
  }
}

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

.analy-header h1 {
  width: 18.7rem;
}
@media screen and (max-width: 768px) {
  .analy-header h1 {
    width: 21rem;
  }
}

.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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .analy-footer__info {
    padding-bottom: 8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    row-gap: 6rem;
  }
}

.analy-footer__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.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;
}
@media screen and (max-width: 768px) {
  .analy-footer__name > p {
    font-size: 3.5rem;
  }
}

.analy-footer__place {
  margin-top: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .analy-footer__place {
    row-gap: 3.2rem;
  }
}

.analy-footer__place dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .analy-footer__place dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.6rem;
    font-size: 2.7rem;
  }
}

.analy-footer__place dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

.analy-footer__app-area {
  padding: 4.3rem 3rem 4.9rem;
  width: 33.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .analy-footer__app-area {
    padding: 6.8rem 5rem;
    width: 100%;
    border-radius: 11rem;
    row-gap: 4.4rem;
  }
}

.analy-footer__app-heading {
  position: relative;
  margin-inline: auto;
  padding-inline: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-footer__app-heading {
    padding-inline: 4rem;
    -webkit-column-gap: 0.6rem;
       -moz-column-gap: 0.6rem;
            column-gap: 0.6rem;
    font-size: 3.5rem;
  }
}

.analy-footer__app-heading::before,
.analy-footer__app-heading::after {
  position: absolute;
  content: "";
  bottom: 1.2rem;
  width: 2.3rem;
  height: 2px;
  background-color: #333;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .analy-footer__app-heading::before,
  .analy-footer__app-heading::after {
    bottom: 2.8rem;
    width: 4.1rem;
    height: 0.4rem;
  }
}

.analy-footer__app-heading::before {
  left: 0;
  -webkit-transform: rotate(54.94deg);
          transform: rotate(54.94deg);
}

.analy-footer__app-heading::after {
  right: 0;
  -webkit-transform: rotate(-54.94deg);
          transform: rotate(-54.94deg);
}

.analy-footer__app-heading .img {
  width: 3.2rem;
}
@media screen and (max-width: 768px) {
  .analy-footer__app-heading .img {
    width: 5.6rem;
  }
}

.analy-footer__app-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.3rem;
     -moz-column-gap: 2.3rem;
          column-gap: 2.3rem;
}

@media screen and (max-width: 768px) {
  .analy-footer__app-lists.sp-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: initial;
       -moz-column-gap: initial;
            column-gap: initial;
    row-gap: 2.6rem;
  }
}

.analy-footer__app-list li {
  width: 11.3rem;
}
@media screen and (max-width: 768px) {
  .analy-footer__app-list li {
    width: 100%;
  }
}

.analy-footer__app-lists .img-container {
  padding: 1.5rem 1.6rem;
  background-color: #fff;
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.analy-footer__app-lists .img {
  width: 7.3rem;
}
@media screen and (max-width: 768px) {
  .analy-footer__app-lists .img {
    margin-inline: auto;
    width: 35.8rem;
  }
}

.analy-footer__app-lists p {
  margin-top: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.analy-footer__copyright {
  padding-top: 5rem;
  border-top: 1px solid #fff;
}

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

/* ------------------------------------------------
レスポンシブ表示・非表示
--------------------------------------------------- */
@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;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 4rem;
  }
}

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

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

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

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

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

.analy-sec01 .mockUp,
.analy-sec01 .mockUp .img01-bg {
  aspect-ratio: 751/1529;
}

.analy-sec02 .mockUp,
.analy-sec02 .mockUp .img01-bg {
  aspect-ratio: 751/1258;
}

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

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

.mockUp .img02 {
  z-index: 10;
  position: absolute;
  top: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 29.1rem;
  height: auto;
  background-color: transparent;
  border-radius: 4rem;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .mockUp .video-player {
    width: 39.7rem;
  }
}

.analy-sec01 .mockUp .video-player img {
  aspect-ratio: 886/1920;
}

.analy-sec02 .mockUp .video-player img {
  aspect-ratio: 216/384;
}

.mockUp .video-player::before,
.mockUp .video-player::after {
  z-index: 12;
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-transition: opacity 0.3s;
  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;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          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 {
  -o-object-fit: cover;
     object-fit: cover;
}

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

.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: 500;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .section-sub-text.dot {
    padding-inline: initial;
    padding: 0 4.6rem 0 3.4rem;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.section-sub-text.dot::before,
.section-sub-text.dot::after {
  position: absolute;
  content: "";
  bottom: 0;
  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 {
    width: 4rem;
  }
}

.section-sub-text.dot::before {
  left: 0;
}

.section-sub-text.dot::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.list-heading01 {
  font-size: 3.1rem;
  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: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(51.4%, transparent), color-stop(51.4%, rgba(234, 197, 44, 0.43)), to(rgba(234, 197, 44, 0.43)));
  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%);
}

.header-button {
  z-index: 10;
  position: relative;
  padding: 1.2rem 1.2rem 1.1rem 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.9rem;
     -moz-column-gap: 0.9rem;
          column-gap: 0.9rem;
  border-radius: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .header-button {
    padding: 1.8rem 2.2rem;
    border-radius: 13rem;
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            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;
  -webkit-transition: background-color 0.3s;
  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;
}

.header-button span {
  position: relative;
  width: 2.6rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

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

.header-button span::before,
.header-button span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 35%;
  width: 8px;
  height: 2px;
  background-color: #DB494D;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .header-button span::before,
  .header-button span::after {
    width: 0.9rem;
  }
}

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

.header-button span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-button span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.submit-button {
  margin-inline: auto;
  padding: 1.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  width: 40rem;
  border-radius: 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;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .submit-button {
    padding: 3.1rem;
    -webkit-column-gap: 1.9rem;
       -moz-column-gap: 1.9rem;
            column-gap: 1.9rem;
    width: 61.4rem;
    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;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-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 {
  -webkit-filter: invert(53%) sepia(27%) saturate(1129%) hue-rotate(137deg) brightness(101%) contrast(85%);
          filter: invert(53%) sepia(27%) saturate(1129%) hue-rotate(137deg) brightness(101%) contrast(85%);
}

.thanks-button.submit-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          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 {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

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

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

.infinite-track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  -webkit-animation: scroll-left 20s linear infinite;
          animation: scroll-left 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .infinite-track {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.slide {
  width: 20.3rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .slide {
    width: 19.5rem;
  }
}

/* ------------------------------------------------
analy-sec03 swiper
--------------------------------------------------- */
.swiper-button__container {
  display: none;
}
@media screen and (max-width: 768px) {
  .swiper-button__container {
    z-index: 50;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-inline: 0.8rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

@media screen and (max-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 768px) {
  .swiper-prev::before,
  .swiper-prev::after {
    left: 35%;
    -webkit-transform-origin: 2px 50%;
            transform-origin: 2px 50%;
  }
}

@media screen and (max-width: 768px) {
  .swiper-next::before,
  .swiper-next::after {
    right: 35%;
    -webkit-transform-origin: calc(100% - 2px) 50%;
            transform-origin: calc(100% - 2px) 50%;
  }
}

@media screen and (max-width: 768px) {
  .swiper-prev::before {
    -webkit-transform: rotate(47deg);
            transform: rotate(47deg);
  }
}

@media screen and (max-width: 768px) {
  .swiper-prev::after {
    -webkit-transform: rotate(-47deg);
            transform: rotate(-47deg);
  }
}

@media screen and (max-width: 768px) {
  .swiper-next::before {
    -webkit-transform: rotate(47deg);
            transform: rotate(47deg);
  }
}

@media screen and (max-width: 768px) {
  .swiper-next::after {
    -webkit-transform: rotate(-47deg);
            transform: rotate(-47deg);
  }
}

.swiper-pagination {
  display: none;
}
@media screen and (max-width: 768px) {
  .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 19.6rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

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

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

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

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

@-webkit-keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

.analy-fv__bg-vector .img04,
.analy-fv__bg-vector .img05,
.analy-fv__bg-vector .img06,
.analy-fv__bg-vector .img07 {
  -webkit-animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
}

@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img07 {
    -webkit-animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
            animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
  }
}

.analy-fv__bg-vector .img08,
.analy-fv__bg-vector .img09,
.analy-fv__bg-vector .img10 {
  -webkit-animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
          animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
}

@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img10 {
    -webkit-animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
            animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
  }
}

.analy-fv__bg-vector .img11,
.analy-fv__bg-vector .img12,
.analy-fv__bg-vector .img13,
.analy-fv__bg-vector .img14 {
  -webkit-animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
}

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

@-webkit-keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

.analy-sec01 .mockUp.is-animated,
.analy-sec02 .mockUp-area.is-animated {
  -webkit-animation: fvFadeUp 0.4s ease-out 0s both;
          animation: fvFadeUp 0.4s ease-out 0s both;
}

/* ------------------------------------------------
analy-sec01
背景カラフルパス
--------------------------------------------------- */
.analy-sec01__bg-vector .img01,
.analy-sec01__bg-vector .img02,
.analy-sec01__bg-vector .img03,
.analy-sec01__bg-vector .img04,
.analy-sec01__bg-vector .img05,
.analy-sec01__bg-vector .img06,
.analy-sec01__bg-vector .img07,
.analy-sec01__bg-vector .img08,
.analy-sec01__bg-vector .img09,
.analy-sec01__bg-vector .img10,
.analy-sec01__bg-vector .img11,
.analy-sec01__bg-vector .img12,
.analy-sec01__bg-vector .img13 {
  opacity: 0;
}

.analy-sec01__bg-vector.is-animated .img01,
.analy-sec01__bg-vector.is-animated .img02,
.analy-sec01__bg-vector.is-animated .img03 {
  -webkit-animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
          animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
}

.analy-sec01__bg-vector.is-animated .img04,
.analy-sec01__bg-vector.is-animated .img05,
.analy-sec01__bg-vector.is-animated .img06,
.analy-sec01__bg-vector.is-animated .img07 {
  -webkit-animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
}

.analy-sec01__bg-vector.is-animated .img08,
.analy-sec01__bg-vector.is-animated .img09,
.analy-sec01__bg-vector.is-animated .img10 {
  -webkit-animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
          animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
}

.analy-sec01__bg-vector.is-animated .img11,
.analy-sec01__bg-vector.is-animated .img12,
.analy-sec01__bg-vector.is-animated .img13 {
  -webkit-animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
}

/* ------------------------------------------------
analy-sec02
モックアップ動画
背景カラフルパス
--------------------------------------------------- */
.analy-sec02__bg-vector .img01,
.analy-sec02__bg-vector .img02,
.analy-sec02__bg-vector .img03,
.analy-sec02__bg-vector .img04,
.analy-sec02__bg-vector .img05,
.analy-sec02__bg-vector .img06,
.analy-sec02__bg-vector .img07,
.analy-sec02__bg-vector .img08,
.analy-sec02__bg-vector .img09,
.analy-sec02__bg-vector .img10,
.analy-sec02__bg-vector .img11,
.analy-sec02__bg-vector .img12,
.analy-sec02__bg-vector .img13,
.analy-sec02__bg-vector .img14,
.analy-sec02__bg-vector .img15,
.analy-sec02__bg-vector .img16,
.analy-sec02__bg-vector .img17,
.analy-sec02__bg-vector .img18,
.analy-sec02__bg-vector .img19,
.analy-sec02__bg-vector .img20,
.analy-sec02__bg-vector .img21,
.analy-sec02__bg-vector .img22 {
  opacity: 0;
}

.analy-sec02__bg-vector.is-animated .img01,
.analy-sec02__bg-vector.is-animated .img02,
.analy-sec02__bg-vector.is-animated .img03,
.analy-sec02__bg-vector.is-animated .img04,
.analy-sec02__bg-vector.is-animated .img05,
.analy-sec02__bg-vector.is-animated .img06,
.analy-sec02__bg-vector.is-animated .img07,
.analy-sec02__bg-vector.is-animated .img08 {
  -webkit-animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
          animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
}

.analy-sec02__bg-vector.is-animated .img09,
.analy-sec02__bg-vector.is-animated .img10,
.analy-sec02__bg-vector.is-animated .img11 {
  -webkit-animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
}

.analy-sec02__bg-vector.is-animated .img12 {
  -webkit-animation: zoomFromTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromTop 0.3s ease-in-out 0.5s both;
}

.analy-sec02__bg-vector.is-animated .img13,
.analy-sec02__bg-vector.is-animated .img14,
.analy-sec02__bg-vector.is-animated .img15,
.analy-sec02__bg-vector.is-animated .img16 {
  -webkit-animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
}

.analy-sec02__bg-vector.is-animated .img17,
.analy-sec02__bg-vector.is-animated .img18,
.analy-sec02__bg-vector.is-animated .img19,
.analy-sec02__bg-vector.is-animated .img20,
.analy-sec02__bg-vector.is-animated .img21,
.analy-sec02__bg-vector.is-animated .img22 {
  -webkit-animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
          animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
}

@-webkit-keyframes zoomFromTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-4rem, -12rem, 12rem) scale(0.1);
            transform: translate3d(-4rem, -12rem, 12rem) scale(0.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes zoomFromTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-4rem, -12rem, 12rem) scale(0.1);
            transform: translate3d(-4rem, -12rem, 12rem) scale(0.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
/* ------------------------------------------------
analy-sec03
背景カラフルパス
--------------------------------------------------- */
.analy-sec03__bg-vector .img01,
.analy-sec03__bg-vector .img02,
.analy-sec03__bg-vector .img03,
.analy-sec03__bg-vector .img04,
.analy-sec03__bg-vector .img05,
.analy-sec03__bg-vector .img06,
.analy-sec03__bg-vector .img07,
.analy-sec03__bg-vector .img08,
.analy-sec03__bg-vector .img09,
.analy-sec03__bg-vector .img10,
.analy-sec03__bg-vector .img11,
.analy-sec03__bg-vector .img12,
.analy-sec03__bg-vector .img13,
.analy-sec03__bg-vector .img14,
.analy-sec03__bg-vector .img15 {
  opacity: 0;
}

.analy-sec03__bg-vector.is-animated .img01,
.analy-sec03__bg-vector.is-animated .img02,
.analy-sec03__bg-vector.is-animated .img03,
.analy-sec03__bg-vector.is-animated .img04,
.analy-sec03__bg-vector.is-animated .img05 {
  -webkit-animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
          animation: zoomFromRightBottom 0.3s ease-in-out 0.5s both;
}

.analy-sec03__bg-vector.is-animated .img06,
.analy-sec03__bg-vector.is-animated .img07,
.analy-sec03__bg-vector.is-animated .img08 {
  -webkit-animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromRightTop 0.3s ease-in-out 0.5s both;
}

.analy-sec03__bg-vector.is-animated .img09,
.analy-sec03__bg-vector.is-animated .img10,
.analy-sec03__bg-vector.is-animated .img11,
.analy-sec03__bg-vector.is-animated .img12,
.analy-sec03__bg-vector.is-animated .img13 {
  -webkit-animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
          animation: zoomFromLeftBottom 0.3s ease-in-out 0.5s both;
}

.analy-sec03__bg-vector.is-animated .img14,
.analy-sec03__bg-vector.is-animated .img15 {
  -webkit-animation: zoomFromLeftTop 0.3s ease-in-out 0.5s both;
          animation: zoomFromLeftTop 0.3s ease-in-out 0.5s 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(2.4088541667vw, 37px);
  top: min(7.0963541667vw, 109px);
  left: min(-0.0651041667vw, -1px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img01 {
    width: 3.3rem;
    top: 17.6rem;
    left: 10.7rem;
  }
}

.analy-fv__bg-vector .img02 {
  position: absolute;
  width: min(6.640625vw, 102px);
  top: min(2.4739583333vw, 38px);
  left: min(7.7473958333vw, 119px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img02 {
    width: 11.4rem;
    top: 15.4rem;
    left: -1rem;
  }
}

.analy-fv__bg-vector .img03 {
  position: absolute;
  width: min(2.1484375vw, 33px);
  top: min(13.7369791667vw, 211px);
  left: min(2.8645833333vw, 44px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img03 {
    width: 2.5rem;
    top: 30.3rem;
    left: 13.7rem;
  }
}

.analy-fv__bg-vector .img04 {
  position: absolute;
  width: min(20.8333333333vw, 320px);
  top: min(9.375vw, 144px);
  left: min(8.4635416667vw, 130px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img04 {
    width: 9.3rem;
    top: 38.3rem;
    left: -3rem;
  }
}

.analy-fv__bg-vector .img05 {
  position: absolute;
  width: min(2.34375vw, 36px);
  top: min(27.6041666667vw, 424px);
  left: min(12.890625vw, 198px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img05 {
    width: 31.4rem;
    top: 23.5rem;
    left: 12.1rem;
  }
}

.analy-fv__bg-vector .img06 {
  position: absolute;
  width: min(7.1614583333vw, 110px);
  top: min(29.8177083333vw, 458px);
  left: min(-3.2552083333vw, -50px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img06 {
    width: 2.9rem;
    top: 52.5rem;
    left: 17rem;
  }
}

.analy-fv__bg-vector .img07 {
  position: absolute;
  width: min(1.8880208333vw, 29px);
  top: min(36.4583333333vw, 560px);
  left: min(7.4869791667vw, 115px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img07 {
    width: 3.2rem;
    top: initial;
    left: initial;
    bottom: 110rem;
    right: 22rem;
  }
}

.analy-fv__bg-vector .img08 {
  position: absolute;
  width: min(2.9947916667vw, 46px);
  top: min(8.1380208333vw, 125px);
  right: min(10.9375vw, 168px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img08 {
    width: 3.2rem;
    top: 8rem;
    right: 12.4rem;
  }
}

.analy-fv__bg-vector .img09 {
  position: absolute;
  width: min(15.6901041667vw, 241px);
  top: min(7.4869791667vw, 115px);
  right: min(-1.4973958333vw, -23px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img09 {
    width: 27.4rem;
    top: 7.5rem;
    right: -7rem;
  }
}

.analy-fv__bg-vector .img10 {
  position: absolute;
  width: min(2.2135416667vw, 34px);
  top: min(20.6380208333vw, 317px);
  right: min(16.40625vw, 252px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img10 {
    width: 2.5rem;
    top: 28.2rem;
    right: 20.8rem;
  }
}

.analy-fv__bg-vector .img11 {
  position: absolute;
  width: min(1.8880208333vw, 29px);
  top: min(28.7109375vw, 441px);
  right: min(-1.8229166667vw, -28px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img11 {
    width: 5.6rem;
    top: 42.2rem;
    right: 5.8rem;
  }
}

.analy-fv__bg-vector .img12 {
  position: absolute;
  width: min(4.1015625vw, 63px);
  top: min(34.3098958333vw, 527px);
  right: min(1.4322916667vw, 22px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-vector .img12 {
    width: 4.1rem;
    top: 55.7rem;
    right: 10rem;
  }
}

.analy-fv__bg-vector .img13 {
  position: absolute;
  width: min(3.125vw, 48px);
  top: min(38.5416666667vw, 592px);
  right: min(9.375vw, 144px);
}

.analy-fv__bg-vector .img14 {
  position: absolute;
  width: min(3.515625vw, 54px);
  top: min(48.4375vw, 744px);
  right: min(16.40625vw, 252px);
}

/* ------------------------------------------------
About 背景カラフルパス
--------------------------------------------------- */
.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;
  }
}

/* ------------------------------------------------
Point 背景カラフルパス
--------------------------------------------------- */
.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;
  }
}

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

.analy-sec03__bg-vector .img01 {
  position: absolute;
  width: 4.1rem;
  top: 80.7rem;
  left: 6.8rem;
}

.analy-sec03__bg-vector .img02 {
  position: absolute;
  width: 1.3rem;
  top: 93.5rem;
  left: 3.6rem;
}

.analy-sec03__bg-vector .img03 {
  position: absolute;
  width: 1.6rem;
  top: 102.4rem;
  left: 8.2rem;
}

.analy-sec03__bg-vector .img04 {
  position: absolute;
  width: 10.3rem;
  top: 98.8rem;
  left: 12.9rem;
}

.analy-sec03__bg-vector .img05 {
  position: absolute;
  width: 17rem;
  top: 103.9rem;
  left: -7.1rem;
}

.analy-sec03__bg-vector .img06 {
  position: absolute;
  width: 1.5rem;
  top: 123.9rem;
  left: 12.9rem;
}

.analy-sec03__bg-vector .img07 {
  position: absolute;
  width: 3.7rem;
  top: 126rem;
  left: 1.7rem;
}

.analy-sec03__bg-vector .img08 {
  position: absolute;
  width: 1.3rem;
  top: 138.4rem;
  left: 10.1rem;
}

.analy-sec03__bg-vector .img09 {
  position: absolute;
  width: 5.4rem;
  top: 79.9rem;
  right: 10.5rem;
}

.analy-sec03__bg-vector .img10 {
  position: absolute;
  width: 1.3rem;
  top: 93rem;
  right: 19.4rem;
}

.analy-sec03__bg-vector .img11 {
  position: absolute;
  width: 15.2rem;
  top: 88.2rem;
  right: -7.1rem;
}

.analy-sec03__bg-vector .img12 {
  position: absolute;
  width: 2.8rem;
  top: 103.6rem;
  right: 15.2rem;
}

.analy-sec03__bg-vector .img13 {
  position: absolute;
  width: 1.6rem;
  top: 105.5rem;
  right: 5.2rem;
}

.analy-sec03__bg-vector .img14 {
  position: absolute;
  width: 29.7rem;
  top: 102.1rem;
  right: -19.3rem;
}

.analy-sec03__bg-vector .img15 {
  position: absolute;
  width: 3.7rem;
  top: 130.6rem;
  right: 8rem;
}

/* ------------------------------------------------
fv
--------------------------------------------------- */
.analy-fv__main {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.analy-fv__inner {
  z-index: 5;
  position: relative;
  margin-inline: auto;
  padding: min(6.1848958333vw, 95px) min(7.03125vw, 108px) min(9.1145833333vw, 140px);
  width: 100%;
  max-width: 1536px;
}
@media screen and (max-width: 768px) {
  .analy-fv__inner {
    padding: 4.9rem 0 22rem;
  }
}

.analy-fv__bg-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.analy-fv__bg-circle .img01,
.analy-fv__bg-circle .img02,
.analy-fv__bg-circle .img03,
.analy-fv__bg-circle .img04 {
  position: absolute;
  height: auto;
}

.analy-fv__bg-circle .img01 {
  width: min(35.8072916667vw, 550px);
  max-width: 550px;
  bottom: min(32.8125vw, 504px);
  right: min(75.0651041667vw, 1153px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-circle .img01 {
    width: 55rem;
    bottom: 107.2rem;
    right: 38.8rem;
  }
}

.analy-fv__bg-circle .img02 {
  width: min(30.2734375vw, 465px);
  top: min(36.1328125vw, 555px);
  right: min(83.9192708333vw, 1289px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-circle .img02 {
    width: 24.7rem;
    top: 111.1rem;
    right: 61.7rem;
  }
}

.analy-fv__bg-circle .img03 {
  width: min(30.2734375vw, 465px);
  bottom: min(42.7734375vw, 657px);
  left: min(81.3151041667vw, 1249px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-circle .img03 {
    width: 34.4rem;
    bottom: 117.3rem;
    left: 56.2rem;
  }
}

.analy-fv__bg-circle .img04 {
  width: min(43.8802083333vw, 674px);
  top: min(23.6979166667vw, 364px);
  left: min(70.4427083333vw, 1082px);
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-circle .img04 {
    width: 68rem;
    top: 83.4rem;
    left: 45.6rem;
  }
}

.analy-fv__bg-img {
  position: absolute;
  top: min(-2.4739583333vw, -38px);
  right: min(-2.8645833333vw, -44px);
  width: min(54.8177083333vw, 842px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .analy-fv__bg-img {
    top: 35.4rem;
    right: -8.9rem;
    width: 86.2rem;
  }
}

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

.analy-fv__text-area {
  position: relative;
}
@media screen and (max-width: 768px) {
  .analy-fv__text-area {
    margin-inline: auto;
    width: 68.6rem;
  }
}

@media screen and (max-width: 768px) {
  .analy-fv__main-title {
    padding-inline: 2rem;
  }
}

.analy-fv__main-title .sub-text {
  padding: min(0.2604166667vw, 4px) min(0.9114583333vw, 14px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  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.3rem 1.6rem 0.4rem;
    border-radius: 0.4rem;
    font-size: 3rem;
  }
}

.analy-fv__main-title .title {
  margin-top: min(0.9114583333vw, 14px);
  font-size: min(2.8645833333vw, 44px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-fv__main-title .title {
    margin-top: 1.4rem;
    font-size: 4.5rem;
  }
}

.analy-fv__main-title .img {
  margin-top: min(0.9114583333vw, 14px);
  width: min(22.9817708333vw, 353px);
}
@media screen and (max-width: 768px) {
  .analy-fv__main-title .img {
    margin-top: 1.8rem;
    width: 46rem;
  }
}

.analy-fv__tag {
  margin-top: min(4.0364583333vw, 62px);
  width: min(37.3697916667vw, 574px);
}
@media screen and (max-width: 768px) {
  .analy-fv__tag {
    margin-top: 50.3rem;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .analy-fv__tag-head-container {
    z-index: 1;
    position: relative;
  }
}

.analy-fv__tag-head {
  position: relative;
  margin-inline: auto;
  padding-inline: min(1.8229166667vw, 28px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(1.3020833333vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-head {
    position: relative;
    padding-inline: 2.9rem;
    width: 100%;
    font-size: 2.7rem;
  }
}

.analy-fv__tag-head::before,
.analy-fv__tag-head::after {
  position: absolute;
  content: "";
  bottom: min(0.78125vw, 12px);
  width: min(1.953125vw, 30px);
  height: 2px;
  background-color: #333;
  border-radius: min(0.6510416667vw, 10px);
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-head::before,
  .analy-fv__tag-head::after {
    bottom: 1.2rem;
    width: 3.6rem;
    height: 0.2rem;
    border-radius: 1rem;
  }
}

.analy-fv__tag-head::before {
  left: 0;
  -webkit-transform: rotate(53.14deg);
          transform: rotate(53.14deg);
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-head::before {
    left: 1rem;
  }
}

.analy-fv__tag-head::after {
  right: 0;
  -webkit-transform: rotate(-53.14deg);
          transform: rotate(-53.14deg);
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-head::after {
    right: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .analy-fv__tag-head.sp-only {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-text-stroke: 0.4rem #fff;
    text-stroke: 0.4rem #fff;
    color: #fff;
    -webkit-filter: blur(0.3rem);
            filter: blur(0.3rem);
  }
}

.analy-fv__tag-lists {
  margin-top: min(1.953125vw, 30px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: min(0.9765625vw, 15px);
     -moz-column-gap: min(0.9765625vw, 15px);
          column-gap: min(0.9765625vw, 15px);
  row-gap: min(0.9765625vw, 15px);
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-lists {
    margin-top: 2.4rem;
    -webkit-column-gap: 1.8rem;
       -moz-column-gap: 1.8rem;
            column-gap: 1.8rem;
    row-gap: 1.7rem;
  }
}

.analy-fv__tag-lists li {
  padding: min(0.9114583333vw, 14px) min(0.6510416667vw, 10px) min(0.9114583333vw, 14px) min(1.4973958333vw, 23px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: min(0.6510416667vw, 10px);
     -moz-column-gap: min(0.6510416667vw, 10px);
          column-gap: min(0.6510416667vw, 10px);
  background-color: #fff;
  border-radius: min(0.9765625vw, 15px);
  font-size: min(1.171875vw, 18px);
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-lists li {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    border-radius: 1.8rem;
    font-size: 2.4rem;
  }
}

.analy-fv__tag-lists li:nth-child(1) {
  padding: min(0.9114583333vw, 14px) min(0.6510416667vw, 10px) min(0.9114583333vw, 14px) min(3.515625vw, 54px);
  border: 2px solid #27A9B5;
  color: #27A9B5;
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-lists li:nth-child(1) {
    padding: 1.7rem 1rem 1.7rem 6rem;
  }
}

.analy-fv__tag-lists li:nth-child(2) {
  border: 2px solid #E57D21;
  color: #E57D21;
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-lists li:nth-child(2) {
    padding: 1.7rem 1rem 1.7rem 2rem;
  }
}

.analy-fv__tag-lists li:nth-child(3) {
  padding: min(0.9114583333vw, 14px) min(0.6510416667vw, 10px) min(0.9114583333vw, 14px) min(3.515625vw, 54px);
  border: 2px solid #DB494D;
  color: #DB494D;
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-lists li:nth-child(3) {
    padding: 1.7rem 1rem 1.7rem 6rem;
  }
}

.analy-fv__tag-lists li:nth-child(4) {
  border: 2px solid #6DAD32;
  color: #6DAD32;
}
@media screen and (max-width: 768px) {
  .analy-fv__tag-lists li:nth-child(4) {
    padding: 1.7rem 1rem 1.7rem 2rem;
  }
}

.analy-fv__tag li .icon {
  width: min(2.0182291667vw, 31px);
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .analy-fv__tag li .icon {
    width: 3.7rem;
  }
}

.analy-fv__slide-area {
  padding-inline: 25px;
  height: 29.2rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .analy-fv__slide-area {
    height: 24.4rem;
  }
}

.analy-fv__slide-inner {
  z-index: 1;
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1400px;
  height: inherit;
}

.analy-fv__slide-body {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4rem 5rem;
  width: 100%;
  background-color: #fff;
  border-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .analy-fv__slide-body {
    padding: 5rem 3.5rem 6rem;
  }
}

.analy-fv__slide-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.3rem;
     -moz-column-gap: 1.3rem;
          column-gap: 1.3rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-fv__slide-head {
    font-size: 2.7rem;
  }
}

.analy-fv__slide-head::before,
.analy-fv__slide-head::after {
  content: "";
  width: 4.3rem;
  height: auto;
  aspect-ratio: 42.87/121;
  background-image: url(../img/leaf-heading.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.analy-fv__slide-head::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.analy-fv__slide-container {
  margin-top: 3.2rem;
}

.analy-fv__slide-lists:nth-child(2) {
  margin-top: 1.6rem;
}

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

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

.analy-sec01 .section-text {
  margin-top: 1rem;
}

.analy-sec01__main {
  margin-top: 6rem;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .analy-sec01__main {
    margin-top: 4rem;
  }
}

.analy-sec01__bg-container {
  z-index: -1;
  margin-inline: auto;
  padding-inline: 25px;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 1410px;
  width: 100%;
  height: 65.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__bg-container {
    padding-inline: 4rem;
    height: 100%;
  }
}

.analy-sec01__bg-inner {
  margin-left: calc(50% - 50vw);
  padding-right: 25px;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: inherit;
}

.analy-sec01__bg {
  width: 100%;
  height: inherit;
  background-color: #fff;
  border-top-right-radius: 20rem;
  border-bottom-right-radius: 20rem;
}

.analy-sec01__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .analy-sec01__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.analy-sec01 .mockUp-area {
  padding-left: 10rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .analy-sec01 .mockUp-area {
    padding-left: initial;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 10rem;
  }
}

.analy-sec01__text-area {
  padding: 7rem 0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .analy-sec01__text-area {
    padding: 8rem 0 0;
    width: 100%;
  }
}

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

.analy-sec01__text-area ul {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__text-area ul {
    margin-top: 3.2rem;
  }
}

.analy-sec01__text-area li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.2rem;
     -moz-column-gap: 2.2rem;
          column-gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__text-area li {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.analy-sec01__text-area .img {
  width: 12.1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__text-area .img {
    width: 15.8rem;
  }
}

.analy-sec01__text-area .speech-area {
  width: 30.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__text-area .speech-area {
    width: 41.4rem;
  }
}

.analy-sec01__text-area .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-sec01__text-area .speech {
    padding: 1.7rem 2rem 1.6rem 1.8rem;
    width: 39.9rem;
  }
}

.analy-sec01__text-area .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-sec01__text-area .speech::before {
    border-width: 0.9rem 1.5rem 0.9rem 0;
  }
}

.analy-sec01__text-area .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-sec01__text-area .speech::after {
    border-width: 0.67rem 1.2rem 0.67rem 0;
  }
}

.analy-sec01__text-area .speech p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.6rem;
     -moz-column-gap: 0.6rem;
          column-gap: 0.6rem;
  font-size: 2.1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .analy-sec01__text-area .speech p {
    font-size: 3rem;
  }
}

.analy-sec01__text-area .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-sec01__text-area .speech p::before {
    width: 4rem;
  }
}

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

.analy-sec01__text-area .text03 {
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec01__text-area .text03 {
    margin-top: 4.8rem;
  }
}

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

.analy-sec02 .section-text {
  margin-top: 1.8rem;
}

.analy-sec02__main {
  margin-top: 6rem;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .analy-sec02__main {
    margin-top: 4rem;
  }
}

.analy-sec02__bg-container {
  z-index: -1;
  margin-inline: auto;
  padding-inline: 25px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1410px;
  width: 100%;
  height: 91.1rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__bg-container {
    height: 100%;
  }
}

.analy-sec02__bg-inner {
  margin-right: calc(50% - 50vw);
  padding-left: 25px;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: inherit;
}

.analy-sec02__bg {
  width: 100%;
  height: inherit;
  background-color: #fff;
  border-top-left-radius: 20rem;
  border-bottom-left-radius: 20rem;
}

.analy-sec02__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .analy-sec02__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8rem;
  }
}

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

.analy-sec02__text-area ol {
  padding-left: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3rem;
  counter-reset: listnum;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area ol {
    padding-left: 0;
    row-gap: 4rem;
  }
}

.analy-sec02__text-area li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.8rem;
     -moz-column-gap: 3.8rem;
          column-gap: 3.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area li {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

.analy-sec02__text-area .img {
  width: 16.6rem;
}

.analy-sec02__text-area .text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.analy-sec02__text-area .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  counter-increment: listnum;
}

.analy-sec02__text-area .title::before {
  content: counter(listnum, decimal-leading-zero);
  padding-bottom: 0.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area .title::before {
    padding-bottom: 0.6rem;
    font-size: 5.3rem;
  }
}

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

.analy-sec02__text-area li:nth-child(2) .title {
  color: #DB494D;
}

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

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

.analy-sec02__text-area p {
  margin-top: 1.4rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .analy-sec02__text-area p {
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1.5;
  }
}

.analy-sec02 .mockUp-area {
  padding: 5.4rem 10rem 9.2rem 0;
  width: 47.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02 .mockUp-area {
    padding: 0 0 10rem 0;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 5.1rem;
  }
}

.analy-sec02__speech-area {
  width: 32.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .analy-sec02__speech-area {
    width: initial;
  }
}

.analy-sec02__speech-area .speech {
  position: relative;
  padding: 1rem 2.4rem 1.2rem 1rem;
  width: 23.6rem;
  background-color: #333;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec02__speech-area .speech {
    padding: 1.7rem 3.2rem 1.9rem 2.5rem;
    width: 37.3rem;
  }
}

.analy-sec02__speech-area .speech::before {
  position: absolute;
  content: "";
  bottom: -1.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.4rem;
  height: 1.2rem;
  background-color: #333;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 768px) {
  .analy-sec02__speech-area .speech::before {
    width: 1.5rem;
  }
}

.analy-sec02__speech-area .speech p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .analy-sec02__speech-area .speech p {
    font-size: 2.7rem;
  }
}

.analy-sec02__speech-area .speech p::before {
  content: "";
  width: 6rem;
  height: auto;
  aspect-ratio: 60/61;
  background-image: url(../img/icon-good.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .analy-sec02__speech-area .speech p::before {
    width: 8.4rem;
  }
}

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

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

.analy-sec03 .section-sub-text {
  margin-top: 1.8rem;
}

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

@media screen and (max-width: 768px) {
  .analy-sec03__main-inner.inner {
    padding-inline: initial;
  }
}

@media screen and (max-width: 768px) {
  .analy-sec03__sp-slide-container {
    padding-bottom: 7rem;
  }
}

.analy-sec03__main ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.495%;
     -moz-column-gap: 2.495%;
          column-gap: 2.495%;
  row-gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .analy-sec03__main ul {
    -webkit-column-gap: initial;
       -moz-column-gap: initial;
            column-gap: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    row-gap: initial;
    -ms-flex-wrap: initial;
        flex-wrap: initial;
  }
}

.analy-sec03__main li {
  width: 31.67%;
}
@media screen and (max-width: 768px) {
  .analy-sec03__main li {
    width: auto;
  }
}

.analy-sec03__main .img-container {
  border-top-right-radius: 8rem;
  border-top-left-radius: 8rem;
}

.analy-sec03__main .slide1 .img-container {
  background-color: #27A9B5;
}

.analy-sec03__main .slide2 .img-container {
  background-color: #DB494D;
}

.analy-sec03__main .slide3 .img-container {
  background-color: #E57D21;
}

.analy-sec03__main .slide4 .img-container {
  background-color: #6DAD32;
}

.analy-sec03__main .slide5 .img-container {
  background-color: #7290C1;
}

.analy-sec03__main .text-area {
  padding: 2.4rem 2.9rem 4rem;
  background-color: #fff;
  border-bottom-right-radius: 8rem;
  border-bottom-left-radius: 8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__main .text-area {
    padding: 3.2rem 3.8rem 5.4rem;
  }
}

.analy-sec03__main .text-container {
  margin-inline: auto;
  width: 32.2rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__main .text-container {
    width: 42.6rem;
  }
}

.analy-sec03__main .title {
  height: 8.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec03__main .title {
    height: 12.6rem;
    font-size: 4.5rem;
  }
}

.analy-sec03__main .slide1 .title {
  color: #27A9B5;
}

.analy-sec03__main .slide2 .title {
  color: #DB494D;
}

.analy-sec03__main .slide3 .title {
  color: #E57D21;
}

.analy-sec03__main .slide4 .title {
  color: #6DAD32;
}

.analy-sec03__main .slide5 .title {
  color: #7290C1;
}

.analy-sec03__main .text {
  margin-top: 1.2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__main .text {
    margin-top: 1.5rem;
    min-height: 17.2rem;
    font-size: 2.7rem;
  }
}

.analy-sec03 .strong-line {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(68%, transparent), color-stop(68%, rgba(234, 197, 44, 0.43)), to(rgba(234, 197, 44, 0.43)));
  background: linear-gradient(to bottom, transparent 0%, transparent 68%, rgba(234, 197, 44, 0.43) 68%, rgba(234, 197, 44, 0.43) 100%);
}

.analy-sec03__introduction {
  margin-top: 12rem;
}

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

.analy-sec03__introduction-content {
  margin: 6rem auto 0;
  width: 110rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 8rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__introduction-content {
    margin-inline: auto;
    margin-top: 5rem;
    width: 50.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10.6rem;
  }
}

.analy-sec03__introduction-content .img {
  width: 37.5%;
}
@media screen and (max-width: 768px) {
  .analy-sec03__introduction-content .img {
    width: 100%;
    height: 30.4rem;
  }
}

.analy-sec03__introduction-content .img img {
  border-top-left-radius: 8rem;
  border-bottom-left-radius: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .analy-sec03__introduction-content .img img {
    border-top-left-radius: 10.6rem;
    border-bottom-left-radius: initial;
    border-top-right-radius: 10.6rem;
    aspect-ratio: 502/304;
    -o-object-position: 50% 15%;
       object-position: 50% 15%;
  }
}

.analy-sec03__introduction-content .text-area {
  padding: 5rem 5.6rem 5rem 5.8rem;
  width: 56.8%;
}
@media screen and (max-width: 768px) {
  .analy-sec03__introduction-content .text-area {
    padding: 4rem 3.8rem 5.4rem;
    width: 100%;
  }
}

.analy-sec03__introduction-content .tag {
  padding: 0.9rem 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #333;
  border-radius: 1.5rem;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec03__introduction-content .tag {
    padding: 0.6rem 2.5rem;
    font-size: 2.4em;
  }
}

.analy-sec03__introduction-content .name {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__introduction-content .name {
    margin-top: 1.2rem;
  }
}

.analy-sec03__introduction-content .text {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .analy-sec03__introduction-content .text {
    margin-top: 1.6rem;
  }
}

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

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

.analy-sec04__head-text {
  margin-top: 1.8rem;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .analy-sec04__head-text {
    font-size: 2.7rem;
  }
}

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

.analy-form01__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .analy-form01__container {
    row-gap: 5rem;
  }
}

.analy-form01__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .analy-form01__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 0.3rem;
  }
}

.analy-form01__label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .analy-form01__label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

.required {
  padding: 0.2rem 0.7rem 0.3rem;
  background-color: #DB494D;
  border-radius: 0.6rem;
  font-size: 1.5rem;
  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: 80%;
}
@media screen and (max-width: 768px) {
  .analy-form01__input {
    width: 100%;
  }
}

.analy-form01__input input {
  padding: 1.3rem 2.9rem;
  width: 100%;
  height: 6rem;
  background-color: #F7F7F7;
  border: 1px solid #AAAAAA;
  border-radius: 1rem;
  font-size: 2.1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .analy-form01__input input {
    padding: 1.8rem 2.7rem;
    height: 8rem;
    font-size: 2.8rem;
  }
}

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

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

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

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

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

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

.remarks {
  padding-bottom: 0.1rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #AAAAAA;
}
@media screen and (max-width: 768px) {
  .remarks {
    padding-bottom: 0;
    font-size: 2.4rem;
  }
}

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

.analy-form01__data-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.analy-form01__data-checkbox label {
  cursor: pointer;
}

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

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

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

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

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

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

input[type=checkbox]:checked + span::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 {
  margin-top: 0.1rem;
  font-size: 1.8rem;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.4rem;
     -moz-column-gap: 1.4rem;
          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 */