@charset "UTF-8";

/*---------------------------------------------------
初期設定
----------------------------------------------------*/

html { font-size: 62.5%; }
body { font-size: 15px; font-size: 1.5rem; } /* =15px */
* { word-break: break-all; }

body {
	min-width: 980px;
	line-height: 1.5;
	color:#4d4d4d;
	font-family:'Noto Sans Japanese', "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background-color:#fff;
}
p,li {
  line-height: 1.8;
}

html,body{
	width:100%;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0;
	padding: 0;
	font-size:15px; font-size:1.5rem;
	font-weight:normal;
}

ul,ol{
	list-style-type: none;
}

img {
  	max-width: 100%;
  	height: auto;
	vertical-align:bottom;
	border:none;	
}

/* ie8 対策　*/
.ie8 img{
  	width: auto;
	border:0;
}

.clear{
	clear:both;
}

/*clearfix*/
.clearfix {
  	zoom: 1;
}

.clearfix:after {
  	content: "";
  	display: block;
  	clear: both;
}
.none {
  display: none;
}

/* ScrollTrigger */
.invisible {
    transition: opacity 0.5s ease;
    opacity: 0.0;
}
 
.visible {
    transition: opacity 0.5s ease;
    opacity: 1.0;
}
/*---------------------------------------------------
共有
----------------------------------------------------*/

/* リンク　*/

a{
	color:#716566;
	text-decoration:none;
  transition: all 0.5s ease;
}

a:hover, button:hover {
	opacity:0.7;
}
a.link {
  margin: 5px 0 0 0;
  line-height: 18px;
  padding: 1px 5px 0 4px;
  display: inline-block;
  border: 1px solid #f7be7c;
  color: #f7931e;
  font-family: Oswald;
  font-size: 1.4rem;
}
a.link:before {
  content: "\E154";
  font-size: 1.8rem;
	position: relative;
	top: -1px;
}
a:hover.link {
  background: #f7931e;
  color: #fff;
	opacity: 1;
}
.center {
  text-align: center;
}
.right{
	text-align: right;
}
/* **** Material Icons **** */
.md:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}
.md-profile:before {
  content: "\E416";
  position: relative;
  top:-3px;
  padding-right: 2px;
  font-size: 2.6rem;
}
.md-works:before {
  content: "\E150";
  position: relative;
  top:-3px;
  padding-right: 3px;
  font-size: 2.6rem;
}
.md-skill:before {
  content: "\E14D";
  position: relative;
  top:-3px;
  padding-right: 2px;
  font-size: 2.6rem;
}
.md-contact:before {
  content: "\E0E1";
  position: relative;
  top:-2px;
  padding-right: 2px;
  font-size: 2.6rem;
}
/* **** flext **** */
.flex {
  display: -webkit-flex; /* Safari */
  display: flex;
  justify-content: space-between;
}
.flex.flex_around {
  justify-content: space-around;
}
.flex.flex_center {
  justify-content: center;
}
.flex.flex_left {
  justify-content:flex-start;
}
.flex.flex_reverse {
  flex-direction: row-reverse;
}
.flex.flex_align_center {
  align-items: center;
}
.flex.flex_align_bottom {
  align-items: flex-end;
}
.flex.flex_wrap {
  flex-wrap: wrap;
}
.flex.flex_nowrap {
  flex-wrap: nowrap;
}
#wrapper {
  overflow: hidden;
}