/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; } }
@keyframes fadeIn {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; } }

.wrapper {
  font-family: "logofont", serif;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 80px; }

@font-face {
  font-family: "logofont";
  src: url("/font/logofont.ttf"); }

section {
  position: relative;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box; }

h2 {
  font-size: 30px;
  margin-bottom: 40px; }

a {
  color: #000;
  text-decoration: none; }
  a:hover {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    text-decoration: underline; }

.hidden {
  display: none; }

.about {
  background-color: #fff; }

.about__description {
  margin: 40px 0;
  line-height: 2; }
  .about__description span {
    color: #f77; }
  .about__description .name {
    font-size: 25px;
    margin: 0 auto 20px; }

.about__detail .label {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px; }

.bg {
  display: block;
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: #fff; }
  .bg canvas {
    height: 100vh;
    width: 100%; }

.fv {
  height: 100vh; }

.fv__title {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  color: #000;
  font-size: 40px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fv__scroll {
  position: absolute;
  bottom: 2em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  .fv__scroll:after {
    position: absolute;
    bottom: -0.5em;
    left: 50%;
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: rotate(135deg) translateX(-50%);
            transform: rotate(135deg) translateX(-50%); }

.works {
  margin-top: 80px;
  background-color: #fff; }

.works__contents {
  width: 100%; }
  @media (max-width: 599px) {
    .works__contents {
      display: block; } }

.works__content {
  display: inline-block;
  width: 48%;
  margin-right: 2%;
  margin-bottom: 30px; }
  .works__content:after {
    content: "";
    display: block;
    clear: both; }
  @media (max-width: 599px) {
    .works__content {
      width: 100%;
      margin-right: 0;
      display: inline-block; } }
  .works__content h3 {
    font-size: 25px;
    font-weight: bold; }
  .works__content img {
    margin: 10px 0;
    width: 100%;
    border: 1px solid #000;
    box-sizing: border-box; }
  .works__content p {
    float: left; }
