/* normalize */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: inherit;
  font-family: inherit;
}

body {
  font-weight: 400;
  font-size: 16px;
  font-family: "ヒラギノ角ゴシック", Hiragino Sans, Meiryo, sans-serif;
}
h2 {
  font-weight: 700;
}

p {
  letter-spacing: 0.02em;
}

img[src$=".svg"] {
  width: 100%;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  font-size: 0;
}

li {
  font-size: 16px;
  list-style: none;
}

input,
button,
textarea,
select {
  transition: border 0.3s;
  outline: none;
  border: none;
}

input::placeholder,
textarea::placeholder {
  color: #c5c8d1;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select::-ms-expand {
  display: none;
}

.fw-m {
  font-weight: 500;
}

.fw-b {
  font-weight: 700;
}
.sp {
  display: none;
}

/* マーカー */
.c-marker {
  background: -webkit-linear-gradient(
    left,
    rgb(255, 250, 153) 50%,
    transparent 50%
  );
  background: -moz-linear-gradient(
    left,
    rgb(255, 250, 153) 50%,
    transparent 50%
  );
  background: linear-gradient(left, rgb(255, 250, 153) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 0.8em;
  background-position: 100% 0.5em;
  transition: 2.5s;
}
.c-marker.inview {
  background-position: 0% 0.5em;
  animation: fade-left 0s forwards ease-out;
}

.hs-ex {
  cursor: pointer;
  color: #34c1ca;
  position: relative;
}
.hs-ex::before {
  top: 50%;
  right: -30px;
  width: 7px;
  margin-top: -2px;
  margin-right: 3px;
  border-top: 2px solid #34c1ca;
  position: absolute;
  content: "";
  height: 0;
  transform: rotate(45deg);
}
.hs-ex::after {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 15px;
  height: 2px;
  vertical-align: middle;
  background: #34c1ca;
  content: "";
  right: -27px;
  transform: rotate(0deg);
}

/* 円のアニメーション */
.progress {
  position: absolute;
  width: 42.72%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.point2-lists.inview .progress__value {
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  animation: progress 2s 1s normal forwards;
}
@keyframes progress {
  from {
    stroke-dashoffset: 339.292;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes circle {
  to {
    opacity: 1;
  }
}

/* nav */
#header-nav {
  position: fixed;
  width: 100%;
  padding-left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#header-nav::before {
  content: "";
  height: 64px;
  width: 90%;
  position: absolute;
  background: #fff;
}
#header-nav .mv-link {
  margin-top: 0;
}
#header-nav .mv-menus {
  height: 64px;
}
#header-nav .mv-lists {
  align-items: center;
}
#header-nav .mv-logo {
  padding-top: 14px;
  z-index: 2;
  margin-left: 32px;
}
#header-nav.active {
  opacity: 1;
  visibility: visible;
}

