@charset "UTF-8";
@media screen and (min-width:641px){
/* CSS Document */

	.sp{
		display: none;
	}
	
	.hidden{
	display:none;
	}
		
	html{
		scroll-behavior: smooth;
	}
	
	body{
		background-color: #fcfcfc;
		color: #302e19;
		animation-name:fadeInAnime;
		animation-duration:2s;
		animation-fill-mode:forwards;
		opacity:0;
	}
	
	

	@keyframes fadeInAnime{
	from {
		opacity: 0;
  }

	to {
		opacity: 1;
  }
}

	
	h1{
		text-align: center;
		font-size: 48px;
		margin-top: 100px;
		font-weight: semibold;
	}
	
	h2{
		text-align: center;
		font-size: 40px;
		margin-top: 100px;
		font-weight: semibold;
	}
	
	#nav_container{
		display: flex;
		justify-content: space-between;
		width: 400px;
		margin-left: auto;
		margin-right: 150px;
		margin-top: 80px;
		font-size: 22px;
		font-weight: semibold;
	}

	#name{
		padding-top: 100px;
		font-size: 26px;
		font-weight: semibold;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		line-height: 2em;
		letter-spacing: .5em;
	}
	
	#title{
		margin-top: 100px;
		font-size: 54px;
		font-weight: semibold;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		letter-spacing: .8em;
	}
	
	#job{
		margin-top: 130px;
		font-size: 24px;
		font-weight: semibold;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		letter-spacing: .5em;
	}
	
	#nav_container,#name,#title,#job{
		 animation-name: textanime;
		 animation-duration:5s;
	}

	@keyframes textanime {
		0%{
			opacity: 0;
		}

		100%{
			opacity: 1;
		}
	}

	.border_top{
		position: relative;
		text-align: left;
		font-size: 18px;
		padding-top: 100px;
	}
	
	.border_top:before{
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		border-bottom: solid 2px #000;
		animation: border_anim 5s linear forwards;
	}

	@keyframes border_anim {
		0%{
			width: 0%;
		}
		100%{
			width: 40%;
		}
	}
		
	.border_bottom{
		position: relative;
		text-align: right;
		font-size: 18px;
		padding-top: 100px;
}

	.border_bottom:before{
		content: '';
		position: absolute;
		left: 100;
		bottom: 0;
		width: 0;
		transform: translateX(-100%);
		border-bottom: solid 2px #000;
		animation: border_anim 5s linear forwards;
	}

	@keyframes border_anim {
		0%{
			width: 0%;
		}
		100%{
			width: 40%;
		}
	}
	
	#main_works_container{
		margin-top:400px;
		transition: 2s;
		opacity: 0;
	}
	

	
	#main_works_container.active{
		opacity: 1;
	}
	
	#main_works_portofolio1,#main_works_portofolio3{
		display: flex;
		justify-content: space-between;
		margin-left: 250px;
		margin-right: auto;
		width: 1000px;
		margin-top: 80px;
		transition: 2s;
		opacity: 0;
		
	}
	
	#main_works_portofolio1.active,#main_works_portofolio3.active{
		opacity: 1;
	}
	
		#main_works_portofolio2_pc{
		display: flex;
		justify-content: space-between;
		margin-left: auto;
		margin-right: 345px;
		width: 1000px;
		margin-top: 80px;
		transition: 2s;
		opacity: 0;
		
	}
	
	#main_works_portofolio2_pc.active{
		opacity: 1;
	}
	
	#main_works_portofolio1 img,#main_works_portofolio2_pc img,#main_works_portofolio3 img{
		width: 580px;
		height: 335px;
	}
	
	.main_works_portofolio1_discription{
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		line-height: 2em;
	}
	.main_works_portofolio1_discription_containern > div > p{
		text-align: left;
	}
	
	.main_works_portofolio1_discription_title{
		margin-top:50px;
	}
	
	.main_works_portofolio1_discription_title p{
		font-size: 26px;
	}
	
	.main_works_portofolio1_discription_tool1{
		margin-top:10px;
	}
	
	.main_detail_button p{
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	
	.main_works_detail_button{
		margin: 1em 0;
		color: #302e19;
		border: solid 2px #302e19;
		border-radius: 7px;
		width: 270px;
		height: 40px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		cursor: pointer;
		position: relative;
		transition: ease .2s;
		outline: none;
	}
		
	.main_works_detail_button span{
		position: relative;
		display: inline-flex; 
		z-index: 100;
		color:#302e19;
		align-items: center;
		justify-content: center;
		height: 100%;
	}

	
	.main_works_detail_button:hover span{
		color:#fff;
	}


	.main_works_detail_button:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;
		background:#302e19;
		height: 100%;
		transition: transform 1.0s, width 0.4s;
		transform: scale(0, 1);
		transform-origin: right top;
	}

	.main_works_detail_button:hover:before{
		transform-origin:left top;
		transform:scale(1, 1);
		width:100%;
	}
	
