@charset "UTF-8";
.intro{
  background: url(../img/top/intro-bg.jpg) no-repeat top center / cover;
  padding: 30px 0 120px;
  color: #6d6b67;
}
.intro .head-txt{
  max-width: 1580px;
  width: 90%;
  margin: 0 auto;
}
.intro .head-txt .txt1{
  max-width: 1050px;
  transition: .6s;
  transform: translateX(-20px);
  opacity: 0;
}
.intro .head-txt .cross{
  max-width: 220px;
  margin: 30px auto;
  transition: .6s;
  opacity: 0;
}
.intro .head-txt .txt2{
  max-width: 1040px;
  margin-left: auto;
  transition: .6s;
  opacity: 0;
  transform: translateX(20px);
}
.intro .head-txt .txt1.move,
.intro .head-txt .cross.move,
.intro .head-txt .txt2.move{
  opacity: 1;
  transform: translateX(0);
}
.intro .body-txt{
  max-width: 1580px;
  width: 90%;
  margin: 280px auto 0;
  text-align: center;
}
.intro .body-txt .txt1{
  font-size: clamp(18px,3.6vw,54px);
  line-height: 1.6;
  margin: 0 0 30px;
}
.intro .body-txt .txt2{
  font-size: clamp(12px,2vw,26px);
  line-height: 1.8;
  margin: 0;
}
.intro .img-list{
  max-width: 1050px;
  width: 90%;
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}
.intro .img-list li{
  width: calc(100% / 2 - 10px);
  margin: 0 0 30px;
}
.intro .img-list li .range{
  margin: 15px 0 0 6%;
}
.intro .img-list li:nth-child(1) .range{
  width: 80%;
}
.intro .img-list li:nth-child(2) .range{
  width: 90%;
}
.intro .img-list li .txt{
  font-size: clamp(16px,2.2vw,24px);
  line-height: 1.6;
  margin: 15px 0 0 auto;
  width: 94%;
}
@media screen and (max-width: 767px) {
  .intro{
    padding: 10px 0 30px;
  }
  .intro .head-txt{
    max-width: 350px;
    width: 84%;
  }
  .intro .head-txt .cross{
    max-width: 70px;
    margin: 15px auto;
  }
  .intro .body-txt{
    margin: 30px auto 0;
  }
  .intro .body-txt .txt1{
    line-height: 1.8;
    margin: 0 0 10px;
  }
  .intro .img-list{
    margin: 40px auto 0;
    width: 80%;
    display: block;
  }
  .intro .img-list li{
    width: 100%;
  }
  .intro .img-list li .range{
    margin: 15px 0 0;
  }
  .intro .img-list li:nth-child(1) .range{
    width: 80%;
  }
  .intro .img-list li:nth-child(2) .range{
    width: 90%;
  }
  .intro .img-list li .txt{
    margin: 15px 0 0;
    width: 100%;
  }
}

.conts{
  padding: 1px 0 1px;
  background-color: #060001;
  color: #fff;
}
.conts .head-txt{
  font-size: clamp(18px,3vw,34px);
  line-height: 1.6;
  text-align: center;
  padding: 140px 0;
}
.conts .box{
  display: block;
  width: 100%;
  position: relative;
  margin-top: 10px;
  transition: .3s;
}
.conts .box:hover{
  opacity: .7;
}
.conts .box .inner{
  position: absolute;
  max-width: 1000px;
  width: 90%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  display: flex;
}
.conts .box .inner .text{
  font-size: clamp(15px, 2.2vw, 30px);
  line-height: 1.6;
  color: #fff;
  width: fit-content;
}
.conts .box:nth-of-type(odd) .inner .text{
  margin-left: auto;
}
.conts .box .inner .text strong{
  display: block;
  margin-bottom: 40px;
}
.conts .box.concept .inner .text{
}
.conts .box.concept .inner .text strong{
  max-width: 350px;
}
.conts .box.location .inner .text{
}
.conts .box.location .inner .text strong{
  max-width: 370px;
}
.conts .box.access .inner .text{
}
.conts .box.access .inner .text strong{
  max-width: 290px;
}
.conts .box .notes{
  font-size: 12px;
  z-index: 1;
  line-height: 1;
  position: absolute;
  bottom: 5px;
  right: 25px;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) {
  .conts .head-txt{
    padding: 40px 0;
  }
  .conts .box{
    margin-top: 5px;
  }
  .conts .box .inner{
    top: 35%;
  }
  .conts .box .inner .text{
    font-size: clamp(15px, 2.2vw, 30px);
    line-height: 1.6;
    color: #fff;
    width: fit-content;
    margin: 0 auto;
    text-shadow: 0 0 2px rgba(0,0,0,.8);
    text-align: center;
  }
  .conts .box .inner .text strong{
    margin: 0 auto 10px;
  }
  .conts .box.concept .inner .text{
  }
  .conts .box.concept .inner .text strong{
    max-width: 150px;
  }
  .conts .box.location .inner .text{
  }
  .conts .box.location .inner .text strong{
    max-width: 170px;
  }
  .conts .box.access .inner .text{
  }
  .conts .box.access .inner .text strong{
    max-width: 120px;
  }
  .conts .box .notes{
    font-size: 10px;
    right: 5px;
  }
}