@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInSimple {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInSimple {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes changeColorBlack {
  from {
    color: #fff;
  }
  to {
    color: #000;
  }
}
@keyframes changeColorBlack {
  from {
    color: #fff;
  }
  to {
    color: #000;
  }
}
@-webkit-keyframes logoChangeBlack {
  0% {
    opacity: 1;
    background-image: url("../img/logo_w.png");
  }
  49% {
    opacity: 0;
    background-image: url("../img/logo_w.png");
  }
  50% {
    opacity: 0;
    background-image: url("../img/logo.png");
  }
  100% {
    opacity: 1;
    background-image: url("../img/logo.png");
  }
}
@keyframes logoChangeBlack {
  0% {
    opacity: 1;
    background-image: url("../img/logo_w.png");
  }
  49% {
    opacity: 0;
    background-image: url("../img/logo_w.png");
  }
  50% {
    opacity: 0;
    background-image: url("../img/logo.png");
  }
  100% {
    opacity: 1;
    background-image: url("../img/logo.png");
  }
}
@-webkit-keyframes heartbeat {
  20% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  80% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
@keyframes heartbeat {
  20% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  80% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
html,
body {
  background: #000;
  font-size: 100%;
  color: #fff;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: color 1s, background-color 1s;
  transition: color 1s, background-color 1s;
}

body.dark {
  -webkit-animation-name: "changeColorBlack";
          animation-name: "changeColorBlack";
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body.dark #line {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
body.dark a {
  -webkit-animation-name: "changeColorBlack";
          animation-name: "changeColorBlack";
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body.dark #site-title {
  -webkit-animation-name: "logoChangeBlack";
          animation-name: "logoChangeBlack";
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

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

fieldset,
img,
a img,
:link img,
:visited img {
  border: none;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul {
  list-style: none;
  line-height: 100%;
}

caption,
th {
  text-align: left;
}

a {
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
a:hover, a:active {
  color: #fff;
}
a:visited {
  color: #fff;
}

::-moz-selection {
  background: #000;
  background: rgba(0, 0, 0, 0.4);
}

::selection {
  background: #000;
  background: rgba(0, 0, 0, 0.4);
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000 no-repeat center top;
  background-size: cover;
  overflow: hidden;
  display: none;
  z-index: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
#bg.blur {
  -webkit-filter: blur(4px);
          filter: blur(4px);
}
#bg.open {
  display: block;
  opacity: 0;
  -webkit-animation-name: "fadeInSimple";
          animation-name: "fadeInSimple";
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 1;
}
#container .content-wrap {
  display: block;
}
@media screen and (min-width: 576px) {
  #container .content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#container .content-wrap #contents {
  max-width: 320px;
}
#container .content-wrap #contents #header {
  opacity: 0;
  -webkit-animation-name: "fadeIn";
          animation-name: "fadeIn";
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#container .content-wrap #contents #header #site-title {
  background: no-repeat center center;
  background-image: url("../img/logo_w.png");
  background-size: contain;
  width: 100%;
  height: 45px;
  font-size: 1px;
  text-indent: -9999px;
}
@media screen and (min-width: 576px) {
  #container .content-wrap #contents #header #site-title {
    background-position-x: left;
  }
}
#container .content-wrap #contents #article {
  opacity: 0;
  -webkit-animation-name: "fadeIn";
          animation-name: "fadeIn";
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  padding: 0 3rem;
}
@media screen and (min-width: 576px) {
  #container .content-wrap #contents #article {
    padding: 0;
  }
}
#container .content-wrap #contents #article .text {
  margin: 0;
  padding: 2rem 0 1rem;
  font-size: 1rem;
  line-height: 140%;
}
#container .content-wrap #contents #article .external-links {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 576px) {
  #container .content-wrap #contents #article .external-links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
#container .content-wrap #contents #article .external-links .link {
  padding: 0 1rem 1rem 0;
}
#container .content-wrap #contents #article .external-links .link a {
  font-size: 0.9rem;
  text-decoration: underline;
}
#container .content-wrap #contents #footer {
  opacity: 0;
  -webkit-animation-name: "fadeIn";
          animation-name: "fadeIn";
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin: 1rem 0 0;
}
#container .content-wrap #contents #footer p {
  font-size: 0.75em;
  font-family: Tahoma, Arial, sans-serif;
  line-height: 140%;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 576px) {
  #container .content-wrap #contents #footer p {
    text-align: left;
  }
}
#container .content-wrap #line {
  display: none;
}
@media screen and (min-width: 576px) {
  #container .content-wrap #line {
    display: block;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 2rem;
    opacity: 0;
    -webkit-animation-name: "fadeIn";
            animation-name: "fadeIn";
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
#container .content-wrap #timer {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 3rem 0 0;
  opacity: 0;
  -webkit-animation-name: "fadeIn";
          animation-name: "fadeIn";
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (min-width: 576px) {
  #container .content-wrap #timer {
    padding: 0;
  }
}
#container .content-wrap #timer .timer-wrap {
  width: 6rem;
  margin: 0 auto;
  text-align: center;
}
#container .content-wrap #timer .timer-wrap .time-ymd {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 1rem;
  font-size: 1rem;
}
#container .content-wrap #timer .timer-wrap .time-ymd #year {
  opacity: 0.5;
}
#container .content-wrap #timer .timer-wrap .time-ymd #month {
  opacity: 0.5;
}
#container .content-wrap #timer .timer-wrap .time-ymd #day {
  font-size: 1rem;
  font-weight: bold;
}
#container .content-wrap #timer .timer-wrap .time-hm {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 2.4rem;
}
#container .content-wrap #timer .timer-wrap .time-hm #hour {
  opacity: 0.5;
}
#container .content-wrap #timer .timer-wrap .time-hm #minutes {
  font-weight: bold;
}
#container .content-wrap #timer .timer-wrap .time-s {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#container .content-wrap #timer .timer-wrap .time-s #secounds {
  font-size: 6rem;
  font-weight: bold;
}

#aside {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 6;
}
#aside .link-text {
  opacity: 0;
  -webkit-animation-name: "fadeIn";
          animation-name: "fadeIn";
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.75rem;
  margin: 0 0 0.5rem;
}
#aside .link-image {
  opacity: 0;
  -webkit-animation-name: "fadeIn";
          animation-name: "fadeIn";
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#aside .link-image .bnr-pakutaso {
  display: inline-block;
  background: rgba(255, 255, 255, 0.4);
  padding: 0.5rem 1rem;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
#aside .link-image .bnr-pakutaso:hover, #aside .link-image .bnr-pakutaso:active, #aside .link-image .bnr-pakutaso:focus {
  background: rgba(255, 255, 255, 0.8);
}
#aside .link-image .bnr-pakutaso img {
  width: 100px;
  border: none;
}/*# sourceMappingURL=main.css.map */