@charset "utf-8";

.center-image {
  width: 100%;
  margin: 0 auto 50px;

}

.center-image .slick-center img {
  transform: scale(1);
}

/* それ以外はscaleは0.8 */
.center-image img {
  transform: scale(0.8);
  width: 100%;

  object-fit: cover;
}

.slide {
  margin: 300px auto;

}

.img-frame {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
}

.img-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

video {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 17 / 9;
  object-fit: cover;
  overflow: hidden;
}

.frist-view {
  position: relative;
}

.fude1 {
  position: absolute;
  opacity: 0.1;
  width: 50%;
  top: -250px;
  left: 0;
}

.decoration {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 1px;
  height: 300px;
  background-color: #fff;

  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.decoration::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  bottom: 200px;
  /* 丸を水平方向中心に */
  left: 50%;
  transform: translateX(-50%);
  /* アニメーションの設定 下に行くと徐々に透過するが永遠に続く*/
  animation: marumove 2s ease-out infinite, marutrans 2s ease-in infinite;
}

@keyframes marumove {
  0% {
    bottom: 100%;
  }

  100% {
    bottom: 0%;
  }
}

@keyframes marutrans {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

.fixed-bg {
  min-height: 80vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.bg01 {
  background-image: url(../img2/top4.png);
}

.menu-title h2 {
  writing-mode: vertical-rl;
  font-size: 50px;
  font-weight: 100;
  position: fixed;
  top: 330px;
  left: 85px;
  letter-spacing: 20px;
  text-shadow: 1px 1px 10px #000;
}

.menu-title .sen {
  writing-mode: vertical-rl;
  font-size: 40px;
  position: fixed;
  top: 250px;
  left: 112px;
}

section {
  margin: 400px auto;
  text-align: center;
}

.title {
  font-size: 30px;
  margin-bottom: 30px;
}

section p {
  font-size: 18px;
  line-height: 60px;
}

section {
  position: relative;
}

.decoration1 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 600px;
  height: 1px;
  margin: 200px auto 0;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  bottom: 0;
  left: 0;
}

.decoration2 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 400px;
  height: 1px;
  margin: 200px auto 0;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  bottom: 30px;
  left: 50px;
}

.decoration3 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 500px;
  height: 1px;
  margin: 200px auto 0;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 50px;
}

.decoration4 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 400px;
  height: 1px;
  margin: 200px auto 0;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  top: -50px;
  right: 0px;
}

.decoration5 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 20px;
}

.decoration6 {
  content: "";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 20px;
}

.bus {
  width: 75%;
  margin: 100px auto 0;
}

.bus1,
.bus2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.bus1 img,
.bus2 img {
  width: 400px;
  height: 400px;
  margin: 30px 30px 100px;
  object-fit: cover;
}

.bus-text {
  width: 40%;
  margin: 30px 30px 100px;
  padding: 30px;
  border-left: 1px solid #fff;
}

.type-title {
  width: 100px;
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 5px;
  border: 0.8px solid #fff;
}

.bus-text p {
  line-height: 30px;
}

span {
  font-size: 22px;
}

@media (max-width: 1200px) {

  .bus1,
  .bus2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 300px;

  }

  .bus1 img,
  .bus2 img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    margin-bottom: 30px;
  }


  .bus-text {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    border-left: none;
    border-top: 1px solid #fff;
  }
}








@media (max-width: 1200px) {

  .decoration {
    content: "";
    /* ::befre::afterはインラインブロック表示に変えて幅を変える */
    display: block;
    width: 1px;
    height: 300px;
    background-color: #fff;

    position: absolute;
    bottom: -500px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .decoration1 {

    width: 400px;

  }

  .decoration2 {

    width: 300px;

  }

  .decoration3 {

    width: 400px;

  }

  .decoration4 {

    width: 300px;

  }

}