/* 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;
  vertical-align: baseline;
}

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;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* General */
.cf {
  *zoom: 1;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

form ::-webkit-input-placeholder {
  color: #c6c6c6;
}

form :-moz-placeholder {
  opacity: 1;
  color: #c6c6c6;
}

form ::-moz-placeholder {
  opacity: 1;
  color: #c6c6c6;
}

form :-ms-input-placeholder {
  color: #c6c6c6;
}

::-moz-selection {
  color: #fff;
  background: rgba(31, 127, 194, 0.7);
}

::selection {
  color: #fff;
  background: rgba(31, 127, 194, 0.7);
}

img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
}

button {
  display: block;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  position: relative;
  font-size: 15px;
  line-height: 1.75em;
  font-family: 'Noto Serif SC', serif;
  color: #fff;
}

.img-shadow {
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.35));
  transition: filter .3s ease;
}

.text-shadow {
  filter: drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 5px black);
}

@media only screen and (max-width: 768px) {
  body {
    position: static;
    font-size: 14px;
  }
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1000;
}

.loading-container .loading-circle {
  margin-right: 10px;
  transform-origin: 50% 50%;
  width: 20px;
  animation: circle_rotate 1s linear infinite;
}

.loading-container .loading-text {
  display: flex;
  align-items: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 20px;
}

@keyframes circle_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

section {
  position: relative;
  padding: 60px 5% 80px;
}

section .section-title {
  position: relative;
  margin: 0 auto 50px;
  max-width: 583px;
  width: 100%;
  overflow: hidden;
  background-position: 0 0;
}

section .section-title::before {
  content: "";
  display: block;
  padding-top: 19.55%;
}

section .section-title .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

section .section-title .inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

section .section-title .inner .section-title-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -25px;
  width: 100%;
  height: 100%;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
}

section .section-title.on .inner img {
  animation: ribbon_open 0.4s steps(10) forwards;
}

section .section-content {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  section {
    padding: 40px 5%;
  }
  section .section-title {
    margin: 0 auto 20px;
    max-width: 355px;
  }
  section .section-title .inner .section-title-text {
    margin-top: -17px;
    font-size: 25px;
  }
}

@keyframes ribbon_open {
  to {
    top: -1000%;
  }
}

.main-frame {
  position: relative;
  padding: 9px 8px 8px;
  background: url(../img/common/main_frame_bg.png) center repeat;
  border-radius: 7px;
  box-sizing: border-box;
}

.main-frame .main-frame-decoration-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.main-frame .main-frame-decoration-container .main-frame-decoration {
  position: absolute;
  width: 35px;
  height: 35px;
}

.main-frame .main-frame-decoration-container .main-frame-decoration.part-lt {
  top: 1px;
  left: 1px;
  background: url(../img/common/main_frame_decoration_lt.png) center no-repeat;
}

.main-frame .main-frame-decoration-container .main-frame-decoration.part-rt {
  top: 1px;
  right: 1px;
  background: url(../img/common/main_frame_decoration_rt.png) center no-repeat;
}

.main-frame .main-frame-decoration-container .main-frame-decoration.part-rb {
  right: 1px;
  bottom: 1px;
  background: url(../img/common/main_frame_decoration_rb.png) center no-repeat;
}

.main-frame .main-frame-decoration-container .main-frame-decoration.part-lb {
  bottom: 1px;
  left: 1px;
  background: url(../img/common/main_frame_decoration_lb.png) center no-repeat;
}

.main-frame .main-frame-decoration-container .main-frame-decoration-line-row {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: calc(100% - 72px);
  height: 3px;
}

.main-frame .main-frame-decoration-container .main-frame-decoration-line-row.part-top {
  top: 6px;
  background: url(../img/common/main_frame_decoration_top.png) center repeat-x;
}

.main-frame .main-frame-decoration-container .main-frame-decoration-line-row.part-bottom {
  bottom: 5px;
  background: url(../img/common/main_frame_decoration_bottom.png) center repeat-x;
}

.main-frame .main-frame-decoration-container .main-frame-decoration-line-column {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 3px;
  height: calc(100% - 72px);
}

.main-frame .main-frame-decoration-container .main-frame-decoration-line-column.part-right {
  right: 5px;
  background: url(../img/common/main_frame_decoration_right.png) center repeat-y;
}

.main-frame .main-frame-decoration-container .main-frame-decoration-line-column.part-left {
  left: 5px;
  background: url(../img/common/main_frame_decoration_left.png) center repeat-y;
}

