@charset "utf-8";

html {
	font-size: 62.5%;
}

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo , sans-serif;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.header-box {
	height: 90px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	background-color: rgba(255,255,255,0.6);
	display: flex;
	z-index: 999;
}

header p img {
	width: 420px;
	float: left;
	margin: 10px 0 0 30px;
}

nav {
	flex: 1;
	width: 800px;
 }

nav ul {
	margin-left: 500px;
}

nav ul li {
	float: left;
	margin: 10px 50px 0 0;
}

.tooltip {
	position: relative;
}

.tooltip .tooltiptext {
	position: absolute;
	z-index: 1;
	top: 105%;
	left: -6px;
	visibility: hidden;
	width: auto;
	white-space: nowrap;
	padding: 0.7em 0.5em;
	transition: opacity 1s;
	text-align: center;
	opacity: 0;
	color: #ffffff;
	font-size: 1.5rem;
	border-radius: 6px;
	background-color: #ff7fb6;
}
.tooltip .tooltiptext::after {
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	content: ' ';
	border: 5px solid transparent;
	border-bottom-color: #ff7fb6;
}
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}


.hamburger {
	display: none;
}

/** article **/

article {
	text-align: center;
}

/** mine **/

#mine {
	width: 1200px;
	height: auto;
	text-align: center;
	margin: 0 auto;
	padding: 140px 0 60px 0;
	text-align: left;
}

#mine h1{
	width: 380px;
	float: left;
	padding-left: 60px;
}

.right {
	width: 750px;
	height:auto;
	float:right;
	font-size: 1.6rem;
	font-weight: bold;
}

.name {
	display: inline-block;
	width: 300px;
	height: 60px;
	font-size: 2.5rem;
	font-weight: bold;
	color: #9fd9f6;
	padding: 8px 0 0 20px;
	background-image: url(../images/about/nametag.png);
	background-repeat: no-repeat;
}

.list {
	width: 600px;
	height: auto;
	line-height: 2;
	margin-top: 10px;
}

.list th {
	color: #9fd9f6;
}

.list td img,
.list td p {
	display: inline;
	padding: 0 10px;
}

.list td p {
	color: #999;
}

//* process **//

#process {
	width: 900px;
	height: 300px;
	margin: 0 auto;
}

#process h2 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #9fd9f6;
	margin-bottom: 20px;
	display: inline-block;
	width: 350px;
	height: 60px;
	padding: 8px 0 0 20px;
	background-image: url(../images/about/nametag_02.png);
	background-repeat: no-repeat;
	background-position: 40px -8px
}

.proBox {
	width: 1200px;
	margin: 0 auto;
	height: auto;
	display: flex;
	justify-content: space-between;
}

.a,
.b,
.c {
	width: 200px;
	height: 200px;
}

.proText {
	font-size: 1.6rem;
	font-weight: bold;
	color: #999;
	padding: 8px 0 0 25px;
	text-align: left;
	line-height: 1.3;
}

.box {
	margin-left: -25px;
   animation: fuwafuwa 2s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}

/** skill **/

#skill {
	margin: 70px 0 70px 0;
}

#skill h3 {
	font-size: 1.4rem;
	font-weight: bold;
	color: #a6dbed;
}


.skillImg {
	width: 980px;
	height: 160px;
	margin: 0 auto;
	padding: 30px;
	overflow: hidden;
	position: relative;
}
.skillImg .caption {
	font-size: 1.8rem;
	color: #fff;
	padding-top: 50px;
}
.skillImg .mask {
	width: 94.4%;
	height: 73%;
	position: absolute;
	top: 29px;
	left: 29px;
	opacity: 0;
	background-color: rgba(111,163,190,0.7);
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-transition:	all 0.5s ease;
	transition: all 0.5s ease;
}

.skillImg:hover .mask {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/** photo **/

.photo {
	margin-bottom: 60px;
}

.photo p {
	font-size: 1.4rem;
	font-weight: bold;
	color: #a6dbed;
	padding-bottom: 30px;
}

#topBtn {
	width: 100%;
	height: 150px;
	margin: 0 auto;
}

/** footer **/

footer {
	width: 100%;
	height: 60px;
	background-color: #fad8e5;
}

.text {
	width:550px; 
	line-height: 20px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #999;
	float: left;
	padding: 10px 0 0 40px;
}

.sns {
	display: flex;
	width: 340px;
	font-size: 1.7rem;
	font-weight: bold;
	color: #ffabc1;
	float: right;
}

.sns p {
	padding-top: 30px;
}

.sns img {
	padding: 18px 40px 0 10px;
}