/*	Profile*/
	#main_profile{
		transition: 2s;
		opacity: 0;
	}
	
	#main_profile.active{
		opacity: 1;
	}
	
	#main_profile_name{
		display: flex;
		justify-content: space-between;
		width: 300px;
		margin-top: 50px;
		font-size: 20px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		font-family: Lato;
	}
	
	#main_profile_photo img{
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		width: 200px;
		height: 200px;
		margin-top: 30px;
	}
	
	#main_profile_sentence{
		margin-left: auto;
		margin-right: auto;
		margin-top: 20px;
		width: 200px;
	}
	
	#main_profile_sentence p{
		display: block;
		text-align: left;
	}
	
	#main_profile_detail_button{
		margin: 1em 0;
		color: #302e19;
		border: solid 2px #302e19;
		border-radius: 7px;
		width: 270px;
		height: 40px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		cursor: pointer;
		position: relative;
		transition: ease .2s;
		outline: none;
	}
	
	#main_profile_detail_button span{
		position: relative;
		display: inline-flex; 
		z-index: 100;
		color:#302e19;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
	
	#main_profile_detail_button:hover span{
		color:#fff;
	}

	#main_profile_detail_button:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;
		background:#302e19;
		height: 100%;
		transition: transform .6s, width 0.4s;
		transform: scale(0, 1);
		transform-origin: right top;
	}

	#main_profile_detail_button:hover:before{
		transform-origin:left top;
		transform:scale(1, 1);
		width:100%;
	}

	
/*	Contact*/
	#main_contact{
		transition: 2s;
		opacity: 0;
	}
	
	#main_contact.active{
		opacity: 1;
	}
	
	
	#main_contact_sentence{
		margin-top: 30px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	
	#main_contact_form_button{
		margin: 1em 0;
		color: #302e19;
		border: solid 2px #302e19;
		border-radius: 7px;
		width: 270px;
		height: 30px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 1em;
	}
	
	#main_contact_form_button{
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	
	#main_contact_form_button{
		margin: 1em 0;
		color: #302e19;
		border: solid 2px #302e19;
		border-radius: 7px;
		width: 270px;
		height: 40px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		cursor: pointer;
		position: relative;
		transition: ease .2s;
		outline: none;
	}
	
	#main_contact_form_button span{
		position: relative;
		display: inline-flex; 
		z-index: 100;
		color:#302e19;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
	
	#main_contact_form_button:hover span{
		color:#fff;
	}

	#main_contact_form_button:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;
		background:#302e19;
		height: 100%;
		transition: transform .6s, width 0.4s;
		transform: scale(0, 1);
		transform-origin: right top;
	}

	#main_contact_form_button:hover:before{
		transform-origin:left top;
		transform:scale(1, 1);
		width:100%;
	}
	
/*	footer*/
	#footer_container{
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		margin-top: 100px;
		margin-bottom: 50px;
	}
	
	#footer_container p{
		font-size: 12px;
	}
}