#fvContainer {
  background: url(../img/blog/main.png) center bottom / cover no-repeat;
}

.blogContainer {
  width: 90%;
  max-width: 900px;
  margin: 170px auto 0;
  display: flex;
  justify-content: space-between;
}

.categoryContainer {
  width: 250px;
  min-width: 200px;
  flex:  0 0 250px;
}

.categoryTitle {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ABA9A9;
  display: flex;
  align-items: center;
}

.categoryTitle img {
  width: 66px;
}

.categoryTitle span {
  font-size: 20px;
  white-space: nowrap;
  margin-left: 20px;
}

.categoryContainer dd {
  margin-bottom: 9px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.categoryContainer dd:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
}
.categoryContainer dd:nth-of-type(3n)::before {
  background: var(--thirdColor);
}
.categoryContainer dd:nth-of-type(3n + 1)::before {
  background: var(--primaryColor);
}
.categoryContainer dd:nth-of-type(3n + 2)::before {
  background: var(--secondaryColor);
}

.blogContents {
  flex: 1 1 auto;
  margin-left: 6%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.title {
  width: 100%;
  text-align: left;
  margin: -136px 0 40px 0;
}

.blog {
  width: 280px;
  margin-bottom: 60px;
}

.blogImg {
  width: 280px;
  position: relative;
}
.blogImg:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 250px;
  background: var(--secondaryColor);
  clip-path: path("m180.97,10.88c18.2,7.11,34.98,17.56,48.68,30.9,20.65,20.11,34.99,48.52,35.88,78.33.94,31.59-13.32,62.3-34.69,83.92-61.8,62.49-179.51,57.16-219.47-31.46C-10.59,123.88-.11,67.98,37.39,32.33,74.99-3.41,132.94-7.88,180.97,10.88Z");
}

.blogImg img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  display: block;
  position: absolute;
  clip-path: path("m174.86,9.63c17.54,6.34,33.69,15.7,46.87,27.66,19.86,18.03,33.61,43.56,34.38,70.37.81,28.42-13.03,56.1-33.7,75.6-59.79,56.4-173.31,51.94-211.6-27.68C-10.23,111.84.05,61.52,36.32,29.34,72.68-2.93,128.59-7.11,174.86,9.63Z");
  top: 12px;
  left: 4px;
}

.blog:nth-of-type(4n + 2) .blogImg:before, .blog:nth-of-type(4n + 3) .blogImg:before {
  background: var(--primaryColor);
  clip-path: path("m82.93,223.73C35.04,204.42-7.81,168.56,1.21,110.17,9.01,59.65,52.18,19.13,98.63,5.62c73.16-21.29,153.98,20.23,175.67,85.93,13.33,40.38,3.15,91.92-28.97,120.17-31.1,27.35-72.75,33.67-111.45,26.62-16.21-2.95-33.9-7.73-50.94-14.6Z");
}

.blog:nth-of-type(4n + 2) .blogImg img, .blog:nth-of-type(4n + 3) .blogImg img {
  clip-path: path("m76.3,209.96C32.24,191.84-7.18,158.19,1.11,103.39,8.29,55.98,48.01,17.95,90.74,5.27c67.31-19.97,141.67,18.98,161.62,80.64,12.26,37.9,2.9,86.26-26.65,112.77-28.61,25.67-66.93,31.59-102.53,24.98-14.92-2.77-31.19-7.25-46.87-13.7Z");
  position: absolute;
  top: 5px;
  left: 10px;
}

.date {
  width: 100%;
  font-size: 14px;
  color: #ABA9A9;
}

.blogTitle {
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--secondaryColor);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
  overflow: hidden;
}
.blog:nth-of-type(2n) .blogTitle {
  color: var(--primaryColor);
}

.blogCategories {
  margin-top: 8px;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
}

.blogCategories li {
  margin: 5px 5px 0 0;
  border-radius: 5px;
}

.blogCategories li a {
  display: block;
  min-width: 100px;
  padding: 3px 20px;
  text-align: center;
  color: #fff;
}











