/* h3書式 */
h3 {
  padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
  color: #494949;/*文字色*/
  background: #f4f4f4;/*背景色*/
  border-left: solid 5px #7db4e6;/*左線*/
  border-bottom: solid 3px #d7d7d7;/*下線*/
}

/* h4書式 */
h4 {
  position: relative;
  padding-left: 25px;
}

h4:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px rgb(119, 195, 223);
}
h4:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 3px rgb(119, 195, 223);
}

/* 引用 */
blockquote {
    position: relative;
    padding: 35px 15px 10px 15px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777777;
    border-left: 4px solid #9dd4ff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 3px;
    vertical-align: middle;
    content: "“";
    font-family: sans-serif;
    color: #9dd4ff;
    font-size: 90px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

/* blogタイル並び */
body:not(.page):not(.single) #main {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 48em) {
  body:not(.page):not(.single) #main article:not(:only-of-type) {
    flex: 0 0 48%;
    overflow:hidden;
    margin-bottom: 1rem;
  }
}
body:not(.page):not(.single) #main article:not(:only-of-type) .entry-content {
  height: 4.5rem;
  overflow: hidden;
}
body:not(.page):not(.single) #main article:not(:only-of-type) .entry-title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  height: 4.2em;
}
body:not(.page):not(.single) #main article:not(:only-of-type) .post-thumbnail {
  height: 10rem;
  overflow: hidden;
}
body:not(.page):not(.single) #main article:not(:only-of-type) .post-thumbnail img {
  height: 10rem;
  object-fit: cover;
}

body:not(.page):not(.single) #main article:not(:only-of-type) {
  border: 1px solid #eee;
  padding: 0.5rem;
}



/* TwentySeventtenの最大幅を1200pxに変更 */
@media screen and (min-width: 79em) {
	.wrap {
		max-width: 1200px;
		padding-left: 5em;
		padding-right: 5em;
	}
	.has-sidebar:not(.error404) #primary {
		width: 60.0%;
	}
	.has-sidebar #secondary {
		width: 31.3%;
	}
	.navigation-top .wrap {
		max-width: 1120px;
	}
	.site-footer .wrap {
		padding-left: 10em;
		padding-right: 8em;
	}
}