@charset "UTF-8";
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/*color*/
/*size*/
/*color*/
/*amin*/
/*============================
mixin
============================*/
/*============================
easing
============================*/
/*============================
mixin
============================*/
/*util*/
@-webkit-keyframes fadeout {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@-moz-keyframes fadeout {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes fadeout {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@-webkit-keyframes fadein {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-webkit-keyframes check {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-moz-keyframes check {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes check {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }

  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes flash {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  60% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@-moz-keyframes flash {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  60% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes flash {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  60% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@-webkit-keyframes blur {
  0% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }

  50% {
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
  }

  100% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
}

@-moz-keyframes blur {
  0% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }

  50% {
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
  }

  100% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
}

@keyframes blur {
  0% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }

  50% {
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
  }

  100% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }

  50% {
    -webkit-transform: translate(0% 0);
    -moz-transform: translate(0% 0);
    -ms-transform: translate(0% 0);
    -o-transform: translate(0% 0);
    transform: translate(0% 0);
  }

  100% {
    -webkit-transform: translate(100%, 0px);
    -moz-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    -o-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
  }
}

@-moz-keyframes loading {
  0% {
    -webkit-transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }

  50% {
    -webkit-transform: translate(0% 0);
    -moz-transform: translate(0% 0);
    -ms-transform: translate(0% 0);
    -o-transform: translate(0% 0);
    transform: translate(0% 0);
  }

  100% {
    -webkit-transform: translate(100%, 0px);
    -moz-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    -o-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }

  50% {
    -webkit-transform: translate(0% 0);
    -moz-transform: translate(0% 0);
    -ms-transform: translate(0% 0);
    -o-transform: translate(0% 0);
    transform: translate(0% 0);
  }

  100% {
    -webkit-transform: translate(100%, 0px);
    -moz-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    -o-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
  }
}

@-webkit-keyframes scroll {
  0% {
    height: 6px;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }

  10% {
    height: 2px;
    -webkit-transform: translate(0, 6px);
    -moz-transform: translate(0, 6px);
    -ms-transform: translate(0, 6px);
    -o-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }

  20% {
    height: 6px;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

@-moz-keyframes scroll {
  0% {
    height: 6px;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }

  10% {
    height: 2px;
    -webkit-transform: translate(0, 6px);
    -moz-transform: translate(0, 6px);
    -ms-transform: translate(0, 6px);
    -o-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }

  20% {
    height: 6px;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

@keyframes scroll {
  0% {
    height: 6px;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }

  10% {
    height: 2px;
    -webkit-transform: translate(0, 6px);
    -moz-transform: translate(0, 6px);
    -ms-transform: translate(0, 6px);
    -o-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }

  20% {
    height: 6px;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

@-webkit-keyframes line {
  0% {
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  20% {
    -webkit-transform: scale("100%", 1);
    -moz-transform: scale("100%", 1);
    -ms-transform: scale("100%", 1);
    -o-transform: scale("100%", 1);
    transform: scale("100%", 1);
  }

  100% {
    -webkit-transform: scale("100%", 1);
    -moz-transform: scale("100%", 1);
    -ms-transform: scale("100%", 1);
    -o-transform: scale("100%", 1);
    transform: scale("100%", 1);
  }
}

@-moz-keyframes line {
  0% {
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  20% {
    -webkit-transform: scale("100%", 1);
    -moz-transform: scale("100%", 1);
    -ms-transform: scale("100%", 1);
    -o-transform: scale("100%", 1);
    transform: scale("100%", 1);
  }

  100% {
    -webkit-transform: scale("100%", 1);
    -moz-transform: scale("100%", 1);
    -ms-transform: scale("100%", 1);
    -o-transform: scale("100%", 1);
    transform: scale("100%", 1);
  }
}

@keyframes line {
  0% {
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  20% {
    -webkit-transform: scale("100%", 1);
    -moz-transform: scale("100%", 1);
    -ms-transform: scale("100%", 1);
    -o-transform: scale("100%", 1);
    transform: scale("100%", 1);
  }

  100% {
    -webkit-transform: scale("100%", 1);
    -moz-transform: scale("100%", 1);
    -ms-transform: scale("100%", 1);
    -o-transform: scale("100%", 1);
    transform: scale("100%", 1);
  }
}

/***********************************
* util
************************************/
.hide {
  display: none !important;
}

.show {
  -webkit-transform: translate(0, 0%) !important;
  -moz-transform: translate(0, 0%) !important;
  -ms-transform: translate(0, 0%) !important;
  -o-transform: translate(0, 0%) !important;
  transform: translate(0, 0%) !important;
}

.area {
  width: 100%;
  float: left;
  position: relative;
}

.inner {
  width: 100%;
  float: left;
}

.inner2 {
  width: 100%;
  float: left;
}

.container {
  width: 89.2%;
  margin: 0 0 0 5.4%;
  float: none;
}
.container.t {
  width: 84%;
  margin: 0 0 0 8%;
}

.box {
  width: 100%;
  float: left;
  text-align: center;
}

.img {
  line-height: 0;
}

.en {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.06em;
}
.en.b {
  font-weight: 500;
}

.en_b {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
}

.en_g {
  font-family: 'Lato', sans-serif;
}

.clear {
  clear: both;
}

.sep {
  float: left;
  display: block;
  background: black;
  width: 100%;
  height: 5px;
}

.en {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.06em;
}

.notice {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 6pt;
}

.n {
  font-size: 9px;
  vertical-align: top;
}

.ul {
  display: block;
  background: #d7063b;
  height: 1px;
}

.slider {
  position: relative;
}
.slider .current {
  z-index: 10;
}
.slider .slideset li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider .pager {
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 20px;
  left: 0%;
  text-align: center;
  z-index: 100;
}
.slider .pager li {
  display: inline-block;
  margin: 0 4px;
}
.slider .pager li a {
  width: 10px;
  height: 10px;
  display: block;
  border: 1px solid black;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.slider .pager li a.current {
  background: black;
}

.btn {
  background: black;
  color: white;
  display: block;
  border: 1px solid black;
  line-height: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.btn .off {
  position: relative;
  z-index: 2;
}
.btn .on {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.btn_t {
  border: 1px solid black;
  padding: 1.3em 15%;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.06em;
  display: inline-block;
  line-height: 1;
  font-size: 0.7em;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn_t.b {
  font-weight: 500;
}

.float_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10002;
  top: 0;
  left: 0;
}

.float_data {
  position: absolute;
  z-index: 10003;
}
.float_data .close {
  width: 10%;
  line-height: 0;
  background: #000;
  position: fixed;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 10004;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3%;
}
.float_data .data {
  position: relative;
}

.fadeout {
  -webkit-animation: fadeout 0.8s 1 linear;
  -moz-animation: fadeout 0.8s 1 linear;
  animation: fadeout 0.8s 1 linear;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadein {
  -webkit-animation: fadein 0.8s 1 linear;
  -moz-animation: fadein 0.8s 1 linear;
  animation: fadein 0.8s 1 linear;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.trial_area {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
  height: 0;
  width: 100%;
}
.trial_area .inner {
  width: 100%;
  height: 0;
  margin: 0 auto;
  position: relative;
}
.trial_area .inner a {
  line-height: 0;
  display: none;
}
.trial_area .inner .trial {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
}

.trial_dummy {
  width: 100%;
  float: left;
  background: black;
}
.trial_dummy img {
  visibility: hidden;
}

section {
  width: 100%;
  float: left;
  position: relative;
}

div {
  width: 100%;
  float: left;
  position: relative;
}

img {
  position: relative;
  z-index: 1;
  width: 100%;
}

a {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: black;
  outline: none;
}
a:hover {
  outline: none;
}

html {
  float: left;
  width: 100%;
}

body {
  background: black;
  height: 100%;
  overflow: hidden;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 11pt;
  line-height: 1.6em;
  color: black;
  float: left;
  -webkit-text-size-adjust: 100%;
  float: left;
  width: 100%;
}

::selection {
  background: #f26997;
  color: white;
}

::-moz-selection {
  background: #f26997;
  color: white;
}

img::selection {
  background: none;
}

img::-moz-selection {
  background: none;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  text-align: center;
  z-index: 1000;
  float: left;
  width: 100%;
   	/*
	h1{
		width: 175px;
		display: inline-block;
		line-height: 0;
	}//h1
	*/
}
#header h1 {
  width: 100%;
  float: left;
  line-height: 0;
}
#header .area {
  line-height: 0;
}
#header .btn_area {
  position: absolute;
  width: 50px;
  top: 50%;
  right: 5%;
  z-index: 10;
}
#header .menu_btn {
  width: 35px;
  height: 35px;
  float: right;
  position: relative;
  text-align: center;
  cursor: pointer;
  background: black;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 0;
}
#header .menu_btn:before {
  background: white;
  width: 35px;
  height: 2px;
  float: left;
  display: block;
  position: absolute;
  top: 50%;
  left: 7.5px;
  content: "";
  margin: -10px 0 0 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}
#header .menu_btn:after {
  background: white;
  width: 35px;
  height: 2px;
  float: left;
  display: block;
  position: absolute;
  top: 50%;
  left: 7.5px;
  content: "";
  margin: 10px 0 0 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}
#header .menu_btn span {
  background: white;
  width: 35px;
  height: 2px;
  float: left;
  display: block;
  position: absolute;
  top: 50%;
  left: 7.5px;
  -webkit-transition: all .2s;
  transition: all .2s;
}
#header .menu_btn.open:before {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  -moz-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  -o-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
#header .menu_btn.open:after {
  -webkit-transform: rotate(-45deg) translate(6px, -8px);
  -moz-transform: rotate(-45deg) translate(6px, -8px);
  -ms-transform: rotate(-45deg) translate(6px, -8px);
  -o-transform: rotate(-45deg) translate(6px, -8px);
  transform: rotate(-45deg) translate(6px, -8px);
}
#header .menu_btn.open span {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

#menu {
  background: black;
  width: 100%;
  height: 110%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#menu .menu {
  float: left;
  width: 100%;
  margin: 6% 0 9% 0;
  font-size: 1.3em;
}
#menu .menu li {
  text-align: center;
  float: left;
  width: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.06em;
  line-height: 4em;
}
#menu .menu li a {
  color: white;
  display: inline-block;
  position: relative;
  line-height: 1.7em;
}
#menu .menu li a.current:after {
  content: "";
  background: #d7063b;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}
#menu .sns {
  clear: both;
  width: 100%;
  text-align: center;
}
#menu .sns li {
  width: 13%;
  margin: 0 1%;
  display: inline-block;
}
#menu .sns li a {
  margin: 0;
}

.header_dummy {
  visibility: hidden;
  line-height: 0;
  width: 100%;
  float: left;
}

.wrapper {
  position: relative;
  width: 100%;
  float: left;
}
.wrapper #pagetop {
  background: white;
  float: left;
  width: 100%;
  line-height: 0;
}
.wrapper #pagetop a {
  width: 30%;
  position: absolute;
  top: 0;
  left: 35%;
  line-height: 0;
}
.wrapper #footer {
  width: 100%;
  float: left;
  line-height: 0;
  background: white;
}
.wrapper #footer .sns {
  width: 100%;
  float: left;
  position: relative;
}
.wrapper #footer .sns ul {
  width: 50.4%;
  float: left;
  position: absolute;
  margin: 0 24.8%;
  z-index: 2;
}
.wrapper #footer .sns ul li {
  width: 50%;
  float: left;
}
.wrapper #footer .sns ul li a {
  width: 100%;
  float: left;
}
.wrapper #footer .menu {
  width: 88%;
  padding: 3% 6%;
  float: left;
  background: #171717;
  line-height: 1.8em;
  text-align: center;
}
.wrapper #footer .menu a {
  position: relative;
  color: white;
  display: inline;
  font-size: 0.8em;
  text-align: center;
}
.wrapper #footer .menu span {
  width: 1px;
  height: 0.8em;
  vertical-align: -0.1em;
  margin: 0 0.5em;
  background: #262626;
  display: inline-block;
  letter-spacing: 0em;
}
.wrapper #footer .menu ul {
  width: 100%;
  float: left;
}
.wrapper #footer .menu ul li {
  text-align: center;
}
.wrapper #footer .menu ul li a {
  position: relative;
  color: white;
  display: inline;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.wrapper #footer .menu ul li a span {
  width: 1px;
  height: 0.8em;
  vertical-align: -0.1em;
  margin: 0 0.5em;
  background: #262626;
  display: inline-block;
}
.wrapper #footer .copyright {
  width: 100%;
  float: left;
  background: black;
  line-height: 0;
}
.wrapper #footer .copyright a {
  width: 100%;
  float: left;
  position: relative;
}