@media(max-width: 1024px) {
/* #fvContainer {
  background: url(../img/blog/main.png) center bottom / cover no-repeat;
} */

.blogContainer {
  /* width: 90%; */
  max-width: 600px;
  /* margin: 170px auto 0;
  display: flex; */
  justify-content: center;
  flex-direction: column-reverse;
}

.categoryContainer {
  /* width: 250px;
  min-width: 200px;
  flex:  0 0 250px; */
  margin-top: 30px;
}

/* .categoryTitle {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ABA9A9;
  display: flex;
  align-items: center;
}

.categoryTitle img {
  width: 66px;
}

.categoryTitle span {
  font-size: 20px;
  white-space: nowrap;
  margin-left: 20px;
}

.categoryContainer dd {
  margin-bottom: 9px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.categoryContainer dd:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
}
.categoryContainer dd:nth-of-type(3n)::before {
  background: var(--secondaryColor);
}
.categoryContainer dd:nth-of-type(3n + 1)::before {
  background: var(--primaryColor);
}
.categoryContainer dd:nth-of-type(3n + 2)::before {
  background: var(--thirdColor);
} */

.blogContents {
  margin: 0;
  /* flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; */
}

/* .title {
  width: 100%;
  text-align: left;
  margin: -136px 0 40px 0;
}

.blog {
  width: 280px;
  margin-bottom: 60px;
}

.blogImg {
  width: 280px;
  position: relative;
}
.blogImg:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 250px;
  background: var(--secondaryColor);
  clip-path: path("m180.97,10.88c18.2,7.11,34.98,17.56,48.68,30.9,20.65,20.11,34.99,48.52,35.88,78.33.94,31.59-13.32,62.3-34.69,83.92-61.8,62.49-179.51,57.16-219.47-31.46C-10.59,123.88-.11,67.98,37.39,32.33,74.99-3.41,132.94-7.88,180.97,10.88Z");
}

.blogImg img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  display: block;
  position: absolute;
  clip-path: path("m174.86,9.63c17.54,6.34,33.69,15.7,46.87,27.66,19.86,18.03,33.61,43.56,34.38,70.37.81,28.42-13.03,56.1-33.7,75.6-59.79,56.4-173.31,51.94-211.6-27.68C-10.23,111.84.05,61.52,36.32,29.34,72.68-2.93,128.59-7.11,174.86,9.63Z");
  top: 12px;
  left: 4px;
}

.blog:nth-of-type(4n + 2) .blogImg:before, .blog:nth-of-type(4n + 3) .blogImg:before {
  background: var(--primaryColor);
  clip-path: path("m82.93,223.73C35.04,204.42-7.81,168.56,1.21,110.17,9.01,59.65,52.18,19.13,98.63,5.62c73.16-21.29,153.98,20.23,175.67,85.93,13.33,40.38,3.15,91.92-28.97,120.17-31.1,27.35-72.75,33.67-111.45,26.62-16.21-2.95-33.9-7.73-50.94-14.6Z");
}

.blog:nth-of-type(4n + 2) .blogImg img, .blog:nth-of-type(4n + 3) .blogImg img {
  clip-path: path("m76.3,209.96C32.24,191.84-7.18,158.19,1.11,103.39,8.29,55.98,48.01,17.95,90.74,5.27c67.31-19.97,141.67,18.98,161.62,80.64,12.26,37.9,2.9,86.26-26.65,112.77-28.61,25.67-66.93,31.59-102.53,24.98-14.92-2.77-31.19-7.25-46.87-13.7Z");
  position: absolute;
  top: 5px;
  left: 10px;
} */

/* .date {
  width: 100%;
  font-size: 14px;
  color: #ABA9A9;
}

.blogTitle {
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--secondaryColor);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.blog:nth-of-type(2n) .blogTitle {
  color: var(--primaryColor);
}

.blogCategories {
  margin-top: 8px;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
}

.blogCategories li {
  margin: 5px 5px 0 0;
  border-radius: 5px;
}

.blogCategories li a {
  display: block;
  min-width: 100px;
  padding: 3px 20px;
  text-align: center;
  color: #fff;
} */

main .bannerContainer {
  margin-top: -30px;
}

}








@media(max-width: 560px) {
#fvContainer {
  background: url(../img/blog/mainSp.png) center bottom / cover no-repeat;
}

.blogContainer {
  /* width: 90%; */
  max-width: 600px;
  margin: 140px auto 0;
  /* display: flex; */
  justify-content: center;
  flex-direction: column-reverse;
}

.categoryContainer {
  /* width: 250px;
  min-width: 200px;
  flex:  0 0 250px; */
  margin-top: 30px;
}

