.mian-visual {
  position: relative;
  width: 100%;
  height: 100svh;
  opacity: 0;
  transition: 0.4s;
}

.mian-visual.active {
  opacity: 1;
}

.mian-visual h1 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 60px;
  font-family: Karma;
}

.mian-visual p {
  position: absolute;
  top: 45%;
  right: 20%;
  transform: translateY(-50%);
  letter-spacing: 4px;
  line-height: 2;
}

.mian-visual .s-line {
  position: absolute;
  bottom: 0;
  right: 35%;
  width: 1px;
  height: 150px;
  background-color: #fff;
}

.mian-visual .link-btn {
  position: absolute;
  bottom: 200px;
  right: 20%;
  font-family: Now;
  font-size: 20px;
  font-weight: bold;
  width: 150px;
  height: 150px;
  line-height: 150px;
  text-align: center;
}

.mian-visual .link-btn::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: 0;
  left: 0;
  background: url(../images/top/icon_circle.svg) no-repeat;
  background-size: cover;
  animation: borderAnimation 20s infinite linear;
}

@keyframes borderAnimation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.v-area {
  position: sticky;
  top: 0;
}

.v-area video {
  position: absolute;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.block1 .t-area {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000%;
  margin: 0 auto;
  padding: 80px 0 300px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgb(31, 31, 31));
}

.block1 .t-area .ttl {
  width: 40%;
}

.block1 .t-area .ttl h2 {
  font-family: Now;
  font-size: 40px;
  text-align: center;
}

.block1 .t-area .t-box {
  width: 40%;
  letter-spacing: 4px;
  line-height: 2;
}

.block2 .ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 80px;
}

.block2 .ttl h2 {
  font-family: Now;
  font-size: 40px;
  text-align: center;
}

#sectionPin {
  overflow: hidden;
  display: flex;
  background-color: #1f1f1f;
  height: 100vh;
  position: relative;
}

.pin-section {
  display: flex;
  padding: 0 50vw;
  height: 100%;
  align-items: center;
}

.pin-section .item {
  width: 700px;
  display: block;
  margin-right: 150px;
}

.pin-section .item:nth-child(even) {
  padding-top: 80px;
}

.pin-section .item:nth-child(odd) {
  padding-bottom: 80px;
}

.pin-section .item figure {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.pin-section .item figure img {
  transition: 2.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pin-section .item h3 {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 2;
  font-weight: normal;
  padding-left: 30px;
  position: relative;
  display: inline-block;
}

.pin-section .item h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_url.svg) no-repeat;
  background-size: cover;
}

.pin-section .item h3::after {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.pin-section .item:hover img {
  transform: scale(1.05);
  transition: 5s;
}

.pin-section .item:hover h3::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.ani-ini {
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s, opacity 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.ani-ini.upper {
  transform: translate3d(0, 40px, 0);
}

.ani-ini.is-show {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.block3 {
  background-color: #1f1f1f;
  padding-top: 120px;
  padding-bottom: 240px;
  position: relative;
}

.block3 .ttl h2 {
  font-family: Now;
  font-size: 40px;
  text-align: center;
}

.block3 .s-area {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.block3 .s-area .box {
  width: 100%;
  display: flex;
  margin-top: 60px;
}

.block3 .s-area .box .img-box {
  display: flex;
}

.block3 .s-area .box img {
  width: 60px;
  height: auto;
  margin-right: 40px;
}

.block3 .s-area .box h3 {
  font-size: 18px;
  letter-spacing: 4px;
  line-height: 2;
  font-weight: normal;
}

@media (max-width: 1024px) {
  .mian-visual .s-line {
    right: 10%;
  }
  .block1 .t-area {
    padding: 80px 20px 120px;
  }
  .block1 .t-area .ttl {
    width: 40%;
  }
  .block1 .t-area .t-box {
    width: 60%;
  }
  .block2 .ttl {
    width: 100%;
    position: static;
    transform: translateY(0);
  }
  #sectionPin {
    height: auto;
    display: block;
  }
  .pin-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 60px 20px;
    height: auto;
  }
  .pin-section .item {
    width: 48%;
    margin: 0 1% 25px;
  }
  .pin-section .item h3 {
    margin-top: 15px;
  }
  .section-fixed {
    width: 100%;
    height: 500px;
    justify-content: center;
  }
  .pin-section .item:nth-child(odd), .pin-section .item:nth-child(even) {
    padding: 0;
  }
  .block3 {
    padding: 0 20px 120px;
  }
}
@media (max-width: 768px) {
  .mian-visual h1 {
    left: 20px;
    font-size: 38px;
  }
  .block1 .t-area {
    flex-wrap: wrap;
  }
  .block1 .t-area .ttl, .block1 .t-area .t-box {
    width: 100%;
  }
  .block1 .t-area .t-box {
    margin-top: 30px;
    text-align: center;
  }
  .pin-section .item {
    width: 100%;
    margin: 0 0 25px;
  }
  .block3 .s-area .box {
    margin-top: 40px;
  }
  .block3 .s-area .box h3 {
    font-size: 14px;
  }
  .block3 .s-area .box .img-box {
    display: block;
    width: 15%;
    max-width: 40px;
    margin-right: 5%;
  }
  .block3 .s-area .box img {
    width: 15%;
    max-width: 40px;
    margin-right: 5%;
  }
  .block3 .s-area .box .img-box img {
    width: 100%;
    margin: 10px 0;
  }
  .block3 .s-area .box div {
    width: 80%;
  }
}
@media (max-width: 580px) {
  .mian-visual .link-btn {
    bottom: 120px;
  }
}/*# sourceMappingURL=top.css.map */