.fv {
  height: 100vh;
  width: 100%;
  background: url(../img/top/fv-bg.webp) no-repeat;
  background-size: cover;
  background-position: top;
  padding: 0 40px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 80vh;
    padding: 21.3333333333vw 0 0;
    background: url(../img/top/fv-bg-sp.webp) no-repeat;
    background-size: cover;
    background-position: top;
  }
}
.fv__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    max-width: 93%;
  }
}
.fv__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .fv__title {
    gap: 8px;
  }
}
.fv__title > span {
  width: -moz-max-content;
  width: max-content;
  background: #007ec8;
  color: #fff;
  font-size: 25px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .fv__title > span {
    padding: 6px;
    font-size: 3.7333333333vw;
  }
}
.fv__title > span.middle span {
  font-size: 44px;
}
@media screen and (max-width: 768px) {
  .fv__title > span.middle span {
    font-size: 7.2vw;
  }
}
.fv__title > span.big {
  font-size: 56px;
}
@media screen and (max-width: 768px) {
  .fv__title > span.big {
    font-size: 10.4vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 5.8666666667vw;
  }
}

.medias {
  padding: 80px 0 100px;
}
@media screen and (max-width: 768px) {
  .medias {
    padding: 13.3333333333vw 0 16vw;
  }
}
.medias__lists {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .medias__lists {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .medias__list img {
    height: 8.5333333333vw;
  }
}

.medias__wrapper {
  overflow: hidden;
  width: 100%;
  background: #fff;
}

.medias__lists {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.medias__list {
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .medias__list {
    padding: 0 0.4rem;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.worries {
  padding: 60px 40px 50px;
  background: url(../img/top/bg-worries.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .worries {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.worries__inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .worries__title {
    font-size: 4vw;
  }
}
.worries__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .worries__lists {
    display: block;
    margin-bottom: 5.3333333333vw;
  }
}
.worries__list {
  background: #fff;
  padding: 74px 20px 65px;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .worries__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    padding: 8vw 5.3333333333vw;
    margin-bottom: 10px;
  }
}
.worries__list--icon {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .worries__list--icon {
    margin-bottom: 0;
    text-align: center;
  }
}
.worries__list--icon img {
  height: 103px;
}
@media screen and (max-width: 768px) {
  .worries__list--icon img {
    height: 20vw;
  }
}
.worries__list--title {
  text-align: center;
  font-weight: bold;
  color: #007ec8;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .worries__list--title {
    font-size: 3.4666666667vw;
  }
}

.btn {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 440px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 17px;
  background-color: #007ec8;
  border-radius: 10px;
  transition: 0.3s ease;
  border: 1px solid #007ec8;
  background-image: url(../img/common/icon_mail.webp), url(../img/common/icon_arrow_right.webp);
  background-position: 6%, 94%;
  background-repeat: no-repeat;
  background-size: 25px, 50px;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 90%;
    font-size: 3.7333333333vw;
    height: 60px;
    line-height: 60px;
    background-size: 20px, 42px;
  }
}
.btn:hover {
  color: #007ec8;
  background-color: #fff;
  background-image: url(../img/common/icon_mail_blue.webp), url(../img/common/icon_arrow_right_blue.webp);
  background-size: 25px, 50px;
}
@media screen and (max-width: 768px) {
  .btn:hover {
    background-size: 20px, 42px;
  }
}

.about {
  padding: 100px 40px 150px;
  background: url(../img/top/bg-about.webp) no-repeat;
  background-size: cover;
  background-position: 80%;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 13.3333333333vw 5.3333333333vw;
    background-position: 35%;
  }
}
.about__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.about__contents {
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 1320px) {
  .about__contents {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .about__contents {
    width: 100%;
    margin: 0 auto;
  }
}
.about__title {
  color: #fff;
}
.about .section__subTitle {
  color: #fff;
}
.about__text {
  text-align: center;
  font-weight: 500;
  color: #fff;
  margin-top: 50px;
  line-height: 1.7;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 3.4666666667vw;
    margin-top: 8vw;
  }
}

.feature {
  padding: 70px 40px;
}
@media screen and (max-width: 768px) {
  .feature {
    padding: 10.6666666667vw 5.3333333333vw 13.3333333333vw;
  }
}
.feature__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.feature__subTitle {
  color: #fff;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 10px;
  font-size: 19px;
  font-weight: bold;
  background: #007ec8;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .feature__subTitle {
    font-size: 3.4666666667vw;
  }
}
.feature__title {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .feature__title {
    font-size: 5.3333333333vw;
  }
}
.feature__lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.feature__list {
  background: #e2f0f9;
  height: 240px;
  display: flex;
  padding: 0 20px 0 45px;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .feature__list {
    height: auto;
    padding: 9.0666666667vw 4.2666666667vw 10.6666666667vw 7.4666666667vw;
  }
}
.feature__list .num {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #f3faff;
  font-weight: 900;
  font-size: 268px;
  font-family: "Mulish", sans-serif;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 768px) {
  .feature__list .num {
    font-size: 35.7333333333vw;
  }
}
.feature__list h3 {
  position: relative;
  z-index: 2;
  color: #007ec8;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 16px;
  font-size: 27px;
}
@media screen and (max-width: 768px) {
  .feature__list h3 {
    font-size: 4.8vw;
    margin-bottom: 10px;
  }
}
.feature__list p {
  position: relative;
  z-index: 2;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .feature__list p {
    font-size: 3.4666666667vw;
  }
}