/* .categoryTitle {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ABA9A9;
  display: flex;
  align-items: center;
}

.categoryTitle img {
  width: 66px;
}

.categoryTitle span {
  font-size: 20px;
  white-space: nowrap;
  margin-left: 20px;
}

.categoryContainer dd {
  margin-bottom: 9px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.categoryContainer dd:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
}
.categoryContainer dd:nth-of-type(3n)::before {
  background: var(--secondaryColor);
}
.categoryContainer dd:nth-of-type(3n + 1)::before {
  background: var(--primaryColor);
}
.categoryContainer dd:nth-of-type(3n + 2)::before {
  background: var(--thirdColor);
} */

.blogContents {
  margin: 0;
  /* flex: 1 1 auto;
  display: flex; */
  justify-content: space-between;
  /* flex-wrap: wrap; */
}

.title {
  /* width: 100%;
  text-align: left; */
  margin: -106px 0 40px 0;
}

.title h2 {
  font-size: 26px;
}

.blog {
  width: 200px;
  margin-bottom: 50px;
}

.blogImg {
  /* width: 280px;
  position: relative; */
  transform: scale(0.74);
  transform-origin: left top;
}
/* .blogImg:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 250px;
  background: var(--secondaryColor);
  clip-path: path("m180.97,10.88c18.2,7.11,34.98,17.56,48.68,30.9,20.65,20.11,34.99,48.52,35.88,78.33.94,31.59-13.32,62.3-34.69,83.92-61.8,62.49-179.51,57.16-219.47-31.46C-10.59,123.88-.11,67.98,37.39,32.33,74.99-3.41,132.94-7.88,180.97,10.88Z");
}

.blogImg img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  display: block;
  position: absolute;
  clip-path: path("m174.86,9.63c17.54,6.34,33.69,15.7,46.87,27.66,19.86,18.03,33.61,43.56,34.38,70.37.81,28.42-13.03,56.1-33.7,75.6-59.79,56.4-173.31,51.94-211.6-27.68C-10.23,111.84.05,61.52,36.32,29.34,72.68-2.93,128.59-7.11,174.86,9.63Z");
  top: 12px;
  left: 4px;
}

.blog:nth-of-type(4n + 2) .blogImg:before, .blog:nth-of-type(4n + 3) .blogImg:before {
  background: var(--primaryColor);
  clip-path: path("m82.93,223.73C35.04,204.42-7.81,168.56,1.21,110.17,9.01,59.65,52.18,19.13,98.63,5.62c73.16-21.29,153.98,20.23,175.67,85.93,13.33,40.38,3.15,91.92-28.97,120.17-31.1,27.35-72.75,33.67-111.45,26.62-16.21-2.95-33.9-7.73-50.94-14.6Z");
}

.blog:nth-of-type(4n + 2) .blogImg img, .blog:nth-of-type(4n + 3) .blogImg img {
  clip-path: path("m76.3,209.96C32.24,191.84-7.18,158.19,1.11,103.39,8.29,55.98,48.01,17.95,90.74,5.27c67.31-19.97,141.67,18.98,161.62,80.64,12.26,37.9,2.9,86.26-26.65,112.77-28.61,25.67-66.93,31.59-102.53,24.98-14.92-2.77-31.19-7.25-46.87-13.7Z");
  position: absolute;
  top: 5px;
  left: 10px;
} */

.blogText {
  margin-top: -65px;
}
.date {
  /* width: 100%; */
  font-size: 10px;
  /* color: #ABA9A9; */
}

.blogTitle {
  margin-top: 3px;
  font-size: 14px;
  /* line-height: 1.4;
  color: var(--secondaryColor);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden; */
}
/* .blog:nth-of-type(2n) .blogTitle {
  color: var(--primaryColor);
} */

.blogCategories {
  margin-top: 5px;
  font-size: 11px;
  /* display: flex;
  flex-wrap: wrap; */
}

/* .blogCategories li {
  margin: 5px 5px 0 0;
  border-radius: 5px;
} */

.blogCategories li a {
  /* display: block;
  min-width: 100px; */
  padding: 1px 15px;
  /* text-align: center;
  color: #fff; */
}

.bannerContainer {
  margin-top: 0px;
}

}









@media(max-width: 480px) {
.blog {
  width: 150px;
  margin-bottom: 40px;
}

.blogImg {
  /* width: 280px;
  position: relative; */
  transform: scale(0.56);
  /* transform-origin: left top; */
}

.blogText {
  margin-top: -100px;
}
}