@charset "utf-8";
/* CSS Document */
.tbl-isp {
  width: 100%;
  margin: 0;
}
.tbl-isp dt {
  font-weight: bold;
}
/* ISP　SP

-------------------------------------------------- */
@media only screen and (max-width:570px) {
  .tbl-isp {}
  .tbl-isp dt, .tbl-isp dd {
    padding: 8px 10px;
  }
  .tbl-isp dt {
    float: none;
  }
  .tbl-isp dd {}
}
/* ISP　PC

-------------------------------------------------- */
@media only screen and (min-width: 571px) {
  .tbl-isp dt, .tbl-isp dd {
    padding: 10px;
    font-size: 1.5em;
  }
  .tbl-isp dt {
    clear: both;
    float: left;
    width: 250px; /* 幅を指定 */
  }
  .tbl-isp dd {
    padding-left: 170px; /* dtの分、左にpaddingを取る */
  }
}
.tbl-hosting {
  width: 100%;
  margin: 0;
}
.tbl-hosting dt {
  font-weight: bold;
}
/* Hosting　スマホ

-------------------------------------------------- */
@media only screen and (max-width:570px) {
  .tbl-hosting {}
  .tbl-hosting dt, .tbl-hosting dd {
    padding: 8px 10px;
  }
  .tbl-hosting dt {
    float: none;
  }
  .tbl-hosting dd {}
}
/* Hosting　PC

-------------------------------------------------- */
@media only screen and (min-width: 571px) {
  .tbl-hosting dt, .tbl-hosting dd {
    padding: 10px;
    font-size: 1em;
  }
  .tbl-hosting dt {
    clear: both;
    float: left;
    width: 200px; /* 幅を指定 */
  }
  .tbl-hosting dd {
    padding-left: 170px; /* dtの分、左にpaddingを取る */
  }
}
/* Hosting Plan Generic Styling, for Desktops/Laptops */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 85%;
}
/* Zebra striping */
tr:nth-of-type(odd) {
  background: #eee;
}
th {
  background: #333;
  color: white;
  font-weight: bold;
  text-align: center;
}
td {
  text-align: right;
}
td, th {
  padding: 6px;
  border: 1px solid #ccc;
}
ol {
  font-size: 90%;
}
ul {
  font-size: 14px;
}
img {
  max-width: 95%;
  height: auto;
}
/* 

Max width before this PARTICULAR table gets nasty

This query will take effect for any screen smaller than 760px

and also iPads specifically.

*/
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tr {
    border: 1px solid #ccc;
  }
  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: center;
  }
  /* Label the data */
  td:nth-of-type(1):before {
    content: "プラン";
  }
  td:nth-of-type(2):before {
    content: "初期費用";
  }
  td:nth-of-type(3):before {
    content: "月額費用";
  }
  td:nth-of-type(4):before {
    content: "ディスク容量";
  }
  td:nth-of-type(5):before {
    content: "ドメインエイリアス";
  }
  td:nth-of-type(6):before {
    content: "メール";
  }
  td:nth-of-type(7):before {
    content: "データベース";
  }
  td:nth-of-type(8):before {
    content: "SSL対応（固定IPアドレス）";
  }
  td:nth-of-type(9):before {
    content: "";
  }
  td:nth-of-type(10):before {
    content: "";
  }
}

/* 保有個人データの利用目的テーブル
-------------------------------------------------- */
.tbl-privacy {
  font-size: 13px;
}
.tbl-privacy .col-kubun {
  width: 180px;
  vertical-align: middle;
  text-align: center;
}
.tbl-privacy td.col-kubun {
  background-color: #f5f5f5;
}
.tbl-privacy .col-koban {
  width: 50px;
  text-align: center;
}
.tbl-privacy td.col-mokuteki {
  text-align: left;
}

/* 保有個人データテーブル　SP
-------------------------------------------------- */
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  .tbl-privacy {
    display: table;
  }
  .tbl-privacy thead {
    display: table-header-group;
    position: static;
  }
  .tbl-privacy tbody {
    display: table-row-group;
  }
  .tbl-privacy tr {
    display: table-row;
    border: none;
  }
  .tbl-privacy thead tr {
    position: static;
    top: auto;
    left: auto;
  }
  .tbl-privacy th,
  .tbl-privacy td {
    display: table-cell;
    padding-left: 6px;
    position: static;
    border: 1px solid #ccc;
  }
}