.works {
  padding: 0 40px 80px;
}
@media screen and (max-width: 768px) {
  .works {
    padding: 0 5.3333333333vw 13.3333333333vw;
  }
}
.works__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.works__lists {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .works__lists {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .works__list {
    width: 90%;
    margin: 0 auto 25px;
  }
}
.works__list--img {
  margin-bottom: 15px;
}
.works__list--img img {
  width: 100%;
  border-radius: 10px;
}
.works__list h3 {
  font-weight: bold;
  line-height: 1.3;
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .works__list h3 {
    font-size: 4vw;
  }
}
.works__list .company {
  display: block;
  margin: 15px 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .works__list .company {
    font-size: 3.4666666667vw;
  }
}
.works__list p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .works__list p {
    font-size: 3.4666666667vw;
  }
}

.voice {
  padding: 80px 40px;
  background: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .voice {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.voice__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.voice__lists {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .voice__lists {
    margin-top: 20px;
    gap: 50px;
  }
}
.voice__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .voice__list {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
.voice__list--img {
  width: 35%;
}
.voice__list--img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .voice__list--img {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.voice__list--contents {
  width: 62%;
}
@media screen and (max-width: 768px) {
  .voice__list--contents {
    width: 100%;
  }
}
.voice__list--contents > h3 {
  line-height: 1.3;
  font-weight: bold;
  font-size: 23px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .voice__list--contents > h3 {
    font-size: 4vw;
  }
}
.voice__list--contents .middle {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 14px;
}
.voice__list--contents .middle .tag {
  display: inline-block;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid #007ec8;
}
@media screen and (max-width: 768px) {
  .voice__list--contents .middle .tag {
    font-size: 2.6666666667vw;
  }
}
.voice__list--contents .middle .company {
  font-size: 15px;
}
.voice__list--contents .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .voice__list--contents .box {
    flex-direction: column;
    margin-top: 20px;
  }
}
.voice__list--contents .box .arrow {
  margin: 0 8px;
}
@media screen and (max-width: 768px) {
  .voice__list--contents .box .arrow {
    margin: 8px 0;
    text-align: center;
    transform: rotate(90deg);
  }
}
.voice__list--contents .box .item {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #646464;
  width: 48%;
}
@media screen and (max-width: 768px) {
  .voice__list--contents .box .item {
    width: 100%;
  }
}
.voice__list--contents .box .item h3 {
  background: #e4e4e4;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .voice__list--contents .box .item h3 {
    font-size: 3.4666666667vw;
  }
}
.voice__list--contents .box .item .contents {
  background: #f8f8f8;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .voice__list--contents .box .item .contents {
    font-size: 3.4666666667vw;
  }
}
.voice__list--contents .box .item:nth-of-type(3) {
  border-color: #007ec8;
}
.voice__list--contents .box .item:nth-of-type(3) h3 {
  background: #007ec8;
  color: #fff;
}
.voice__list--contents .box .item:nth-of-type(3) .contents {
  background: #e2f0f9;
}

.project {
  padding: 75px 0;
  background: url(../img/top/inquiries-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .project {
    padding: 13.3333333333vw 5.3333333333vw 21.3333333333vw;
  }
}
.project__inner {
  max-width: 1500px;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .project__inner {
    width: 100%;
  }
}
.project__title {
  color: #fff;
}
.project__subTitle {
  color: #fff;
}
.project__lists {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 40px;
}
@media screen and (max-width: 1320px) {
  .project__lists {
    gap: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .project__lists {
    margin-top: 30px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .project__list {
    margin-bottom: 9.6vw;
  }
}
.project__list--img img {
  border-radius: 10px;
  width: 100%;
}
.project__list--title {
  margin: 16px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 1320px) {
  .project__list--title {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .project__list--title {
    font-size: 4.5333333333vw;
    text-align: left;
  }
}
.project__list--contents {
  background: #fff;
  border-radius: 10px;
  padding: 35px 25px 35px;
  min-height: 290px;
}
@media screen and (max-width: 768px) {
  .project__list--contents {
    min-height: auto;
    padding: 4.5333333333vw 5.8666666667vw;
  }
}
.project__list--contents ul li {
  padding-left: 20px;
  color: #007ec8;
  font-weight: bold;
  font-size: 15px;
  position: relative;
}
@media screen and (max-width: 1320px) {
  .project__list--contents ul li {
    font-size: 12px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .project__list--contents ul li {
    font-size: 3.4666666667vw;
  }
}
.project__list--contents ul li + li {
  margin-top: 10px;
}
.project__list--contents ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #007ec8;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.project__list:nth-of-type(4) .project__list--contents, .project__list:nth-of-type(5) .project__list--contents, .project__list:nth-of-type(6) .project__list--contents {
  min-height: 367px;
}
@media screen and (max-width: 768px) {
  .project__list:nth-of-type(4) .project__list--contents, .project__list:nth-of-type(5) .project__list--contents, .project__list:nth-of-type(6) .project__list--contents {
    min-height: auto;
  }
}

.flow {
  padding: 75px 40px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 13.3333333333vw 5.3333333333vw 26.6666666667vw;
  }
}
.flow__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.flow__lists {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__lists {
    margin-top: 30px;
  }
}
.flow__lists::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 67px;
  transform: translateY(-50%);
  height: 95%;
  width: 2px;
  z-index: -1;
  background: #007ec8;
}
@media screen and (max-width: 768px) {
  .flow__lists::before {
    left: 34px;
  }
}
.flow__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flow__list {
    align-items: center;
  }
}
.flow__list--icon {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: #e2f0f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flow__list--icon {
    width: 70px;
    height: 70px;
  }
  .flow__list--icon img {
    height: 30px;
  }
}
.flow__list--contents {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .flow__list--contents {
    width: 76%;
  }
}
.flow__list--contents h3 {
  font-size: 19px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .flow__list--contents h3 {
    font-size: 2.6666666667vw;
    margin-bottom: 10px;
  }
}
.flow__list--contents h3 span {
  font-size: 35px;
  font-weight: bold;
  color: #007ec8;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .flow__list--contents h3 span {
    font-size: 4.8vw;
  }
}
.flow__list--contents p {
  line-height: 1.5;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .flow__list--contents p {
    font-size: 2.6666666667vw;
  }
}
.flow__list + .flow__list {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .flow__list + .flow__list {
    margin-top: 8vw;
  }
}

