/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Damion|Noto+Sans+JP:400,700|Pragati+Narrow:400,700&display=swap&subset=japanese");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body {
  color: #111111;
  font-family: 'Pragati Narrow', 'Damion' , 'Noto Sans JP',  sans-serif;
  font-size: 15px;
  letter-spacing: 0.16em; }

a {
  color: #111111;
  text-decoration: none; }

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  border: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

.header--fixed {
  background-color: white; }
  .header--fixed a {
    color: #111111;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s; }

.headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.headerMenu__item {
  display: inline-block;
  padding: 24px; }

.hero {
  padding: 58px 16px 16px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 960px; }

.heroInner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: solid 4px #111111;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url(images/portrait_hero_2020.jpg);
  background-size: cover;
  background-position: center center; }

.heroText {
  position: absolute;
  height: 158px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 96px;
  margin: auto;
  color: white;
  text-align: center; }

.heroText__hello {
  font-family: Damion;
  font-size: 116px;
  font-weight: bold;
  text-indent: 0.16em; }

.heroText__description {
  font-size: 20px; }

.navigationText {
  position: absolute;
  bottom: 73px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 74px;
  text-align: center;
  color: white; }
  .navigationText:after {
    -webkit-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    left: 50%;
    content: "";
    display: block;
    width: 1px;
    background-color: #eef2f7; }

@-webkit-keyframes scroll {
  0% {
    top: 24px;
    height: 0px; }
  25% {
    top: 24px;
    height: 48px; }
  100% {
    top: 72px;
    height: 0; } }

@keyframes scroll {
  0% {
    top: 24px;
    height: 0px; }
  25% {
    top: 24px;
    height: 48px; }
  100% {
    top: 72px;
    height: 0; } }

@media screen and (min-width: 768px) {
  .headerMenu__item {
    padding: 24px 48px; }
  .hero {
    padding: 58px 48px 48px 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .heroText {
    height: 240px; }
  .heroText__hello {
    font-size: 208px; }
  .heroText__description {
    font-size: 24px; }
  .navigationText {
    bottom: 104px; } }

.sectionHeader {
  margin-bottom: 48px;
  text-align: center; }

.sectionTitle {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: bold; }

.sectionSubTitle {
  color: #535461; }

.biography {
  padding: 64px 0; }

.paragraph {
  margin-bottom: 24px;
  padding: 0 24px;
  font-size: 12px;
  line-height: 2;
  color: #535461;
  text-align: center; }
  .paragraph:last-of-type {
    margin-bottom: 48px; }
  .paragraph span {
    font-weight: bold; }

@media screen and (min-width: 768px) {
  .paragraph {
    max-width: 512px;
    margin: 0 auto 24px;
    font-size: 14px;
    line-height: 2; } }

.majorWorks {
  padding: 64px 0;
  background-color: #eef2f7; }

.pixelArts {
  padding: 64px 0; }

.workList__item {
  display: inline-block;
  margin-bottom: 48px;
  padding: 0 24px; }
  .workList__item img {
    display: block;
    width: 100%;
    margin-bottom: 16px; }

.workInformation__name {
  margin-bottom: 8px;
  font-size: 24px; }

.workInformation__category {
  margin-bottom: 16px;
  color: #535461; }

.workInformation__link {
  border-bottom: solid 2px #111111;
  display: inline-block;
  padding: 8px 16px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }

@media screen and (min-width: 768px) {
  .workList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    max-width: 1000px;
    margin: 0 auto; }
  .workList__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.3%; } }

.podcasts {
  padding: 64px 0;
  background-color: #eef2f7; }

.contact {
  padding: 48px 0; }

.button, .button--primary, .button--secondary {
  display: block;
  margin: 0 auto;
  width: 256px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }
  .button svg, .button--primary svg, .button--secondary svg {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;
    fill: currentColor; }

.button--primary {
  background: #111111;
  color: white;
  -webkit-box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.36);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.36); }
  .button--primary:hover {
    -webkit-box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.32); }

.button--secondary {
  border: solid 2px #111111; }
  .button--secondary:hover {
    background: #111111;
    color: white; }
  .button--secondary svg {
    fill: currentColor; }

footer {
  padding: 32px 24px;
  background-color: #111111;
  color: white;
  text-align: center; }
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 512px;
    margin: 0 auto 24px; }
    footer ul svg {
      width: 32px;
      height: 32px;
      fill: white; }
