body {
  -webkit-text-size-adjust: 100%;
  min-width: 700px;
}

#header {
  /* デザイン設定 */
  display: block;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)), url(../img/kokopelli_mini.png);
  background-size: 100% 100%, 50px 50px;
  background-position: left top;
  background-repeat: no-repeat, repeat-x;
  height: 50px;
}
#header a {
  /* リンクデザイン設定 */
  color: #000000;
  text-decoration: none;
}

hr {
  /* デザイン設定 */
  border: none;
  height: 1px;
  background: #777777;
  background-image: linear-gradient(to left, #ffffff, #777777, #777777, #777777, #ffffff);
}

#menu-area {
  /* デザイン設定 */
  background-image: url(../img/kokopelli2.jpg), url(../img/kokopelli2_rev.jpg);
  background-position: left, right;
  background-size: 57px 57px;
  background-repeat: no-repeat;

  /* センタリング設定 */
  display: flex;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}
.menu-item {
  /* センタリング設定 */
  margin-left: 3%;
  margin-right: 3%;
  line-height: 37px;
  
  /* デザイン設定 */
  flex: 0 0 100px;
  height: 41px;
  font-size: 14px;
  color: #444444;
  border: 2px solid rgba(0, 0, 0, 0.7);
  -moz-transform-origin: 0 100%;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -moz-transform: skewX(-25deg);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  
  /* アニメーション設定 */
  position: relative;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: liner;
}
.menu-item a {
  /* リンク設定 */
  display: block;
  width: 104px;
  height: 45px;
  position: absolute;
  top: -2px;
  left: -2px;
  
  /* デザイン設定 */
  color: rgba(0, 0, 0, 0);
  text-decoration: none;
}
.menu-item:hover {
  /* デザイン設定 */
  background-color: rgba(255, 255, 0, 0.2);
}
.menu-item::after {
  /* アニメーション設定 */
  position: absolute;
  left: 104%;
  top: 95%;
  width: 3px;
  height: 0%;
  border: 2px solid rgba(0, 0, 0, 0);
  content: "";
  display: block;
  z-index: -1;
  transition-property: background-color, top, border, height;
  transition-duration: 0.2s;
  transition-timing-function: liner;
}
.menu-item:hover::after {
  /* アニメーション設定 */
  height: 100%;
  top: -5%;
  border: 2px solid rgba(0, 0, 0, 0.7);
  background-color: rgba(255, 255, 0, 0.2);
}
.menu-item::before {
  /* アニメーション設定 */
  position: absolute;
  left: -11%;
  top: -5%;
  width: 3px;
  height: 0%;
  border: 2px solid rgba(0, 0, 0, 0);
  content: "";
  display: block;
  z-index: -1;
  transition-property: background-color, border, height;
  transition-duration: 0.2s;
  transition-timing-function: liner;
}
.menu-item:hover::before {
  /* アニメーション設定 */
  height: 100%;
  border: 2px solid rgba(0, 0, 0, 0.7);
  background-color: rgba(255, 255, 0, 0.2);
}

#text-area {
  /* デザイン設定 */
  margin-left: 10px;
}

h2 {
  margin-top: 30px;
}