/* mv */
.bg {
  position: absolute;
}
#mv {
  position: relative;
}
#mv .gear {
  position: absolute;
}
#mv .gear img {
  max-width: 100%;
}
#mv .gear-1 {
  max-width: 72px;
  width: 5.625%;
  right: 14.5vw;
  top: 18%;
}
#mv .gear-3 {
  max-width: 183px;
  width: 14.29%;
  bottom: 15%;
}
.mv-bg2 {
  right: 13.6px;
  bottom: 80px;
  z-index: -1;
}
.mv-logo {
  width: 215px;
  padding-top: 41px;
}
.mv-nav {
  display: flex;
  justify-content: space-between;
  padding: 0 260px 0 32px;
  position: relative;
  z-index: 10;
  height: 135px;
  overflow: hidden;
}
.mv-menus {
  display: flex;
}
.mv-lists {
  display: flex;
  white-space: nowrap;
}
.mv-list {
  margin-right: 26px;
  font-weight: 600;
}
.mv-lists li:last-of-type {
  margin-right: 0;
}
.mv-link {
  display: inline-block;
  margin-top: 45px;
  color: #000;
  position: relative;
}
.mv-contact {
  color: #000;
  display: inline-block;
  text-align: center;
  width: 268.7px;
  position: absolute;
  right: -39px;
  z-index: 2;
  transition: all 0.3s;
}
.mv-contact::before {
  position: absolute;
  content: "";
  right: 0;
  width: 268.7px;
  height: 268.7px;
  background: linear-gradient(to right, #c9ff64 0, #3bff9d 100%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  top: -133.35px;
  z-index: -1;
}
.mv-contact:hover::before {
  background: linear-gradient(to right, #c2f54f 0, #c2f54f 100%);
}
.mv-contact span {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: 600;
}
.mv-contact span:first-of-type {
  font-size: 14px;
  margin-top: 20px;
}
.mv-contact span:nth-of-type(2) {
  font-size: 28px;
  margin: 4px 0 9px;
  line-height: 1;
}
.mv-contact span:nth-of-type(3) {
  background: #000;
  color: #c2f54f;
  width: auto;
  padding: 0 5px;
}
.mv-content {
  padding-top: 140px;
  max-width: 730px;
  margin: auto;
  width: 57.03%;
}
.mv-content-text {
  text-align: center;
}
.mv-content-text .copy {
  position: relative;
  margin: auto;
}
.copy-flex {
  display: block;
  position: relative;
  text-align: center;
}
.copy-flex span {
  display: inline-block;
  top: 0;
}
.copy-flex span:first-of-type {
  width: 36.41%;
  left: -3px;
  position: absolute;
}
.copy-flex span:nth-of-type(2) {
  width: 37.18%;
}
.copy-flex span:nth-of-type(3) {
  width: 34.55%;
  right: 0;
  position: absolute;
}
/* .mv-content-text .copy1 {
  animation: copy 0.2s 0.2s forwards ease-out;
}
.mv-content-text .copy2 {
  animation: copy 0.2s 0.4s forwards ease-out;
} */
.copy-flex span {
  transform: translateX(-50px);
}
.copy-flex span:first-of-type {
  animation: copy 0.2s 0.3s forwards ease-out;
}
.copy-flex span:nth-of-type(2) {
  animation: copy 0.2s 0.5s forwards ease-out;
}
.copy-flex span:nth-of-type(3) {
  animation: copy 0.2s 0.7s forwards ease-out;
}
@keyframes copy {
  100% {
    transform: translateX(0px);
  }
}
.copy-flex span::after {
  transition: 0.3s;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  opacity: 1;
  top: 0;
  right: 0;
}
/* .mv-content-text .copy1::after {
  animation: copy-cover 0.2s 0.2s forwards ease-out;
}
.mv-content-text .copy2::after {
  animation: copy-cover 0.3s 0.4s forwards ease-out;
} */
.copy-flex span:first-of-type::after {
  animation: copy-cover 0.15s 0.3s forwards ease-out;
}
.copy-flex span:nth-of-type(2)::after {
  animation: copy-cover 0.15s 0.5s forwards ease-out;
}
.copy-flex span:nth-of-type(3)::after {
  animation: copy-cover 0.15s 0.7s forwards ease-out;
}
@keyframes copy-cover {
  10% {
    background: linear-gradient(to right, #8545ff 0, #167bf2 100%);
  }
  100% {
    width: 0;
  }
}
.mv-content-text .copy1 {
  font-size: 38px;
  font-weight: 700;
  color: #167bf2;
  letter-spacing: 0.04em;
  line-height: 1;
}
.mv-content-text .copy1 span {
  font-size: 28px;
}
.mv-content-text .copy2 {
  margin: 45px auto;
  font-size: 45px;
  font-weight: 800;
  letter-spacing: 0.084em;
  line-height: 1;
  white-space: nowrap;
}
#mv .animation-line {
  position: absolute;
  opacity: 0;
  height: 1px;
  background: linear-gradient(to right, #8545ff 0, #167bf2 100%);
}
#mv .animation-line.line1 {
  width: 48%;
  top: 18%;
  left: -25vw;
  animation: fade-left 0.1s 0.8s forwards ease-out;
}
#mv .animation-line.line2 {
  width: 42%;
  top: 25%;
  left: -25vw;
  animation: fade-left 0.1s 0.9s forwards ease-out;
}
#mv .animation-line.line3 {
  width: 50.68%;
  top: -5px;
  right: -1vw;
  animation: fade-left 0.1s 1.1s forwards ease-out;
}
#mv .animation-line.line4 {
  z-index: -1;
  width: 45.4%;
  top: 59%;
  right: -15vw;
  animation: fade-right 0.1s 1s forwards ease-out;
}
#mv .animation-line.line5 {
  width: 21.36%;
  bottom: 0;
  left: 16.3vw;
  animation: fade-right 0.1s 1.1s forwards ease-out;
}
@keyframes fade-left {
  0% {
    transform: translateX(-50vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(50vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.get-inview {
  opacity: 0;
}
.inview {
  animation: fade-left 0.2s 0.17s forwards ease-out;
}

.inview::after {
  content: "";
  position: absolute;
  height: 98.1%;
  width: 100vw;
  background: linear-gradient(to right, #8545ff 0, #167bf2 100%);
  opacity: 1;
  right: 0;
  top: 0;
  animation: copy-cover-ttl 0.3s 0.2s forwards ease-out;
}
.num.inview::after {
  content: "";
  position: absolute;
  height: 98.1%;
  width: 100vw;
  background: #c2f54f;
  opacity: 1;
  right: 0;
}
.ttl-wrap.inview {
  animation: fade-left 0.1s 0.22s forwards ease-out;
}
.point2-lists.inview {
  animation: none;
  opacity: 1;
}
.ttl-wrap.inview::after,
.c-marker.inview::after,
.point2-lists.inview::after {
  content: none;
}
.common-contact .txt.inview::after {
  animation: copy-cover-purple 0.28s 0.2s forwards ease-out;
}
@keyframes copy-cover-ttl {
  100% {
    background: #fff;
    opacity: 0;
    width: 0;
  }
}
@keyframes copy-cover-purple {
  100% {
    background: linear-gradient(to right, #8545ff 0, #167bf2 100%);
    opacity: 0;
    width: 0;
  }
}
.mv-link {
  position: relative;
}
.mv-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0) rotate(0.001deg);
  background-color: #000;
  transition: all 0.3s;
}
.mv-link:hover::after {
  transform: scaleX(1) rotate(0.001deg);
}
.mv-btn-wrapper {
  margin-top: 40px;
}
.cta-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.btn {
  height: 80px;
  font-size: 22px;
  line-height: 80px;
  position: relative;
  display: block;
  width: 100%;
  max-width: 460px;
  text-align: center;
}
.mv-btn {
  margin: 0 auto;
}
.mv-btn:not(:first-child) {
  margin-top: 30px;
}
.btn .btn-innr {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #c9ff64 0, #3bff9d 100%);
  position: relative;
  /* display: inline-block; */
  width: 100%;
  max-width: 460px;
  height: 100%;
  font-weight: 600;
  border-radius: 50em;
  transform-style: preserve-3d;
  transition: all 0.3s;
}
.btn-white .btn-innr {
  background: #fff;
  border: 3px solid #000;
}
.btn::before {
  content: "";
  position: absolute;
  right: 30px;
  left: 30px;
  z-index: -1;
  display: inline-block;
  height: 40px;
  border-radius: 30em;
  transition: all 0.3s ease-out;
  bottom: 10px;
  opacity: 0;
  background: linear-gradient(to right, #c9ff64 0, #3bff9d 100%);
}
.btn-white::before {
  content: none;
  display: none;
}
.btn:hover::before {
  bottom: -7px;
  opacity: 1;
  -webkit-filter: blur(20px);
  filter: blur(20px);
}
.btn:hover .btn-innr {
  transform: scale(1.04);
  filter: brightness(1.05) contrast(1.05);
}
/* .btn:hover .btn-innr {
  border-radius: 0;
  background: linear-gradient(to right, #c2f54f 0, #c2f54f 100%);
} */
.btn .btn-innr span {
  height: auto;
  background: #000;
  color: #c2f54f;
  line-height: 1;
  padding: 4px 5px;
  font-size: 16px;
  margin-left: 10px;
}
.btn-white .btn-innr span {
  color: #fff;
}
.brand-logos {
  display: flex;
  margin: 65px 0 10px;
}
.slick-track {
  display: flex;
}
.brand-logos li {
  width: auto !important;
  margin-right: 35px;
}
.brand-logos li img {
  max-height: 49px;
  width: auto;
}
.wrapper {
  max-width: 1080px;
  padding: 0 16px;
  margin: auto;
  box-sizing: content-box;
  position: relative;
}
#affect {
  padding-top: 80px;
}
#affect .innr {
  background: #f2f6fd;
  width: 100%;
  height: 100%;
}
#affect .wrapper {
  padding-top: 140px;
}
#affect .ttl-wrap {
  display: flex;
  align-items: center;
}
#affect .ttl-wrap h2 {
  font-size: 38px;
  letter-spacing: 0.04em;
  margin-left: 0.89em;
}
#affect .ttl-wrap img {
  max-width: 110px;
}
#affect .txt {
  font-size: 18px;
  font-weight: 500;
  margin: 48px 0 65px;
  line-height: 2.2;
}
.affect-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.affect-lists li {
  width: 32.4%;
  text-align: center;
  background: #fff;
  margin-bottom: 15px;
  padding: 73px 50px 50px;
}
.affect-list-title {
  font-size: 20px;
}
.affect-lists li img {
  max-width: 90px;
  margin: 15px 0 5px;
}
.affect-list-text {
  line-height: 2;
  text-align: left;
}
#affect .fukidashi {
  position: absolute;
  right: -20px;
  top: -40px;
  width: 41.12%;
  z-index: 1;
}

/* factor */
#factor {
  background: #f2f6fd;
  padding-top: 91px;
}
#factor .box-wrap div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#factor .box-wrap .blue {
  color: #fff;
  background: url(../../img/speedup/bg-txtbox.svg) no-repeat;
  background-size: contain;
  width: 849px;
  height: 849px;
}
#factor .box-wrap .box1 {
  top: 0;
  transform: translateX(-178px);
}
#factor .box-wrap .box1 p {
  margin-bottom: 75px;
}
#factor .box-wrap .box2 {
  width: 764px;
  height: 764px;
  position: absolute;
  bottom: 0;
  right: -47px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
