@charset "utf-8";
/* webフォント「Noto Serif JP」 */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
/* fontawesomeの読み込み */
@import url('https://use.fontawesome.com/releases/v5.5.0/css/all.css');

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

body {
	background: #fffffe;
	color: black;
	font-family: "Noto Sans JP", "Meiryo", "Hiragino Kaku Gothic ProN",
				"Hiragino Kaku Gothic Pro", "Noto Sans Japanese", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	background-attachment: fixed;
	background: white;
	overflow-x: hidden;
}

header {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

h1 {
    text-align: center;
    font-weight: normal;
    font-size: 25pt;
}

h2 {
    font-size: 20pt;
    margin: 30px auto;
    margin-top: 0px;
    text-align: center;
    padding-top: 30px;
    font-weight: 1;
    position: relative;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    margin: 0 auto;
}

.link-box {
  display: block;
  padding: 5px;
  font-size: 12pt;
  > a {
    display: inline-block;
    padding: 5px;
    font-size: 12pt;
    margin-right: 10px;
  }
  > .profile_image {
    float: left;
    max-width: 250px;
    width: 100%;
    margin: 10px
  }
  > .name {
    font-size: 18pt;
    font-weight: bold;
    display: block;
    > .job {
      font-size: 14pt;
      font-weight: normal;
    }
  }
}

@media screen and ( max-width: 500px ) {
  .link-box {
    > .profile_image {
      float: unset;
      max-width: unset;
      margin: unset;
    }
    > .name {
      text-align: center;
    }
    > a {
      display: block;
      text-align: center;
    }
  }
}