#yomimono-pickup-krt {
  display: flex;
  flex-flow: row wrap;
  margin-top: -10px;
}
.yomimono-list-item {
  display: inline-flex;
  flex: 0 1 100%;
  padding: 10px;
  position: relative;
}

/* ラベル上配置バージョン 
.yomimono-list-tag {
  position: absolute;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  z-index: 1;
}
.yomimono-list-tag::before {
  padding: 10px;
}*/

/* ラベル下配置バージョン */
.yomimono-list-info {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.yomimono-list-tag {
  font-weight: bold;
  /* color: #fff; */
  float: left;
}
.yomimono-list-tag::before {
  padding: 0 10px;
  /* border-radius: 25px; */
  border: solid 2px #222
}
.yomimono-list-item span{
  padding-right: 10px;
}
.yomimono-list-img {
  border: none;
  /* padding-bottom: 5px; */
  -webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  -moz-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  -ms-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
.yomimono-list-img img {
  width: 100%;
  /* height: calc(100% * (550 / 910));
  aspect-ratio: 91 / 55; */
  position: absolute;
  top: 0;
  left: 0;
}
.yomimono-list-img::before {
  content: "";
  display: block;
  padding-top: calc(((550 / 910) * 100%));
}
.yomimono-list-item a {
  text-decoration: none;
}
.yomimono-list-ttl {
  font-weight: bold;
  margin: 5px 0;
  padding: 0 5px;
  display: none;
}
.yomimono-list-description {
  padding: 5px;
}

/*------------------------------ スマホ商品ページ用指定 ------------------------------*/
/* ２列バージョン
#yomimono-sp-item .yomimono-list-item {
  flex: 0 1 50%;
}
#yomimono-sp-item .yomimono-list-tag {
  width: 80%;
}
#yomimono-sp-item .yomimono-list-item span{
  text-align: right;
}
*/
/* １列バージョン*/
#yomimono-sp-item .yomimono-list-item a {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto 30px;
  border-bottom: #e6e6e6 solid 1px;
  padding-bottom: 5px;
}
#yomimono-sp-item .yomimono-list-img {
  width: 100%;
  order: 1;
  -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
  filter: none;
  margin: auto;
  padding: 0;
}
#yomimono-sp-item .yomimono-list-img img {
  position: unset;
}
#yomimono-sp-item .yomimono-list-img::before {
  padding-top: unset;
}
#yomimono-sp-item .yomimono-list-info {
  margin-top: 5px;
  order: 3;
  grid-column: 2 / 4;
}
#yomimono-sp-item .yomimono-list-tag {
  width: 85%;
}
#yomimono-sp-item .yomimono-list-description {
  order: 2;
  padding: 0 0 0 5px;
  overflow: hidden;
  margin: auto;
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#yomimono-sp-item .yomimono-list-tag::before {
  white-space: nowrap;
}
#yomimono-sp-item .yomimono-list-item span {
  padding-right: 0;
}

/*------------------------------ ジャンル名・カラー指定 ------------------------------*/

.omutsu .yomimono-list-img,
.omutsu .yomimono-list-tag::before {
  content: "おむつ";
  /* background: #067dc9; */
}
.food .yomimono-list-img,
.food .yomimono-list-tag::before {
  content: "食・グルメ";
  /* background: #fc8d3d; */
}
.kaigo .yomimono-list-img,
.kaigo .yomimono-list-tag::before {
  content: "介護コラム";
  /* background: #e23c74; */
}
.kenko .yomimono-list-img,
.kenko .yomimono-list-tag::before {
  content: "健康コラム";
  /* background: #00a84d; */
}
.ninchi .yomimono-list-img,
.ninchi .yomimono-list-tag::before {
  content: "認知症";
  /* background: #5c5454; */
}
.ruikatsu .yomimono-list-img,
.ruikatsu .yomimono-list-tag::before {
  content: "涙活";
  /* background: #52a6bf; */
}

.yomimono-list-tag::before {
  color: #222;
  background: #fff;
}

#yomimono-sp-item .yomimono-list-img,
#yomimono-sp-item .yomimono-list-tag::before,
#yomimono-sp-item .yomimono-list-tag,
#yomimono-sp-item .yomimono-list-item span {
  color: #767676;
  background: #fff;
  border: none;
}


/*------------------------------ PC用css ------------------------------*/
@media screen and (min-width: 680px) {
#yomimono-pickup-krt {
  max-width: 1200px;
  margin: 10px auto;
}
.yomimono-list-item {
  flex: 0 1 33%;
  margin-bottom: 32px;
}
.yomimono-list-item a:hover {
  text-decoration: none;
  color: #999;
  font-weight: normal;
}
.yomimono-list-img {
  transition: .4s;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 0px;
}
.yomimono-list-img:hover img {  
  transform: scale(1.2);
  transition-duration: 0.5s;
}
}
/*------------------------------ アンカーリンク位置調整 ------------------------------*/
html {
  scroll-behavior: smooth;
}
h2[id]{
  scroll-margin-top: 100px;
}