#factor .box-wrap .box2 p {
  line-height: 2;
}
#factor .box-wrap .box2 .txt-content {
  padding-top: 150px;
  position: relative;
}
#factor .box-wrap .box2 .txt-content::before,
#factor .box-wrap2 .white .txt-content::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 13px;
  background: url(../../img/speedup/mark_quotation1.svg) no-repeat;
  background-size: contain;
  top: 130px;
}
#factor .box-wrap .box2 .txt-content::after,
#factor .box-wrap2 .white .txt-content::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 13px;
  background: url(../../img/speedup/mark_quotation2.svg) no-repeat;
  background-size: contain;
  bottom: -10px;
  right: 0;
}
#factor .box-wrap div p {
  width: 440px;
  line-height: 1.88;
  font-size: 18px;
  text-align: left;
  z-index: 1;
}
#factor .box-wrap div.r p {
  font-size: 16px;
  width: 380px;
}
#factor .box-wrap div p.sm {
  text-align: center;
  margin-top: 69px;
  color: #a3b1c3;
  font-size: 14px;
  font-weight: 600;
}
#factor .box-wrap div h2 {
  line-height: 1.64;
  margin-bottom: 20px;
  font-size: 34px;
}
#factor .box-wrap2 .blue h2 {
  max-width: 430px;
  font-size: 26px;
}
#factor .box-wrap2 .blue p {
  max-width: 420px;
}
#factor .box-wrap1 {
  height: 1115px;
  position: relative;
}
#factor .box-wrap1 .twitter-card {
  position: absolute;
  right: 22px;
  top: 93px;
  z-index: 5;
  width: 360px;
}
#factor .box-wrap1 .twitter-card iframe {
  width: 359px !important;
  max-width: 100%;
  box-shadow: 22px 22px 12px 0 rgba(14, 78, 224, 0.05);
  border-radius: 15px;
}
#factor .box-wrap1 .img-bg {
  position: absolute;
  max-width: 411px;
  bottom: -20px;
  left: -100px;
  z-index: 1;
}
#factor .box-wrap1 .img-gear img {
  position: absolute;
  max-width: 537.82px;
  right: 0;
}
#factor .box-wrap2 {
  margin-top: -165px;
  height: 1168px;
  position: relative;
}
#factor .box-wrap2 .white {
  background: #fff;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  width: 495px;
  height: 495px;
}
#factor .box-wrap2 .white p {
  width: 220px;
  font-size: 16px;
}
#factor .box-wrap2 .white .txt-content {
  padding-top: 75px;
  position: relative;
}
#factor .box-wrap2 div p.sm {
  margin-top: 38px;
}
#factor .box-wrap2 .white .txt-content::before {
  top: 50px;
}
#factor .box-wrap2 .img-bg2 {
  position: absolute;
  max-width: 216px;
  left: 50%;
  bottom: 70.6px;
}
#factor .box-wrap2 .img-bg2 img {
  width: 100%;
}
#factor .box-wrap .box3 {
  margin-left: 165px;
}
#factor .box-wrap .box4 {
  position: absolute;
  left: -100px;
  bottom: 410px;
}
#factor .box-wrap .box5 {
  margin-left: 15.5%;
  transform: translateY(32px);
}
#factor .box-wrap .box6 {
  position: absolute;
  bottom: -122px;
  left: -100px;
}
#factor .box-wrap .box7 {
  position: absolute;
  bottom: 227px;
  right: -200px;
}
.common-contact {
  background: linear-gradient(to right, #8545ff 0, #167bf2 100%);
  text-align: center;
  padding: 90px 0 140px;
}
.common-contact .hand {
  width: 34px;
  transform: rotate(20deg);
  animation: 2s hand-wave alternate infinite;
}
@keyframes hand-wave {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-18deg);
  }
  20% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
.common-contact .ttl {
  width: 222.24px;
  margin: auto;
}
.common-contact .txt {
  margin: 46px auto 40px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.84;
  color: #fff;
}

/* cause */
#cause {
  padding: 64px 20px 0;
}

#cause .wrapper {
  padding: 0;
}

#cause h2 {
  color: #167bf2;
}

#cause h2 .sub {
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 21px;
  font-weight: 700;
}

#cause h2 .sub .sub-top {
  margin-bottom: 11px;
}

#cause h2 .lead {
  font-size: 70px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-weight: 800;
}

#cause h2 .lead .small {
  font-size: 40px;
}

#cause h2 .lead .large {
  font-size: 70px;
}

#cause h2 .lead .three {
  max-width: 100%;
  display: inline-block;
  margin: 0 8px;
}

#cause h2 .lead .three img {
  vertical-align: text-bottom;
}
.cause-top {
  /* max-width: 965.61px; */
  text-align: center;
  margin: 0 auto 60px;
}

.cause__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 80px;
}

.cause__content {
}

.cause__content__title {
  color: #167bf2;
  font-size: 26px;
  text-align: center;
  margin-bottom: 60px;
}

.cause__content__column {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.cause__content__column__item {
  width: 100%;
  background-color: #F2F6FD;
  padding: 40px 10px;
}

.cause__content__column__inner {
  max-width: 340px;
  margin: 0 auto;
}

.cause__content__column__title {
  color: #167bf2;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.cause__content__column__text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}

.cause__content__column__img {
  display: block;
  width: 117px;
  margin: 0 auto 24px;
}

.cause__content__column__attr {
  display: inline-block;
  width: 86px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 14px;
  background-color: #000;
  padding: 6px;
  margin-bottom: 8px;
}

.cause__content__column__list__item {
  padding: 8px 0;
}

.cause__content__column__list__item:not(:first-child) {
  border-top: 1px solid #A3B1C3;
}

/* measure */
#measure {
  padding: 64px 20px 80px;
}

#measure .wrapper {
  padding: 0;
}

#measure h2 {
  color: #167bf2;
}

#measure h2 .sub {
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 21px;
  font-weight: 700;
}

#measure h2 .sub .sub-top {
  margin-bottom: 11px;
}

#measure h2 .lead {
  font-size: 70px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-weight: 800;
}

#measure h2 .lead .small {
  font-size: 40px;
}

#measure h2 .lead .large {
  font-size: 70px;
}

#measure h2 .lead .three {
  max-width: 100%;
  display: inline-block;
  margin: 0 8px;
}

#measure h2 .lead .three img {
  vertical-align: text-bottom;
}
.measure-top {
  /* max-width: 965.61px; */
  text-align: center;
  margin: 0 auto 60px;
}

.measure__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 80px;
}

.measure__content {
}

.measure__content__title {
  color: #167bf2;
  font-size: 26px;
  text-align: center;
  margin-bottom: 60px;
}

