@charset "UTF-8";

/*-------------------------------------------
List
-------------------------------------------*/
.list {
  position: relative;
  border: solid 2px #1e2678;
  margin-bottom: 50px;
}
.list-title {
  font-size: 1.15em;
  background: #1e2678;
  padding: 4px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.list ol {
  margin: 0;
  padding: 0.25em 0.5em 0.25em 0.5em;
  color: #1e2678;
  border: none;
  list-style-type: none;
  counter-reset: number;/*数字をリセット*/
}
.list ol li {
  line-height: 1.75;
  padding: 0.75em 0 0.5em 2.5em;
  border-bottom: dashed 1px #1e2678;
}
.list ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display: inline-block;
  background: #1e2678;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 12px;
  border-radius: 20%;
  left: 1em;
  width: 22px;
  height: 22px;
  text-align: center;
  vertical-align: middle;
  line-height: 22px;
}
.list ol li:last-of-type{
  border-bottom: none; /*最後のliの線だけ消す*/
}
.list ol li ol{
  counter-reset: number;/*数字をリセット*/
  list-style-type: disc;
}
.list ol li ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display: inline-block;
  background: #1e2678;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  left: 4.25em;
  width: 22px;
  height: 22px;
  text-align: center;
  vertical-align: middle;
  line-height: 22px;
}

.list a{
  color: #1e2678;
}

/*-------------------------------------------
料金
-------------------------------------------*/
.plan-table {
  overflow-x: auto;
  padding: 0 20px;
  margin-top: 80px;
  margin-bottom: 20px;
}
.plan-table .table {
  width: 1100px;
  border-collapse: collapse;
  margin: 0 auto;
  table-layout: fixed;
  margin-bottom: 20px;
}
.plan-table .table th,
.plan-table .table td {
  border: solid 1px #707070;
  padding: 20px;
}
.plan-table .table thead th {
  background-color: #fafafa;
  font-weight: 500;
}
.plan-table .table thead th:first-child {
  width: 120px;
}
.plan-table .table thead th:nth-child(n+2) {
  width: 200px;
}
.plan-table .table tbody th {
  background-color: #fafafa;
  font-weight: 500;
  text-align: center;
}
.plan-table .table tbody td {
  font-size: 18px;
  text-align: center;
}
.plan-table .table  tbody td .title {
  display: block;
  font-size: 14px;
}
.plan-table .table  tbody td .price {
  font-size: 24px;
  font-weight: 500;
}
.plan-table .table  tbody td .tax {
  font-size: 12px;
}
.plan-table .table  tbody td .note {
  font-size: 14px;
}



/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /*-------------------------------------------
  料金
  -------------------------------------------*/
  .plan-table {
    margin-bottom: 40px;
  }
  .plan-table .table {
    width: 600px;
  }
  .plan-table .table th,
  .plan-table .table td {
    font-size: 14px;
    padding: 10px;
  }
  .plan-table .table thead th:first-child {
    width: 150px;
  }
  .plan-table .table thead th:nth-child(n+2) {
    width: 150px;
  }
  .plan-table .table tbody td {
    font-size: 14px;
  }
  .plan-table .table tbody td .price {
    font-size: 18px;
  }
 
}