@charset "utf-8";
/* ----------------------------------------
  html5
---------------------------------------- */
article, aside, canvas, details, figcaption, figure, header, footer, hgroup, menu, nav, section, summary {
  display: block;
}
/* ----------------------------------------
  bace
---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, main, article, aside, dialog, figcaption, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}
address {
  font-style: normal;
}
img, a img {
  border: 0;
}
img {
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul, ol {
  margin: 0 0 0 0;
  padding: 0;
}
.btn a {
  transition-property: all;
  transition-duration: .6s;
  transition-timing-function: ease;
}
/* ----------------------------------------
  link
---------------------------------------- */
a, a:visited {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.fade {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.fade:hover {
  opacity: 0.4;
  filter: alpha(opacity=90);
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
/* ----------------------------------------
  common class
---------------------------------------- */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-min {
  font-size: 70%;
}
.text-big {
  font-size: 130%;
}
.clear {
  clear: both;
}
.float-l {
  float: left;
}
.float-r {
  float: right;
}
.img-l {
  margin: 0 10px 10px 0;
  float: left;
}
.img-r {
  margin: 0 0 10px 10px;
  float: right;
}
.img-center {
  display: block;
  margin: 0 auto;
}
.img-max {
  max-width: 100%;
  height: auto;
}
.overf {
  overflow: hidden;
}
.clear {
  clear: both;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mt25 {
  margin-top: 25px;
}
.pt25 {
  padding-top: 25px;
}
/* ----------------------------------------
  iOS reset
---------------------------------------- */
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}