@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap");
/*------------------------------------------------------------
	basic
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  background: #0C1836;
}
body.selector {
  -webkit-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  body {
    font-size: 3.7333333333vw;
  }
}

img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
a:hover {
  opacity: 0.5;
}

*:focus {
  outline: none;
}

li {
  list-style: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

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

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

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 100%);
  padding: 200px 2% 100px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .footer {
    padding: 20vw 4vw 10.6666666667vw;
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .footer__logo {
    display: block;
    margin-bottom: 6.6666666667vw;
  }
}
.footer__logo-img {
  margin: 0 25px;
}
@media screen and (max-width: 750px) {
  .footer__logo-img {
    margin: 0;
  }
  .footer__logo-img + .footer__logo-img {
    margin-top: 4vw;
  }
  .footer__logo-img:first-child img {
    width: 34vw;
  }
  .footer__logo-img:last-child img {
    width: 67.3333333333vw;
  }
}
.footer__copy {
  font-size: 1.2rem;
  color: #0C1836;
}
@media screen and (max-width: 750px) {
  .footer__copy {
    font-size: 2.4vw;
  }
}