@charset "UTF-8";

/*-------------------------------------------
List
-------------------------------------------*/
.list {
  position: relative;
  border: solid 2px #7d0000;
  margin-bottom: 50px;
}
.list-title {
  font-size: 1.15em;
  background: #7d0000;
  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: #7d0000;
  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 #7d0000;
}
.list ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display: inline-block;
  background: #7d0000;
  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 a{
  color: #7d0000;
}


/*-------------------------------------------
Photo
-------------------------------------------*/
.photo {
  margin-bottom: 50px;
}
.photo .photo-list {
  display: flex;
  flex-wrap: wrap;
}
.photo .photo-list li {
  width: 32%;
  margin: 0 2% 2% 0;
  margin-bottom: 40px;
}
.photo .photo-list li:nth-child(3n) {
  margin-right: 0;
}
.photo .photo-list li .img {
  margin-bottom: 10px;
}
.photo .photo-list li .text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
.photo .photo-list li .description {
  font-size: 15px;
  text-align: justify;
  line-height: 1.7;
}


/*-------------------------------------------
料金
-------------------------------------------*/
.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;
}
.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: 220px;
  background-color: #fff;
  border-left: none;
  border-top: none;
}
.plan-table .table thead th:nth-child(n+2) {
  width: 200px;
}
.plan-table .table tbody th {
  background-color: #fafafa;
  font-weight: 500;
  text-align: left;
}
.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) {

  /*-------------------------------------------
  Photo
  -------------------------------------------*/
  .photo {
    margin-bottom: 60px;
  }
  .photo .photo-list {
    flex-direction: column;
  }
  .photo .photo-list li {
    width: 100%;
    margin: 0 0 20px;
  }

  /*-------------------------------------------
  料金
  -------------------------------------------*/
  .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;
  }
 
}