﻿@charset "utf-8";

/* CSS Document 2016/8/24 Renewal */
body {
	margin: 0 auto;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
		Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
}

a img {
	border: none;
	text-decoration: none;
}

a img {
	text-decoration: none;
	border-style: none;
}

a:link img {
	text-decoration: none;
	border-style: none;
}

a { text-decoration: none; }
.card {
	margin: 0px 0px 10px 0px;
	box-shadow: 0px 2px 2px 0px rgba(177, 177, 177, 0.75);
	padding: 14px 12px 10px 12px;
	background-color: #FFF;
}

.note {
	padding: 10px;
	text-align:center;

}

.text{
	font-size: 8px;
	color: gray;
}

.main {
	font-size: 12px;
	margin-bottom: 14px;
}




/* 以下カードレイアウト用*/
* {
  box-sizing: border-box;
}

.l-card {
  transition: 0.5s;
  overflow: hidden;
  width: 320px;
  padding: 0;
  margin: 24px auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.1);
}
.l-card:hover .thumbnail-wrapper:after {
  opacity: 1;
}
.l-card:hover .more-text {
  opacity: 1;
}

.l-thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.l-thumbnail .more-text {
  transition: 0.5s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 6px 12px 8px;
  color: #fff;
  font-size: 14px;
  font-weight: lighter;
  line-height: 1;
  letter-spacing: 1px;
  border: 1px solid #fff;
  opacity: 0;
}

.thumbnail-wrapper {
  display: block;
  margin: 0;
  padding: 0;
}
.thumbnail-wrapper:after {
  transition: 0.5s;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
}
.thumbnail-wrapper img {
  display: block;
  max-width: 100%;
}

.thumbnail-over {
  transition: 0.5s;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.text-content {
  padding: 16px;
}
.text-content .title {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #4cc48e;
  font-weight: bold;
}
.text-content .caption {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #555;
  font-weight: lighter;
}

.content-meta {
  overflow: hidden;
  width: 100%;
  font-size: 12px;
}
.content-meta .date {
  float: left;
  color: #aaa;
}
.content-meta .like {
  display: inline-block;
  float: right;
  color: #4cc48e;
}
.content-meta .like .material-icons {
  vertical-align: middle;
  font-size: 16px;
}

.sub-text{
	font-size:12px;
	color:#7f7f7f;
	background-position: right 10px;
	text-align: right;
}