@charset "UTF-8";
/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #111;
  font-size: 14px;
  line-height: 1.4;
  font-family: "メイリオ", Meiryo,"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

a {
  color: #111;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

/* ----------------------------------------------
wrapper
------------------------------------------------- */
.wrapper {
  position: relative;
  min-height: 100vh;
  padding-bottom: 100px;
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  padding: 36px 10px 30px;
  text-align: center;
}

#header h1 {
  display: inline-block;
}

@media (max-width: 767px) {
  #header {
    padding: 10px 60px 10px 10px;
  }
  #header img {
    width: auto;
    height: 40px;
  }
}

/* ----------------------------------------------
gnav
------------------------------------------------- */
#gnav {
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 3;
}

#gnav ul {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  #gnav ul {
    flex-direction: column;
  }
}

#gnav li + li {
  margin-left: 40px;
}

#gnav a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2em;
}
#gnav a span.on{
  display: none;
}

#gnav a:hover span.off {
  display: none;
}

#gnav a:hover span.on {
  display: inline;
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#copyright {
  position: absolute;
  bottom: 50px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #131304;
  color: #fff;
  font-size: 12px;
  font-family: serif;
  letter-spacing: 0.1em;
}

/* ----------------------------------------------
footer_links
------------------------------------------------- */
#footer_links {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

#footer_links ul {
  display: flex;
  background: #fff;
}

#footer_links li {
  width: 33.3333%;
}

#footer_links li + li {
  border-left: 1px solid #333;
}

#footer_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #222;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: center;
}

#footer_links a span.on{
  display: none;
}

#footer_links a:hover span.off{
  display: none;
}

#footer_links a:hover span.on{
  display: inline;
}

#footer_links a img {
  margin-right: 12px;
}

@media (max-width: 767px) {
  #footer_links a {
    font-size: 10px;
  }
  #footer_links a img {
    margin-right: 8px;
  }
}

/* ----------------------------------------------
parabox
------------------------------------------------- */
.parabox {
  opacity: 0;
  position: relative;
  top: 100px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.fade {
  opacity: 1;
  top: 0;
}
