/*!
* copyright 2016 Yoshitaka Koeda ( y_koeda@bignets.jp )
* license: The MIT License
*/
@charset "UTF-8";
body {
  min-width: 320px;
  margin: 0 auto;
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Meiryo UI", "MS UI Gothic", sans-serif;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
}

a:hover, a:focus {
  text-decoration: none;
}

@font-face {
  font-family: "Joysweb Icons";
  src: url("../font/Joysweb Icons.eot?9070cdbd6f0729e87daedcfa87b3c107?#iefix") format("embedded-opentype"), url("../font/Joysweb Icons.woff?9070cdbd6f0729e87daedcfa87b3c107") format("woff"), url("../font/Joysweb Icons.ttf?9070cdbd6f0729e87daedcfa87b3c107") format("truetype"), url("../font/Joysweb Icons.svg?9070cdbd6f0729e87daedcfa87b3c107#Joysweb Icons") format("svg");
}
h1 {
  padding: 10px;
  margin: 0;
  float: left;
}
h1 img {
  width: 374px;
  height: 53px;
  position: relative;
  top: 3px;
}

header .navbar {
  width: 100%;
  min-width: 320px;
  border-bottom: 1px solid #fff;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: transparent;
  background: rgba(65,201,161,1);
/*  background: rgba(51, 230, 188, 0.9);*/
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#E633E6BC', endColorstr='#E633E6BC');
}
header .navbar ul {
  padding: 0;
  margin: 0;
  float: right;
  list-style: none;
  font-family: 'Alegreya Sans';
}
header .navbar li {
  float: left;
}
header .navbar li a {
  display: block;
  padding: 23px 30px 20px 30px;
  font-size: 18px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    -moz-transition: background 0.2s ease 0s, -moz-transform 0.2s ease 0s;
    -o-transition: background 0.2s ease 0s, -o-transform 0.2s ease 0s;
    -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
    -webkit-transition-delay: 0s, 0s;
    transition: background 0.2s ease 0s, transform 0.2s ease 0s;
  }

  header .navbar.pass {
    background: transparent;
    background: rgba(51, 230, 188, 0.9);
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#E633E6BC', endColorstr='#E633E6BC');
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  header .navbar.pull {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  header .navbar.push {
    background: transparent;
    background: rgba(230, 51, 110, 0.9);
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#E6E6336E', endColorstr='#E6E6336E');
  }

  header .navbar ul {
    display: none;
  }

  h1 {
    padding: 2px 10px;
  }
  h1 img {
    width: 299px;
    height: 42px;
  }
}
@media screen and (max-width: 425px) {
  h1 {
    width: 140px;
    overflow: hidden;
  }
  h1 img {
    width: 299px;
    height: 42px;
  }
}
#menu-toggle {
  display: none;
  padding: 18px 22px;
  border-left: 1px solid #fff;
  float: right;
  color: #fff;
  text-shadow: 0px 0px 20px #3795cc;
  text-align: center;
}
#menu-toggle .glyphicon {
  font-size: 32px;
}
#menu-toggle .name {
  display: block;
  font-size: 12px;
}

#menu {
  width: 230px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -10px;
  z-index: 10010;
  -moz-transform: translateX(110%);
  -ms-transform: translateX(110%);
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
  -moz-transition: -moz-transform 0.2s ease 0s;
  -o-transition: -o-transform 0.2s ease 0s;
  -webkit-transition: -webkit-transform 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: transform 0.2s ease 0s;
  font-family: Joysweb Icons;
}

#menu.open {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

#menu-overlay {
  display: none;
  height: 0;
  right: 0;
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
  background: transparent;
  background: rgba(51, 230, 188, 0.7);
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#B333E6BC', endColorstr='#B333E6BC');
  cursor: pointer;
}

#menu-overlay.opening-menu {
  display: block;
  height: 100%;
}

#menu-overlay .close {
  position: fixed;
  top: 44%;
  right: 240px;
  font-size: 10px;
  outline: none;
  color: #666;
  opacity: 1;
}
#menu-overlay .close .glyphicon {
  display: block;
  margin: 0 0 6px 0;
  font-size: 20px;
  color: #888;
}
#menu-overlay .close:hover, #menu-overlay .close:focus, #menu-overlay .close:active {
  color: #000;
}
#menu-overlay .close:hover .glyphicon, #menu-overlay .close:focus .glyphicon, #menu-overlay .close:active .glyphicon {
  color: #333;
}

#menu-overlay:hover .close, #menu-overlay:focus .close, #menu-overlay:active .close {
  color: #000;
}
#menu-overlay:hover .close .glyphicon, #menu-overlay:focus .close .glyphicon, #menu-overlay:active .close .glyphicon {
  color: #333;
}

#menu a {
  display: block;
  padding: 16px 20px 14px 20px;
  position: relative;
  font-size: 14px;
}
#menu a .glyphicon {
  position: absolute;
  top: 19px;
  right: 26px;
  font-size: 10px;
}

#menu .contents {
  height: 100%;
  border-left: 10px solid #555;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: 'Hammersmith One';
}
#menu .contents h3 {
  padding: 20px 10px;
  margin: 0;
  font-size: 16px;
}
#menu .contents h3 .title {
  position: relative;
  top: 2px;
}
#menu .contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#menu .contents li {
  border-top: 10px solid #ccc;
}
#menu .contents li:last-child {
  border-bottom: 10px solid #ccc;
}
#menu .contents a {
  display: block;
}

