@charset "UTF-8";
.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination button {
  margin: 0 10px;
  padding: 5px 10px;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mes-text li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mes-box-in {
  background: #B7193F;
  padding: 5px 5px;
}
.mes-box-in .mes-ttl {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  border: 1px solid #fff;
}

.ttl-list li {
  background: #B7193F;
  padding: 8px 40px;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  line-height: 1.6;
  color: #fff;
}
.ttl-list li .mes-date {
  width: 9%;
}
.ttl-list li .mes-name {
  width: 29%;
}
.ttl-list li .mes-text {
  width: 57%;
}

.mes-textbox {
  border: 1px solid #B7193F;
}
.mes-textbox li {
  background: #B7193F;
  padding: 8px 40px;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  line-height: 1.6;
  margin-bottom: 0;
}
.mes-textbox li .mes-date {
  width: 9%;
}
.mes-textbox li .mes-name {
  width: 29%;
}
.mes-textbox li .mes-text {
  width: 57%;
}
.mes-textbox li:nth-child(odd) {
  background: #fff;
}
.mes-textbox li:nth-child(even) {
  background: #F8E8EB;
}

.mes-link a {
  text-align: center;
  display: block;
  border-bottom: 1px solid #B7193F;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 12px;
  color: #B7193F;
  line-height: 1.41;
  cursor: pointer;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 10px;
}

.page-numbers li {
  position: relative;
  margin: 0;
}

.page-numbers li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px; /* 縦線の高さ */
  width: 1px;
  background-color: #333;
}

.page-numbers li:last-child:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px; /* 縦線の高さ */
  width: 1px;
  background-color: #333;
}

.page-numbers li a {
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}

.page-numbers li.active a {
  color: #ff0000; /* アクティブ状態は赤色 */
}

.pagination button {
  padding: 5px 10px;
  margin: 0 5px;
  border: none;
  background: none;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media only screen and (max-width: 900px) {
  .mes-box-in {
    padding: 1vw 1vw;
  }
  .mes-box-in .mes-ttl {
    font-size: 3.3vw;
    line-height: 1;
    padding-top: 2vw;
    padding-bottom: 2vw;
    text-align: center;
    border: 1px solid #fff;
  }
  .ttl-list li {
    padding: 1.2vw 2.3vw;
    display: flex;
    font-size: 2.6vw;
    justify-content: space-between;
    line-height: 1.6;
    color: #fff;
  }
  .ttl-list li .mes-date {
    width: 19%;
  }
  .ttl-list li .mes-name {
    width: 44%;
  }
  .ttl-list li .mes-text {
    width: 33%;
    font-size: 0;
  }
  .mes-textbox li {
    padding: 1.2vw 2.3vw;
    display: flex;
    flex-wrap: wrap;
    font-size: 2.6vw;
    justify-content: space-between;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .mes-textbox li .mes-date {
    width: 54%;
  }
  .mes-textbox li .mes-name {
    width: 43%;
  }
  .mes-textbox li .mes-text {
    width: 100%;
    margin-top: 0vw;
  }
  .mes-textbox li:nth-child(odd) {
    background: #fff;
  }
  .mes-textbox li:nth-child(even) {
    background: #F8E8EB;
  }
  .mes-link a {
    text-align: center;
    display: block;
    border-bottom: 1px solid #B7193F;
    padding-top: 3vw;
    padding-bottom: 3vw;
    font-size: 3vw;
    line-height: 1.41;
    cursor: pointer;
  }
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4vw;
    margin-bottom: 6vw;
  }
  .page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 3vw;
  }
  .page-numbers li {
    position: relative;
    margin: 0;
  }
  .page-numbers li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px; /* 縦線の高さ */
    width: 1px;
    background-color: #333;
  }
  .page-numbers li:last-child:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px; /* 縦線の高さ */
    width: 1px;
    background-color: #333;
  }
  .page-numbers li a {
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
  }
  .page-numbers li.active a {
    color: #ff0000; /* アクティブ状態は赤色 */
  }
  .pagination button {
    padding: 1vw 1vw !important;
    margin: 0 1vw !important;
    border: none;
    background: none;
    font-size: 2.7vw;
  }
  .pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}
/*# sourceMappingURL=message.css.map */