/*!
* 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 h2 {
  margin: 0 0 22px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
#contents table {
  width: 500px;
  margin: 0 auto 100px auto;
  border-collapse: collapse;
  position: relative;
  z-index: 2;
  font-size: 16px;
}
#contents table th, #contents table td {
  border-bottom: 1px solid #e5e5e5;
}
#contents table tr:last-child th, #contents table tr:last-child td {
  border-bottom: none;
}
#contents table th {
  padding: 20px 40px;
  text-align: right;
}
#contents table td {
  text-align: left;
}

@media screen and (max-width: 768px) {
  #contents {
    padding-top: 100px;
  }
  #contents h2 {
    margin: 0 0 18px 0;
    font-size: 20px;
  }
  #contents table {
    margin: 0 auto 40px auto;
    font-size: 14px;
  }
  #contents table th, #contents table td {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  #contents table {
    width: 300px;
  }
  #contents table th, #contents table td {
    display: block;
    padding: 5px 0 5px 20px;
    text-align: left;
  }
  #contents table table tr:last-child th {
    border-bottom: 1px solid #e5e5e5;
  }
  #contents table td {
    border-bottom: none;
    margin: 0 0 10px 0;
  }
}