body.opening-menu {
  min-width: 0;
  overflow-y: hidden;
}

@media screen and (max-width: 768px) {
  #menu-toggle {
    display: block;
    padding: 10px 13px 10px 14px;
  }
  #menu-toggle .glyphicon {
    font-size: 26px;
  }

  #menu .contents .eyes {
    height: 100px;
  }
  #menu .contents .eyes .left, #menu .contents .eyes .right {
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ccc;
    -moz-transition: width 0.2s ease 0s, height 0.2s ease 0s, background 0.3s step-end 0.2s, top 0.2s ease 0s, right 0.2s ease 0s, left 0.2s ease 0s;
    -o-transition: width 0.2s ease 0s, height 0.2s ease 0s, background 0.3s step-end 0.2s, top 0.2s ease 0s, right 0.2s ease 0s, left 0.2s ease 0s;
    -webkit-transition: width 0.2s ease, height 0.2s ease, background 0.3s step-end, top 0.2s ease, right 0.2s ease, left 0.2s ease;
    -webkit-transition-delay: 0s, 0s, 0.2s, 0s, 0s, 0s;
    transition: width 0.2s ease 0s, height 0.2s ease 0s, background 0.3s step-end 0.2s, top 0.2s ease 0s, right 0.2s ease 0s, left 0.2s ease 0s;
    content: "";
    position: absolute;
    top: 20px;
  }
  #menu .contents .eyes .left:hover, #menu .contents .eyes .left:focus, #menu .contents .eyes .left:active, #menu .contents .eyes .right:hover, #menu .contents .eyes .right:focus, #menu .contents .eyes .right:active {
    width: 45px;
    height: 30px;
    top: 36px;
  }
  #menu .contents .eyes .left {
    left: 35px;
  }
  #menu .contents .eyes .left:hover, #menu .contents .eyes .left:focus, #menu .contents .eyes .left:active {
    left: 43px;
  }
  #menu .contents .eyes .right {
    right: 35px;
  }
  #menu .contents .eyes .right:hover, #menu .contents .eyes .right:focus, #menu .contents .eyes .right:active {
    right: 43px;
  }

  #menu.opened .contents .eyes .left {
    background: #5ace0f;
  }
  #menu.opened .contents .eyes .right {
    background: #cc3011;
  }

  .next #menu .contents .eyes .left:after, .next #menu .contents .eyes .right:after {
    display: block;
    width: 60px;
    height: 60px;
    content: "\f101";
    position: absolute;
    top: -11px;
    left: 1px;
    background: transparent;
    font-family: Joysweb Icons !important;
    font-size: 60px;
    -moz-transition: font-size 0.2s ease 0s;
    -o-transition: font-size 0.2s ease 0s;
    -webkit-transition: font-size 0.2s ease;
    -webkit-transition-delay: 0s;
    transition: font-size 0.2s ease 0s;
    color: #fff;
    -moz-animation: eyes-next-blink 1s step-start 0s infinite normal;
    -webkit-animation: eyes-next-blink 1s step-start 0s infinite normal;
    animation: eyes-next-blink 1s step-start 0s infinite normal;
  }
  .next #menu .contents .eyes .left:hover:after, .next #menu .contents .eyes .left:focus:after, .next #menu .contents .eyes .left:active:after, .next #menu .contents .eyes .right:hover:after, .next #menu .contents .eyes .right:focus:after, .next #menu .contents .eyes .right:active:after {
    padding: 4px 0 0 7px;
    font-size: 30px;
  }

  @keyframes eyes-next-blink {
    0%, 100% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
    50% {
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
}
footer {
  padding: 30px 0;
  background: #000;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Meiryo UI", "MS UI Gothic", sans-serif;
  color: #fff;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
footer h2 {
  display: inline-block;
  margin: 0 20px 0 0;
}
footer h2 img {
  width: 109px;
  height: 23px;
}
footer nav {
  display: inline-block;
}
footer ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  position: relative;
  top: -3px;
  list-style: none;
}
footer li {
  display: inline-block;
}
footer li a {
  padding: 10px 10px;
  color: #fff;
}
footer li a:hover {
  color: #fff;
  text-decoration: underline;
}

#copyright {
  display: inline-block;
  position: relative;
  top: -3px;
}

@media screen and (max-width: 768px) {
  footer h2 {
    display: block;
    margin: 0 0 12px 0;
  }
  footer nav {
    display: block;
    margin: 0 0 8px 0;
  }

  #copyright {
    display: block;
    font-size: 12px;
  }
}
body {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.container-fluid {
  max-width: 1200px;
}

@media screen and (max-width: 768px) {
  .container-fluid {
    padding: 0;
  }

  #contents {
    margin-top: 52px;
  }
}
#contents.error {
  text-align: center;
}
#contents.error h2 {
  margin: 80px 0;
  font-size: 80px;
}
#contents.error .message {
  margin: 0 0 80px 0;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #contents.error h2 {
    margin: 92px 0 40px 0;
    font-size: 60px;
  }
  #contents.error .message {
    margin: 0 0 40px 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  #contents.error h2 {
    font-size: 50px;
  }
}
