/*!
* copyright 2016 Yoshitaka Koeda ( y_koeda@bignets.jp )
* license: The MIT License
*/
@charset "UTF-8";
#group-symbol {
  width: 100%;
  position: absolute;
  top: 60px;
  z-index: 1;
  text-align: center;
}
#group-symbol:before, #group-symbol:after {
  content: " ";
  display: table;
}
#group-symbol:after {
  clear: both;
}
#group-symbol .row {
  margin: 0;
  text-align: center;
  line-height: 0;
}
#group-symbol .square {
  display: inline-block;
  width: 10px;
  height: 10px;
  content: "";
  margin: 4px 2px;
  background: #f3f3f3;
  position: relative;
  top: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: opacity 0.5s ease 0s;
  -o-transition: opacity 0.5s ease 0s;
  -webkit-transition: opacity 0.5s ease;
  -webkit-transition-delay: 0s;
  transition: opacity 0.5s ease 0s;
}
#group-symbol .square.appear {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-animation: rotate 90s ease 0s infinite normal;
  -webkit-animation: rotate 90s ease 0s infinite normal;
  animation: rotate 90s ease 0s infinite normal;
}

@keyframes rotate {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  #group-symbol {
    top: 24px;
  }
}
header .navbar {
  margin: 0;
}

#contents {
  padding-top: 160px;
  position: relative;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Meiryo UI", "MS UI Gothic", sans-serif;
}
#contents .board {
  width: 50%;
  padding: 40px;
  border: 10px solid #000;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  margin: 0 auto 50px;
  background: #eee;
  position: relative;
}
#contents .board:before {
  width: 50px;
  height: 50px;
  content: "";
  border-right: 8px solid #000;
  border-bottom: 8px solid #000;
  -moz-border-radius-bottomright: 8px;
  -webkit-border-bottom-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: url(../../img/contents/contact_icon.png) #f4cd4e;
  -moz-background-size: 70%;
  -o-background-size: 70%;
  -webkit-background-size: 70%;
  background-size: 70%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
#contents .board p {
	margin-left: 70px;
}
#contents h2 {
  margin: 0 0 40px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
#contents fieldset {
  padding: 0;
  border: none;
  margin: 0 0 30px 0;
}
#contents legend {
  width: 100%;
  padding: 0;
  margin: 0 0 6px 0;
  font-size: 22px;
}
#contents form .input {
  position: relative;
}
#contents input[type="text"], #contents textarea {
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 8px solid #000;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-size: 18px;
}
#contents textarea {
  height: 300px;
  padding: 20px;
}
#contents form .error {
  display: inline-block;
  padding: 4px 10px;
  -moz-border-radius-bottomleft: 8px;
  -webkit-border-bottom-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background: transparent;
  background: rgba(244, 78, 105, 0.9);
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#E6F44E69', endColorstr='#E6F44E69');
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fff;
}
#contents .submit {
  text-align: right;
}
#contents button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  outline: none;
  position: relative;
  text-align: center;
}
#contents button:before {
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: #a09f9f;
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
}
#contents button .content {
  display: inline-block;
  padding: 20px 80px;
  border: 8px solid #000;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: #4d71f4;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  -moz-transition: background 0.2s ease 0s, top 0.2s ease 0s, left 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, top 0.2s ease 0s, left 0.2s ease 0s;
  -webkit-transition: background 0.2s ease, top 0.2s ease, left 0.2s ease;
  -webkit-transition-delay: 0s, 0s, 0s;
  transition: background 0.2s ease 0s, top 0.2s ease 0s, left 0.2s ease 0s;
}
#contents button:hover .content, #contents button:focus .content, #contents button:active .content {
  background: #4ec2f4;
  top: 6px;
  left: 6px;
}

@media screen and (max-width: 1024px) {
  #contents .board {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #contents {
    padding: 40px 20px;
  }
  #contents .board {
    width: 100%;
  }
  #contents h2 {
    margin: 0 0 18px 0;
    font-size: 20px;
  }
  #contents legend {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  #contents form .error {
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
    top: auto;
    right: 0;
    bottom: -25px;
    font-size: 12px;
  }
}
@media screen and (max-width: 425px) {
  #contents {
    padding: 20px 10px;
  }
  #contents .board {
    padding: 40px 20px;
  }
  #contents input[type="text"], #contents textarea {
    font-size: 14px;
  }
  #contents textarea {
    height: 200px;
  }
  #contents form .error {
    font-size: 12px;
  }
  #contents button .content {
    padding: 10px 40px;
    font-size: 16px;
  }
}