.measure__content__column {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.measure__content__column__item {
  width: 100%;
  border: 6px solid #167BF2;
}

.measure__content__column__headline {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background-color: #167BF2;
  padding: 10px;
}

.measure__content__column__inner {
  padding: 24px 10px 40px;
}

.measure__content__column__title {
  color: #167bf2;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.measure__content__column__text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}

.measure__content__column__img {
  display: block;
  width: 117px;
  margin: 0 auto 24px;
}

.measure__content__column__attr {
  display: inline-block;
  width: 86px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 14px;
  background-color: #000;
  padding: 6px;
  margin-bottom: 8px;
}

.measure__content__column__list {
  max-width: 340px;
  margin: 0 auto;
}

.measure__content__column__list__item {
  padding: 8px 0;
}

.measure__content__column__list__item:not(:first-child) {
  border-top: 1px solid #A3B1C3;
}

/* merit */
#merit {
  padding: 160px 0 14px;
}
#merit .wrapper {
  text-align: center;
}
#merit h2 {
  max-width: 815px;
  margin: 37px auto 60px;
  color: #167bf2;
}
#merit h2 .sub {
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 21px;
  font-weight: 700;
}
#merit h2 .sub .sub-top {
  margin-bottom: 11px;
}
#merit h2 .lead {
  font-size: 50px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 800;
}
#merit h2 .lead .small {
  font-size: 40px;
}
#merit h2 .lead .large {
  font-size: 70px;
}
#merit h2 .lead .three {
  max-width: 100%;
  display: inline-block;
  margin: 0 8px;
}
#merit h2 .lead .three img {
  vertical-align: text-bottom;
}
.merit-top {
  max-width: 965.61px;
  margin: 0 auto 120px;
}
.merit-top .txt {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.merit-top .point-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1060px;
  margin: auto;
}
.merit-top .point-wrap li {
  width: 30.82%;
  height: 147px;
  position: relative;
  color: #fff;
  font-weight: 700;
}
.merit-top .point-wrap li::before {
  content: "";
  position: absolute;
  width: 17.14px;
  height: 19.18px;
  left: -14px;
  bottom: -2px;
  transition: 0.2s;
}
.merit-top .point-wrap li::after {
  content: "";
  position: absolute;
  width: 45.98px;
  height: 29.91px;
  top: 0;
  right: -39px;
  transition: 0.2s;
}
.merit-top .point-wrap li:first-of-type::before,
.merit-top .point-wrap li:nth-of-type(3)::before {
  background: center / contain url(../../img/speedup/merit-point-bg-b2.svg)
    no-repeat;
}
.merit-top .point-wrap li:first-of-type::after,
.merit-top .point-wrap li:nth-of-type(3)::after {
  background: center / contain url(../../img/speedup/merit-point-bg-b3.svg)
    no-repeat;
}
.merit-top .point-wrap li:nth-of-type(2)::before {
  background: center / contain url(../../img/speedup/merit-point-bg-p2.svg)
    no-repeat;
}
.merit-top .point-wrap li:nth-of-type(2)::after {
  background: center / contain url(../../img/speedup/merit-point-bg-p3.svg)
    no-repeat;
}
.merit-top .point-wrap li:hover::before {
  animation: point-hover-l 0.2s forwards ease-out;
}
.merit-top .point-wrap li:hover::after {
  animation: point-hover-r 0.2s forwards ease-out;
}
.merit-top .point-wrap li:hover a::after {
  animation: point-hover-r 0.2s forwards ease-out;
}
.merit-top .point-wrap li:hover a {
  animation: point-hover-down 0.2s forwards ease-out;
}
.merit-top .point-wrap li:hover a::before {
  animation: point-hover-arrow 0.2s forwards ease-out;
}
@keyframes point-hover-l {
  100% {
    left: 0;
  }
}
@keyframes point-hover-r {
  100% {
    right: 0;
  }
}
@keyframes point-hover-down {
  100% {
    padding-top: 7px;
  }
}
@keyframes point-hover-arrow {
  100% {
    top: 53%;
  }
}
.merit-top .point-wrap li a {
  letter-spacing: 0.04em;
  position: absolute;
  color: #fff;
  font-size: 24px;
  text-align: left;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 50px;
}
.merit-top .point-wrap li a::before {
  content: "";
  position: absolute;
  background: center / contain url(../../img/speedup/icn-arrow.svg) no-repeat;
  width: 28px;
  height: 28px;
  right: 55px;
  top: 51%;
  transform: translateY(-50%);
}
.merit-top .point-wrap li a::after {
  content: "";
  position: absolute;
  width: 35.65%;
  height: 14.41px;
  top: -16px;
  right: -40px;
}
.merit-top .point-wrap li:first-of-type a {
  background: center / contain url(../../img/speedup/merit-point-bg-b.svg)
    no-repeat;
}
.merit-top .point-wrap li:nth-of-type(2) a {
  background: center / contain url(../../img/speedup/merit-point-bg-p.svg)
    no-repeat;
}
.merit-top .point-wrap li:nth-of-type(3) a {
  background: center / contain url(../../img/speedup/merit-point-bg-b.svg)
    no-repeat;
}
.merit-top .point-wrap li:first-of-type a::after {
  background: center / contain url(../../img/speedup/merit-point1.svg) no-repeat;
}
.merit-top .point-wrap li:nth-of-type(2) a::after {
  background: center / contain url(../../img/speedup/merit-point2.svg) no-repeat;
}
.merit-top .point-wrap li:nth-of-type(3) a::after {
  background: center / contain url(../../img/speedup/merit-point3.svg) no-repeat;
}
#merit .point .num {
  max-width: 193px;
  margin: auto;
}
#merit .point .txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.22;
}
#merit .point {
  position: relative;
  padding-top: 70px;
  margin-top: -70px;
}
#merit .point .img-bg-gear {
  position: absolute;
  max-width: 144px;
  top: -10px;
  left: 20px;
}
#merit .point .img-bg-gear-r {
  left: auto;
  right: 20px;
}
#merit .point .img-bg-gear img {
  width: 100%;
}
#merit #point1 {
  margin-bottom: 160px;
}
.about-movie:hover {
  cursor: pointer;
}
.about-movie {
  position: relative;
  max-width: 900px;
  max-height: 506px;
  height: 52.4vw;
  overflow: hidden;
  margin: 60px auto 0;
}
.about-movie img {
  width: 100%;
}
.about-movie::before {
  content: "";
  position: absolute;
  width: 106px;
  height: 106px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  background: center / contain url(../../img/speedup/btn-play.svg) no-repeat;
  transition: 0.3s;
}
.about-movie:hover::before {
  opacity: 1;
}
.about-movie-start::before {
  content: none;
}
.about-movie iframe {
  width: 100%;
  height: 100%;
}
.about-movie-txt {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: left;
  font-weight: 500;
}
#merit #point2 {
  margin-bottom: 120px;
}
.w900 {
  max-width: 900px;
  margin: auto;
}
#merit .point2-lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 60px auto 26px;
}
#merit .point2-lists li {
  width: 23.66%;
  background: #f2f6fd;
  border-radius: 30px;
  padding: 37px 0;
  position: relative;
}
#merit .point2-lists li .circle {
  width: 42.72%;
  margin-bottom: 19px;
  margin: auto;
}
#merit .point2-lists li h3 {
  font-size: 16px;
  color: #167bf2;
}
#merit #point2 .note {
  text-align: left;
  font-size: 14px;
  line-height: 2;
  display: flex;
}
#merit #point2 .note dt {
  font-weight: 600;
  width: 260px;
}
#merit #point2 .txt {
  text-align: left;
}
#merit #point3 {
  margin-bottom: 140px;
}
#merit #point3 .row {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
#merit #point3 .row p {
  margin: 0;
}
#merit #point3 .row p a {
  text-decoration: underline;
}
#merit #point3 .row1 {
  margin-bottom: 80px;
}
#merit #point3 .w540 {
  max-width: 540px;
  width: 50%;
}
#merit #point3 .w480 {
  max-width: 480px;
  width: 44.4%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
#merit #point3 .row1 .l .sm {
  font-size: 16px;
  padding-left: 63px;
  position: relative;
}
#merit #point3 .row1 .l .sm::before {
  content: "";
  position: absolute;
  width: 46.55px;
  height: 42.5px;
  background: center / contain url(../../img/speedup/point3-icn.svg) no-repeat;
  left: 0;
}

/* webvital */
.webvital {
  margin-top: 90px;
}
.webvital .ttl {
  max-width: none !important;
}
.webvital .lead {
  max-width: none !important;
}

.webvital .lead .large {
  font-size: 68px !important;
}

.webvital__item {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 55px;
  padding: 60px 20px;
}

.webvital__item:not(:first-child) {
  border-top: 1px solid #A3B1C3;
}

.webvital__item__img {
  width: 298px;
}

.webvital__item__right {
  width: calc(100% - 298px - 55px);
}

.webvital__item__title {
  color: #167BF2;
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 32px;
}

.webvital__item__text {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  line-height: 2;
}

.webvital__item__link {
  width: 100%;
  text-align: right;
}

.webvital__item__link a {
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
}

/* case */
#case {
  background: #f2f6fd;
  padding: 138px 0 100px;
}
#case h2 {
  text-align: center;
}
#case h2 span {
  display: inline-block;
  width: 229.6px;
  margin-bottom: 7px;
}
#case h2 p {
  font-size: 22px;
  font-weight: 600;
  color: #167bf2;
  letter-spacing: 0.04em;
}
#case .case-wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin-top: 54px;
}
#case .case-wrap div {
  width: 48.5%;
}
#case .case-wrap div img {
  max-width: 100%;
}
#case .case-wrap div a {
  display: block;
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 2;
  position: relative;
  padding-right: 27px;
  letter-spacing: 0.04em;
}
#case .case-wrap div a:hover {
  animation: zoom 0.3s;
}
@keyframes zoom {
  50% {
    transform: scale(1.05);
  }
}
#case .case-wrap div a::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: center / contain url(../../img/speedup/icn-link.svg) no-repeat;
  right: -14px;
}
#case .case-wrap .img-link1 a::before {
  right: 20px;
}
#case .case-wrap div span {
  display: block;
  color: #a3b1c3;
  font-size: 14px;
  font-weight: 600;
}
#case .case-wrap .img-link {
  margin-left: 140px;
  width: calc(100% - 140px);
}

