@charset "UTF-8";
/*-------------------お問い合わせ-------------------*/
.contents.contact {
  padding: 0;
  width: 90%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #2222221a;
  margin: 0 auto -100px;
  position: relative;
  z-index: 2;
}
.contents.contact .inner {
  width: 100%;
}
.contents.contact a {
  display: block;
  text-decoration: none;
  color: #111;
  padding: 100px 10%;
  border-radius: 10px;
}
.contents.contact a:hover {
  opacity: 1;
  color: #fff;
  background-color: #db1527;
}
.contents.contact h3 {
  font-size: 68px;
  margin: 0 auto -20px;
}
.contents.contact h3 .sub {
  font-size: 24px;
}
/*矢印*/
.contents.contact .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
  width: 100px;
  height: 50px;
  border-radius: 50px;
  border: solid 1px #db1527;
}
.contents.contact .arrow span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
.contents.contact .arrow span:before, .contents.contact .arrow span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.contents.contact .arrow span:before {
  left: 0;
  width: 20px;
  height: 2px;
  background: #db1527;
}
.contents.contact .arrow span:after {
  left: 8px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #db1527;
  border-right: 2px solid #db1527;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contents.contact a:hover .arrow {
  border: solid 1px #fff;
  background-color: #fff;
  transition: all .3s;
}
.contents.contact a:hover .arrow span {
  right: -20px;
}
.contents.contact a:hover .arrow span:before {
  background: #db1527;
}
.contents.contact a:hover .arrow span:after {
  border-top: 2px solid #db1527;
  border-right: 2px solid #db1527;
}
/*-------------------フッター-------------------*/
footer {
  background-color: #222;
  padding: 200px 0 0;
  position: relative;
  overflow: hidden;
  color: #ccc;
}
footer .inner {
  width: 85%;
  position: relative;
  z-index: 2;
}
footer .address {
  font-size: 14px;
  margin-bottom: 200px;
}
footer .address .name {
  font-size: 17px;
  margin: 0;
}
footer .address .name .en {
  font-family: "termina", sans-serif;
  font-weight: 500;
  font-style: normal;
}
footer .logo {
  width: 300px;
  margin-bottom: 30px;
}
footer .logo img {
  width: 100%;
}
footer nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
footer nav ul li {
  font-family: "termina", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  margin: 0 0 0 40px;
}
footer nav ul li a {
  display: block;
  text-decoration: none;
  color: #ccc;
  position: relative;
}
footer nav ul li a:hover {
  opacity: 1;
  color: #db1527;
}
footer small {
  display: block;
  font-family: "termina", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  text-align: right;
  border-top: solid 1px #333;
  padding: 30px 0;
}
footer .bg_text {
  width: 150%;
  height: 100px;
  background-image: url("../img/bg_text_bottom.svg");
  background-size: 800px auto;
  background-position: center;
  background-repeat: repeat-x;
  animation: bgscroll 10s linear infinite;
  position: absolute;
  bottom: 80px;
  z-index: 1;
  mix-blend-mode: overlay;
}
@-webkit-keyframes bgscroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -800px 0;
  }
}
footer .gradation01 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20%;
  margin: auto;
  overflow: hidden;
  width: 120%;
  height: 100vh;
  opacity: 0.3;
}
.item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform-origin: 0 0;
  animation-name: rotate-item;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.item-01 {
  z-index: 3;
  animation-duration: 15s;
}
.item-02 {
  z-index: 2;
  left: 45%;
  animation-duration: 50s;
  animation-direction: reverse;
}
.item-03 {
  z-index: 4;
  left: 40%;
  animation-duration: 8s;
}
.round {
  position: relative;
  border-radius: 50%;
}
.round-01 {
  z-index: 3;
  top: 0%;
  width: 18vw;
  height: 18vw;
  background: #db1527;
  filter: blur(50px);
  animation: flash 5s linear infinite;
}
.round-02 {
  top: -20%;
  width: 30vw;
  height: 30vw;
  background-color: #db1527;
  filter: blur(80px);
  animation: flash 8s linear infinite;
}
.round-03 {
  top: 60%;
  width: 10vw;
  height: 10vw;
  background-color: #db1527;
  filter: blur(50px);
  animation: flash 3s linear infinite;
}
/* 回転アニメーション */
@keyframes rotate-item {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 点滅アニメーション */
@keyframes flash {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
}
@media screen and (max-width:1050px) {
  /*-------------------お問い合わせ-------------------*/
  .contents.contact {
    margin: 0 auto -50px;
  }
  .contents.contact a {
    padding: 70px 10%;
  }
  .contents.contact h3 {
    font-size: 34px;
  }
  .contents.contact h3 .sub {
    font-size: 18px;
  }
  /*矢印*/
  .contents.contact .arrow {
    width: 70px;
    height: 40px;
  }
  .contents.contact .arrow span:before {
    width: 15px;
  }
  .contents.contact .arrow span:after {
    left: 6px;
    width: 8px;
    height: 8px;
  }
  .contents.contact a:hover .arrow span {
    right: -20px;
  }
  /*-------------------フッター-------------------*/
  footer {
    padding: 100px 0 0;
  }
  footer .inner {
    width: 80%;
  }
  footer .address {
    font-size: 13px;
    margin-bottom: 40px;
  }
  footer .address .name {
    font-size: 16px;
    margin: 0 auto -5px;
  }
  footer .logo {
    width: 220px;
    margin-bottom: 20px;
  }
  footer nav {
    position: static;
    margin-bottom: 100px;
  }
  footer nav ul {
    display: block;
  }
  footer nav ul li {
    margin: 15px auto;
  }
  footer small {
    padding: 20px 0;
  }
  footer .bg_text {
    height: 60px;
    background-size: 500px auto;
    position: absolute;
    bottom: 60px;
  }
  @-webkit-keyframes bgscroll {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -500px 0;
    }
  }
  .round-01 {
    width: 38vw;
    height: 38vw;
  }
  .round-02 {
    width: 50vw;
    height: 50vw;
  }
  .round-03 {
    width: 30vw;
    height: 30vw;
  }
}