@charset "utf-8";
/* CSS Document */

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal_inner {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 1em;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  position: relative;
  border-radius: 8px;
  padding-left: 2em;
}

.close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal.show {
  display: block;
}

.entry-content .artive_ul {
  list-style: none;
  padding-left: 0;
}

.entry-content .artive_ul>li {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.artive_ul li a {
  text-decoration: none;
}

.artive_ul li a.tenpo_modal:hover {
  color: #fff;
}

.artive_ul li>a {
  width: 28%;
}

.artive_text {
  width: 70%;
}

.artive_text > p {
  margin-bottom: 0;
}

.tenpo_modal {
  background: #C4017C;
  color: #fff;
  padding: 4px 2em;
  border-radius: 40px;
  display: inline-block;
  margin-top: 8px;
}

@media screen and (max-width: 1023px) {
  .modal_inner {
    top: 20%;
  }
  .tenpo_modal {
    padding: 4px 1em;
  }
  .artive_ul li>a {
    width: 33%;
  }
  .artive_text {
    width: 65%;
  }
  .tenpo_modal {
    margin-top: 4px;
  }
}


/* モーダル内 */
ul.modal_tenpo {
  padding-left: 0;
}
