@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Poiret+One|Questrial|Allerta+Stencil|Montserrat+Subrayada");
/* ----------------------------------------------------------------
normalize
-------------------------------------------------------------------*/
/* normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}
/* ----------------------------------------------------------------
base
-------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

canvas {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  vertical-align: bottom;
}
/* body
----------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "游ゴシック", YuGothic, "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  line-height: 1.1;
  -webkit-text-size-adjust: 100%;
}

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

a:hover {
  color: #fff;
  background-color: #000;
  background-color: rgba(0,0,0,0.04);
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
}

h1,
h2,
h3,
h4,
figure {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@keyframes fade {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}
/* ----------------------------------------------------------------
Layout
-------------------------------------------------------------------*/
body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-family: "Questrial", sans-serif;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/* wrapper
----------------------------------------------*/
.wrapper {
  margin: 0 auto;
  padding: 60px 100px;
  -webkit-animation: fade 0.6s linear;
  animation: fade 0.6s linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  border: 8px solid #fff;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (max-width: 700px) {
  .wrapper {
    padding: 50px 30px;
    border: 3px solid #fff;
    background-color: #fff;
    background-color: rgba(255,255,255,0.1);
  }
}
/* heading
----------------------------------------------*/
.heading {
  margin-bottom: 40px;
  -webkit-animation: fade 0.6s linear;
  animation: fade 0.6s linear;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  font-family: "Poiret One", cursive;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.heading * {
  font-weight: normal;
}

.heading h1 {
  font-size: 140px;
}

@media (max-width: 700px) {
  .heading h1 {
    margin-bottom: 5px;
    font-size: 63px;
  }
}

.heading h2 {
  font-size: 70px;
}

@media (max-width: 700px) {
  .heading h2 {
    letter-spacing: 1px;
    font-size: 22px;
    font-weight: bold;
  }
}
/* detail
----------------------------------------------*/
.detail {
  width: 600px;
  margin: 0 auto;
  -webkit-animation: fade 0.6s linear;
  animation: fade 0.6s linear;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  font-size: 20px;
  line-height: 1.7;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.detail dl,
.detail dt,
.detail dd {
  margin: 0;
  padding: 0;
}

.detail dt,
.detail dd {
  float: left;
}

.detail dt {
  text-transform: uppercase;
}

@media (min-width: 701px) {
  .detail dl {
    transition: opacity linear 0.1s;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  }

  .detail dl:before,
  .detail dl:after {
    display: table;
    content: " ";
  }

  .detail dl:after {
    clear: both;
  }

  .detail dl::after {
    display: block;
    width: 0;
    height: 1px;
    margin: 0 auto;
    content: "";
    transition: width linear 0.1s;
    background-color: #fff;
  }

  .detail dl:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  .detail dl:hover::after {
    width: 100%;
  }

  .detail dt {
    clear: left;
    width: 14em;
    margin-right: 20px;
    text-align: right;
    letter-spacing: 2px;
  }

  .detail dt::after {
    margin-left: 20px;
    content: "-";
  }
}

@media (max-width: 700px) {
  .detail {
    width: auto;
    margin: 0 auto;
    font-size: 14px;
  }

  .detail dl,
  .detail dt,
  .detail dd {
    text-align: left;
  }

  .detail dt {
    clear: left;
    width: 8em;
    text-align: right;
  }

  .detail dt::after {
    margin-right: 5px;
    content: " _";
  }
}
/* ----------------------------------------------------------------
Utility
-------------------------------------------------------------------*/
/* Font weight
-------------------------------------------*/
.u-fw__normal {
  font-weight: normal !important;
}

.u-fw__bold {
  font-weight: bold !important;
}
/* Float
-------------------------------------------*/
.u-float__left {
  float: left !important;
}

.u-float__right {
  float: right !important;
}
/* Text-align
-------------------------------------------*/
.u-ta__left {
  text-align: left !important;
}

.u-ta__center {
  text-align: center !important;
}

.u-ta__right {
  text-align: right !important;
}
/* Vertical-align
-------------------------------------------*/
.u-va__top {
  vertical-align: top !important;
}

.u-va__middle {
  vertical-align: middle !important;
}

.u-va__bottom {
  vertical-align: bottom !important;
}
/* Width
-------------------------------------------*/
.u-width__auto {
  width: auto !important;
}

.u-width__full {
  width: 100% !important;
}
/* display
-------------------------------------------*/
.u-display__block {
  display: block !important;
}

.u-display__none {
  display: none !important;
}
/* position
-------------------------------------------*/
.u-position__relative {
  position: relative !important;
}

.u-position__static {
  display: static !important;
}
/* Media Query
-------------------------------------------*/
/* display */
@media $mq-small {
  .u-mq-display__block {
    display: block !important;
  }

  .u-mq-display__none {
    display: none !important;
  }
}
/* Clearfix
-------------------------------------------*/
.u-clearfix:before,
.u-clearfix:after {
  display: table;
  content: " ";
}

.u-clearfix:after {
  clear: both;
}
