@charset "UTF-8";

html{
	font-size:62.5%;
	}

*,*::before, *::after{
	box-sizing:border-box;
	}

body{
	background-size:cover;
	color:#fff;
	text-align:center;
	font-size:1.4rem;
	font-family:"Helvetica Neue", "HelveticaNeueLTStd", Helvetica, Arial, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}

ul {
  list-style: none;
}

i{  
font-family:"FontAwesome";
font-style:normal;  
} 

/* --------------------------------
 * アニメーション　サイトオープン時の遅れ
 * -------------------------------- */

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/* --------------------------------
 * アニメーション　下からフワッと
 * -------------------------------- */

.fadein {
    opacity : 0;
    transform : translate(0, 30px);
    transition : all 1000ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* --------------------------------
 * アニメーション　上下に揺れる
 * -------------------------------- */

.fluffy {
  animation: fluffy1 5s cubic-bezier(0.0, 0.0, 0.0, 0.0)  infinite;
}

@keyframes fluffy1 {
  0% { transform:translateY(0) }
	50%{ transform:translateY(15px) }
  100% { transform:translateY(0) }
}

/* --------------------------------
 * header
 * -------------------------------- */

.header{
	padding:0 0 60px;
	}

.site-title{
	margin:130px 0 40px;
	font-size:7.6rem;
	}

/*ハンバーガー*/

.rogo_w_h{
	position:relative;
	width:200px;
	height:auto;
	margin:13px 7%;;
	}

.rogo_w_h a:hover{
	opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.7;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.img_rogo{
	display: block;
	position:absolute;
	width:100%;
	height:auto;
	z-index:5;
	}

#nav_b{
	position:fixed;
	top:0;
	width:100%;
	height:55px;
	background:#fff;
	z-index:2;
	}

.global-nav {
	width:100%;
	height: 600px;
	margin:-18px auto 0;
  text-align: center;
}
.global-nav .nav-item {
  display: inline-block;
  margin: 0 10px;
}
.global-nav .nav-item a {
  display: inline-block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 8px;
  color: #000;
  font-size: 1.3rem;
  letter-spacing: 1px;
  transition: 0.15s;
	text-decoration:none;
}

.global-nav .nav-item a:hover {
  color:#005baa;
}

.global-nav-ul{
	padding: 0;
}

.site-description{
	margin-bottom:30px;
	color:#fff;
	font-size:1.6rem;
	}

.button{
	display:inline-block;
	width:50px;
	height:50PX;
	border-radius:50px;
	background-color: rgba(255,255,255,0.3);
	color:#fff;
	text-decoration:none;
	font-size:1.2rem;
	}

.button .skill-icon-b {
	width:50px;
	height:50px;
	padding:10px 0;
	font-size:3.5rem;
	opacity: 0.7;
	}


.button:hover{
	opacity:0.7;
	}
	
.buttons .button{
	margin:10px;
	}



/* --------------------------------
 * about
 * -------------------------------- */

.about{
	padding:80px 30px;
	background-color:#fff;
	color:#000;
	}

.headihg{
	position: relative;
	display:inline-block;
	margin:30px 0 15px;
	padding-bottom:15px;
	letter-spacing:2px;
	font-size:4rem;
	}

.headihg::before,
.headihg::after{
	content:'';
	position:absolute;
	right:0;
	bottom:0;
	left:0;
	border-bottom:1px solid #000;
	}

.headihg::before{
	bottom:5px;
	}

.about-text{
	margin:30px 0;
	line-height:2.5;
	}


/* --------------------------------
 * works
 * -------------------------------- */

.works-headihg{
	position: relative;
	display:inline-block;
	margin:30px 0 15px;
	padding-bottom:15px;
	letter-spacing:2px;
	font-size:4rem;
	}

.works-headihg::before,
.works-headihg::after{
	content:'';
	position:absolute;
	right:0;
	bottom:0;
	left:0;
	border-bottom:1px solid #fff;
	}

.works-headihg::before{
	bottom:5px;
	}

.works{
	background-color:#000;
	padding:80px 0;
	}

.works-wrapper{
	display:table;
	width:100%;
	margin-top:60px;
	table-layout:fixed;
	}

.works-box{
	position:relative;
	display:table-cell;
	}

.works-box::after{
	content:'';
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	height:50%;
	background:no-repeat;
	background-size:100% 100%;
	opacity:0.2;
	transform:scaleY(-1);
	}

.works-box.tree::after{
	background: url(../images/tree.jpg);
	}

.works-box.building::after{
	background: url(../images/building.jpg);
	}

.works-box.lake::after{
	background: url(../images/lake.jpg);
	}

.works-box.sky::after{
	background: url(../images/sky.jpg);
	}


.work-image{
	display:block;
	width:100%;
	margin:0 0 60%;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	}

.work-description{
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	height:50%;
	}

.work-description-inner{
	width:100%;
	height:100%;
	padding:20px;
	}

.work-text{
	vertical-align:middle;
	font-size:1.2rem;
	line-height:2;
	}

.button-ghost::before,
.button-ghost::after{
	content:'';
	display:inline-block;
	width:8px;
	height:8px;
	margin:-7px 10px;
	border:1px solid;
	vertical-align:8px;
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);
	}

.works-box:nth-child(odd) .work-image{
	margin:60% 0 0;
	}