.contact {
  padding: 75px 40px 130px;
  background: #e2f0f9;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 13.3333333333vw 5.3333333333vw 18.6666666667vw;
  }
}
.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.contact__form {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 8vw;
  }
}

.smf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .smf-item {
    display: block;
    margin-bottom: 20px;
  }
}

.smf-item__col--label {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .smf-item__col--label {
    width: 100%;
    margin-bottom: 20px;
  }
}
.smf-item__col--label .required {
  font-size: 12px;
  background: #ff8a00;
  color: #fff;
  padding: 4px 7px;
  border-radius: 2px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .smf-item__col--label .required {
    margin-left: 10px;
  }
}

.smf-item__col--controls {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls {
    width: 100%;
  }
}
.smf-item__col--controls input[type=text],
.smf-item__col--controls input[type=email],
.smf-item__col--controls input[type=tel] {
  width: 100%;
  height: 70px;
  padding: 10px 20px 10px 80px;
  border: none;
  background: #fff;
  border-radius: 0 !important;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls input[type=text],
  .smf-item__col--controls input[type=email],
  .smf-item__col--controls input[type=tel] {
    height: 50px;
    padding-left: 20px;
  }
}
.smf-item__col--controls textarea {
  height: 300px;
  border-radius: 0 !important;
  border: none !important;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls textarea {
    height: 160px;
  }
}

.smf-button-control__control {
  display: block;
  background: #007ec8 !important;
  text-align: center;
  color: #fff !important;
  font-weight: 500;
  font-size: 17px;
  border-radius: 10px !important;
  height: 80px;
  width: 340px;
  border: none !important;
  background-image: none !important;
  transition: 0.3s ease !important;
}
@media screen and (max-width: 768px) {
  .smf-button-control__control {
    width: 250px;
    height: 60px;
  }
}
.smf-button-control__control:hover {
  background: #fff !important;
  color: #007ec8 !important;
}

.smf-action {
  margin: 60px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .smf-action {
    margin: 40px auto 0;
  }
}

.thanks__title {
  text-align: center;
  margin: 50px auto 30px;
  font-size: 24px;
}

.thanks__message {
  text-align: center;
  line-height: 1.7;
}

.back_btn {
  margin: 50px auto 0;
  max-width: 100%;
  width: 200px;
  height: 50px;
  color: #333 !important;
  font-weight: 500;
  line-height: 48px;
  font-size: 19px !important;
  background: #fff !important;
  text-align: center;
  border: 1px solid #333 !important;
  border-radius: 1000px !important;
  display: block;
  font-family: "Mulish", sans-serif;
}/*# sourceMappingURL=top.css.map */