@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.wrapper{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.movie{
	width: 80%;
	margin: 10% auto;
}

video{
	width: 100%;
	height: auto;
}

.point{
	width: 90%;
	margin: 10% auto;
	font-family: 'Georgia',sans-serif;
}

.point h1{
	text-align: center;
	font-weight: normal;
	font-size: 30px;
	margin: 5% auto;
}

.point__box{
	display: flex;
	align-items: center;
	column-gap: 20px;
	margin-bottom: 8%;
}

.point__box2{
	flex-direction: row-reverse; 
}

.point__img{
	flex-shrink: 0;
	width: 50%;
}

.point__txt{
	width: 50%;
}

.point__txt h2{
	margin: 0;
	font-size: 40px;
	font-weight: normal;
	text-align: center;
}

.point__txt p{
	margin: 2% 0;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
}

.slide{
	position: relative;
	overflow: inherit;
	}

.slide-img{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	opacity: 0;
	animation :slideshow 8s;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-timing-function: steps(1, end);
}


@keyframes slideshow{
	  0%{
		opacity: 0;
	  }
	  50%{
		opacity: 1;
	  }
	  100%{
		opacity: 0;
	  }
	}

.content{
	margin: 15% auto;
}

.box{
	margin: 0 auto 20%;
}

.box h1{
	font-family: 'Georgia',sans-serif;
	font-weight: normal;
	font-size: 40px;
	width: 100%;
	margin: 5% auto;
	display: flex;
	align-items: center;
}

.box h1:before,
.box h1:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
}

.box h1:before {
	margin-right: 1.6rem;
}

.box h1:after {
	margin-left: 1.6rem;
}

.main{
	width: 90%;
	margin: 5% auto;
}

.main .credit p{
	text-align: center;
	font-size: 15px;
	line-height: 1.8;
	margin: 5% auto 0;
}

.credit a{
	display: block;
	width: 50%;
	margin: 3% auto;
	text-align: center;
	font-size: 18px;
	background-color: #000;
	font-family: 'Georgia',sans-serif;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	line-height: 1.8;
	position: relative;
}

.credit a:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

.main p{
	font-size: 13px;
	line-height: 1.7;
	margin: 8% auto;
	text-align: center;
}

.sub{
	width: 90%;
	margin: 10% auto;
	display: flex;
	column-gap: 20px;
}

.sub div:last-child{
	margin-top: 15%;
}

@media(min-width:750px){

.point{
	width: 80%;
}

.point h1{
	font-size: 40px;
	margin: 5% auto;
}


.point__txt h2{
	font-size: 50px;
}

.point__txt p{
	font-size: 23px;
	line-height: 1.8;
}


.content{
	margin: 15% auto;
}

.box{
	margin: 0 auto 10%;
}

.box h1{
	font-family: 'Georgia',sans-serif;
	font-weight: normal;
	font-size: 40px;
	width: 100%;
	margin: 5% auto;
	display: flex;
	align-items: center;
}

.box h1:before,
.box h1:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
}

.box h1:before {
	margin-right: 1.6rem;
}

.box h1:after {
	margin-left: 1.6rem;
}
	
.flexPc{
	display: flex;
	column-gap: 50px;
}

.main{
	width: 90%;
	margin: 0 auto;
}

.sub div:last-child{
	margin-top: 20%;
}
	
}






