@charset "UTF-8";

/* コンテンツ */
.contents_wrap {
  width: 100%;
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding: 32px 40px 40px;
}


/* タイトル
------------------------------------------------------------------------------------*/
.tit_wrap {
  background: url(/images/pc/content/free/bloglist/title_back_pc.webp) center / cover;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
}

.tit_h1 {
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  font-size: 4.8rem;
  margin-top: 16px;
  padding: 12px 32px;
}

.tit_text_wrap {
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  display: inline-block;
  order: -1;
  padding: 12px 24px;
}

.tit_text1,
.tit_text2 {
  font-size: 2.2rem;
  display: inline;
}



/* 絞り込みプルダウン
------------------------------------------------------------------------------------*/
.display_select {
  width: 210px;
  height: 36px;
  background: url(/images/pc/common/pulldown_arrow_pc.svg) #fff right center no-repeat;
  background-size: 34px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #353535;
  font-size: 1.4rem;
  display: block;
  margin: 48px 0 0 auto;
  padding: 0 42px 0 8px;
  -webkit-appearance: none;
}


/* ブログリスト
------------------------------------------------------------------------------------*/
.blogList_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blogList_li {
  width: 48.44%;
  display: block;
  list-style: none;
  position: relative;
  margin-top: 32px;
}
.blogList_li:nth-of-type(n+3) { margin-top: 57px; }
.blogList_li:nth-of-type(n+3)::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #dddddd;
  position: absolute;
  top: -28px;
  left: 0;
}

.blogList_li.blogList_li_first { margin-top: 32px; }
.blogList_li_first::before { display: none; }

.blogList_link {
  min-height: 110px;
  display: block;
  position: relative;
  
  padding-left: 126px;
}
a.blogList_link:hover { text-decoration: none; }
a.blogList_link:hover .blogList_txt { text-decoration: underline; }

.blogList_img {
  max-width: 110px;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.blogList_txt {
  --fs: 1.8rem;
  --fh: 2.4rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(12px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.blogList_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blogList_info_label_osusume,
.blogList_info_label_color,
.blogList_info_label_choice,
.blogList_info_label_other {
  color: #222;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  position: relative;
  padding: 4px 14px;
} 
.blogList_info_label_osusume { background: #cccee1; }
.blogList_info_label_color { background: #f8bfc4; }
.blogList_info_label_choice { background: #a6e0dc; }
.blogList_info_label_other { background: #e9d9c6; }

.blogList_info_label_osusume::before,
.blogList_info_label_color::before,
.blogList_info_label_choice::before,
.blogList_info_label_other::before {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 10px 0 10px 5px;
  position:absolute;
  top: 0;
  left: 0;
}

.blogList_info_label_osusume::after,
.blogList_info_label_color::after,
.blogList_info_label_choice::after,
.blogList_info_label_other::after {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 10px 5px 10px 0;
  position:absolute;
  top: 0;
  right: 0;
}

.blogList_info_time {
  background: url(/images/pc/content/free/free_cmn/time_icon_pc.svg)  left center / 12px 12px no-repeat;
  color: #707070;
  font-size: 1.4rem;
  padding-left: 16px;
}