/* contact */
#contact {
  padding: 150px 0 140px;
}
.contact-wrapper {
  max-width: 804px;
  margin: auto;
}
.contact-wrapper .ttl-wrap {
  text-align: center;
}
#contact h2 {
  width: 100%;
  font-size: 50px;
  color: #167bf2;
  letter-spacing: 0.04em;
}
.contact-wrapper .txt {
  margin: 40px auto 34px;
}
.contact-wrapper .txt .titleText {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.contact-wrapper .txt .titleText + p {
  font-size: 14px;
  font-weight: 400;
}

/* call */
#call {
  background: #f2f6fd;
}
#call .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 220px;
  position: relative;
}
.call-text {
  max-width: 500px;
  color: #167bf2;
  margin-left: 140px;
}
#call .wrapper .call-img {
  position: absolute;
  right: 0;
  top: -72px;
  width: 38.05%;
}
#call .flex {
  display: flex;
}
.call-text .here {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}
.call-text .time {
  margin-left: 15px;
  line-height: 1.66;
  font-size: 15px;
}
.call-text a img {
  margin-top: 3px;
}
#call .parts {
  position: absolute;
  max-width: 367px;
  top: -66px;
  left: 23px;
}
/* footer */
#footer {
  background: #2e2e2e;
  color: #fff;
}
.footer-wrapper {
  position: relative;
  padding: 120px 16px 65px;
  display: flex;
  max-width: 1080px;
  justify-content: space-between;
  margin: auto;
}

.footer-logo {
  width: 218.93px;
}

.footer-wrapper table {
  width: 750px;
  margin: 0 auto 35px;
  text-align: left;
}

.footer-wrapper table th {
  width: 100px;
  vertical-align: top;
  padding-top: 5px;
  font-weight: 600;
}

.footer-wrapper table td {
  line-height: 2.1;
  width: 420px;
  vertical-align: top;
}

.footer-wrapper table td a {
  color: #fff;
  pointer-events: none;
}
.footer-credit {
  border-top: 1px solid #414141;
}
.footer-credit .w1080 {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: auto;
  padding: 20px 16px;
}

.footer-credit small {
  font-size: 14px;
  color: #fff;
}

.footer-credit div a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  transition: opacity 0.3s;
}

.footer-credit div a:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-credit div a:first-child {
  padding-right: 15px;
  margin-right: 7px;
  line-height: 1;
  border-right: 1px solid #fff;
}

/* hubspot */
.hbspt-form {
  padding: 0 0 40px 0;
}

.hbspt-form form {
  max-width: 804px;
  margin: auto;
}

.hs-form-required {
  color: transparent;
}

.hs-form-required::before {
  display: inline-block;
  width: 40px;
  margin-left: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  background: #ff3d7f;
  content: "必須";
}

.hs-form-field {
  margin-bottom: 25px;
  text-align: left;
}

.hs-form-field label {
  position: relative;
  font-size: 18px;
  display: block;
}

.hs-form-field .input {
  margin: 0;
}

.hs-form-field .input input {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 19px 29px;
  font-size: 15px;
  background-color: #f2f6fd;
  outline: none;
}

.hs-form-radio {
  margin: 13px 0;
}

.hs-form-radio label {
  font-size: 16px;
}

.hs-form-radio-display input {
  display: none;
}

.hs-form-radio-display input + span::before {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: -2px 5px 0 0;
  vertical-align: middle;
  background-color: #f0f0f0;
  border: 2px solid #ddd;
  border-radius: 17px;
  transition: 0.1s;
  content: "";
}

.hs-form-radio-display input[type="radio"]:checked + span::before {
  background-color: #5482f7;
  border-color: #5482f7;
  box-shadow: inset 0 0 0 8px #fff;
}

.hs-fieldtype-select select,
.hs-fieldtype-textarea textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding: 0 29px;
  font-size: 15px;
  line-height: 57px;
  background-color: #f2f6fd;
  outline: none;
}

.hs-fieldtype-textarea textarea {
  padding: 8px 15px;
  line-height: 1.5;
}

.hs-fieldtype-textarea {
  display: flex;
  flex-direction: column;
  margin-top: 44px;
}

.hs-fieldtype-textarea textarea {
  height: 200px;
}

.hs-fieldtype-textarea .hs-field-desc {
  font-size: 14px;
}

.hs-fieldtype-textarea .input {
  margin: 22px 0 0;
}

.hs_privacypolicy {
  margin: 60px auto 30px;
  text-align: center;
}

.hs_privacypolicy .hs-form-required {
  display: none;
}

.hs_privacypolicy label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-form-field.hs_privacypolicy label input {
  width: auto;
  height: auto;
  margin-top: 0;
  margin-right: 10px;
  transform: scale(1.7);
}

.hs_error_rollup {
  display: none;
}

.hs-error-msg {
  color: #b70000;
  font-size: 93% !important;
  margin-top: 5px;
}

.hs_submit {
  text-align: center;
}

