@charset "UTF-8";
/* 共通の要素--------------------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
  transition: 0.3s;
}
a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

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

*:focus {
  outline: none;
}

* {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.pc__hide {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc__hide {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab {
    display: block;
  }
}
.tab__hide {
  display: block;
}
@media screen and (max-width: 1024px) {
  .tab__hide {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
.sp__hide {
  display: block;
}
@media screen and (max-width: 1024px) {
  .sp__hide {
    display: none;
  }
}

.wrap {
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

.scroll {
  scroll-margin-top: 4.6vw;
}
@media screen and (max-width: 1450px) {
  .scroll {
    scroll-margin-top: 5.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .scroll {
    scroll-margin-top: 9.7vw;
  }
}
@media screen and (max-width: 767px) {
  .scroll {
    scroll-margin-top: 20vw;
  }
}

.main {
  background-color: #000;
}

/*ヘッダー*/
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  color: #fff;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
}
.header__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__inner {
  display: flex;
  align-items: center;
}
.header__box {
  padding: 15px 0 15px 25px;
}
@media screen and (max-width: 1450px) {
  .header__box {
    padding: 15px 0 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .header__box {
    padding: 10px 15px;
  }
}
.header__logo {
  width: 10vw;
}
@media screen and (max-width: 1450px) {
  .header__logo {
    width: 12vw;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 15.6vw;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 32vw;
  }
}
.header__text {
  font-size: 0.68vw;
  margin-top: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1450px) {
  .header__text {
    font-size: 0.75vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__text {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 767px) {
  .header__text {
    font-size: 2.66vw;
  }
}
.header__ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__ul {
    display: none;
  }
}
.header__li {
  border-right: solid 1px #707070;
  padding-right: 1.5vw;
  margin-right: 1.5vw;
}
@media screen and (max-width: 1450px) {
  .header__li {
    font-size: 0.75vw;
    padding-right: 1vw;
    margin-right: 1vw;
  }
}
.header__li:nth-of-type(2) {
  border: none;
  padding-right: 0;
  margin-right: 1vw;
}
.header__li:nth-of-type(3) {
  border-left: solid 1px #707070;
  padding-left: 1.5vw;
  margin-left: 1.5vw;
}
@media screen and (max-width: 1450px) {
  .header__li:nth-of-type(3) {
    padding-left: 1vw;
    margin-left: 1vw;
  }
}
.header__li:last-of-type {
  border: none;
  padding-right: 0;
}
.header__menu {
  font-size: 0.875vw;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1450px) {
  .header__menu {
    font-size: 0.96vw;
  }
}
.header__menu::after {
  position: absolute;
  bottom: -35px;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background: #50B7E8;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header__menu:hover {
  color: #50B7E8;
  opacity: 1;
}
.header__menu:hover::after {
  transform: scale(1, 1);
}
.header__submenu {
  font-size: 0.75vw;
  color: #4D4D4D;
  margin-left: 18px;
  margin-top: 3px;
}
@media screen and (max-width: 1450px) {
  .header__submenu {
    font-size: 0.82vw;
  }
}
.header__link {
  font-size: 0.875vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1.5vw;
  position: relative;
}
.header__link::after {
  position: absolute;
  bottom: -19px;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background: #50B7E8;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header__link:last-of-type {
  margin-right: 0;
}
.header__link:hover {
  color: #50B7E8;
  opacity: 1;
}
.header__link:hover::after {
  transform: scale(1, 1);
}
.header__arrow {
  max-width: 10px;
  margin-right: 8px;
}
.header__arrow--02 {
  margin-top: 10px;
}
.header__button {
  display: flex;
}
.header__download {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875vw;
  padding: 26px;
  background: linear-gradient(to right, #3B76BA, #51BBEB);
  position: relative;
}
@media screen and (max-width: 1450px) {
  .header__download {
    font-size: 0.96vw;
    padding: 26px 1vw;
  }
}
@media screen and (max-width: 1024px) {
  .header__download {
    flex-direction: column;
    font-size: 1.3vw;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__download {
    font-size: 2.66vw;
    padding: 2.66vw;
  }
}
.header__download::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.3);
}
.header__download:hover {
  color: #000000;
  opacity: 1;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header__download:hover {
    color: #fff;
    background: linear-gradient(to right, #3B76BA, #51BBEB);
  }
}
.header__download:hover::before {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__download:hover::before {
    display: inline-block;
  }
}
.header__download:hover .header__svg {
  stroke: #000;
  fill: #000;
}
@media screen and (max-width: 1024px) {
  .header__download:hover .header__svg {
    stroke: #fff;
    fill: #fff;
  }
}
.header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  font-size: 1vw;
  background: linear-gradient(to right, #713BBA, #EB5151);
  position: relative;
}
@media screen and (max-width: 1450px) {
  .header__contact {
    font-size: 1.1vw;
    padding: 26px 1vw;
  }
}
@media screen and (max-width: 1024px) {
  .header__contact {
    flex-direction: column;
    font-size: 1.3vw;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__contact {
    font-size: 2.66vw;
    padding: 2.66vw;
  }
}
.header__contact::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.3);
}
.header__contact:hover {
  color: #000000;
  opacity: 1;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header__contact:hover {
    color: #fff;
    background: linear-gradient(to right, #713BBA, #EB5151);
  }
}
.header__contact:hover::before {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__contact:hover::before {
    display: inline-block;
  }
}
.header__contact:hover .header__svg {
  stroke: #000;
  fill: #000;
}
@media screen and (max-width: 1024px) {
  .header__contact:hover .header__svg {
    stroke: #fff;
    fill: #fff;
  }
}
.header__svg {
  stroke: #fff;
  fill: #fff;
  width: 1.3vw;
  margin-right: 5px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header__svg {
    margin-right: 0;
    margin-bottom: 7px;
    width: 2.7vw;
  }
}
@media screen and (max-width: 767px) {
  .header__svg {
    width: 5.6vw;
  }
}

/*メニューボタン*/
.menu {
  position: fixed;
  top: 100px;
  right: -17px;
  z-index: 100;
  transform: rotate(90deg);
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  display: none;
}
@media screen and (max-width: 1024px) {
  .menu {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .menu {
    top: 26vw;
  }
}
.menu__box {
  background-color: #50B7E8;
  border-radius: 0 0 8px 8px;
  font-size: 1.4rem;
  line-height: 2;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu__title {
  color: #fff;
}
.menu__close {
  width: 5.5px;
  margin-right: 5px;
  transform: rotate(-90deg);
}

/*メニュー内*/
.slide {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.slide__mask {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.69);
  position: absolute;
  display: none;
}
.slide__outer {
  width: 100%;
  right: -2000px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px;
  max-width: 320px;
  height: calc(var(--vh, 1vh) * 100);
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .slide__outer {
    max-width: 80vw;
  }
}
.slide__menu {
  position: absolute;
  left: -55px;
  z-index: 100;
  transform: rotate(90deg);
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.slide__box {
  background-color: #50B7E8;
  border-radius: 0 0 8px 8px;
  max-width: 75px;
  font-size: 1.4rem;
  line-height: 2;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide__title {
  color: #fff;
}
.slide__open {
  width: 5.5px;
  margin-right: 5px;
  transform: rotate(90deg);
}
.slide__ul {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.slide__li {
  font-size: 1.8vw;
  position: relative;
  padding-left: 15px;
  margin-bottom: 25px;
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .slide__li {
    font-size: 3.7vw;
  }
}
.slide__li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  background-image: url(../images/header__arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.slide__li:hover {
  color: #79bef2;
  opacity: 1;
}
.slide__button {
  max-width: 250px;
  width: 100%;
  background-color: #f2a130;
  border: #f2a130 solid 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 10px;
  border-radius: 150px;
}
.slide__button:hover {
  opacity: 1;
}
.slide__group {
  margin: 0 15px 0 5px;
}
.slide__unit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.slide__number {
  color: #fff34b;
  font-weight: bold;
  font-size: 1.4rem;
}
.slide__icon {
  max-width: 55px;
  margin-top: -15px;
}
.slide__span {
  color: #fff34b;
  font-weight: bold;
  font-size: 1.4rem;
}
.slide__btn {
  font-weight: bold;
  color: #fff;
  font-size: 1.4rem;
}
.slide__subtext {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  margin: 0 5px;
}
.slide__bar {
  max-width: 4px;
}
.slide__arrow {
  max-width: 6px;
}
.slide__in {
  right: 0;
  transition: 0.7s;
}
.slide__none {
  overflow: hidden;
}

/*メインビジュアル*/
.hero {
  background-image: url(../images/hero.jpg);
  background-size: cover;
  padding: 12.8vw 15px 27.5vw;
  font-weight: bold;
  color: #fff;
  position: relative;
}
.hero:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 15px 0 #000;
}
@media screen and (max-width: 1024px) {
  .hero {
    padding: 0;
    background-image: none;
  }
}
.hero__img--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hero__img--sp {
    display: block;
  }
}
.hero__outer {
  width: 75vw;
  margin: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1450px) {
  .hero__outer {
    width: 82vw;
  }
}
@media screen and (max-width: 1024px) {
  .hero__outer {
    display: none;
  }
}
.hero__group {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .hero__group {
    display: none;
  }
}
.hero__group--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hero__group--sp {
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8.6vw 15px 10px;
  }
}
@media screen and (max-width: 767px) {
  .hero__group--sp {
    padding-top: 17.8vw;
    align-items: flex-start;
  }
}
.hero__box {
  margin-left: 13px;
}
.hero__new {
  background: linear-gradient(to bottom, #713BBA, #EB5151);
  border-radius: 50%;
  width: 4.4vw;
  height: 4.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1vw;
  transform: rotate(-10deg);
}
@media screen and (max-width: 1450px) {
  .hero__new {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .hero__new {
    width: 8.2vw;
    height: 8.2vw;
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .hero__new {
    width: 16.8vw;
    height: 16.8vw;
    font-size: 4vw;
  }
}
.hero__item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .hero__item {
    font-size: 1.1rem;
  }
}
.hero__label {
  background-image: url(../images/hero__label.png);
  background-size: 100% 100%;
  width: 80px;
  padding: 5px 10px;
  position: relative;
  color: #000;
}
@media screen and (max-width: 767px) {
  .hero__label {
    width: 70px;
  }
}
.hero__mini {
  padding: 5px 15px;
  background-color: #000;
  max-width: 227px;
  margin-left: -10px;
}
@media screen and (max-width: 1024px) {
  .hero__mini {
    max-width: 100%;
    background-color: inherit;
  }
}
.hero__subitem {
  font-size: 1.5vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1450px) {
  .hero__subitem {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .hero__subitem {
    font-size: 2.6vw;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .hero__subitem {
    font-size: 5.3vw;
  }
}
.hero__title {  
  width: 33.5vw;
  margin:5rem 0 5rem;
}
@media screen and (max-width: 1024px) {
  .hero__title {
    width: 36vw;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .hero__title {
    width: 73vw;
  }
}
.hero__title--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hero__title--sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
  }
}
.hero__text {
  font-size: 1.1vw;
  margin-top: 1.8vw;
  margin-bottom: 13px;
}
@media screen and (max-width: 1450px) {
  .hero__text {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .hero__text {
    margin-top: 45vw;
    text-align: center;
    font-size: 2vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .hero__text {
    font-size: 4.2vw;
  }
}
.hero__text--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hero__text--sp {
    display: block;
    position: absolute;
    bottom: 7.8vw;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
  }
}
@media screen and (max-width: 767px) {
  .hero__text--sp {
    bottom: 16vw;
  }
}
.hero__ul {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 15px 30px 15px 25px;
  width: 34.5vw;
  font-size: 1vw;
  line-height: 2.3;
  margin-bottom: 2.75vw;
  font-weight: normal;
}
@media screen and (max-width: 1450px) {
  .hero__ul {
    font-size: 0.95vw;
    padding: 1vw 1.5vw 1vw 1.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .hero__ul {
    display: none;
  }
}
.hero__ul--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hero__ul--sp {
    background-color: rgba(51, 51, 51, 0.4);
    color: #fff;
    display: block;
    font-size: 1.8vw;
    width: 48vw;
    margin: -6.5vw auto 2.6vw;
    padding: 10px 15px 10px 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .hero__ul--sp {
    font-size: 3.7vw;
    width: 100%;
    padding-left: 8vw;
    margin-top: -13vw;
    margin-bottom: 5.3vw;
  }
}
.hero__list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .hero__list {
    position: relative;
  }
}
.hero__span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  background: linear-gradient(to bottom, #3B76BA, #51BBEB);
}
@media screen and (max-width: 1024px) {
  .hero__span {
    position: absolute;
    left: -20px;
    top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .hero__span {
    top: 2vw;
    left: -5.3vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.hero__unit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 31vw;
}
@media screen and (max-width: 1024px) {
  .hero__unit {
    display: none;
  }
}
.hero__unit--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hero__unit--sp {
    display: block;
    margin: auto;
    color: #fff;
    font-weight: bold;
    padding-bottom: 3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .hero__unit--sp {
    width: 62.5vw;
    padding-bottom: 8vw;
  }
}
.hero__button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875vw;
  padding: 1.25vw;
  width: 14vw;
  border-radius: 60px;
  background: linear-gradient(to right, #713BBA, #EB5151);
  position: relative;
}
@media screen and (max-width: 1450px) {
  .hero__button {
    font-size: 1vw;
    padding: 1.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .hero__button {
    width: 100%;
    font-size: 1.8vw;
    padding: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .hero__button {
    font-size: 3.7vw;
    padding: 5.3vw;
  }
}
.hero__button::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1vw;
  margin: auto;
  background-image: url(../images/footer__arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .hero__button::before {
    right: 2.2vw;
  }
}
@media screen and (max-width: 767px) {
  .hero__button::before {
    right: 4.5vw;
  }
}
.hero__button:hover {
  color: #000000;
  opacity: 1;
  background: #fff;
}
.hero__button:hover::before {
  background-image: url(../images/footer__arrow--black.svg);
}
@media screen and (max-width: 1024px) {
  .hero__button:hover::before {
    background-image: url(../images/footer__arrow.svg);
  }
}
@media screen and (max-width: 1024px) {
  .hero__button:hover {
    color: #fff;
    background: linear-gradient(to right, #713BBA, #EB5151);
  }
}
.hero__button--02 {
  background: linear-gradient(to right, #3B76BA, #51BBEB);
}
@media screen and (max-width: 1024px) {
  .hero__button--02 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .hero__button--02:hover {
    color: #fff;
    background: linear-gradient(to right, #3B76BA, #51BBEB);
  }
}
.hero__padding {
  padding: 0 15px;
}

/*Terra Lidar Xとは？*/
.overview {
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0 15px;
}
.overview__bg {
  display: none;
}
@media screen and (max-width: 1024px) {
  .overview__bg {
    display: block;
    position: relative;
    margin-bottom: -11.3vw;
  }
  .overview__bg:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 0 0 10px 0 #000;
  }
}
.overview__outer {
  width: 75vw;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1450px) {
  .overview__outer {
    width: 82vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__outer {
    width: 47.9vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__outer {
    width: 100%;
  }
}
.overview__title {
  font-size: 4vw;
  color: #50B7E8;
}
@media screen and (max-width: 1450px) {
  .overview__title {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__title {
    font-size: 4.1vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .overview__title {
    font-size: 8.5vw;
  }
}
.overview__text {
  font-size: 1.5vw;
  margin-bottom: 5.8vw;
}
@media screen and (max-width: 1450px) {
  .overview__text {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__text {
    font-size: 2.6vw;
    margin-bottom: 6.5vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__text {
    font-size: 5.3vw;
    margin-bottom: 13vw;
  }
}
.overview__message {
  font-size: 2vw;
  line-height: 1.4;
  margin-bottom: 7.25vw;
}
@media screen and (max-width: 1450px) {
  .overview__message {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__message {
    font-size: 2.3vw;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__message {
    font-size: 4.8vw;
    margin-bottom: 8vw;
  }
}
.overview__image {
  position: absolute;
  z-index: 1;
  top: -117px;
  right: -235px;
  width: 58vw;
}
@media screen and (max-width: 1450px) {
  .overview__image {
    top: -8vw;
    right: -16vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__image {
    display: none;
  }
}
.overview__image--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .overview__image--sp {
    display: block;
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-bottom: 5.2vw;
    top: 0;
    right: 0;
  }
}
.overview__img--sp {
  width: 63vw;
  margin-left: 1.9vw;
}
@media screen and (max-width: 767px) {
  .overview__img--sp {
    width: 121vw;
    margin-left: 4vw;
  }
}
.overview__subtext {
  margin-top: 13px;
  font-size: 0.875vw;
  text-align: center;
}
@media screen and (max-width: 1450px) {
  .overview__subtext {
    font-size: 0.96vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__subtext {
    font-size: 1.5vw;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .overview__subtext {
    font-size: 3.2vw;
  }
}
.overview__subtitle {
  font-size: 1.8vw;
  color: #50B7E8;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1450px) {
  .overview__subtitle {
    font-size: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__subtitle {
    font-size: 2.6vw;
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__subtitle {
    font-size: 5.3vw;
    margin-bottom: 5.3vw;
  }
}
.overview__unit {
  display: flex;
  margin-bottom: 5vw;
}
@media screen and (max-width: 1024px) {
  .overview__unit {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .overview__unit {
    margin-bottom: 16vw;
  }
}
.overview__item {
  width: 47.75vw;
  padding: 1.5vw 2.5vw;
  background-color: #1A1A1A;
  border-radius: 12px;
}
@media screen and (max-width: 1450px) {
  .overview__item {
    width: 52.7vw;
    padding: 1.7vw 2.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__item {
    width: 100%;
    padding: 20px 15px;
    margin-bottom: 15px;
  }
}
.overview__item--02 {
  width: 25.6vw;
  padding: 1.5vw 2.1vw 2vw;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 1450px) {
  .overview__item--02 {
    width: 28vw;
    padding: 1.7vw 2.2vw 2vw;
    margin-bottom: 1.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__item--02 {
    width: 100%;
    padding: 20px 20px 25px;
    margin-bottom: 15px;
  }
}
.overview__item--02:last-of-type {
  margin-bottom: 0;
}
.overview__category {
  font-size: 1.375vw;
  color: #50B7E8;
  margin-bottom: 10px;
}
@media screen and (max-width: 1450px) {
  .overview__category {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__category {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__category {
    font-size: 4.8vw;
  }
}
.overview__subcategory {
  font-size: 0.875vw;
  background-color: #292929;
  padding: 10px;
  margin-bottom: 1.25vw;
  font-weight: 500;
}
@media screen and (max-width: 1450px) {
  .overview__subcategory {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__subcategory {
    font-size: 1.8vw;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .overview__subcategory {
    font-size: 3.7vw;
  }
}
.overview__subcategory--02 {
  margin-bottom: 10px;
}
.overview__system {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-row-gap: 30px;
  border-left: #707070 2px dotted;
  border-right: #707070 2px dotted;
}
@media screen and (max-width: 1024px) {
  .overview__system {
    padding: 0 25px;
    grid-row-gap: 20px;
  }
}
.overview__mass {
  width: 33.3333333333%;
  text-align: center;
  border-right: #707070 2px dotted;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .overview__mass {
    width: 100%;
    border-right: none;
    border-bottom: #707070 2px dotted;
    padding-bottom: 25px;
  }
}
.overview__mass:nth-of-type(3) {
  border-right: none;
}
.overview__mass:last-of-type {
  border-right: none;
}
.overview__mass--01 {
  width: 8.9vw;
}
@media screen and (max-width: 1450px) {
  .overview__mass--01 {
    width: 9.6vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__mass--01 {
    width: calc(50% - 2px);
    border-right: none;
    border-bottom: #707070 2px dotted;
    position: relative;
  }
  .overview__mass--01::before {
    border-right: 2px dotted #707070;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 12vw;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .overview__mass--01::before {
    height: 25vw;
  }
}
.overview__mass--02 {
  width: 7vw;
}
@media screen and (max-width: 1450px) {
  .overview__mass--02 {
    width: 7.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__mass--02 {
    width: 50%;
    border-right: none;
    border-bottom: #707070 2px dotted;
  }
}
.overview__mass--03 {
  width: 7.4vw;
}
@media screen and (max-width: 1450px) {
  .overview__mass--03 {
    width: 8.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__mass--03 {
    width: calc(50% - 2px);
    border-right: none;
    border-bottom: #707070 2px dotted;
    position: relative;
  }
  .overview__mass--03::before {
    border-right: 2px dotted #707070;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 12vw;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .overview__mass--03::before {
    height: 25vw;
  }
}
.overview__mass--04 {
  width: 6.8vw;
}
@media screen and (max-width: 1450px) {
  .overview__mass--04 {
    width: 7.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__mass--04 {
    width: 50%;
    border-right: none;
    border-bottom: #707070 2px dotted;
  }
}
.overview__mass--05 {
  width: 12vw;
}
@media screen and (max-width: 1450px) {
  .overview__mass--05 {
    width: 13vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__mass--05 {
    width: 100%;
    border-right: none;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.overview__list {
  line-height: 1.5;
}
.overview__list--01 {
  font-size: 0.875vw;
  margin-bottom: 5px;
}
@media screen and (max-width: 1450px) {
  .overview__list--01 {
    font-size: 0.93vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__list--01 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__list--01 {
    font-size: 3.7vw;
  }
}
.overview__list--02 {
  font-size: 0.93vw;
  color: #666666;
  margin-bottom: 6px;
}
@media screen and (max-width: 1450px) {
  .overview__list--02 {
    font-size: 1vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__list--02 {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__list--02 {
    font-size: 4vw;
  }
}
.overview__list--03 {
  font-size: 1vw;
}
@media screen and (max-width: 1450px) {
  .overview__list--03 {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__list--03 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__list--03 {
    font-size: 4.2vw;
  }
}
.overview__list--04 {
  font-size: 1.25vw;
  line-height: 1;
}
@media screen and (max-width: 1450px) {
  .overview__list--04 {
    font-size: 1.37vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__list--04 {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__list--04 {
    font-size: 5.3vw;
  }
}
.overview__list--05 {
  font-size: 1.5vw;
}
@media screen and (max-width: 1450px) {
  .overview__list--05 {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__list--05 {
    font-size: 3.1vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__list--05 {
    font-size: 6.4vw;
  }
}
.overview__list--06 {
  font-size: 1.875vw;
}
@media screen and (max-width: 1450px) {
  .overview__list--06 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__list--06 {
    font-size: 3.9vw;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .overview__list--06 {
    font-size: 8vw;
  }
}
.overview__icon {
  margin: auto;
}
.overview__icon--01 {
  width: 1.25vw;
}
@media screen and (max-width: 1024px) {
  .overview__icon--01 {
    width: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__icon--01 {
    width: 5.3vw;
  }
}
.overview__icon--02 {
  width: 1.5vw;
}
@media screen and (max-width: 1024px) {
  .overview__icon--02 {
    width: 2.7vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__icon--02 {
    width: 5.6vw;
  }
}
.overview__icon--03 {
  width: 1.5vw;
}
@media screen and (max-width: 1024px) {
  .overview__icon--03 {
    width: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__icon--03 {
    width: 6.6vw;
  }
}
.overview__icon--04 {
  width: 1.25vw;
}
@media screen and (max-width: 1024px) {
  .overview__icon--04 {
    width: 2.4vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__icon--04 {
    width: 5.3vw;
  }
}
.overview__icon--05 {
  width: 2vw;
}
@media screen and (max-width: 1024px) {
  .overview__icon--05 {
    width: 4.1vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__icon--05 {
    width: 8.5vw;
  }
}
.overview__txt {
  font-size: 1vw;
}
@media screen and (max-width: 1450px) {
  .overview__txt {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__txt {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__txt {
    font-size: 4.2vw;
  }
}
.overview__subunit {
  margin-left: 1.875vw;
}
@media screen and (max-width: 1450px) {
  .overview__subunit {
    margin-left: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__subunit {
    width: 100%;
    margin-left: 0;
  }
}
.overview__flex {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .overview__flex {
    flex-direction: column;
  }
}
.overview__box {
  width: 100%;
  margin-left: 1vw;
}
@media screen and (max-width: 1024px) {
  .overview__box {
    margin-left: 0;
  }
}
.overview__picture {
  width: 7.8vw;
}
@media screen and (max-width: 1450px) {
  .overview__picture {
    width: 8.6vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__picture {
    width: 100%;
    margin-bottom: 25px;
  }
}
.overview__heading {
  color: #50B7E8;
  font-size: 1.5vw;
  display: flex;
  align-items: center;
  border-bottom: #50B7E8 solid 2px;
  padding-bottom: 10px;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 1450px) {
  .overview__heading {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__heading {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__heading {
    font-size: 4.8vw;
    margin-bottom: 5.3vw;
  }
}
.overview__square {
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  background: linear-gradient(to bottom, #3B76BA, #51BBEB);
}
.overview__block {
  background-color: #1A1A1A;
  padding: 1.25vw 2.8vw 2.5vw 2.5vw;
  border-radius: 16px;
  margin-bottom: 1.875vw;
}
@media screen and (max-width: 1024px) {
  .overview__block {
    padding: 20px 15px;
  }
}
.overview__block:last-of-type {
  margin-bottom: 0;
}
.overview__name {
  font-size: 1.5vw;
  color: #50B7E8;
  border-bottom: #2B2B2B solid 1px;
  padding-bottom: 1.25vw;
  margin-bottom: 1.875vw;
}
@media screen and (max-width: 1450px) {
  .overview__name {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__name {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__name {
    font-size: 5.3vw;
    padding-bottom: 2.6vw;
    margin-bottom: 4vw;
  }
}
.overview__group {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .overview__group {
    flex-direction: column;
  }
}
.overview__drone {
  background-color: #000000;
  border-radius: 16px;
  width: 25.8vw;
  height: 24vw;
  padding: 10px;
  position: relative;
}
@media screen and (max-width: 1450px) {
  .overview__drone {
    width: 28.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__drone {
    width: 100%;
    height: 100%;
    margin-bottom: 25px;
  }
}
.overview__label {
  background-image: url(../images/overview__label01.png);
  background-size: 100% 100%;
  width: 9.3vw;
  height: 8.75vw;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  font-size: 1.5vw;
  padding-left: 0.93vw;
  padding-top: 5px;
}
@media screen and (max-width: 1450px) {
  .overview__label {
    font-size: 1.65vw;
    width: 10vw;
    height: 9.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__label {
    font-size: 2.4vw;
    padding-top: 5px;
    padding-left: 15px;
    width: 15.6vw;
    height: 14.7vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__label {
    width: 32vw;
    height: 30vw;
    font-size: 5vw;
  }
}
.overview__label--02 {
  background-image: url(../images/overview__label02.png);
}
.overview__number {
  font-size: 2.5vw;
}
@media screen and (max-width: 1450px) {
  .overview__number {
    font-size: 2.75vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__number {
    font-size: 4.1vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__number {
    font-size: 8.5vw;
  }
}
.overview__machine {
  border-radius: 16px;
}
.overview__wrapper {
  margin-left: 3.1vw;
  width: 41vw;
}
@media screen and (max-width: 1450px) {
  .overview__wrapper {
    width: 45vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__wrapper {
    width: 100%;
    margin-left: 0;
  }
}
.overview__comment {
  line-height: 2;
  font-size: 1vw;
  margin-bottom: 1.875vw;
  font-weight: normal;
}
@media screen and (max-width: 1450px) {
  .overview__comment {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__comment {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__comment {
    font-size: 4.2vw;
    margin-bottom: 6.6vw;
  }
}
.overview__head {
  font-size: 1vw;
  background-color: #5978B3;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1450px) {
  .overview__head {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__head {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__head {
    font-size: 4.2vw;
    margin-bottom: 10px;
  }
}
.overview__head--02 {
  background-color: #5993B3;
}
.overview__function {
  display: flex;
  text-align: center;
  justify-content: space-between;
  line-height: 1.5;
  margin-bottom: 1.875vw;
}
@media screen and (max-width: 1024px) {
  .overview__function {
    flex-wrap: wrap;
    grid-row-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .overview__function {
    margin-bottom: 5.3vw;
  }
}
.overview__data {
  border-left: solid 1px #707070;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 33.3333333333%;
}
.overview__data:last-of-type {
  border-right: solid 1px #707070;
}
.overview__maker {
  font-size: 1.1vw;
}
@media screen and (max-width: 1450px) {
  .overview__maker {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__maker {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__maker {
    font-size: 3.7vw;
  }
}
.overview__type {
  font-size: 1.5vw;
}
@media screen and (max-width: 1450px) {
  .overview__type {
    font-size: 1.655vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__type {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__type {
    font-size: 4.4vw;
  }
}
.overview__height {
  font-size: 1.875vw;
  margin-bottom: 15px;
}
@media screen and (max-width: 1450px) {
  .overview__height {
    font-size: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__height {
    font-size: 3vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .overview__height {
    font-size: 5.5vw;
  }
}
.overview__meters {
  font-size: 1.25vw;
}
@media screen and (max-width: 1450px) {
  .overview__meters {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__meters {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__meters {
    font-size: 5.3vw;
  }
}
.overview__star {
  font-size: 1.1vw;
  color: #50B7E8;
  margin-bottom: 25px;
}
@media screen and (max-width: 1450px) {
  .overview__star {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__star {
    font-size: 2.3vw;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .overview__star {
    font-size: 4.8vw;
  }
}
.overview__chapter {
  font-size: 0.93vw;
  color: #666666;
}
@media screen and (max-width: 1450px) {
  .overview__chapter {
    font-size: 1vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__chapter {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__chapter {
    font-size: 4vw;
  }
}
.overview__content {
  background-color: #2C2C2C;
  border-radius: 8px;
  padding: 1.875vw 1.25vw 1.25vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .overview__content {
    padding: 15px;
  }
}
.overview__wrap {
  width: 13.9vw;
  line-height: 1.4;
}
@media screen and (max-width: 1450px) {
  .overview__wrap {
    width: 14.9vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__wrap {
    width: calc(38% - 10px);
  }
}
.overview__wrap--01 {
  width: 10vw;
}
@media screen and (max-width: 1450px) {
  .overview__wrap--01 {
    width: 11.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__wrap--01 {
    width: calc(25% - 10px);
  }
}
.overview__top {
  border-bottom: solid 1px #707070;
  color: #50B7E8;
  font-size: 0.875vw;
  padding-bottom: 11px;
}
@media screen and (max-width: 1450px) {
  .overview__top {
    font-size: 0.96vw;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .overview__top {
    font-size: 1.5vw;
    padding-bottom: 5.5px;
  }
}
@media screen and (max-width: 767px) {
  .overview__top {
    font-size: 3.2vw;
  }
}
.overview__top--02 {
  font-size: 1.1vw;
  padding-bottom: 5.5px;
  text-align: center;
}
@media screen and (max-width: 1450px) {
  .overview__top--02 {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__top--02 {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__top--02 {
    font-size: 3.2vw;
  }
}
.overview__middle {
  font-size: 0.875vw;
  border-bottom: solid 1px #707070;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 4.3vw;
}
@media screen and (max-width: 1450px) {
  .overview__middle {
    font-size: 0.96vw;
    height: 4.8vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__middle {
    font-size: 1.3vw;
    height: 7.8vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__middle {
    font-size: 2.6vw;
    height: 16vw;
  }
}
.overview__middle--02 {
  align-items: center;
}
.overview__model {
  font-size: 1vw;
}
@media screen and (max-width: 1450px) {
  .overview__model {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__model {
    font-size: 1.4vw;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .overview__model {
    font-size: 2.9vw;
  }
}
.overview__bottom {
  font-size: 0.875vw;
  height: 3.25vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1450px) {
  .overview__bottom {
    font-size: 0.96vw;
    height: 4.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__bottom {
    font-size: 1.5vw;
    height: 7.4vw;
  }
}
@media screen and (max-width: 767px) {
  .overview__bottom {
    font-size: 3.2vw;
    height: 16vw;
  }
}
.overview__bottom--02 {
  font-size: 1vw;
  align-items: center;
}
@media screen and (max-width: 1450px) {
  .overview__bottom--02 {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__bottom--02 {
    font-size: 1.4vw;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .overview__bottom--02 {
    font-size: 2.9vw;
  }
}
.overview__span {
  font-size: 0.8vw;
}
@media screen and (max-width: 1450px) {
  .overview__span {
    font-size: 0.89vw;
  }
}
@media screen and (max-width: 1024px) {
  .overview__span {
    font-size: 1.3vw;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .overview__span {
    font-size: 2.6vw;
  }
}

/*特長*/
.features {
  color: #fff;
  font-weight: bold;
  background-color: #0D0D0D;
  padding-bottom: 7.1vw;
}
@media screen and (max-width: 1450px) {
  .features {
    padding-bottom: 7.8vw;
  }
}
.features__outer {
  width: 75vw;
  margin: -80px auto auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1450px) {
  .features__outer {
    width: 82vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__outer {
    width: 47.9vw;
    margin: -40px auto auto;
  }
}
@media screen and (max-width: 767px) {
  .features__outer {
    width: 100%;
    padding: 0 15px;
  }
}
.features__outer--02 {
  margin: auto;
}
.features__title {
  font-size: 4vw;
  color: #50B7E8;
  margin-bottom: 10px;
  text-align: right;
}
@media screen and (max-width: 1450px) {
  .features__title {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__title {
    font-size: 4.1vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .features__title {
    font-size: 8.5vw;
  }
}
.features__text {
  font-size: 1.5vw;
  margin-bottom: 5.8vw;
  text-align: right;
}
@media screen and (max-width: 1450px) {
  .features__text {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__text {
    font-size: 2.6vw;
    margin-bottom: 4.6vw;
  }
}
@media screen and (max-width: 767px) {
  .features__text {
    font-size: 5.3vw;
    margin-bottom: 9.6vw;
  }
}
.features__ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8.1vw;
}
@media screen and (max-width: 1024px) {
  .features__ul {
    flex-wrap: wrap;
    justify-content: center;
    grid-column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .features__ul {
    margin-bottom: 17vw;
  }
}
.features__link {
  background-color: #1A1A1A;
  border-radius: 50%;
  text-align: center;
  width: 23vw;
  height: 23vw;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}
@media screen and (max-width: 1450px) {
  .features__link {
    width: 25.5vw;
    height: 25.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__link {
    width: 22vw;
    height: 22vw;
  }
}
@media screen and (max-width: 767px) {
  .features__link {
    width: 43vw;
    height: 43vw;
  }
}
.features__link:hover {
  opacity: 1;
  background-color: #2E2E2E;
}
@media screen and (max-width: 1024px) {
  .features__link:hover {
    background-color: #1A1A1A;
  }
}
.features__item {
  font-size: 1.1vw;
  margin-bottom: 10px;
  color: #50B7E8;
}
@media screen and (max-width: 1450px) {
  .features__item {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__item {
    font-size: 1.3vw;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .features__item {
    font-size: 2.6vw;
  }
}
.features__number {
  font-size: 3.37vw;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 1450px) {
  .features__number {
    font-size: 3.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__number {
    font-size: 3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .features__number {
    font-size: 8vw;
  }
}
.features__subtext {
  font-size: 1.5vw;
  margin-bottom: 3.75vw;
}
@media screen and (max-width: 1450px) {
  .features__subtext {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__subtext {
    font-size: 1.56vw;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .features__subtext {
    font-size: 3.2vw;
    margin-bottom: 8vw;
  }
}
.features__subtext--02 {
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1024px) {
  .features__subtext--02 {
    margin-bottom: 1.3vw;
  }
}
@media screen and (max-width: 767px) {
  .features__subtext--02 {
    margin-bottom: 2.6vw;
  }
}
.features__arrow {
  width: 1.25vw;
  margin: auto;
}
@media screen and (max-width: 1450px) {
  .features__arrow {
    width: 1.3vw;
  }
}
@media screen and (max-width: 767px) {
  .features__arrow {
    width: 2.6vw;
  }
}
.features__inner {
  background-color: #1A1A1A;
  padding: 4vw 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .features__inner {
    padding: 8vw 15px;
  }
}
.features__category {
  font-size: 1.5vw;
  color: #50B7E8;
}
@media screen and (max-width: 1450px) {
  .features__category {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__category {
    font-size: 3.1vw;
  }
}
@media screen and (max-width: 767px) {
  .features__category {
    font-size: 6.4vw;
  }
}
.features__count {
  font-size: 5vw;
  text-align: center;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 1450px) {
  .features__count {
    font-size: 5.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__count {
    font-size: 6.5vw;
  }
}
@media screen and (max-width: 767px) {
  .features__count {
    font-size: 13vw;
  }
}
.features__subtitle {
  font-size: 2vw;
  line-height: 1.68;
}
@media screen and (max-width: 1450px) {
  .features__subtitle {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__subtitle {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .features__subtitle {
    font-size: 5.3vw;
  }
}
.features__unit {
  padding: 5vw 0 6.25vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .features__unit {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .features__unit {
    padding: 6.6vw 0 13vw;
  }
}
.features__message {
  font-size: 1vw;
  width: 27vw;
  font-weight: normal;
  line-height: 2;
}
@media screen and (max-width: 1450px) {
  .features__message {
    font-size: 1.1vw;
    width: 30vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__message {
    font-size: 2vw;
    width: 100%;
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__message {
    font-size: 4.2vw;
    margin-bottom: 10vw;
  }
}
.features__figure {
  background: linear-gradient(to top, #3B76BA, #51BBEB);
  border-radius: 16px;
  padding: 24px 40px 30px;
  width: 45vw;
}
@media screen and (max-width: 1450px) {
  .features__figure {
    width: 50vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__figure {
    padding: 10px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .features__figure {
    width: 100%;
    padding: 2.6vw 5.3vw 5.3vw;
  }
}
.features__village {
  font-size: 2vw;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1450px) {
  .features__village {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__village {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__village {
    font-size: 4.2vw;
  }
}
.features__character {
  font-size: 1vw;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1450px) {
  .features__character {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__character {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__character {
    font-size: 2.6vw;
  }
}
.features__div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.features__round {
  background-color: #0D0D0D;
  border-radius: 50%;
  width: 17.5vw;
  height: 17.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4;
}
@media screen and (max-width: 1450px) {
  .features__round {
    width: 19vw;
    height: 19vw;
  }
}
@media screen and (max-width: 767px) {
  .features__round {
    width: 37vw;
    height: 37vw;
  }
}
.features__chapter {
  text-align: center;
  font-size: 1.1vw;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1450px) {
  .features__chapter {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__chapter {
    font-size: 2.6vw;
  }
}
.features__small {
  display: block;
  text-align: center;
}
.features__small--01 {
  font-size: 1.1vw;
  margin-bottom: 4px;
}
@media screen and (max-width: 1450px) {
  .features__small--01 {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__small--01 {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__small--01 {
    font-size: 2.6vw;
  }
}
.features__small--02 {
  font-size: 1.5vw;
  color: #50B7E8;
}
@media screen and (max-width: 1450px) {
  .features__small--02 {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__small--02 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .features__small--02 {
    font-size: 3.7vw;
  }
}
.features__small--03 {
  font-size: 1.25vw;
}
@media screen and (max-width: 1450px) {
  .features__small--03 {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__small--03 {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__small--03 {
    font-size: 2.6vw;
  }
}
.features__plus {
  width: 2.875vw;
  margin: auto 15px;
}
@media screen and (max-width: 1450px) {
  .features__plus {
    width: 3.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__plus {
    margin: auto 8px;
  }
}
@media screen and (max-width: 767px) {
  .features__plus {
    width: 6.1vw;
  }
}
.features__block {
  padding: 5vw 0 8.1vw;
}
@media screen and (max-width: 767px) {
  .features__block {
    padding: 6.6vw 0 13vw;
  }
}
.features__comment {
  font-size: 1vw;
  font-weight: normal;
  line-height: 2;
  margin-bottom: 4vw;
}
@media screen and (max-width: 1450px) {
  .features__comment {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__comment {
    font-size: 2vw;
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__comment {
    font-size: 4.2vw;
    margin-bottom: 10vw;
  }
}
.features__subitem {
  width: 70vw;
  margin: auto auto 2vw;
  color: #50B7E8;
  font-size: 1.5vw;
  text-align: center;
  border-bottom: solid 1px #50B7E8;
  padding-bottom: 1.25vw;
}
@media screen and (max-width: 1450px) {
  .features__subitem {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__subitem {
    width: 100%;
    font-size: 2.3vw;
    padding-bottom: 1.3vw;
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .features__subitem {
    font-size: 4.8vw;
    padding-bottom: 2.6vw;
    margin-bottom: 5.3vw;
  }
}
.features__group {
  width: 70vw;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .features__group {
    width: 100%;
  }
}
.features__table {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .features__table {
    display: none;
  }
}
.features__table--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .features__table--sp {
    display: block;
  }
}
.features__th {
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  border-right: 6px #0D0D0D solid;
  white-space: nowrap;
}
.features__th:last-of-type {
  border-right: none;
}
.features__th--01 {
  font-size: 1.25vw;
}
@media screen and (max-width: 1450px) {
  .features__th--01 {
    font-size: 1.37vw;
  }
}
.features__th--02 {
  background-color: #333333;
  font-size: 1vw;
  padding: 15px 20px;
  border-bottom: 6px #0D0D0D solid;
}
@media screen and (max-width: 1450px) {
  .features__th--02 {
    font-size: 1.1vw;
  }
}
.features__th--03 {
  border-bottom: 6px #0D0D0D solid;
  background-color: #262626;
  font-size: 1vw;
  padding: 15px 20px;
  width: 6.25vw;
}
@media screen and (max-width: 1450px) {
  .features__th--03 {
    font-size: 1.1vw;
  }
}
.features__td {
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  border-left: 6px #0D0D0D solid;
  border-bottom: 6px #0D0D0D solid;
  padding: 15px 20px;
}
.features__td:last-of-type {
  border-right: none;
}
.features__td--01 {
  background-color: #292929;
  font-size: 1vw;
}
@media screen and (max-width: 1450px) {
  .features__td--01 {
    font-size: 1.1vw;
  }
}
.features__td--02 {
  background-color: #1A1A1A;
  font-size: 1vw;
}
@media screen and (max-width: 1450px) {
  .features__td--02 {
    font-size: 1.1vw;
  }
}
.features__td--03 {
  background-color: #212121;
  font-size: 1vw;
}
@media screen and (max-width: 1450px) {
  .features__td--03 {
    font-size: 1.1vw;
  }
}
.features__td--border {
  position: relative;
}
.features__td--border::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: -20%;
  bottom: 0;
  width: 3px;
  height: 120%;
  background-color: #50B7E8;
}
.features__td--border::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: -20%;
  bottom: 0;
  width: 3px;
  height: 120%;
  background-color: #50B7E8;
}
.features__td--line::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #50B7E8;
}
.features__background {
  padding: 25px 20px;
  background-color: #50B7E8;
  border-radius: 16px 16px 0 0;
}
.features__background--02 {
  padding: 25px 20px;
  background-color: #4D4D4D;
  border-radius: 16px 16px 0 0;
}
.features__name {
  margin-bottom: 5px;
}
.features__subcategory {
  font-size: 0.8vw;
  color: #808080;
}
@media screen and (max-width: 1450px) {
  .features__subcategory {
    font-size: 0.96vw;
  }
}
.features__lead {
  text-align: start;
}
.features__model {
  font-size: 0.875vw;
}
@media screen and (max-width: 1450px) {
  .features__model {
    font-size: 0.96vw;
  }
}
.features__ster {
  color: #50B7E8;
}
.features__alert {
  margin-top: 5px;
  font-size: 0.875vw;
  font-weight: normal;
}
@media screen and (max-width: 1450px) {
  .features__alert {
    font-size: 0.96vw;
  }
}
@media screen and (max-width: 767px) {
  .features__alert {
    font-size: 2.6vw;
  }
}
.features__txt {
  font-size: 1vw;
  line-height: 2;
  margin: 5vw 0 4vw;
  font-weight: normal;
}
@media screen and (max-width: 1450px) {
  .features__txt {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__txt {
    margin: 3.2vw 0 3.9vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__txt {
    margin: 6.6vw 0 8vw;
    font-size: 4.2vw;
  }
}
.features__container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 1024px) {
  .features__container {
    flex-direction: column;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .features__container {
    margin-bottom: 8vw;
  }
}
.features__head {
  font-size: 1.1vw;
  background-color: #1A1A1A;
  border-radius: 8px;
  width: 7.5vw;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 1450px) {
  .features__head {
    font-size: 1.2vw;
    padding: 20px 15px;
    width: 8.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__head {
    width: 100%;
    font-size: 2vw;
    padding: 15px;
    margin-bottom: 15px;
    text-align: start;
  }
}
@media screen and (max-width: 767px) {
  .features__head {
    font-size: 4.2vw;
  }
}
.features__heading {
  color: #50B7E8;
  font-size: 1.25vw;
  margin-bottom: 15px;
}
@media screen and (max-width: 1450px) {
  .features__heading {
    font-size: 1.37vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__heading {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__heading {
    font-size: 4.2vw;
  }
}
.features__heading--02 {
  margin-bottom: 2.5vw;
}
.features__wrap {
  width: 65vw;
}
@media screen and (max-width: 1450px) {
  .features__wrap {
    width: 71.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__wrap {
    margin-left: 0;
    width: 100%;
    line-height: 1.5;
  }
}
.features__description {
  font-weight: normal;
  font-size: 1vw;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 1450px) {
  .features__description {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__description {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__description {
    margin-bottom: 5.3vw;
    font-size: 4.2vw;
  }
}
.features__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .features__wrapper {
    flex-direction: column;
  }
}
.features__wrapper--02 {
  width: 42.5vw;
}
@media screen and (max-width: 1024px) {
  .features__wrapper--02 {
    width: 100%;
  }
}
.features__content {
  width: calc(33.3333333333% - 1.1vw);
}
@media screen and (max-width: 1024px) {
  .features__content {
    width: 100%;
    margin-bottom: 3.9vw;
  }
  .features__content:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .features__content {
    margin-bottom: 8vw;
  }
}
.features__content--02 {
  width: calc(50% - 1.1vw);
}
@media screen and (max-width: 1024px) {
  .features__content--02 {
    width: 100%;
  }
}
.features__contents {
  display: flex;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .features__contents {
    margin-bottom: 10px;
  }
}
.features__step {
  font-size: 1.1vw;
  color: #50B7E8;
  margin-right: 20px;
}
@media screen and (max-width: 1450px) {
  .features__step {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__step {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .features__step {
    font-size: 4.8vw;
  }
}
.features__sentence {
  font-size: 1.1vw;
}
@media screen and (max-width: 1450px) {
  .features__sentence {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__sentence {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .features__sentence {
    font-size: 4.8vw;
  }
}
.features__image {
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1024px) {
  .features__image {
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .features__image {
    margin-bottom: 5.3vw;
  }
}
.features__explanation {
  font-size: 1vw;
  line-height: 1.5;
  font-weight: normal;
}
@media screen and (max-width: 1450px) {
  .features__explanation {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__explanation {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .features__explanation {
    font-size: 3.2vw;
  }
}
.features__circle {
  font-size: 1vw;
  color: #50B7E8;
  margin-right: 8px;
  display: block;
}
@media screen and (max-width: 1450px) {
  .features__circle {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__circle {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__circle {
    font-size: 4.2vw;
  }
}
.features__flex {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .features__flex {
    margin-top: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .features__flex {
    margin-top: 5.3vw;
  }
}
.features__list {
  display: flex;
  font-size: 1vw;
  line-height: 2;
  font-weight: normal;
}
@media screen and (max-width: 1450px) {
  .features__list {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__list {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__list {
    font-size: 4.2vw;
  }
}
.features__etc {
  font-size: 1vw;
  line-height: 2;
}
@media screen and (max-width: 1450px) {
  .features__etc {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__etc {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .features__etc {
    font-size: 4.2vw;
  }
}
.features__top {
  font-size: 1.1vw;
  margin-bottom: 1.25vw;
  font-weight: 900;
}
@media screen and (max-width: 1450px) {
  .features__top {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__top {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .features__top {
    font-size: 4.8vw;
  }
}
.features__vessel {
  width: calc(50% - 1vw);
}
@media screen and (max-width: 1024px) {
  .features__vessel {
    width: 100%;
  }
}
.features__writing {
  font-size: 1vw;
  line-height: 2;
  margin-bottom: 1.25vw;
  font-weight: normal;
}
@media screen and (max-width: 1450px) {
  .features__writing {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__writing {
    font-size: 2vw;
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .features__writing {
    font-size: 4.2vw;
    margin-bottom: 5.3vw;
  }
}
.features__label {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #50B7E8;
  border-radius: 36px;
  font-size: 1vw;
  font-weight: 900;
}
@media screen and (max-width: 1450px) {
  .features__label {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__label {
    font-size: 2vw;
    margin-bottom: 15px;
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .features__label {
    font-size: 4.2vw;
  }
}
.features__exclamation {
  width: 1.25vw;
  margin-right: 8px;
}
@media screen and (max-width: 1450px) {
  .features__exclamation {
    width: 1.37vw;
  }
}
@media screen and (max-width: 1024px) {
  .features__exclamation {
    width: 4vw;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .features__exclamation {
    width: 8vw;
  }
}

/*仕様*/
.specification {
  color: #fff;
  font-weight: bold;
}
.specification__outer {
  width: 75vw;
  margin: -80px auto auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1450px) {
  .specification__outer {
    width: 82vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__outer {
    width: 47.9vw;
    margin: -40px auto auto;
  }
}
@media screen and (max-width: 767px) {
  .specification__outer {
    width: 100%;
    padding: 0 15px;
  }
}
.specification__title {
  font-size: 4vw;
  color: #50B7E8;
  margin-bottom: 10px;
}
@media screen and (max-width: 1450px) {
  .specification__title {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__title {
    font-size: 4.1vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .specification__title {
    font-size: 8.5vw;
  }
}
.specification__text {
  font-size: 1.5vw;
  margin-bottom: 6.25vw;
}
@media screen and (max-width: 1450px) {
  .specification__text {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__text {
    font-size: 2.6vw;
    margin-bottom: 6.51vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__text {
    font-size: 5.3vw;
    margin-bottom: 13vw;
  }
}
.specification__ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6.25vw;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .specification__ul {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__ul {
    margin-bottom: 10vw;
  }
}
.specification__link {
  width: calc(33.3333333333% - 5px);
  text-align: center;
  background-color: #272727;
  border-radius: 8px;
  padding: 20px;
  font-size: 1.1vw;
}
@media screen and (max-width: 1450px) {
  .specification__link {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__link {
    font-size: 2.3vw;
    padding: 15px 15px 10px;
  }
}
@media screen and (max-width: 767px) {
  .specification__link {
    font-size: 4.8vw;
  }
}
.specification__link:hover {
  background-color: #404040;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .specification__link:hover {
    background-color: #272727;
  }
}
.specification__menu {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .specification__menu {
    margin-bottom: 15px;
  }
}
.specification__arrow {
  max-width: 13px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .specification__arrow {
    max-width: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__arrow {
    max-width: 3.4vw;
  }
}
.specification__heading {
  color: #50B7E8;
  font-size: 1.5vw;
  display: flex;
  align-items: center;
  border-bottom: #50B7E8 solid 2px;
  padding-bottom: 10px;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 1450px) {
  .specification__heading {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__heading {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__heading {
    font-size: 4.8vw;
    margin-bottom: 5.3vw;
  }
}
.specification__square {
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  background: linear-gradient(to bottom, #3B76BA, #51BBEB);
}
.specification__container {
  margin-bottom: 5vw;
}
@media screen and (max-width: 1024px) {
  .specification__container {
    display: none;
  }
}
.specification__container--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .specification__container--sp {
    display: block;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__container--sp {
    margin-bottom: 8vw;
  }
}
.specification__table {
  width: 100%;
}
.specification__th {
  width: 18vw;
  text-align: center;
  font-size: 1vw;
  border-right: 40px solid #000;
  border-bottom: 5px solid #000;
}
@media screen and (max-width: 1450px) {
  .specification__th {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__th {
    font-size: 2vw;
  }
}
.specification__th:last-of-type {
  border-right: none;
}
.specification__th--hide {
  width: 14vw;
  text-align: center;
  font-size: 1vw;
  border-right: 15px solid #000;
  border-bottom: 5px solid #000;
}
@media screen and (max-width: 1450px) {
  .specification__th--hide {
    font-size: 1.1vw;
  }
}
.specification__th--02 {
  vertical-align: middle;
  width: 14vw;
  font-size: 1vw;
  padding: 15px 0;
  border-right: 15px solid #000;
  border-bottom: #50B7E8 1px dashed;
  color: #50B7E8;
}
@media screen and (max-width: 1450px) {
  .specification__th--02 {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__th--02 {
    font-size: 2vw;
  }
}
.specification__th--top {
  font-size: 2vw;
  text-align: center;
  background-color: #272727;
  border-radius: 16px 16px 0 0;
  padding: 10px;
  border-bottom: 5px solid #000;
  line-height: 1.4;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .specification__th--top {
    font-size: 4.2vw;
  }
}
.specification__th--sp {
  font-size: 1.5vw;
  color: #50B7E8;
  border-bottom: #50B7E8 1px dashed;
  padding: 15px 0;
  line-height: 1.4;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .specification__th--sp {
    font-size: 3.2vw;
  }
}
.specification__flex {
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.specification__subitem {
  width: 100%;
  border-bottom: #50B7E8 1px dashed;
  padding-bottom: 15px;
}
.specification__subitem:last-of-type {
  border-bottom: none;
  padding-top: 15px;
  padding-bottom: 0;
}
.specification__box {
  width: 50%;
}
.specification__top {
  background-color: #272727;
  border-radius: 16px 16px 0 0;
  padding: 15px;
}
.specification__td {
  background-color: #141414;
  text-align: center;
  padding: 15px;
  font-size: 1vw;
  border-bottom: 5px solid #000;
  font-weight: normal;
}
@media screen and (max-width: 1450px) {
  .specification__td {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__td {
    font-size: 2vw;
  }
}
.specification__td--02 {
  background-color: #1F1F1F;
}
.specification__td--sp {
  font-size: 1.8vw;
  text-align: center;
  padding: 15px;
  background-color: #141414;
  border-bottom: 5px solid #000;
  border-left: 5px solid #000;
  font-weight: normal;
  line-height: 1.4;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .specification__td--sp {
    font-size: 3.7vw;
  }
}
.specification__td--sp02 {
  background-color: #1F1F1F;
}
.specification__color {
  color: #50B7E8;
  font-weight: bold;
}
.specification__set {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .specification__set {
    flex-direction: column;
    align-items: center;
  }
}
.specification__unit {
  background-color: #191919;
  padding: 15px 25px 35px;
  border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .specification__unit {
    padding: 15px 20px 30px;
  }
}
.specification__unit--01 {
  width: 26vw;
}
@media screen and (max-width: 1450px) {
  .specification__unit--01 {
    width: 29vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__unit--01 {
    width: 100%;
  }
}
.specification__unit--02 {
  width: 15vw;
}
@media screen and (max-width: 1450px) {
  .specification__unit--02 {
    width: 16vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__unit--02 {
    width: 26vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__unit--02 {
    width: 54vw;
  }
}
.specification__unit--03 {
  width: 26vw;
}
@media screen and (max-width: 1450px) {
  .specification__unit--03 {
    width: 29vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__unit--03 {
    width: 100%;
  }
}
.specification__category {
  text-align: center;
  font-size: 1.1vw;
  color: #50B7E8;
  border-bottom: #50B7E8 solid 1px;
  padding-bottom: 15px;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1450px) {
  .specification__category {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__category {
    font-size: 2.3vw;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .specification__category {
    font-size: 4vw;
  }
}
.specification__plus {
  width: 2vw;
  height: 2vw;
  margin: auto 15px;
}
@media screen and (max-width: 1450px) {
  .specification__plus {
    width: 2.2vw;
    height: 2.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__plus {
    margin: 15px auto;
  }
}
@media screen and (max-width: 767px) {
  .specification__plus {
    width: 8vw;
    height: 8vw;
  }
}
.specification__icon {
  margin: auto;
}
.specification__icon--01 {
  width: 19.5vw;
}
@media screen and (max-width: 1450px) {
  .specification__icon--01 {
    width: 21vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__icon--01 {
    width: 35.4vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__icon--01 {
    width: 72vw;
  }
}
.specification__icon--02 {
  width: 6vw;
}
@media screen and (max-width: 1450px) {
  .specification__icon--02 {
    width: 6.6vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__icon--02 {
    width: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__icon--02 {
    width: 20vw;
  }
}
.specification__icon--03 {
  width: 20vw;
}
@media screen and (max-width: 1450px) {
  .specification__icon--03 {
    width: 22vw;
  }
}
@media screen and (max-width: 1024px) {
  .specification__icon--03 {
    width: 36.4vw;
  }
}
@media screen and (max-width: 767px) {
  .specification__icon--03 {
    width: 70vw;
  }
}

/*よくある質問*/
.faq {
  color: #fff;
  font-weight: bold;
  background-color: #0D0D0D;
  padding-bottom: 7.1vw;
}
@media screen and (max-width: 1450px) {
  .faq {
    padding-bottom: 7.8vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq {
    padding-bottom: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    padding-bottom: 21vw;
  }
}
.faq__outer {
  width: 75vw;
  margin: -80px auto auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1450px) {
  .faq__outer {
    width: 82vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__outer {
    width: 47.9vw;
    margin: -40px auto auto;
  }
}
@media screen and (max-width: 767px) {
  .faq__outer {
    width: 100%;
    padding: 0 15px;
  }
}
.faq__title {
  font-size: 4vw;
  color: #50B7E8;
  margin-bottom: 10px;
  text-align: right;
}
@media screen and (max-width: 1450px) {
  .faq__title {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__title {
    font-size: 4.1vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 8.5vw;
  }
}
.faq__text {
  font-size: 1.5vw;
  margin-bottom: 5.8vw;
  text-align: right;
}
@media screen and (max-width: 1450px) {
  .faq__text {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__text {
    font-size: 2.6vw;
    margin-bottom: 4.6vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__text {
    font-size: 5.3vw;
    margin-bottom: 9.6vw;
  }
}
.faq__ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 36vw;
  margin: auto;
  border-right: solid 1px #707070;
  border-left: solid 1px #707070;
  font-size: 1vw;
  margin-bottom: 6.25vw;
}
@media screen and (max-width: 1450px) {
  .faq__ul {
    width: 40vw;
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__ul {
    width: 100%;
    font-size: 1.8vw;
    line-height: 1.4;
    margin-bottom: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__ul {
    font-size: 3.7vw;
    margin-bottom: 6.6vw;
  }
}
.faq__link {
  position: relative;
  border-left: solid 1px #707070;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .faq__link {
    width: 50%;
    text-align: center;
  }
}
.faq__link--01 {
  border-left: none;
  padding: 0 3.1vw 20px;
}
@media screen and (max-width: 1450px) {
  .faq__link--01 {
    padding: 0 3.4vw 20px;
  }
}
@media screen and (max-width: 1024px) {
  .faq__link--01 {
    padding: 0;
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .faq__link--01 {
    height: 20vw;
  }
}
.faq__link--02 {
  padding: 0 2.1vw 20px 2.5vw;
}
@media screen and (max-width: 1450px) {
  .faq__link--02 {
    padding: 0 2.4vw 20px 2.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__link--02 {
    padding: 0 0 20px;
  }
}
.faq__link:hover {
  opacity: 1;
  color: #50B7E8;
}
@media screen and (max-width: 1024px) {
  .faq__link:hover {
    color: #fff;
  }
}
.faq__link:hover::before {
  background-image: url(../images/faq__arrow--blue.svg);
}
@media screen and (max-width: 1024px) {
  .faq__link:hover::before {
    background-image: url(../images/faq__arrow.svg);
  }
}
.faq__link::before {
  content: "";
  display: inline-block;
  background-image: url(../images/faq__arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}
.faq__heading {
  color: #50B7E8;
  font-size: 1.1vw;
  display: flex;
  align-items: center;
  border-bottom: #50B7E8 solid 2px;
  padding-bottom: 15px;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 1450px) {
  .faq__heading {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__heading {
    font-size: 2.3vw;
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__heading {
    font-size: 4.8vw;
    margin-bottom: 5.3vw;
  }
}
.faq__square {
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  background: linear-gradient(to bottom, #3B76BA, #51BBEB);
}
.faq__inner {
  margin-bottom: 3.4vw;
}
@media screen and (max-width: 1024px) {
  .faq__inner {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__inner {
    margin-bottom: 8vw;
  }
}
.faq__inner:last-of-type {
  margin-bottom: 0;
}
.faq__unit {
  background-color: #292929;
  border-radius: 30px;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1024px) {
  .faq__unit {
    margin-bottom: 10px;
  }
}
.faq__unit:last-of-type {
  margin-bottom: 0;
}
.faq__question {
  background-color: #292929;
  border-radius: 30px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq__question:hover {
  background-color: #4D4D4D;
  transition: 0.3s;
}
.faq__box {
  display: flex;
  align-items: center;
}
.faq__icon {
  width: 2.5vw;
  height: 2.5vw;
  margin-right: 15px;
}
@media screen and (max-width: 1450px) {
  .faq__icon {
    width: 2.8vw;
    height: 2.8vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__icon {
    width: 5.4vw;
    height: 5.4vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__icon {
    width: 11vw;
    height: 11vw;
  }
}
.faq__txt {
  font-size: 1vw;
  line-height: 1.5;
}
@media screen and (max-width: 1450px) {
  .faq__txt {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__txt {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__txt {
    font-size: 3.5vw;
  }
}
.faq__color {
  background-color: #4D4D4D;
}
.faq__arrow {
  width: 1vw;
  margin-left: 20px;
}
@media screen and (max-width: 1450px) {
  .faq__arrow {
    width: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .faq__arrow {
    width: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__arrow {
    width: 4.2vw;
  }
}
.faq__answer {
  display: flex;
  align-items: center;
  font-weight: normal;
  padding: 10px 15px;
}
@media screen and (max-width: 1024px) {
  .faq__answer {
    align-items: flex-start;
  }
}
.faq__transform {
  transform: rotate(180deg);
}

/*フッター*/
.footer {
  color: #fff;
  font-weight: bold;
  background-color: #000000;
}
.footer__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__unit {
  width: 50%;
  background: linear-gradient(to right, #3B76BA, #51BBEB);
  padding: 5vw;
}
@media screen and (max-width: 767px) {
  .footer__unit {
    padding: 8vw 15px 10vw;
  }
}
.footer__unit--02 {
  background: linear-gradient(to right, #713BBA, #EB5151);
}
.footer__svg {
  width: 2.1vw;
  margin: auto;
}
@media screen and (max-width: 1450px) {
  .footer__svg {
    width: 2.75vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__svg {
    width: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__svg {
    width: 5.3vw;
  }
}
.footer__text {
  font-size: 1.375vw;
  text-align: center;
  margin: 0.6vw 0 1.25vw;
}
@media screen and (max-width: 1450px) {
  .footer__text {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__text {
    font-size: 1.8vw;
    margin: 1.3vw 0 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 3.7vw;
    margin: 2.6vw 0 4vw;
  }
}
.footer__button {
  font-size: 1vw;
  border: solid #fff 1px;
  padding: 1.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  width: 19vw;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1450px) {
  .footer__button {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__button {
    font-size: 1.5vw;
    padding: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__button {
    font-size: 3.2vw;
    padding: 2.6vw;
    width: 40vw;
  }
}
.footer__button::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.375vw;
  background-image: url(../images/footer__arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  height: 14px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .footer__button::before {
    right: 3.2vw;
  }
}
.footer__button:hover {
  color: #000;
  background-color: #fff;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .footer__button:hover {
    color: #fff;
    background-color: inherit;
  }
}
.footer__button:hover::before {
  background-image: url(../images/footer__arrow--black.svg);
}
@media screen and (max-width: 1024px) {
  .footer__button:hover::before {
    background-image: url(../images/footer__arrow.svg);
  }
}
.footer__block {
  width: 87.5vw;
  margin: auto;
  border-bottom: solid 1px #707070;
  padding-top: 3.1vw;
}
@media screen and (max-width: 1450px) {
  .footer__block {
    width: 96vw;
    padding-top: 6.5vw;
  }
}
.footer__logo {
  width: 16.25vw;
  margin: auto;
}
@media screen and (max-width: 1450px) {
  .footer__logo {
    width: 18vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 33vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 70vw;
  }
}
.footer__txt {
  font-size: 1.125vw;
  text-align: center;
  margin: 1.25vw auto 2.5vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1450px) {
  .footer__txt {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__txt {
    font-size: 1.8vw;
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__txt {
    font-size: 3.7vw;
    margin-top: 4vw;
    margin-bottom: 10vw;
  }
}
.footer__inner {
  width: 87.5vw;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5vw 0 2.8vw;
}
@media screen and (max-width: 1450px) {
  .footer__inner {
    width: 96vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__group {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__group {
    flex-direction: column;
  }
}
.footer__box {
  margin-left: 4vw;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .footer__box {
    margin-left: 0;
    text-align: center;
  }
}
.footer__icon {
  width: 10vw;
}
@media screen and (max-width: 1450px) {
  .footer__icon {
    width: 12vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__icon {
    width: 23vw;
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__icon {
    width: 46vw;
    margin-bottom: 5.3vw;
  }
}
.footer__subtext {
  font-size: 0.875vw;
  margin-bottom: 10px;
}
@media screen and (max-width: 1450px) {
  .footer__subtext {
    font-size: 0.966vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__subtext {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__subtext {
    font-size: 3.7vw;
  }
}
.footer__subtext:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .footer__subtext:last-of-type {
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__subtext:last-of-type {
    margin-bottom: 5.3vw;
  }
}
.footer__copy {
  font-size: 0.75vw;
}
@media screen and (max-width: 1450px) {
  .footer__copy {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__copy {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 3.2vw;
  }
}/*# sourceMappingURL=style.css.map */
