@charset "utf-8";

/*******************************************
メイン
*******************************************/
/* エリア一覧テーブル */
.area_table {
  margin-bottom: 30px;
}

.area_table td {
  padding: 5px 0;
  border: none;
}

section {
  margin-bottom: 100px;
}

/* h1 section見出し */
section h1{
  margin-bottom: 10px;
  line-height: 200%;
  padding-left: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #222222;
  background-color: #99ccff;
}

/* h1 section見出し テキスト */
section h1 span {
  padding-left: 15px;
  color: #444444;
  font-size: 13px;
  border-bottom: none;
}

/* 説明文 */
section p {
  padding: 0 8px;
  font-size: 11px;
  color: #888888;
}

/* 赤文字注意 */
section span {
  font-size: 12px;
  color: #cc0000;
}

/* テーブルラッパー */
.wrap_table {
  margin-top: 15px;
  margin-bottom: 40px;
}

/* テーブル枠線 */
table, th, tr, td {
  padding: 2px 0;
  font-size: 13px;
  border: 1px solid #cccccc;
  text-align: center;
  vertical-align: middle;
}

th {
  padding: 3px 0;
  background-color: #dde8ff;
}

/* テーブル背景色 */
/* 偶数行 */
tr:nth-child(even) {
  background-color: #f5f5f5;
}

/* 奇数行 */
tr:nth-child(odd) {
  background-color: #ffffff;
}

/* テーブルモジュール */
.w50 {
  width: 50%;
}

.w28 {
  width: 28%;
}

.w22 {
  width: 22%;
}

.red {
  color: #cc0000;
}

.blue {
  color: #0000cc;
}

.black {
  color: #000000;
}


/* お問い合わせ先 */
.list_title {
 margin-bottom: 15px;
}

/* 各社ホームページ */
.hp_list {
  padding: 0 5px;
  display: block;
  font-size: 14px;
  line-height: 200%;
  text-decoration: none;
  color: #444444;
}



/*******************************************
画面横幅768px以下に適用
*******************************************/
@media screen and (max-width: 768px){
  /* テーブル２列 */
  .left_table {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  
  .right_table {
    width: 100%;
    float: none;
  }
  
}



