@charset "UTF-8";

.seeding-list {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
/*mainの上部　タイトル　プリムラ名---------*/
.content-top-title {
  font-size: 22px;
  text-align: center;
  margin: 0;
 /*margin: 90px 20px 0;*/ 
}
/*mainの上部　タイトル　横のプリムラ名a～i（ボーダーで囲む）---------*/
.content-top-title .plant-list-border {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 0.8em;
  font-weight: bold;
}
/*ここからmainの上部　seeding*a～i*のページネーション---------*/
.plant-list {
 padding: 10px 0 50px 0;
 margin: 0 auto;
 width: 100%;
}
.plant-list .pagenation {
	display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
}
.plant-list .pagenation li {
  padding: 5px 10px; /*abcの周りの線*/
  border: 1px solid #333;
  border-radius: 5px;
}
.plant-list .pagenation .big {
  color: #fd8ead;
  }
.plant-list .pagenation a:hover {
  color: #333;
  opacity: 0.6;
}

/*--------ここから生長過程の写真のスタイル---------*/
.plant-list-photo {
  display: block;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}
.plant-list-photo .post-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  padding: 0;
  margin-bottom: 60px;
}

.plant-list-photo .post-list img {
  width :100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}
.plant-list-photo .post-list time {
  font-size: 16px;
}
.plant-name {
  font-size: 18px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
  margin: 0 auto;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
.seeding-list {
  display: block;
  text-align: left;
  max-width: 100%;
}
.seeding-list .content-top-title {
  font-size: 18px;
}
.plant-name {
  font-size: 10px;
  padding-top: 20px;
  padding-bottom: 15px;
}
/*ページネーション*/
.plant-list .pagenation {
  font-size: 18px;
}
.plant-list .pagenation li {
  padding: 3px 6px; /*abcの周りの線*/
  border: 1px solid #333;
  border-radius: 5px;
}
.plant-list-photo .post-list {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}
}

@media screen and (min-width: 768px) {
.sp {
  display: none;  
}
}