@charset "UTF-8";

/*----------------------
common
----------------------*/

html {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
  position: relative;
  width: 100%;
}

body {
  position: relative;
  width: 100%;
}

ul li {
  list-style: none;
}

::selection {
  background: #333;
  color: #fff;
}

::-moz-selection {
  background: #333;
  color: #fff;
}

a, a:visited, input[type="submit"] {
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
  filter: alpha(opacity100);
  -ms-filter: "alpha(opacity=100)";
  -khtml-opacity: 1;
  -moz-opacity: 1;
  color: #333;
}

a:hover, input[type="submit"]:hover {
  opacity: .5;
  filter: alpha(opacity50);
  -ms-filter: "alpha(opacity=50)";
  -khtml-opacity: .5;
  -moz-opacity: .5;
}

:focus {
  outline: 0;
}

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

input[type="text"], textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px #ccc solid;
  box-sizing: border-box;
  padding: 6px;
}

textarea {
  resize: none;
}

input[type="submit"] {
  border: none;
  color: #fff;
  background: #000;
  padding: 15px;
  text-align: center;
  box-sizing: border-box;
  font-size: 11px;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/* fade */

.blurIn {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.5s ease-in;
}

.blurIn.scrollin {
  opacity: 1;
  filter: blur(0px);
}

.fadein {
  opacity: 0;
  transform: translate(0, 16px);
  transition: all 0.8s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.slideIn {
  opacity: 0;
  transform: translate(16px, 0);
  transition: all 0.8s;
}

.slideIn.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.delay05s {
  transition-delay: 0.4s;
}

.delay1s {
  transition-delay: 1s;
}

.delay15s {
  transition-delay: 1.6s;
}

@media (max-width: 900px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .pcInline {
    display: none;
  }
}