.hs_submit input[type="submit"] {
  background: linear-gradient(to right, #c9ff64 0, #3bff9d 100%);
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 380px;
  font-weight: 600;
  border-radius: 50em;
  transform-style: preserve-3d;
  transition: all 0.3s;
  height: 100%;
  font-size: 20px;
  height: 72px;
  line-height: 72px;
}
.hs_submit input[type="submit"]:hover {
  cursor: pointer;
}
.hs_submit .actions {
  max-width: 380px;
  margin: auto;
  transition: all 0.3s ease-out;
  margin-top: 22px;
  position: relative;
}
.hs_submit .actions:hover::before {
  position: absolute;
  bottom: -5px;
  left: 50%;
  z-index: -1;
  display: inline-block;
  width: 260px;
  height: 40px;
  background: #52a0fd;
  background: linear-gradient(to right, #c9ff64 0, #3bff9d 100%);
  border-radius: 30em;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  filter: blur(20px) brightness(0.95);
  transition: all 0.3s ease-out;
  content: "";
}
.hs_submit .actions:hover {
  transform: scale(1.04);
  filter: brightness(1.05) contrast(1.05);
}
/* .hs_submit .actions:hover input {
  border-radius: 0;
  background: linear-gradient(to right, #c2f54f 0, #c2f54f 100%);
} */
.hs-ex {
  margin-left: 15px;
  font-size: 15px;
  text-decoration: underline;
}

.hs-ex.arrow::after {
  transform: rotate(0deg);
}

.hs-ex.arrow::before {
  right: -33px;
  height: 0;
  transform: rotate(45deg);
}

.hs-form-field .input input:focus,
.hs-form-field .input textarea:focus {
  box-shadow: 0 0 0 2px rgba(42, 176, 214, 1);
}

label.hs-form-booleancheckbox-display span::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 25px;
  height: 25px;
  border: 2px solid #ccc;
  border-radius: 4px;
  content: "";
  cursor: pointer;
}

.hs-form-field.hs_privacypolicy input[type="checkbox"]:checked + span::after {
  position: absolute;
  top: 4px;
  left: 9px;
  display: block;
  width: 7px;
  height: 16px;
  border-right: 3px solid #5482f7;
  border-bottom: 3px solid #5482f7;
  transform: rotate(40deg);
  content: "";
}

.hs-form-field.hs_privacypolicy input {
  display: none;
}

.hs-form-field.hs_privacypolicy span {
  position: relative;
  padding-left: 35px;
}

.hbspt--minoru {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 0 2px transparent;
  -webkit-transition: box-shadow 0.3s;
  transition: box-shadow 01s;
}

.hbspt--minoru::after {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: -1;
  width: calc(100% - 2px);
  max-width: 100%;
  height: 90%;
  color: rgba(42, 176, 214, 0.6);
  box-shadow: 0 0 0 0;
  -webkit-animation: anim-shadow 0.3s forwards;
  animation: anim-shadow 0.3s forwards;
  content: "";
}

.hbspt--minoru:focus {
  box-shadow: 0 0 0 2px rgba(42, 176, 214, 1);
}
.hs-form-booleancheckbox a {
  text-decoration: underline;
}

@media screen and (max-width: 1300px) {
  .mv-content-text .copy1 {
    font-size: 3vw;
  }
  .mv-content-text .copy1 span {
    font-size: 2vw;
  }
  .mv-content-text .copy2 {
    font-size: 4.4vw;
  }
}

@media screen and (max-width: 768px) {
  #mv .mv-contact {
    display: none;
  }
  .mv-nav {
    padding: 0 32px;
  }
  /* nav */
  #header-nav {
    bottom: 0;
    margin: 0;
    padding: 0;
    height: 96px;
  }
  #header-nav .mv-logo {
    display: none;
  }
  #header-nav .mv-menus {
    display: block;
    width: 100%;
    height: auto;
  }
  #header-nav .mv-contact {
    position: relative;
    display: block;
    width: 100%;
    right: 0;
    height: 56px;
    line-height: 48px;
    background: linear-gradient(to right, #c9ff64 0, #3bff9d 100%);
  }
  #header-nav .mv-contact::before {
    content: none;
  }
  #header-nav::before {
    width: 100%;
    background: none;
    height: auto;
  }
  #header-nav .mv-link {
    color: #fff;
    padding: 13px 0;
  }
  #header-nav .mv-contact span {
    display: initial;
    font-size: 20px;
    font-weight: 700;
  }
  #header-nav .mv-lists {
    justify-content: space-between;
    background: #2e2e2e;
    padding: 0 16px;
  }
  #header-nav .mv-contact span:nth-of-type(3) {
    font-size: 15px;
    margin-left: 5px;
    padding: 3px 5px;
    vertical-align: bottom;
  }
  #contact h2 {
    font-size: 48px;
  }
  #footer {
    padding-bottom: 96px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .affect-lists li {
    padding: 30px 20px;
  }
  #case .case-wrap .img-link {
    margin-left: 40px;
    width: 80%;
  }
  #case .case-wrap .img-link a::before {
    right: 0;
  }
  .merit-top .point-wrap {
    max-width: 670px;
  }
  .merit-top .point-wrap li {
    width: 210px;
    height: 104px;
  }
  .merit-top .point-wrap li a {
    font-size: 18px;
    padding-right: 30px;
  }
  .merit-top .point-wrap li a::before {
    width: 20px;
    height: 20px;
    right: 30px;
  }
  #factor .box-wrap .blue {
    width: 78.6%;
    height: 85vw;
    margin-left: 5%;
  }
  #factor .box-wrap .blue h2 {
    font-size: 3vw;
  }
  #factor .box-wrap .blue p {
    font-size: 1.6vw;
    width: 50%;
    margin-bottom: 18%;
  }
  #factor .box-wrap1 {
    height: 113vw;
  }
  #factor .box-wrap .box2 {
    width: 59.68vw;
    height: 59.68vw;
    right: 11.2vw;
    bottom: 3vw;
  }
  #factor .box-wrap .box2 .txt-content {
    font-size: 1.25vw;
    width: 52%;
    padding-top: 7vw;
  }
  #factor .box-wrap .box2 .txt-content::before,
  #factor .box-wrap2 .white .txt-content::before {
    top: 5vw;
    width: 10px;
  }
  #factor .box-wrap div p.sm {
    font-size: 1.2vw;
    margin-top: 4%;
  }
  #factor .box-wrap2 .white {
    width: 38.67vw;
    height: 38.67vw;
  }
  #factor .box-wrap2 .white p {
    font-size: 1.3vw;
  }
  #factor .box-wrap2 .white .txt-content {
    padding-top: 5vw;
    width: 60%;
  }
  #factor .box-wrap2 {
    height: 91.25vw;
  }
  #factor .box-wrap .box6 {
    left: -6vw;
    bottom: -10vw;
  }
  #factor .box-wrap2 .white .txt-content::before {
    top: 26px;
    width: 10px;
  }
  #factor .box-wrap2 .white .txt-content::after {
    width: 10px;
  }
  #factor .box-wrap .box4 {
    left: -5.5vw;
    bottom: 32vw;
  }
  #factor .box-wrap .box7 {
    bottom: 4vw;
    right: -15.5vw;
  }
  #factor .box-wrap2 .blue p {
    margin-bottom: 9%;
  }
  #factor .box-wrap2 .blue h2 {
    font-size: 2.5vw;
  }
  #factor .box-wrap1 .img-bg {
    width: 28.03vw;
    left: -7vw;
    bottom: 4vw;
  }
  #factor .box-wrap .box3 {
    top: -5%;
    left: -6.7vw;
  }
  #factor .box-wrap1 .twitter-card {
    top: 4vw;
  }
  #factor .box-wrap2 .img-bg2 {
    width: 16.875vw;
  }
  .merit-top .point-wrap a li {
    font-size: 18px;
  }
  .merit-top .point-wrap a::before {
    width: 22px;
    height: 22px;
  }
  .contact-wrapper {
    padding: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  /* factor */
  #factor .box-wrap .box,
  #factor .box-wrap1 .twitter-card,
  #factor .box-wrap .box2,
  #factor .box-wrap2 {
    position: static;
  }
  #factor {
    padding-top: 50vw;
  }
  #factor .box-wrap1 {
    height: auto;
  }
  #factor .box-wrap .box {
    transform: none;
    width: 100%;
    height: auto;
    background: none;
    clip-path: none;
    margin: 0;
  }
  #factor .box-wrap2 {
    margin: 0;
    height: auto;
  }
  #factor .box-wrap div p {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.875;
  }
  #factor .box-wrap2 .white p,
  #factor .box-wrap div.r p {
    width: 100%;
  }
  #factor .box-wrap2 .img-bg2 {
    bottom: auto;
    top: -23vw;
    right: 9vw;
    left: auto;
    width: 28.84%;
  }
  #factor .wrapper {
    background: #167bf2;
    position: relative;
    border-top: 1px solid #167bf2;
    padding-bottom: 24px;
  }
  #factor .wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vw;
    left: 0;
    top: -50vw;
    background: #167bf2;
    clip-path: polygon(50% 0%, 100% 50%, 0% 50%, 0% 50%);
  }
  #factor .box-wrap1 .img-bg {
    top: -36vw;
    width: 61.06%;
    left: -9vw;
  }
  #factor .box-wrap div h2 {
    line-height: 1.83;
    font-size: 24px;
    margin-top: 40px;
  }
  #factor .box-wrap1 .twitter-card,
  #factor .box-wrap .box2 {
    background: #fff;
    padding: 0 24px;
  }
  #factor .box-wrap1 .twitter-card {
    margin-top: 30px;
    padding-bottom: 30px;
    width: 100%;
  }
  #factor .box-wrap .box1 p {
    margin-bottom: 0;
  }
  #factor .box-wrap1 .twitter-card::before,
  #factor .box-wrap .box3::before {
    position: relative;
    content: "";
    border-top: 12px solid #167bf2;
    border-right: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid transparent;
    top: -1px;
  }
  #factor .box-wrap .box2 {
    margin-top: -1px;
  }
  #factor .box-wrap div p.sm {
    margin-top: 0;
    margin-bottom: 30px;
  }
  #factor .box-wrap .box2 .txt-content {
    padding-top: 25px;
  }
  #factor .box-wrap div.blue h2 {
    font-size: 20px;
    margin: 50px auto 30px;
    line-height: 1.9;
  }
  #factor .box-wrap2 .white {
    background: #fff;
    margin-bottom: 8px;
  }
  #factor .box-wrap2 .white .txt-content {
    padding: 45px 30px 15px 30px;
  }
  #factor .box-wrap .box3 {
    margin-top: 30px;
    position: relative;
  }
  #factor .box-wrap2 .white .txt-content::before {
    width: 13px;
    height: 12px;
    top: 25px;
    left: 24px;
  }
  #factor .box-wrap2 .white .txt-content::after {
    right: 18px;
    bottom: -19px;
  }
  #factor .box-wrap1 .img-gear {
    display: none;
  }

  .hbspt-form {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media screen and (max-width: 960px) {
  .mv-nav {
    flex-direction: column;
    overflow: visible;
    align-items: center;
    height: auto;
  }
  .mv-link {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #merit h2 .sub {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }
  #merit h2 .lead {
    font-size: 5.2vw;
  }
  #merit h2 .lead .three {
    width: 5vw;
    margin: 0 0.8vw;
  }
  #merit h2 .lead .small {
    font-size: 4.5vw;
  }
  #merit h2 .lead .large {
    font-size: 6.3vw;
  }
  #affect .fukidashi {
    max-width: 229px;
  }
  #contact h2 {
    font-size: 5vw;
  }

  /* cause */
  #cause h2 .sub {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }
  #cause h2 .lead {
    font-size: 5.2vw;
  }
  #cause h2 .lead .three {
    width: 5vw;
    margin: 0 0.8vw;
  }
  #cause h2 .lead .small {
    font-size: 4.5vw;
  }
  #cause h2 .lead .large {
    font-size: 6.3vw;
  }

  /* measure */
  #measure h2 .sub {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }
  #measure h2 .lead {
    font-size: 5.2vw;
  }
  #measure h2 .lead .three {
    width: 5vw;
    margin: 0 0.8vw;
  }
  #measure h2 .lead .small {
    font-size: 4.5vw;
  }
  #measure h2 .lead .large {
    font-size: 6.3vw;
  }

  /* footer */
  .footer-wrapper table {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }

  .mv-btn-wrapper {
    margin-top: 22px;
  }
  .cta-btn-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
  .btn {
    max-width: 327px;
    font-size: 20px;
    height: 72px;
    line-height: 72px;
  }
  .mv-btn:not(:first-child) {
    margin-top: 20px;
  }
  .btn .btn-innr span {
    font-size: 15px;
  }
  .wrapper {
    padding: 0 22px;
  }
  .progress {
    width: 72px;
  }

  /* mv */
  .mv-link {
    margin-bottom: 0;
  }
  .mv-nav {
    padding: 0 22px;
    margin-bottom: 40px;
  }
  .mv-menus {
    width: 100%;
  }
  .mv-lists {
    white-space: normal;
    justify-content: space-between;
    width: 100%;
  }
  .mv-list {
    font-size: 14px;
    margin-right: 0;
  }
  .mv-content {
    width: 87.2%;
  }
  .mv-content-text .copy1 {
    font-size: 8vw;
    line-height: normal;
  }
  .mv-content-text .copy1 span {
    font-size: 6vw;
  }
  .mv-content-text .copy2 {
    margin: 4vw auto 5.5vw;
    font-size: 9.5vw;
    line-height: normal;
  }
  .brand-logos {
    margin: 110px 0 0;
  }
  #mv .animation-line.line1 {
    width: 30%;
  }
  #mv .animation-line.line2 {
    width: 28%;
  }
  #mv .animation-line.line4 {
    display: none;
  }
  #mv .animation-line.line3 {
    width: 56.68%;
    right: -7vw;
    animation: fade-right 0.1s 1.1s forwards ease-out;
  }
  #mv .animation-line.line5 {
    bottom: 5px;
    left: 27.3vw;
    animation: fade-left 0.1s 1.1s forwards ease-out;
  }
  #mv .gear-1 {
    max-width: 52px;
    width: 13.86%;
    right: 0;
    top: 20%;
  }
  #mv .gear-3 {
    max-width: 120px;
    width: 31.25%;
    bottom: 10%;
    left: 4vw;
  }

  /* common-contact */
  .common-contact {
    padding: 50px 0 40px;
  }
  .common-contact .txt {
    font-size: 20px;
    line-height: 1.9;
    margin: 20px auto 30px;
    max-width: 314px;
  }
  .common-contact .hand {
    width: 28px;
  }
  .common-contact .ttl {
    width: 178px;
  }

  /* merit */
  #merit {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .merit-top .txt {
    font-size: 18px;
    letter-spacing: 0;
  }
  .merit-top .point-wrap {
    flex-direction: column;
    align-items: center;
  }
  .merit-top .point-wrap li {
    height: 80.96px;
    font-size: 22px;
    width: 105.9%;
    max-width: 354px;
    margin-bottom: 8px;
    transform: none !important;
  }
  .merit-top .point-wrap li:first-of-type {
    background: center / contain url(../../img/speedup/sp/merit-point1.svg)
      no-repeat;
    left: 0;
  }
  .merit-top .point-wrap li:nth-of-type(2) {
    background: center / contain url(../../img/speedup/sp/merit-point2.svg)
      no-repeat;
  }
  .merit-top .point-wrap li:nth-of-type(3) {
    background: center / contain url(../../img/speedup/sp/merit-point3.svg)
      no-repeat;
    right: 0;
  }
  .merit-top .point-wrap li a::before {
    width: 24px;
    height: 24px;
    right: 50px;
    top: 39px;
  }
  .merit-top .point-wrap li a {
    font-size: 22px;
    text-align: left;
    top: 7px;
    transform: none;
  }
  .merit-top .point-wrap li::after,
  .merit-top .point-wrap li::before,
  .merit-top .point-wrap li a::after {
    content: none;
  }
  .merit-top .point-wrap li a {
    background: none !important;
    justify-content: flex-start;
    padding-left: 40px;
  }
  #merit h2 {
    max-width: 306.76px;
    margin: 22px auto 12px;
  }
  #merit h2 .sub {
    font-size: 20.5px;
    margin-bottom: 4px;
    line-height: 1.8;
  }
  #merit h2 .lead {
    font-size: 34px;
    line-height: 1.41;
  }
  #merit h2 .lead .small {
    font-size: 26px;
  }
  #merit h2 .lead .three {
    width: 29.8px;
    margin: 0 3px;
  }
  #merit h2 .lead .three img {
    transform: translate(0px, 12px);
  }
  #merit h2 .lead .large {
    font-size: 40px;
  }
  .merit-top {
    margin-bottom: 99px;
  }
  #merit .point {
    padding-top: 30px;
    margin-top: -30px;
  }
  #merit .point .img-bg-gear {
    width: 29.45%;
    top: -45px;
  }
  #merit .point .num {
    max-width: 125px;
  }
  #merit #point1 h2 {
    max-width: 302px;
    width: 92.6%;
    margin: 10.6px auto 20.8px;
  }
  #merit .point .txt {
    font-size: 16px;
    text-align: left;
    line-height: 1.875;
    letter-spacing: 0;
  }
  .about-movie {
    margin: 30px auto 0;
  }
  .about-movie::before {
    width: 72px;
    height: 72px;
  }
  .about-movie-txt {
    margin-top: 10px;
    font-size: 14px;
  }
  #merit #point1 {
    margin-bottom: 95px;
  }
  #merit .point .img-bg-gear-r {
    right: 0;
  }
  #merit #point2 h2 {
    max-width: 315.77px;
    width: 97.16%;
    margin: 10px auto 20px;
  }
  #merit #point2 .note {
    flex-direction: column;
  }
  #merit .point2-lists {
    margin: 30px auto 24px;
  }
  #merit .point2-lists li {
    width: 49.23%;
    padding: 18px 0 24px;
    margin-bottom: 9px;
  }
  #merit .point2-lists li .circle {
    width: 72px;
    margin-bottom: 12px;
  }
  #merit .point2-lists li h3 {
    line-height: 1;
  }
  #merit #point2 {
    margin-bottom: 95px;
  }
  #merit #point3 h2 {
    max-width: 262px;
    width: 80.61%;
    margin: 10px auto 20.8px;
  }
  #merit #point3 .row {
    flex-direction: column;
  }
  #merit #point3 .w480,
  #merit #point3 .w540 {
    width: 100%;
    max-width: unset;
  }
  #merit #point3 .row1 .l .sm {
    margin: 30px auto;
    padding-left: 49px;
    font-size: 12px;
  }
  #merit #point3 .row1 .l .sm::before {
    width: 35px;
    height: 31.96px;
  }
  #merit #point3 .row1 .w540 {
    width: 100vw;
    margin-left: -22px;
  }
  #merit #point3 .row1 {
    margin-bottom: 30px;
  }
  #merit #point3 .w480.r .txt {
    margin-bottom: 30px;
  }
  #merit #point3 .w480.r img {
    margin-bottom: 16px;
  }
  #merit #point3 {
    margin-bottom: 0;
  }

  /* cause */
  #cause h2 {
    max-width: 306.76px;
    margin: 22px auto 12px;
  }
  #cause h2 .sub {
    font-size: 20.5px;
    margin-bottom: 4px;
    line-height: 1.8;
  }
  #cause h2 .lead {
    font-size: 32px;
    line-height: 1.41;
  }
  #cause h2 .lead .small {
    font-size: 26px;
  }
  #cause h2 .lead .three {
    width: 29.8px;
    margin: 0 3px;
  }
  #cause h2 .lead .three img {
    transform: translate(0px, 12px);
  }
  #cause h2 .lead .large {
    font-size: 40px;
  }
  .cause-top {
    margin-bottom: 40px;
  }
  .cause__text {
    margin-bottom: 40px;
  }
  .cause__content__title {
    margin-bottom: 32px;
  }
  .cause__content__column {
    flex-wrap: wrap;
    gap: 40px;
  }
  .cause__content__column__item {
    padding: 40px 20px;
  }
  .cause__content__column__text {
    font-size: 18px;
  }
  .cause__content__column__attr {
    font-size: 14px;
  }
  .cause__content__column__list__item {
    font-size: 14px;
  }

  /* measure */
  #measure {
    padding: 40px 20px;
  }
  #measure h2 {
    max-width: 306.76px;
    margin: 22px auto 12px;
  }
  #measure h2 .sub {
    font-size: 20.5px;
    margin-bottom: 4px;
    line-height: 1.8;
  }
  #measure h2 .lead {
    font-size: 34px;
    line-height: 1.41;
  }
  #measure h2 .lead .small {
    font-size: 26px;
  }
  #measure h2 .lead .three {
    width: 29.8px;
    margin: 0 3px;
  }
  #measure h2 .lead .three img {
    transform: translate(0px, 12px);
  }
  #measure h2 .lead .large {
    font-size: 40px;
  }
  .measure-top {
    margin-bottom: 40px;
  }
  .measure__text {
    margin-bottom: 40px;
  }
  .measure__content__title {
    margin-bottom: 32px;
  }
  .measure__content__column {
    flex-wrap: wrap;
    gap: 40px;
  }
  .measure__content__column__inner {
    padding: 24px 20px;
  }
  .measure__content__column__text {
    font-size: 18px;
  }
  .measure__content__column__list__item {
    font-size: 14px;
  }
  .webvital .lead .large {
    font-size: 40px !important;
  }
  .webvital__item {
    gap: 24px;
    padding: 30px 20px;
  }
  .webvital__item__img {
    width: 100%;
  }
  .webvital__item__right {
    width: 100%;
  }
  .webvital__item__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .webvital__item__text {
    font-size: 16px;
  }

  /* affect */
  #affect {
    padding-top: 40px;
  }
  #affect .wrapper {
    padding-top: 75px;
    padding-left: 0;
    padding-right: 0;
  }
  #affect .ttl-wrap h2 {
    margin-left: 0;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1.83;
  }
  #affect .txt {
    margin: 30px 0 40px;
    font-size: 16px;
    line-height: 1.875;
  }
  .affect-lists {
    flex-direction: column;
  }
  .affect-lists li {
    width: 100%;
    padding: 49px 32px 32px;
  }
  .affect-lists li img {
    width: 56px;
    margin: 0 20px 0 0;
  }
  .affect-list-image {
    float: left;
  }
  .affect-list-title {
    margin-bottom: 21px;
  }
  #affect .fukidashi {
    width: 61.14%;
    right: -33px;
    top: -20px;
  }

  /* case */
  #case {
    padding: 60px 0 15px;
  }
  #case h2 span {
    width: 130px;
    margin-bottom: 2px;
  }
  #case h2 p {
    font-size: 20px;
  }
  #case .case-wrap {
    margin-top: 30px;
    flex-direction: column;
  }
  #case .case-wrap div {
    width: 100%;
    margin-bottom: 25px;
  }
  #case .case-wrap .img-link {
    margin: 0 auto;
    width: auto;
  }
  #case .case-wrap div a {
    padding-right: 0;
  }
  #case .case-wrap div a::before {
    content: none;
  }
  #case .case-wrap div a img {
    width: 22px;
    display: inline-block;
    vertical-align: sub;
    margin-left: 6px;
  }

  /* contact */
  #contact {
    padding: 50px 0 0;
  }
  #contact h2 {
    font-size: 28px;
  }
  .contact-wrapper .txt .titleText {
    font-size: 14px;
  }
  .contact-wrapper .txt .titleText + p {
    font-size: 12px;
  }
  .contact-wrapper .txt {
    margin: 25px auto;
  }
  .hbspt-form {
    padding: 0 22px 69px;
  }
  .hs-form-field label {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .hs-fieldtype-textarea {
    margin-top: 24px;
  }
  .hs-fieldtype-textarea .hs-field-desc {
    line-height: 1.857;
  }
  .hs-fieldtype-textarea .input {
    margin: 10px 0 0;
  }
  .hs_privacypolicy {
    margin: 40px auto;
  }
  .hs-form-booleancheckbox a {
    line-height: 2;
  }

  #call .wrapper .call-img {
    top: auto;
    width: 44.53%;
    bottom: -25px;
  }
  .call-text a img {
    margin-bottom: 21.5px;
  }
  .call-text,
  .call-text .time {
    margin-left: 0;
  }
  #call .flex {
    flex-direction: column;
  }
  .call-text .here {
    text-align: center;
    letter-spacing: 0.04em;
  }
  #call .parts {
    top: -39px;
    left: 20px;
    width: 72.53%;
    max-width: 272.96px;
  }

  /* footer */
  .footer-wrapper {
    padding: 56px 22px 0;
    flex-direction: column;
    align-items: center;
  }
  .footer-wrapper table tr {
    display: flex;
    text-align: center;
    flex-direction: column;
  }
  .footer-wrapper table th {
    width: 100%;
    font-size: 14px;
  }
  .footer-wrapper table td {
    width: auto;
    font-size: 14px;
    margin-bottom: 30px;
  }
  .footer-logo {
    width: 172.93px;
  }
  .footer-wrapper table {
    margin-bottom: 0;
  }
  .footer-credit .w1080 {
    flex-direction: column;
    align-items: center;
  }
  .footer-credit small {
    margin-top: 14px;
  }

  #factor .box-wrap .box2 .txt-content::before {
    top: 11px;
  }
  #factor .box-wrap .box2 .sm {
    margin-top: 20px;
  }
  #factor .box-wrap .box3::before {
    position: absolute;
  }
}

