@charset "utf-8";

/* ---------------------------------------------------------
  フリーゲーム詳細検索ページ
----------------------------------------------------------*/
section#searchDetail {
  margin: 0 auto;
  width: 90%;
}
  section#searchDetail h1 {
    margin-bottom: 35px;
    height: 37px;
    line-height: 40px;
    font-weight: bold;
    font-size: 180%;
    text-align: center;
  }
  section#searchDetail h1:before {
    background: url(../img/icon_taiboku.png) no-repeat left top;
    background-size: 40px 37px;
    content: "";
    padding: 5px 0 5px 50px;
  }

/* --- キーワード入力 */
div#searchDetailForm dl.keyword {
  margin: 0 auto 20px;
  width: 80%;
  border-bottom: dashed 1px #ddd;
  padding-bottom: 15px;
  text-align: center;
}
  div#searchDetailForm dl.keyword dt {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    color: #006268;
  }
  div#searchDetailForm dl.keyword dd input {
    width: 50%;
    padding: 5px;
  }

/* --- カテゴリーを選択 */
div#searchDetailForm dl.cate {
  margin: 0 auto 20px;
  width: 80%;
  border-bottom: dashed 1px #ddd;
  padding-bottom: 15px;
  text-align: center;
}
  div#searchDetailForm dl.cate dt {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    color: #006268;
  }
  div#searchDetailForm dl.cate dd label {
    line-height: 2;
    padding: 0 10px;
    white-space: nowrap;
    font-size: 14px;
  }
  div#searchDetailForm dl.cate dd input {
    padding: 5px;
  }

/* --- ジャンルと開発ツール */
dl.searchGenre {
  margin-bottom: 20px;
  border-bottom: dashed 1px #ddd;
  padding-bottom: 10px;
  text-align: center;
}
dl.searchGenre dt {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #006268;
}
dl.searchGenre dd ul {
  text-align: center;
}
dl.searchGenre dd ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-bottom: 1em;
  width: 24%;
  overflow: hidden;
}
dl.searchGenre dd label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}
dl.searchGenre dd select {
  width: 80%;
  padding: 5px;
  line-height: 1.6;
  font-size: 13px;
}

/* --- 年齢制限 */
div#searchDetailForm dl.ageLimit {
  margin: 0 auto 20px;
  width: 80%;
  border-bottom: dashed 1px #ddd;
  padding-bottom: 15px;
  text-align: center;
}
  div#searchDetailForm dl.ageLimit dt {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    color: #006268;
  }
  div#searchDetailForm dl.ageLimit dd label {
    line-height: 2;
    padding: 0 10px;
    white-space: nowrap;
    font-size: 14px;
  }
  div#searchDetailForm dl.ageLimit dd input {
    padding: 5px;
  }

/* --- 対応OS */
div#searchDetailForm dl.supportedOs {
  margin: 0 auto 20px;
  width: 80%;
  border-bottom: dashed 1px #ddd;
  padding-bottom: 15px;
  text-align: center;
}
  div#searchDetailForm dl.supportedOs dt {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    color: #006268;
  }
  div#searchDetailForm dl.supportedOs dd label {
    line-height: 2;
    padding: 0 10px;
    white-space: nowrap;
    font-size: 14px;
  }
  div#searchDetailForm dl.supportedOs dd input {
    padding: 5px;
  }

/* --- 評価値 */
div#searchDetailForm dl.star {
  margin: 0 auto 20px;
  width: 100%;
  border-bottom: dashed 1px #ddd;
  padding-bottom: 15px;
  text-align: center;
}
  div#searchDetailForm dl.star dt {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    color: #006268;
  }
  div#searchDetailForm dl.star dd label {
    line-height: 2;
    padding: 0 5px;
    white-space: nowrap;
    font-size: 13px;
  }
    div#searchDetailForm dl.star dd label span.starIcon {
      padding: 0 3px;
      font-size: 19px;
      letter-spacing: -0.1em;
    }
      div#searchDetailForm dl.star dd label span.starIcon span {
        color: #eca600;
      }
  div#searchDetailForm dl.star dd input {
    padding: 5px;
  }

/* --- レビュー数 */
div#searchDetailForm dl.review {
  margin: 0 auto 25px;
  width: 80%;
  text-align: center;
}
  div#searchDetailForm dl.review dt {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    color: #006268;
  }
  div#searchDetailForm dl.review dd label {
    line-height: 2;
    padding: 0 10px;
    white-space: nowrap;
    font-size: 13px;
  }
    div#searchDetailForm dl.review dd label span {
      padding: 0 3px;
      font-size: 16px;
      font-weight: bold;
    }
  div#searchDetailForm dl.review dd input {
    padding: 5px;
  }

/* --- Submitボタン */
div#searchDetailForm div.submit {
  margin-bottom: 30px;
  text-align: center;
}
div#searchDetailForm div.submit input {
  margin: 10px;
  font-size: 21px;
  font-weight: bold;
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  width: 240px;
  background: #333;
  color: #fff;
  border: solid 1px;
}
  div#searchDetailForm div.submit input:hover {
    background: #fff;
    color: #333;
    border: solid 1px #333;
    cursor: pointer;
    transition: all 0.5s;
  }
  div#searchDetailForm div.submit input:active {
    background: #006268;
    border: solid 1px #006268;
    color: #fff;
  }