@charset "utf-8";

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

/* archive */

#blog {
  width: 100%;
}

.blogBlock {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blogBox {
	width: calc((100% - 10px) / 2);
  background: #fff;
  box-shadow: 0 10px 10px -6px rgba(0,0,0,.3);
  transition: all 0.3s ease-in-out;
  margin-bottom: 40px;
}

.blogBox a {
  display: block;
  text-decoration: none;
  border: 1px solid #eee;
}

.blogBox:hover {
  box-shadow: 0 6px 10px -6px rgba(0,0,0,.3);
}

.blogBox .image {
  padding: 0.4em;
	width: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.blogBox a:hover .image {
  background-color: #fff;
  opacity: 0.8;
}

.blogBox .image img {
	width: 100%;
	height: auto;
}

.blogBox .textBlock {
  padding: 0 0.4em 0.4em;
}

.blogBox .textBlock .blogHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .4em;
}

.blogBox .textBlock .blogHead .ctgry {
	width: 5em;
	padding: 0.2em 0.4em;
	font-size: 1.2rem;
	line-height: 1.2;
	text-align: center;
	color: #fff;
  border-radius: 4px;
  background: var(--sub-color);
}

.blogBox .textBlock .blogHead .date {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
	font-size: 1.5rem;
}

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

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

  .blogBlock {
    width: 940px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .blogBlock::after {
    display: block;
    content:"";
    width: 300px;
  }

  .blogBox {
    width: 300px;
  }

  .blogBox .textBlock {
    padding: 0.4em 1em 1em;
  }

  .blogBox .textBlock .blogHead .date {
    font-size: 1.8rem;
  }

  .blogBox .textBlock .title {
    font-size: 1.5rem;
  }

}


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

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


.blogSingleBox {
}

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

.blogSingleBox .image img {
	width: 100%;
	height: auto;
}

.blogSingleBox .textBlock {
  padding: 0 10px;
}

.blogSingleBox .textBlock .blogHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .8em;
}

.blogSingleBox .textBlock .blogHead .ctgry {
    width: 5em;
    padding: 0.2em 0.4em;
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    background: var(--sub-color);
}

.blogSingleBox .textBlock .blogHead .date {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
	font-size: 1.8rem;
}

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

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

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

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


  .blogSingleBox {
    padding: 40px 100px;
  }

  .blogSingleBox .textBlock .blogHead .ctgry {
    font-size: 1.4rem;
  }

  .blogSingleBox .textBlock .blogHead .date {
    font-size: 1.8rem;
  }

  .blogSingleBox .textBlock .title{
    font-size: 2.0rem;
  }

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

}