.frame_bar {
  position: fixed;
  z-index: 10000;
}
.frame_bar.bar1 {
  display: block;
  background: black;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}
.frame_bar.bar2 {
  display: block;
  background: black;
  width: 5px;
  height: 100%;
  height: 150%;
  top: 0;
  right: 0;
}
.frame_bar.bar3 {
  display: block;
  background: black;
  width: 100%;
  height: 5px;
  bottom: 0;
  right: 0;
}
.frame_bar.bar4 {
  display: block;
  background: black;
  width: 5px;
  height: 100%;
  height: 150%;
  bottom: 0;
  left: 0;
}

#flash {
  background: white;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#loader {
  background: black;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  transform: translate3d(0px, 0px, 10px);
  -webkit-transform: translate3d(0px, 0px, 10px);
}
#loader .bar {
  position: fixed;
  z-index: 10001;
}
#loader .bar.bar1 {
  display: block;
  background: black;
  width: 100%;
  height: 5px;
  width: 0%;
  background: white;
  top: 0;
  left: 0;
}
#loader .bar.bar2 {
  display: block;
  background: black;
  width: 5px;
  height: 100%;
  width: 0%;
  background: white;
  top: 0;
  right: 0;
}
#loader .bar.bar3 {
  display: block;
  background: black;
  width: 100%;
  height: 5px;
  width: 0%;
  background: white;
  bottom: 0;
  right: 0;
}
#loader .bar.bar4 {
  display: block;
  background: black;
  width: 5px;
  height: 100%;
  width: 0%;
  background: white;
  bottom: 0;
  left: 0;
}
#loader .logo {
  width: 102px;
  height: 102px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
#loader .loadanim {
  width: 102px;
  height: 102px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  perspective: 1001px;
  -webkit-animation: loading 1.8s infinite cubic-bezier(0.38, 0.14, 0.13, 0.97);
  -moz-animation: loading 1.8s infinite cubic-bezier(0.38, 0.14, 0.13, 0.97);
  animation: loading 1.8s infinite cubic-bezier(0.38, 0.14, 0.13, 0.97);
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  transform: translate3d(0px, 0px, 10px);
  -webkit-transform: translate3d(0px, 0px, 10px);
  z-index: 10001;
}
#loader .loadanim img {
  transform: translate3d(0px, 0px, 10px);
  -webkit-transform: translate3d(0px, 0px, 10px);
  z-index: 10001;
}
