@charset "UTF-8";
/*========================================================
                      コンテンツカード
=========================================================*/
/*=====     TOPページの新着レシピ     =====*/
.l-card {
  overflow: hidden;
  padding: 0;
  border-radius: 4px;
  background: #fff;
}
.text-content {
  padding: 0;
}
.l-thumbnail {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	display:block;
}
.text-content .title {
	margin:10px 0;
  font-size: 20px;
  line-height:1em;
  color: #eb441a;
  text-align:left;
  font-weight:700;
}
.text-content .title-18px {
	margin:10px 0;
  font-size: 18px;
  line-height:1em;
  color: #eb441a;
  text-align:left;
  font-weight:700;
}
.text-content .title-16px {
	margin:10px 0;
  font-size: 16px;
  line-height:1em;
  color: #eb441a;
  text-align:left;
  font-weight:700;
}
.text-content .level, .name, .date {
  margin: 0 0 7px 0;
  font-size: 14px;
  color: #555;
  text-align:left;
}
.content-meta {
  overflow: hidden;
  width: 100%;
  font-size: 12px;
}
.like {
  display: inline-block;
  float: right;
  color: #4cc48e;
}
.like .material-icons {
  vertical-align: middle;
  font-size: 16px;
}


/*=====     TOPページのおすすめコンテンツ     =====*/
.item-card {
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
 box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: .3s;
}
.item-card-text {
  padding: 16px;
}
.item-card-text .title {
  margin: 0 0 12px 0;
  font-size: 16px;
  line-height:1.4em;
  color: #333;
  text-align:left;
}
.item-card-text .caption {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height:1.6em;
  color: #333;
  text-align:left;
}
.item-card-text .content-meta {
  overflow: hidden;
  width: 100%;
  font-size: 12px;
}
.item-card-text .date {
  float: left;
  color: #aaa;
}
.item-card-text .like {
  display: inline-block;
  float: right;
  color: #4cc48e;
}
.item-card-text .like .material-icons {
  vertical-align: middle;
  font-size: 16px;
}
.category-btn-cl {
  display: inline-block;
  background: #86b92e;
  font-size: 13px;
  line-height: 15px;
  padding: 4px 10px 4px 10px;
  margin-bottom:2px;
  color: #fff;
}
.category-btn-ev {
  display: inline-block;
  background: #f54d80;
  font-size: 13px;
  line-height: 15px;
  padding: 4px 10px 2px 10px;
  color: #fff;
}
.category-btn-ed {
  display: inline-block;
  background: #4bc1e1;
  font-size: 13px;
  line-height: 15px;
  padding: 4px 10px 2px 10px;
  color: #fff;
}
/*ここからthumbnailのスタイル設定*/
.item-card-thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.item-card-thum-wrapper {
  display: block;
  margin: 0;
  padding: 0;
}
.item-card-thum-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;
}
.item-card-thum-wrapper img{
  display: block;
  padding: 0;
  max-width: 100%;
}
.item-card-more {
  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;
  border: 1px solid #fff;
  opacity: 0;
}
.item-card:hover .item-card-thum-wrapper::after {
  opacity: 1;
}
.item-card:hover .item-card-more {
  opacity: 1;
}
.item-card:hover {
  background: #f2f2f2;
}

/*=====    各コーナーのINDEX用カード     =====*/
.Index-card {
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
  border-radius: 4px;
  background: #fff;
  transition: .3s;
}
.Index-text-content {
  padding: 10px 0;
    background-color:#fff;
}
.Index-text-content:hover {
    background-color:#fff;
	color:#eb441a;
}
.Index-text-content .title {
  margin: 0 0 12px 0;
  font-size: 16px;
  line-height:1.4em;
  color:#eb441a;
  text-align:left;
}
.Index-text-content .title2 {
  margin: 0 0 0 0;
  font-size: 18px;
  line-height:1.4em;
  color:#eb441a;
  text-align:left;
}
.Index-text-content .title3 {
  margin: 0 0 0 0;
  font-size: 16px;
  line-height:1.4em;
  color:#eb441a;
  text-align:left;
}
.Index-text-content .vol {
  margin: 0 0 0px 0;
  font-size: 14px;
  line-height:1.6em;
  color: #333;
  text-align:left;
}
.Index-text-content .caption {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height:1.6em;
  color: #333;
  text-align:left;
}
.Index-text-content .ichi {
  margin: 0 0 0px 0;
  font-size: 14px;
  line-height:1.6em;
  color: #333;
  text-align:left;
}
/*ここからthumbnailのスタイル設定*/
.Index-thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.Index-thumbnail-wrapper {
  display: block;
  margin: 0;
  padding: 0;
}
.Index-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;
}
.Index-thumbnail-wrapper img{
  display: block;
  padding: 0;
  max-width: 100%;
}
.Index-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;
  border: 1px solid #fff;
  opacity: 0;
}
.Index-card:hover .Index-thumbnail-wrapper::after {
  opacity: 1;
}
.Index-card:hover .Index-more-text {
  opacity: 1;
}
.Index-card:hover {
  background: #f2f2f2;
}












