/*----------------------
beauty_topic
----------------------*/
.blog_list .ttl h3 {
  color: #d60050;
  letter-spacing: 0;
}
.blog_list .cont_wrap {
  display: flex;
  justify-content: space-between;
}
.blog_list .cont_wrap .cont {
  width: 80%;
}
.blog_list .cont_wrap .cont .list_sec {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px dashed #888;
}
.blog_list .cont_wrap .cont .body strong {
  color: #d60050;
  background: linear-gradient(transparent 70%, #feffb5 70%);
}
.blog_list .cont_wrap .cont .body p {
  margin-bottom: 2em;
}
.blog_list .cont_wrap .cont .body a {
  text-decoration: underline;
}
.blog_list .cont_wrap .cont .body img {
  display: block;
  margin: 20px 0;
  max-width: 600px;
}
.blog_list .cont_wrap nav {
  width: 15%;
  text-align: center;
}
.blog_list .cont_wrap nav .year_btn {
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
  cursor: pointer;
}
.blog_list .cont_wrap nav p {
  margin-bottom: 10px;
}
.blog_list .cont_wrap nav ul li a {
  display: block;
  border-bottom: 1px dashed #999;
  padding: 5px 0;
}

.more {
  color: #d60050;
  text-align: right;
  text-decoration: underline;
}

.beauty_list > li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #aaa;
  display: flex;
  justify-content: space-between;
}
.beauty_list > li figure {
  width: 35%;
}
.beauty_list > li .beauty_info {
  width: 60%;
}
.beauty_list > li .date {
  color: #555;
  font-size: 0.9em;
}

.new_cont {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px dashed #aaa;
}
.new_cont ul {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.new_cont ul li {
  width: 30%;
  line-height: 1.6;
}
.new_cont ul li figure {
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.new_cont ul li dt {
  color: #888;
  font-size: 0.8em;
}
.new_cont ul li dd {
  font-weight: 500;
  font-size: 0.9em;
  margin-bottom: 5px;
}
.new_cont ul li p {
  font-size: 0.8em;
}
.new_cont ul li p a {
  color: #d60050;
  text-decoration: underline;
}

.pager {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 40px;
}
.pager ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.pager ul li a {
  display: block;
  background-color: #f1f1f1;
  border-radius: 3px;
  padding: 4px 20px;
}
.pager.beauty_pager ul {
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 780px) {
  .beauty_list > li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-flow: column;
  }
  .beauty_list > li figure {
    width: 70%;
    margin: 0 auto;
  }
  .beauty_list > li .beauty_info {
    margin-top: 20px;
    width: 100%;
  }
  .beauty_list > li .more {
    text-align: center;
    display: block;
  }
  .blog_list .ttl h3 {
    color: #d60050;
    letter-spacing: 0;
  }
  .blog_list .cont_wrap {
    flex-flow: column;
  }
  .blog_list .cont_wrap .cont {
    width: 100%;
  }
  .blog_list .cont_wrap nav {
    width: 100%;
  }
  .blog_list .cont_wrap nav li {
    padding: 10px 0;
  }
  /*----------------------
  blog_sec
  ----------------------*/
  .new_cont ul {
    flex-flow: column;
    gap: 0px;
  }
  .new_cont ul li {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px dashed #999;
    padding-bottom: 10px;
  }
  .new_cont ul li > div {
    width: 55%;
  }
  .new_cont ul li figure {
    width: 40%;
  }
}