@charset "utf-8";

/* テキスト
-----------------------------------------------*/

.backnumber_viewer__item{
  display: grid;
  gap: 10px;
}

.backnumber_viewer__item__text{
  display: grid;
  gap: 10px;
}

/* リンク ビューア */
.link_viewer{
  display: flex;
  justify-content: center;
  line-height: 1.3;
  gap: 5px;
  background-color: #FF4664;
  border-radius: 4px;
  color: #fff !important;
  font-weight: bold;
  font-size: 14px;
  padding: 16px 8px;
}

.link_viewer::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f518";
}

@media (hover: hover) {
  .link_viewer:hover{
    opacity: .8;
  }
}

/* リンク pdf */
.link_pdf{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 1.3;
  background: transparent;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: #FF4664 !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.link_pdf::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  content: "\f1c1";
}

.link_pdf:hover{
  text-decoration: underline;
}

.flex-box article {
  width:100%;
}

/*===============================================
  画面の横幅が601px以上
===============================================*/
@media (min-width:601px){
  .flex-box {
    display: flex;
    flex-wrap: wrap;
  }
  .flex-box img {
    vertical-align: top;
    margin: 5px 25px 5px 0px;
  }
}

/*===============================================
  画面の横幅が600px以下
===============================================*/
@media screen and (max-width: 600px){
  .backnumber_viewer__item{
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .backnumber_viewer__item:not(:last-child){
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
  .backnumber_viewer__item__text{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .backnumber_viewer__item__text h2{
    text-align: left;
    font-size: 14px;
  }
  .link_viewer{
    padding: 14px 6px;
  }
  .link_pdf{
    justify-content: center;
    margin: 10px auto;
  }
  .lead_pc{
    display: none;
  }
}
