/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
/* SEARCH RESULT */
.search_result {
  font-weight: 500;
  width: 90%;
  margin: auto;
}
.search_result_list {
  width: 90%;
  margin: 2em auto 4em;
  text-align: left;
}
.search_result_list li {
  margin: 1.5em auto 0;
}
.search_result_list li p {}
.search_result_list li div {
  margin: 0.3em auto 0;
  color: #339BCF;
  font-size: 1.2rem;
}
.search_result_list li div span {
  display: inline-block;
  padding: 0 0 0 5px;
}
/* archives */
.archives_list {
  width: 90%;
  margin: 0em auto 0em;
  text-align: left;
}
.archives_list li {
  margin: 1.5em auto 0;
  position: relative;
  padding: 0 0 0 15px;
}
.archives_list li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: '';
  background: #3DBCD5;
}
.pagenation {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto 0em;
  justify-content: center;
}
.pagenation li {
  margin: 0 5px;
}
/*矢印が右に移動する*/
.pagenation01 {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 30px;
  color: #333;
  text-decoration: none;
  outline: none;
}
.pagenation01::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -5px;
  left: 0%;
  /*下線の形状*/
  width: 85%;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all .3s;
}
.pagenation01::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 0px;
  left: 0;
  /*矢印の形状*/
  width: 15px;
  height: 1px;
  background: #333;
  transform: rotate(-35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
.pagenation01:hover::before {
  left: -5%;
}
.pagenation01:hover::after {
  left: -5%;
}
.pagenation02 {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 30px;
  color: #333;
  text-decoration: none;
  outline: none;
}
.pagenation02::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -5px;
  left: 15%;
  /*下線の形状*/
  width: 85%;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all .3s;
}
.pagenation02::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 0px;
  right: 0;
  /*矢印の形状*/
  width: 15px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
.pagenation02:hover::before {
  left: 20%;
}
.pagenation02:hover::after {
  right: -5%;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  /* SEARCH RESULT */
  .search_result {
    font-size: 1.7rem;
  }
  .search_result_list {
    max-width: 800px;
    margin: 5em auto 6em;
  }
  .search_result_list li {
    margin: 3em auto 0;
  }
  .search_result_list li p {
    font-size: 1.7rem;
  }
  .search_result_list li div {
    font-size: 1.3rem;
  }
  /* archives */
  .archives_list {
    max-width: 800px;
    margin: -2em auto 0;
  }
  .archives_list li {
    margin: 2em auto 0;
    padding: 0 0 0 20px;
  }
  .archives_list li::before {
    width: 5px;
  }
  .archives_list li p {
    font-size: 1.7rem;
  }
}