@charset "utf-8";

/* ------------------
調査概要
--------------------- */
.header {
  display: none;
}

.heading {
  background: linear-gradient(to bottom, #0954ac, var(--main500-color));
  padding: 70px 20px 100px;
  position: relative;
  text-align: center;
}
.heading__main {
  color: var(--black0-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.heading__main:after {
  content: "";
  display: block;
  width: 50px;
  margin-top: 20px;
  border-top: 3px solid var(--main400-color);
}

.bg-text {
  color: #0590d3;
  font-family: var(--montserrat-font);
  font-size: 13rem;
  font-weight: 700;
  overflow: hidden;
  text-transform: uppercase;
  position: absolute;
  top: 30px;
  left: 5px;
  transform: translateY(-50%);
  animation: flowing 20s linear infinite;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.investigation {
  background-color: var(--main50-color);
  padding: 0 20px;
}

.investigation__inner {
  background-color: var(--black0-color);
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 25px 20px 32px;
  position: relative;
  top: -40px;
}

.investigation__heading {
  color: var(--key600-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--black200-color);
  line-height: 1.75;
  margin-bottom: 32px;
  padding-bottom: 25px;
  /* color: #d71440;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 20px; */
}

.top__btn {
  background-color: var(--main100-color);
  border-radius: 88px;
  color: var(--main600-color);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 auto;
  padding: 14px 0;
  width: 160px;
}