.main-frame .frame-content {
  position: relative;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
  max-width: 342px;
  width: 100%;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1.5em;
  text-shadow: 2px 0 0 #6b2b08, 2px 1px 0 #6b2b08, 2px 2px 0 #6b2b08, 1px 2px 0 #6b2b08, 0 2px 0 #6b2b08, -1px 2px 0 #6b2b08, -2px 2px 0 #6b2b08, -2px 1px 0 #6b2b08, -2px 0 0 #6b2b08, -2px -1px 0 #6b2b08, -2px -2px 0 #6b2b08, -1px -2px 0 #6b2b08, 0 -2px 0 #6b2b08, 1px -2px 0 #6b2b08, 2px -2px 0 #6b2b08, 0 0 10px #6b2b08, 0 0 10px #6b2b08;
  background: linear-gradient(to bottom, #ffdb00 0, #ebba00 50%, #bf9900 100%);
  box-shadow: 0 0 25px 0 rgba(39, 23, 6, 0.7) inset;
  filter: drop-shadow(3px 3px 4px rgba(46, 26, 0, 0.6));
  box-sizing: border-box;
  border-radius: 7px;
  overflow: hidden;
  transition: transform .3s ease, filter .3s ease;
}

.button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35.25%;
  background: url(../img/common/frame_highlight.png) center no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.button::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 252, 0, 0.3);
  opacity: 0;
  transition: opacity .3s;
  z-index: -2;
}

.button .button-decoration {
  position: absolute;
  width: 20px;
  height: 20px;
}

.button .button-decoration.part-lt {
  top: 0;
  left: 0;
  background: url(../img/common/frame_decoration_lt.png) center no-repeat;
  background-size: 100% 100%;
}

.button .button-decoration.part-rt {
  top: 0;
  right: 0;
  background: url(../img/common/frame_decoration_rt.png) center no-repeat;
  background-size: 100% 100%;
}

.button .button-decoration.part-rb {
  bottom: 0;
  right: 0;
  background: url(../img/common/frame_decoration_rb.png) center no-repeat;
  background-size: 100% 100%;
}

.button .button-decoration.part-lb {
  left: 0;
  bottom: 0;
  background: url(../img/common/frame_decoration_lb.png) center no-repeat;
  background-size: 100% 100%;
}

.button .button-decoration-line-row {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: calc(100% - 40px);
  height: 6px;
}

.button .button-decoration-line-row.part-top {
  top: 0;
  background: url(../img/common/frame_decoration_top.png) center no-repeat;
  background-size: 100% 100%;
}

.button .button-decoration-line-row.part-bottom {
  bottom: 0;
  background: url(../img/common/frame_decoration_bottom.png) center no-repeat;
  background-size: 100% 100%;
}

.button .button-decoration-line-column {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 6px;
  height: calc(100% - 40px);
}

.button .button-decoration-line-column.part-right {
  right: 0;
  background: url(../img/common/frame_decoration_right.png) center no-repeat;
  background-size: 100% 100%;
}

.button .button-decoration-line-column.part-left {
  left: 0;
  background: url(../img/common/frame_decoration_left.png) center no-repeat;
  background-size: 100% 100%;
}

.button .button-text span {
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (min-width: 769px) {
  .button:hover {
    transform: translate3d(3px, 3px, 0);
    filter: drop-shadow(0 0 2px rgba(46, 26, 0, 0.6));
  }
  .button:hover::after {
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
  .button {
    font-size: 20px;
    border-radius: 4px;
  }
  .button .button-text span {
    font-size: 13px;
  }
}

.top-button,
.home-button,
.play-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 104px;
  height: 117px;
  background: url(../img/common/top_button_base.png) center no-repeat;
  z-index: 100;
  transition: background .3s,transform .3s ease,filter .3s ease;
}

.top-button .arrow,
.home-button .arrow,
.play-button .arrow {
  margin-top: -4px;
  width: 35px;
}

.top-button .text,
.home-button .text,
.play-button .text {
  margin-top: -3px;
  width: 23px;
}

@media only screen and (min-width: 769px) {
  .top-button:hover,
  .home-button:hover,
  .play-button:hover {
    transform: translate3d(3px, 3px, 0);
    background: url(../img/common/top_button_base_hover.png) center no-repeat;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.35));
  }
}

@media only screen and (max-width: 768px) {
  .top-button,
  .home-button {
    display: flex;
    flex-direction: row;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 70px;
    background: rgba(4, 7, 5, 0.7);
  }
  .top-button .arrow,
  .home-button .arrow {
    margin: 0;
    width: 40px;
  }
  .top-button .text,
  .home-button .text {
    margin: 0;
    width: 44px;
  }
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100px;
  font-size: 12px;
  text-align: center;
  background: url(../img/common/footer_bg.jpg) center no-repeat;
}

footer br {
  display: none;
}

@media only screen and (min-width: 1920px) {
  footer {
    background-size: cover;
  }
}

@media only screen and (max-width: 768px) {
  footer {
    display: block;
    height: auto;
    background-size: cover;
  }
  footer br {
    display: block;
  }
  footer .credit {
    padding: 1.5em;
  }
  footer .credit .credit-text {
    margin-top: 1em;
  }
}

/*# sourceMappingURL=common.css.map */
