@charset "UTF-8";
/* Media Queries */
/* Webフォントを読み込む場合 */
/*
@if $useWebFont {
	@font-face {
		font-family: 'GenJyuuGothic';
		src: url('fonts/GenJyuuGothic-Medium.ttf') format('truetype');
	}
	@font-face {
		font-family: 'GenJyuuGothicBold';
		src: url('fonts/GenJyuuGothic-Bold.ttf') format('truetype');
	}
	$fontFamily: 'GenJyuuGothic', $fontFamily;
	$fontFamilyBold: 'GenJyuuGothicBold', $fontFamily;
}
*/
/* 通常使うボタンのデザイン */
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*
 * Mixin for placeholder
 * @include mixins.placeholderColor(#00ff00);
 */
#main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
#main .articleBox {
  width: 46%;
  padding-bottom: 10px;
}
@media (max-width: 414px) {
  #main .articleBox {
    width: 90%;
    margin: 0 auto;
  }
}
#main .articleBox article {
  width: 100%;
}
#main .articleBox article .post-thumbnail {
  margin: 0;
}
#main .articleBox article .post-thumbnail a {
  display: block;
  position: relative;
  height: auto;
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center center;
  /*
  					img {
  						display: block;
  						width: 100%;
  					}
  */
}
#main .articleBox article .post-thumbnail a:before {
  content: "";
  display: block;
  padding-top: 62.5%;
}
#main .articleBox article .entry-meta {
  line-height: 1em;
  padding: 10px 0;
}
#main .articleBox article h2.entry-title {
  font-size: 14px;
}
