/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  bottom: 7vh;
  right: 0;
  left: 0;
  writing-mode: vertical-rl;
  z-idex: 100;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 3s infinite;
  background-color: #FFF;
  content: "";
  height: 14vh;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 100;
}
/* 線の背景色 */
.scroll::after {
  background-color: #888;
  content: "";
  height: 14vh;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 90;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.fadeIn_left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 4s;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 4s;
}
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 100px);
  transition: 4s;
}
.fadeIn1 {
  opacity: 0;
  transition: 3s;
}
.fadeIn2 {
  opacity: 0;
  transition: 4s;
}
.fadeIn3 {
  opacity: 0;
  transition: 5s;
}
.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.contents1 {
  height: 100vh;
  position: relative;
}
.contents1::before {
  content: '';
  background-image: url("../img/access-top.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -30;
  opacity: 0.4;
}
.concept {
  z-index: 30;
  color: white;
}
.concept-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.concept h1 {
  margin: 0 auto 20% auto;
  display: flex;
  justify-content: center;
}
.concept h1 img {
  width: 50%;
}
.concept p {
  font-size: 15pt;
  margin: 30px auto 0 auto;
  writing-mode: vertical-rl;
}
.contents2 {
  height: 100%;
  position: relative;
}
.contents2:before {
  content: '';
  background-image: url("../img/Access-map-back.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
  opacity: 0.5;
}
.CNT2BOX {
  width: 100%;
  display: flex;
  padding: 150px;
}
.CNT2IN1 {
  width: 50%;
  display: flex;
  align-items: center;
}
.CNT2IN1 img {
  width: 100%;
}
.CNT2IN2 {
  width: 50%;
  color: white;
  padding: 50px;
}
.CNT2IN2 img {
  width: 40px;
  vertical-align: middle;
  margin-right: 10px;
}
.CNT2IN2 h2 {
  font-size: 25pt;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 4pt;
}
.CNT2IN2 h2::first-letter {
  font-size: 50pt;
}
.CNT2IN2 h3 {
  font-size: 20pt;
  padding-top: 50px;
  padding-bottom: 10px;
  letter-spacing: 4pt;
  color: #B6815A;
}
.CNT2IN2 hr {
  color: #B6815A;
}
.CNT2IN2 p {
  font-size: 12pt;
  padding-top: 15px;
  letter-spacing: 2pt;
  line-height: 17pt;
}
.CNT2IN2 h4 {
  font-size: 18pt;
  padding-top: 30px;
  letter-spacing: 4pt;
  color: #fff;
}
.icon div {}
.contents3 {
  height: 100%;
  background-image: url("../img/haikei.png");
  padding-bottom: 5%;
}
.iframeWrapper {
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}
.iframeWrapper::before {
  content: "";
  display: block;
  padding-top: calc(1920 / 1080 * 100%);
}
.iframeWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.BOX {
  color: white;
  position: relative;
  overflow: hidden;
}
.BOXIN {
  width: 80%;
  display: flex;
  margin: auto;
  padding: 5% 5% 0 5%;
  flex-direction: column;
}
.text1 {
  width: auto;
  margin: 5% auto;
}
.text1 h2 {
  font-size: 20pt;
  border-left: 2px solid #B6815A;
  border-right: 2px solid #B6815A;
	display: inline;
	padding:0 20px;
}
.text2 {
  height: 100%;
  padding-top: 5px;
}
.text3 {
  padding-bottom: 50px;
}
.text2 h3 {
  font-size: 25pt;
  color: #B6815A;
  letter-spacing: 4pt;
  padding-bottom: 1%;
}
.text2 h4 {
  font-size: 20pt;
  color: #B6815A;
  letter-spacing: 4pt;
  text-align: justify;
  line-height: 25pt;
}
.text2 p {
  font-size: 12pt;
  padding-top: 10px;
  letter-spacing: 2pt;
  line-height: 17pt;
  text-align: justify;
}
.text2 a {
  font-size: 15pt;
  color: #B6815A;
  text-decoration: underline;
}
.text2 a:hover {
  color: gray;
  transition: 0.8s;
}
.hako {
  width: 100%;
	margin-top:2.5%;
  display: flex;
	justify-content: center;
}
.arrow05 {
  position: relative;
  padding-left: 30px;
}
.arrow05::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border-top: solid 3px #B6815A;
  border-right: solid 3px #B6815A;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 30%;
  left: 0;
  margin-top: 5px;
}
.title-box2 {
  margin-bottom: 5%;
  padding: 7.5%;
  color: #000;
  background-color: white;
	overflow: hidden;
  background-image: url("../img/access-carnavi-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.title-box2 {
}

.title-box2-title {
  font-size: 25pt;
  color: #B6815A;
  text-align: center;
  padding-bottom: 2.5%;
}
.kugiri-box {
  width: 70%;
  margin: auto;
  padding-top: 5%;
}
.kugiri {
  border: none;
  border-bottom: 2px solid #333;
  margin: 0;
}
@media screen and (max-width: 1048px) {
  .concept p {
    writing-mode: horizontal-tb;
    text-align: center;
    font-size: 12pt;
  }
  .contents2 {
    background-size: cover;
  }
  .CNT2BOX {
    display: block;
    padding: 20px;
    margin: auto;
    padding: 0 10%;
  }
  .CNT2IN1 {
    width: 100%;
    padding: 5% 0;
  }
  .CNT2IN2 {
    width: 100%;
    padding: 0px;
    padding-bottom: 60px;
  }
  .CNT2IN2 img {
    width: 25px;
    vertical-align: middle;
    margin-right: 10px;
  }
  .CNT2IN2 h2 {
    font-size: 18pt;
  }
  .CNT2IN2 h2::first-letter {
    font-size: 18pt;
  }
  .CNT2IN2 h3 {
    font-size: 16pt;
  }
  .CNT2IN2 p {
    font-size: 10pt;
    text-align: justify;
  }
  .CNT2IN2 hr {}
  .BOXIN {
    width: 100%;
    padding: 10% 10% 0 10%;
  }
  .text1 {
    margin-bottom: 10%;
  }
  .text1 h2 {
    margin: auto;
    font-size: 20pt;
  }
  .text2 {
    padding: 0;
  }
  .text2 p {
    font-size: 10pt;
  }
  .text2 h4 {
    font-size: 16pt;
    line-height: 20pt;
  }
  .text3 {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .title-box2 {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .title-box2-title {
    font-size: 20pt;
    color: #B6815A;
    text-align: center;
    padding-bottom: 5%;
  }
}