@charset "UTF-8";


/*---------------------------------------------------------------*\
$firstview
\*---------------------------------------------------------------*/

.firstview_mag {
  padding: 56px 0 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.firstview_mag .slick-slide {
  width: 600px;
  margin: 0 16px;
  border: solid 3px #1d1d1d;
}
.firstview_mag .title_each_post {
  margin-top: 8px;
}
.firstview_mag .wrapper_info_post {
  padding: 20px;
}


@media screen and (max-width: 960px) {

  .firstview_mag {
    padding: 56px 0 24px;
    background-position: top;
    background-size: contain;
  }
  .firstview_mag .thumbnail_post {
    width: 100%;
  }
}


@media screen and (max-width: 600px) {

  .firstview_mag {
    padding: 32px 0 16px;
  }
  .firstview_mag .each_slide {
    width: 300px;
    height: 280px;
    margin: 0 10px;
  }
  .firstview_mag .title_each_post {
    font-size: 13px;
  }
  .firstview_mag .date_posted {
    font-size: 11px;
  }
  .firstview_mag .wrapper_info_post {
    padding: 16px;
  }
}



/*---------------------------------------------------------------*\
$headline
\*---------------------------------------------------------------*/

.magazine_headline {
  width: 90%;
  margin: 0 auto;
  padding: 56px 0;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  display: flex;
  justify-content: space-between;
}
.magazine_headline .wrapper_title {
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
}
.magazine_headline .subtitile {
  border-left: solid 2px #1d1d1d;
  padding-left: 16px;
  margin-left: 16px;
}


@media screen and (max-width: 600px) {

  .magazine_headline {
    flex-direction: column;
  }
  .magazine_headline .subtitile {
    font-size: 12px;
  }
  .magazine_headline .breadcrumb {
    margin: 24px 0 0 0;
  }
  .magazine_headline .wrapper_title h2 {
    font-size: 24px;
  }
}



/*---------------------------------------------------------------*\
$articles
\*---------------------------------------------------------------*/

#articles {
  width: 90%;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 40px;
}
#articles .each_article > a {
  width: 100%;
  height: 100%;
  display: block;
}
#articles .info_article {
  padding: 16px 0 0;
}
#articles .title_article {
  margin: 8px 0 0 0;
  line-height: 1.4;
}
#articles .post_category {
  margin-right: 8px;
}


@media screen and (max-width: 960px) {

  #articles {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}


@media screen and (max-width: 600px) {

  #articles {
    grid-template-columns: repeat(1,minmax(0,1fr));
    gap: 24px;
  }
  #articles .each_article {
    width: 100%;
  }
  #articles .each_article:last-child {
    margin-bottom: 0;
  }
  #articles .title_article {
    font-size: 11px;
    margin: 8px 0 0 0;
  }
  #articles .date_posted {
    font-size: 10px;
  }
  #articles .each_article > a {
    display: -webkit-flex;
    display: flex;
  }
  #articles .thumbnail_post {
    width: 46%;
  }
  #articles .info_article {
    width: 54%;
    padding: 0 0 0 12px;
  }
  #articles .post_category {
    font-size: 10px;
  }
}