@charset "utf-8";
/* CSS Document */

/*================================
	header
=================================*/
#bg-video{
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -999;
	background-size: cover;
	opacity: .6;
}
#header{
	width: 100%;
	height: 100vh;
	position: relative;
}

/* ---------- nav  ---------- */
#header #gnav{
	position: absolute;
	width: 100%;
	height: 100px;
	bottom: 25%;
	z-index: 9;
}

#header #gnav ul{
	display: flex;
	justify-content: center;
}

#header #gnav ul li{
	display: block;
	height: 80px;
	padding: 20px;
	text-align: center;
}
#header #gnav ul li a{
	text-decoration: none;
	font-size: 1.5rem;
	color: #333;
	outline: none;
}
#header #gnav ul li i{
	font-size: 30px;
	color: #faa;
}

#header #gnav ul li i:hover{
color: #f66;
}
@media screen and (min-width: 768px){
	#header #gnav{bottom: 20%;}
	#header #gnav ul li a{font-size: 3rem;}
	#header #gnav ul li i{font-size: 3rem;}
}


/* ---------- Portfolioロゴ ---------- */
.header-text{
	width: 100%;
	height: 100%;
	padding-bottom: 10rem;
	position: relative; /*必ず必要*/
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	margin: auto;
}

.header-text h1{
	display: inline-block;
	background: linear-gradient(45deg, #FA8BFF 16%, #2BD2FF 57%, #2BFF88 90%);
	background-size: 300% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientEffect 6s infinite alternate;
}
 
@keyframes gradientEffect {
	0% {background-position: left}
	75% {background-position: left}
	100% {background-position: right}
}

/*================================
	about
=================================*/
#about{
	background: linear-gradient(to bottom right, #fdd, #FFC778);
	padding: 5% 10%;
}
#about_text .text{
	margin-bottom: 0.5rem;
}

#about_text .text p{
	margin-left: 2rem;
}
.about_image{opacity: 0.8;}
.about_image img{
	width: 100%;
	height: auto;
	box-shadow: 10px 5px 5px #FFFE84;
}

@media screen and (min-width: 1080px){
	#about_container{
		display: flex;
	}
	#about_text{
		width: 60%;
		margin-right:5%;
	}
	.about_image{
		width: 40%;
		filter: blur(6px);
		transition: .4s;
	}
	.about_image:hover{
		filter: none;
	}
}

/*================================
	Contactボタン
=================================*/
#about .modal-open{
	width: 60%;
	max-width: 600px;
	height: 5rem;
	margin: 20px auto;
	font-weight: bold;
	background-color: #fff;
	background-image: repeating-linear-gradient(45deg,
								rgba(194, 168, 204, 0.50),
								rgba(194, 168, 204, 0.50) 40px,
								transparent 0,
								transparent 80px),
					  repeating-linear-gradient(315deg,
								rgba(194, 168, 204, 0.50),
								rgba(194, 168, 204, 0.50) 40px,
								transparent 0,
								transparent 80px);
	cursor: pointer;
	border-radius: 60px;
	border: 3px solid #DBB7FF;
}


#about .modal-open p{
	line-height: 5rem;
	color: #666;
	text-align: center;
	font-size: 2rem;
}
#about .modal-open i{
	font-size: 2.5rem;
}
#about .modal-open:hover{

	background-image: repeating-linear-gradient(45deg,
								rgba(194, 168, 204, 0.60),
								rgba(194, 168, 204, 0.60) 40px,
								transparent 0,
								transparent 80px),
					  repeating-linear-gradient(315deg,
								rgba(194, 168, 204, 0.60),
								rgba(194, 168, 204, 0.60) 40px,
								transparent 0,
								transparent 80px);
}
#about .modal-open p:hover{
color: #222;
}
