@charset "utf-8";

/*------------------------------------------------
   ブログ
------------------------------------------------*/

/* archive */

#news {
  width: 100%;
}

.newsBlock {
  width: 100%;
  margin-bottom: 40px;
}


  .newsBox {
	  padding: 2em 0.4em;
    border-bottom: 1px dotted #aaa;
  }

  .newsBox a {
    position: relative;
    display: block;
    text-decoration: none;
  }

  .newsBox .date {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--sub-color);
  }

  .newsBox .title {
    font-size: 1.3rem;
    font-weight: 500;
  }

@media print, screen and (min-width: 601px) {

  .newsBlock {
    width: 800px;
    margin: 0 auto 40px;
    padding: 0;
  }

  .newsBox {
  }

  .newsBox .date {
    display: inline-block;
    font-size: 1.8rem;
  }

  .newsBox .title {
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 1em;
  }

}


/*------------------------------------------------
   個別ページ
------------------------------------------------*/

.newsSingleBlock {
  width: 100%;
  margin-bottom: 40px;
}


.newsSingleBox {
}

.newsSingleBox .newsHead {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: .8em;
}

.newsSingleBox .newsHead .date {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
	font-size: 1.8rem;
  color: var(--sub-color);
}

.newsSingleBox .title {
	font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: .2em;
	margin-bottom: 1em;
  border-bottom: 3px solid var(--line-color);
}

.newsSingleBox .content p {
	font-size: 1.4rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1em;
}

@media print, screen and (min-width: 601px) {

  .newsSingleBlock {
    width: 800px;
    margin: 0 auto;
    margin-bottom: 80px;
  }


  .newsSingleBox {
    padding: 40px 100px;
  }

  .newsSingleBox .newsHead .date {
    font-size: 1.8rem;
  }

  .newsSingleBox .title {
    font-size: 2.0rem;
  }

  .newsSingleBox .content p {
    font-size: 1.5rem;
  }

}