.works-box:nth-child(odd) .work-description,
.works-box:nth-child(odd)::after{
	top:0;
	}

.work-description{
	position:absolute;
	top:50%;
	left:0;
	z-index:1;
	width:100%;
	height:50%;
	overflow-y:auto;
	}


/* --------------------------------
 * skills
 * -------------------------------- */

.skills{
	padding:80px 0;
	background-color:#fff;
	color:#333;
	}

.skill-wrapper{
	display:table;
	width:80%;
	margin:50px auto 0;
	table-layout:fixed;
	}

.skill-box{
	display:table-cell;
	}

.skill-icon{
	width:150px;
	height:150px;
	margin-bottom:30px;
	border:4px solid;
	border-radius:50%;
	color:#005baa;
	font-size:8rem;
	line-height:142px;
	}

.skill-icon-y{
	display:table-cell;
	width:60px;
	color:#005baa;
	font-size:3rem;
	}

.skill-title{
	margin:0 20px 20px;
	font-size:2rem;
	}

.skill-text{
	margin:0 20px;
	line-height:2;
	}




/* --------------------------------
 * contact
 * -------------------------------- */

.contact{
	padding:80px 0 100px;
	background:#fff;
	}

.contact_b{
	background:#fff;
	background-size:cover;
	}

.contact_h2{
	color: #000;
}

.contact-from{
	width:50%;
	margin:30px auto 0;
	}

.contact-from input[type=text],
.contact-from textarea{
	display:block;
	width:100%;
	margin-bottom:10px;
	padding:15px;
	outline:none;
	border:1px solid rgba(0,0,0,0.15);
	border-radius:0;
	background-color:rgba(0,0,0,0.8);
	color:#fff;
	}

.contact-from ::-webkit-input-placeholder{
	color: rgba(255,255,255,0.6);
	opacity:1;
	}
	
.contact-from :-ms-input-placeholder{
	color: rgba(255,255,255,0.6);
	opacity:1;
	}

.contact-from ::-moz-placeholder{
	color: rgba(255,255,255,0.6);
	opacity:1;
	}

.contact-from textarea{
	height:250px;
	}

.contact-from input[type=text]:focus,
.contact-from textarea:focus{
	box-shadow:0 0 8px rgba(0,0,0,0.2) inset;
	}


.contact-from input[type=submit]{
	display:block;
	width:100%;
	margin:40px auto 0;
	padding:15px;
	border:1px solid rgba(0,0,0,0.23);
	border-radius:5px;
	background-color:rgba(0,0,0,0.8);
	color:rgba(255,255,255,0.6);
	cursor:pointer;
	}

.contact-from input[type=submit]:hover{
	background-color:rgba(0,0,0,0.3);
	}

/* --------------------------------
 * footer
 * -------------------------------- */
.footer{
	padding:50px 0 30px;
	font-size:1.3rem;
	background:#000;
	}

.horizontal-list{
	width:100%;
	margin:0 auto 30px;
	}

.horizontal-item{
	display:inline-block;
	padding:0 15px;
	letter-spacing:1px;
	}

.horizontal-list .horizontal-item a{
	color:#acacac;
	transition:color o.15s;
	text-decoration:none;
	}

.horizontal-list .horizontal-item a:hover{
	color:#005baa;
	}

/* --------------------------------
 * smart phone
 * -------------------------------- */

	
@media (max-width:1024px){
	
	body{
	background-image: none;
	}
	
	}	
	
	
@media (max-width:768px){
	
	body{
		font-size:1.3rem;
		}
	
	/*header*/
	
	.site-title{
		margin-top:35px;
		font-size:5rem;
		}
	
	.header{
		padding-top:60px;
		}
	
	.rogo_w_h{
	  width:160px;
		margin: 17px 7%;
	
	}
	
	.button:hover{
		opacity:1;
		}
	
	
	/*nav*/
	
	.global-nav .nav-item {
  	display: block;
    }
	
	/*about me*/
	
	.headihg{
		font-size:2.5rem;
		}
	
	.about-text{
		line-height:1.8;
		}
	
	
	/*works*/
	
	.works-headihg{
		font-size: 2.5rem;
	}
	
	.works-wrapper,
	.works-box{
		display:block;
		}
	
	.work-image{
		display:none;
		}
	
	.work-description{
		position:relative;
		}
	
	.works-box::after{
		top:0;
		height:100%;
		background-size:cover;
		}
	
	
	/*my skills*/
	
	.skills{
		padding:80px 30px;
		}
	
	.skill-wrapper,
	.skill-box{
		display:block;
		}
	
	.skill-icon{
		width:100px;
		height:100px;
		font-size:5rem;
		line-height:92px;
		}
	
	.skill-icon-y{
		display: inline-block;
		-webkit-transform:rotate(90deg);
		-ms-transform:rotate(90deg);
		transform:rotate(90deg);
		}
	
	.skill-box{
		margin:40px auto;
		}
	
	.skill-text{
		margin:0;
		}
	
	
	/*contact*/
	
	.contact{
		padding: 0 0 100px;
	}
	
	.contact-from{
		width:80%;
		}
	
	.contact{
		padding-bottom:80px;
		}
	
	/* footer*/
	
	.horizontal-list{
		padding:0;
		}

	.horizontal-item{
		display:block;
		padding:5px 0;
		}
	
	
	}
	