@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html {
  font-size: 62.5%;
}
body {
  background: #151515 url('../images/bg.png') no-repeat fixed left bottom;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-family: "Hiragino Kaku Gothic ProN",  Meiryo,  sans-serif;
}
a {
font-weight:bold;
text-decoration:none;
}

a:link {
color: #060620;
}

a:visited {
color:#01040B;
}

a:hover {
color:#020181;
text-decoration:underline;
}

a:active {
color:#00187C;
}
*, *::before, *::after {
  box-sizing: border-box;
}


/* Material iconsを利用する */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 72px;  /* 推奨サイズ */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
 
  /* WebKitブラウザサポート */
  -webkit-font-smoothing: antialiased;
  /* Chrome、Safariサポート */
  text-rendering: optimizeLegibility;
 
  /* Firefoxサポート */
  -moz-osx-font-smoothing: grayscale;
 
  /* IEサポート */
  font-feature-settings: 'liga';
}
/* --------------------------------
 * parts
 * -------------------------------- */
.heading {
	position: relative;
	display: inline-block;
	margin-top: 24px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 12px;
	padding-bottom: 15px;
	letter-spacing: 2px;
	font-size: 4rem;
}
.heading::before,
.heading::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.heading::before {
  bottom: 5px;
}
.button {
	display: inline-block;
	width: 480px;
	padding: 20px;
	border-radius: 12px;
	background-color: #171A1F;
	color: #fff;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 1.2rem;
}
.button:hover {
  opacity: 0.9;
}
.button-showy {
	background-color: #000008;
	border: solid 1px #969595 ;
}
.button-ghost {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.15);
}


/* --------------------------------
 * header
 * -------------------------------- */
.header {
  padding: 128px 30px 64px;
}
.site-title-sub {
  margin: 0 0 30px;
  color: #4F4B48;
  letter-spacing: 1px;
  font-size: 2.2rem;
}
.site-title {
  margin: 50px 0 40px;
  font-size:8.4rem;
}
.site-description {
	margin-bottom: 50px;
	color: #E8E8E8;
	font-size: 1.8rem;
}
.buttons .button {
  margin: 10px;
  color: #E8E8E8;
  font-size: 1.8rem;
}


/* --------------------------------
 * about
 * -------------------------------- */
.about {
  padding: 80px 30px;
  background-color: #fff;
  color: #333;
}
.about-text {
	margin-top: 30px;
	margin-right: 320px;
	margin-left: 320px;
	margin-bottom: 30px;
	line-height: 2.5;
	white-space: normal;
	text-align:left;
}

/* --------------------------------
 * skills
 * -------------------------------- */
.skills {
  padding: 80px 0;
  background-color: #fff;
  color: #333;
}
.skills-wrapper {
  display: table;
  width: 80%;
  margin: 50px auto 0;
  table-layout: fixed;
}
.skill-box {
  display: table-cell;
}
.skill-icon {
  width: 128px;
  height: 128px;
  margin-bottom: 30px;
  border: 4px solid;
  border-radius: 50%;
  color: #f1b400;
  font-size: 8rem;
  line-height: 142px;
}
.skill-title {
  margin: 0 64px 20px;
  font-size: 2rem;
}
.skill-text {
  margin: 0 28px;
  line-height: 2;
}

/* --------------------------------
 * footer
 * -------------------------------- */
.footer {
	padding-top: 80px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 64px;
	font-size: 1.6rem;
	color: rgba(79, 75, 72, 0.6);
}


/* --------------------------------
 * smart phone
 * -------------------------------- */
@media (max-width: 1024px) {
  body {
    background-image: none;
  }
}

/* --- header --- */
.buttons .button {
  border : solid 1px #DCDBDB;
  text-align:center;
}

  /* --- about --- */
  .about-text {
    line-height: 1.8;
	margin-right: 0px;
	margin-left: 0px;
  }

@media (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
  .heading {
    margin-top: 20px;
    font-size: 2.5rem;
  }
  .button:hover {
    opacity: 1;
  }

  /* --- header --- */
  .header {
    padding-top: 60px;
  }
  .site-title-sub {
    font-size: 1.7rem;
  }
  .site-title-sub::before,
  .site-title-sub::after {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
  .site-title {
    margin-top: 35px;
    font-size: 5rem;
  }
  .buttons .button {
  	margin-right: auto;
	margin-left: auto;
  }
	
  /* --- about --- */
  .about-text {
    line-height: 1.8;
	margin-right: 0px;
	margin-left: 0px;
  }

  /* --- skills --- */
  .skills-wrapper,
  .skill-box {
    display: block;
  }
  .skill-box {
    margin: 40px auto;
  }
  .skill-icon {
    width: 100px;
    height: 100px;
    font-size: 5rem;
    line-height: 92px;
  }
  .skill-text {
    margin: 0;
  }

