@charset "UTF-8";
/* タイトル
-----------------------------------------------*/
.news3min h1 {
  margin: 30px 0;
  font-size: 26px;
  font-family: ヒラギノ明朝 Pro W6,Hiragino Mincho Pro,HGS明朝E,ＭＳ Ｐ明朝,serif;
  color: #262626;
}

/* 記事枠
-----------------------------------------------*/
/* 昼・夜 共通スタイル */
.news3min_set {
  border-left: 4px solid grey;
  padding: 30px 0 30px 25px;
}

.news3min_set h2 {
  display: flex;
  align-items: center;
  font-size: 22px;
  position: relative;
  font-feature-settings: "palt";
  letter-spacing: .02em;
  margin-bottom: 10px;
  color: #333;
}

.news3min_set h2 span {
  font-size: .6em;
  margin-left: 5px;
}

.news3min_set h2:before {
  content: "";
  width: 32px;
  height: 32px;
  margin-right: 5px;
}

.news3min_set h2:after {
  content: "";
  width: 22px;
  height: 1px;
  position: absolute;
  left: -25px;
}

/* 昼・夜 更新時間別スタイル */
.uptime--day {
  border-left: 4px solid #eb8a57;
}

.uptime--day h2:before {
  background: url(../img/day.svg) no-repeat 50%/cover;
}

.uptime--day h2:after {
  background-color: #eb8a57;
}

.uptime--night {
  border-left: 4px solid #719ac8;
}

.uptime--night h2:before {
  background: url(../img/night.svg) no-repeat 50%/cover;
}

.uptime--night h2:after {
  background-color: #719ac8;
}

/* 記事 グリッドレイアウト
-----------------------------------------------*/
.news3min_set__grid {
  display: flex;
  flex-wrap: wrap;
}

.news3min_set__grid .article {
  padding: 15px;
  display: block;
  box-sizing: border-box;
}

.news3min_set__grid .article:first-child {
  width: 33.33333%;
  border-right: 1px solid #ddd;
}

.news3min_set__grid .article:nth-child(2) {
  width: 33.33333%;
  border-right: 1px solid #ddd;
}

.news3min_set__grid .article:nth-child(3) {
  width: 33.33333%;
}

.news3min_set__grid .article:nth-child(n+4) {
  width: 50%;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.news3min_set__grid .article:nth-child(n+4):nth-child(odd) {
  border-right: none;
}

/* 記事 詳細レイアウト
-----------------------------------------------*/
.news3min_set__grid .article__thumb {
  background: no-repeat 50% / cover;
}

.news3min_set__grid .article__title h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 6px;
  color: #4a352c;
  transition: color .2s;
}

.news3min_set__grid .article__title div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 11px;
}

.news3min_set__grid .article__title div time {
  color: #9a9a9a;
}

.news3min_set__grid .article__title div span {
  margin-left: 4px;
  color: #e64b78;
  font-weight: 700;
}

.news3min_set__grid .article:hover {
  text-decoration: none;
  background-color: #f2f2f2;
}

.news3min_set__grid .article:hover h3 {
  color: #e64b78;
}

.news3min_set__grid .article:nth-child(-n+3) .article__thumb {
  background: no-repeat center 30% / cover;
  width: 100%;
  padding-top: 66.66667%;
  margin-bottom: 10px;
}

.news3min_set__grid .article:nth-child(n+4) {
  display: flex;
  align-items: center;
}

.news3min_set__grid .article:nth-child(n+4) .article__thumb {
  background: no-repeat 50% / cover;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 10px;
}

.news3min_set__grid .article:nth-child(n+4) .article__title h3 {
  font-size: 14px;
}

/* もっと見るボタン
-----------------------------------------------*/
.more_btn {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}

.more_btn a {
  background-color: #a49a97;
  font-size: 14px;
  padding: 20px 36px;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.more_btn a:hover {
  background-color: #4a3524;
}

/*===============================================
 mq
===============================================*/

@media (max-width:600px){
  .news3min h1 {
    font-size: 20px;
  }
  .news3min_set {
    padding: 20px 0 20px 20px;
  }
  .news3min_set h2 {
    font-size: 18px;
  }
  .news3min_set h2:after {
    width: 18px;
    left: -20px;
  }
  .news3min_set__grid .article {
    display: block;
    width: 100% !important;
    border: none !important;
    padding: 10px;
  }
  .news3min_set__grid .article:not(:first-child) {
    border-top: 1px solid #ddd !important;
  }
  .news3min_set__grid .article__thumb {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0;
    margin-right: 10px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .news3min_set__grid .article__title h3 {
    font-size: 14px !important;
  }
  .news3min_set__grid .article:nth-child(-n+3) {
    display: flex;
    align-items: center;
  }}