@media screen and (max-width: 375px) {
  .mv-list {
    font-size: 3.7vw;
  }
}

@media screen and (max-width: 364px) {
  #merit h2 .sub {
    font-size: 17px;
  }
  #merit h2 .lead {
    font-size: 30px;
  }
  #merit h2 .lead .large {
    font-size: 35px;
  }
}

@media screen and (max-width: 320px) {
  .btn {
    max-width: 300px;
  }
  .merit-top .point-wrap li a {
    font-size: 18px;
    padding-right: 40px;
  }
  .merit-top .point-wrap li a::before {
    right: 35px;
  }
  #affect .ttl-wrap h2 {
    font-size: 22px;
  }
  #factor .box-wrap1 .twitter-card {
    padding: 0px 5px;
  }
}

/* 共通ヘッダー導入に伴う調整 */
@media screen and (min-width: 1171px) {
  #header-nav {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .mv-nav {
    opacity: 0;
    visibility: hidden;
  }
}

/* 会社紹介動画 */
#movie {
  margin-top: 100px;
  margin-bottom: 120px;
}
#movie .movie-youtube {
  margin: 0 auto;
}
#movie .movie-youtube lite-youtube {
  margin: 0 auto;
}
#movie .movie-youtube .movie-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
}
#movie .movie-youtube .text {
  max-width: 720px;
  font-size: 15px;
  margin: 0 auto 60px;
}


@media screen and (max-width: 767px) {
  #movie {
    margin-bottom: 60px;
    margin-top: 50px;
  }
  #movie .movie-youtube .movie-title{
    font-size: 22px;
    margin-bottom: 30px;
  }
  #movie .movie-youtube .text{
    margin: 0 auto 30px;
  }
}
