@charset "UTF-8";

.page-title {
	background: url("../img/panorama/title.jpg") center no-repeat;
	background-size: cover;
	min-height: 450px;
	text-align: left;
	position: relative;
	margin-bottom: 0;
	display: flex;
	align-items: center;
}
@media only screen and (max-width: 768px) {
	.page-title {
		min-height: 200px;
		margin-top: 50px;
		margin-bottom: 0;
	}
}

.content {
}
.inner{
	width: calc(100% - 200px);
	margin: 0 auto;
	text-align: center;
	/*border-bottom: 1px solid rgba(255,255,255,.2);*/
	padding: 60px 0 80px;
}
@media only screen and (max-width: 768px) {
	.content {
	}
	.content h3 {
		font-size: 1.8rem;
		line-height: 48px;
		width: 90%;
	}
	.inner{
		width: 90%;
		display: block;
		padding: 40px 0 60px;
	}
}


h4 {
	text-align: center;
	color: #1C0C00;
	font-size: 2.2rem;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}
.inner > p {
	font-size: 1.4rem;
	color: #1C0C00;
	line-height: 1.8;
	margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
	h4 {
		font-size: 1.8rem;
		margin: 0 auto 20px;
	}
	.inner > p {
		font-size: 1.4rem;
		line-height: 1.8;
		text-align: left;
		width: 90%;
		margin: 0 auto 30px;
	}
}

.panorama + p {
	text-align: right;
	font-size: 1.2rem;
	margin: 5px 0 0;
	width: 100%;
}
@media only screen and (max-width: 768px) {
	.panorama + p {
		text-align: left;
	}
}

.scrolldown1{
  position:absolute;
  left:50%;
  bottom:10px;
  height:50px;
}
.scrolldown1 span{
  position: absolute;
  left:-15px;
  top: -15px;
  color: #1C0C00;
  font-size: 1.2rem;
	font-weight: 600;
  letter-spacing: 0.05em;
	padding: 0;
}
.scrolldown1::after{
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #1C0C00;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

@media only screen and (max-width: 768px) {
    .scrolldown1{
      bottom: -30px;
    }
}