@charset "UTF-8";

/* コンテンツ */
.contents_wrap {
  width: 100%;
  max-width: var(--maxWidth);
  display: flex;
  margin: 0 auto;
  padding: 32px 40px 40px;
}


/* ブログヘッダー
------------------------------------------------------------------------------------*/
.blog_wrap {
  flex: 1;
  padding-bottom: 48px;
}

.blog_info_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog_info_label_osusume,
.blog_info_label_color,
.blog_info_label_choice,
.blog_info_label_other {
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  position: relative;
  padding: 3px 16px;
}
.blog_info_label_osusume { background: #cccee1; }
.blog_info_label_color { background: #f8bfc4; }
.blog_info_label_choice { background: #a6e0dc; }
.blog_info_label_other { background: #e9d9c6; }

.blog_info_label_osusume::before,
.blog_info_label_color::before,
.blog_info_label_choice::before,
.blog_info_label_other::before {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 9px 0 9px 5px;
  position:absolute;
  top: 0;
  left: 0;
}

.blog_info_label_osusume::after,
.blog_info_label_color::after,
.blog_info_label_choice::after,
.blog_info_label_other::after {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 9px 5px 9px 0;
  position:absolute;
  top: 0;
  right: 0;
}

.blog_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;
}


/* ブログ
------------------------------------------------------------------------------------*/
.blog_h1 {
  background: linear-gradient(0deg, #957cb6 0px, #957cb6 2px, transparent 2px, transparent 5px,#957cb6 5px, #957cb6 7px) left bottom / 100% 7px no-repeat;
  --fs: 3rem;
  --fh: 3.8rem;
  color: #957cb6;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(32px + ((var(--fs) - var(--fh)) / 2)) 0 calc(-16px + ((var(--fs) - var(--fh)) / 2));
  padding-bottom: 14px;
}

.blog_h2 {
  width: 100%;
  --fs: 2rem;
  --fh: 2.6rem;
  background: #cccee1;
  border-bottom: #957cb6 solid 4px;
  font-size: var(--fs);
  font-weight: bold;
  text-indent: -1em;
  line-height: var(--fh);
  margin: calc(72px + ((var(--fs) - var(--fh)) / 2)) 0 calc(-16px + ((var(--fs) - var(--fh)) / -2) + ((var(--fs) - var(--fh)) / 2));
  padding: 16px 16px 16px calc(1em + 16px);
  scroll-margin-top: 32px;
}

.blog_h3 {
  --fs: 1.8rem;
  --fh: 2.2rem;
  border-top: #cccee2 solid 1px;
  border-bottom: #cccee2 solid 1px;
  color: #957cb6;
  font-size: var(--fs);
  font-weight: bold;
  line-height: var(--fh);
  margin: 64px 0 -24px;
  padding: 10px 0;
  scroll-margin-top: 24px;
}
.blog_repo_wrap + .blog_h3 { margin-top: 80px; }

.blog_h4 {
  --fs: 1.6rem;
  --fh: 2rem;
  color: #957cb6;
  font-size: var(--fs);
  font-weight: bold;
  line-height: var(--fh);
  margin: 40px 0 -28px;
}

.blog_hero { margin-top: 40px; }

.blog_p {
  --fs: 1.6rem;
  --fh: 2.8rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(40px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.blog_annotation {
  --fs: 1.6rem;
  --fh: 2.2rem;
  display: inline-block;
  font-size: var(--fs);
  text-indent: -1em;
  line-height: var(--fh);
  margin: calc(6px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding-left: 1em;
}

.blog_ul {
  margin-left: 24px;
  padding-top: 20px;
}

.blog_ol {
  margin-left: 29px;
  padding-top: 20px;
}

.blog_ul li,
.blog_ol li {
  --fs: 1.6rem;
  --fh: 2.8rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(16px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}
.blog_ul li:first-of-type,
.blog_ol li:first-of-type {
  --fs: 1.6rem;
  --fh: 2.8rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin-top: calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.blog_h2 + .blog_ul,
.blog_h3 + .blog_ul,
.blog_h4 + .blog_ul,
.blog_h2 + .blog_ol,
.blog_h3 + .blog_ol,
.blog_h4 + .blog_ol { margin-top: 20px; }
.blog_table .blog_ul,
.blog_table .blog_ol { padding: 4px 0; }

.blog_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 24px;
}

.blog_table caption { padding: 20px 0 12px; }

.blog_table th {
  background: #f7f7f7;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2rem;
  vertical-align: middle;
  padding: 8px;
}

.blog_table td {
  border: 1px solid #ccc;
  font-size: 1.6rem;
  line-height: 2rem;
  vertical-align: middle;
  padding: 8px;
}

.blog_table + figcaption {
  --fs: 1.4rem;
  --fh: 1.8rem;
  color: #707070;
  font-size: var(--fs);
  text-indent: -1em;
  line-height: var(--fh);
  margin: calc(8px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));  
  padding-left: 1em;
}

.blog_nav_wrap {
  width: 66%;
  border: #cccee1 dashed 2px;
  border-radius: 16px;
  position: relative;
  margin: 56px auto 0;
}

.blog_nav_tit {
  background: #cccee1;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
  top: calc((1.8rem + 12px) / -2);
  left: 50%;
  padding: 6px 20px;
  transform: translateX(-50%);
}

.blog_nav_list_wrap {
  margin: calc((1.8rem + 12px) / -2) 0 0 24px;
  padding: 12px 32px 24px;
}

.blog_nav_list {
  --fs: 1.6rem;
  --fh: 2.2rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(14px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.blog_nav_subList_wrap {
  list-style: none;
  counter-reset: my-counter;
  margin: -4px 0 0 21px;
}

.blog_nav_subList {
  --fs: 1.6rem;
  --fh: 2.2rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(14px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.blog_nav_subList::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  width: 17px;
  height: 17px;
  border: #333 solid 1px;
  border-radius: 50%;
  color: #222;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-align: center;
  display: inline-block;
  position: relative;
  top: -1px;
  margin: 0 4px 0 -20px;
  padding-left: 1px;
}

.blog_product_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 56px 0 0;
}
.blog_product_wrap + .blog_product_wrap {
  background: linear-gradient(to right, #707070, #707070 2px, transparent 2px, transparent 5px) top left / 5px 1px repeat-x;
  margin-top: 32px;
  padding-top: 32px;
}
.blog_h3 + .blog_product_wrap { padding-top: 40px; }

.blog_product_tit {
  width: 100%;
  --fs: 1.8rem;
  --fh: 2.2rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(0px + ((var(--fs) - var(--fh)) / 2)) 0 calc(16px + ((var(--fs) - var(--fh)) / 2));
  scroll-margin-top: 32px;
}

.blog_product_brand {
  display: block;
  --fs: 1.4rem;
  --fh: 1.8rem;
  font-size: var(--fs);
  line-height: var(--fh);
  font-weight: normal;
  margin-bottom: 2px;
}

.blog_product_link { width: 30%; }

.blog_product_img { border-radius: 12px; }

.blog_product_spec_wrap {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
}

.blog_product_spec_tit {
  --fs: 1.4rem;
  --fh: 1.8rem;
  width: 23%;
  border-bottom: #ccc solid 1px;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(0px + ((var(--fs) - var(--fh)) / 2)) 0;
  padding: 14px 4px 4px;
}
.blog_product_spec_tit:first-of-type { margin-top: -12px; }

.blog_product_spec_txt {
  --fs: 1.4rem;
  --fh: 1.8rem;
  width: 73%;
  border-bottom: #ccc solid 1px;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(0px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2)) 4%;
  padding: 14px 4px 4px;
}
.blog_product_spec_txt:first-of-type { margin-top: -12px; }
.blog_product_spec_txt br { display: none; }

.blog_product_txt_wrap {
  width: 100%;
  background: #f0f0f0;
  margin-top: 20px;
  padding: 12px;
}

.blog_product_txt {
  --fs: 1.4rem;
  --fh: 2.2rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(20px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}
.blog_product_txt:first-of-type {
  --fs: 1.4rem;
  --fh: 2.2rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(0px + ((var(--fs) - var(--fh)) / 2)) 0;
}

.blog_repo_wrap {
  width: 90%;
  background: #FFF;
  border: solid 2px #cccee2;
  border-radius: 12px;
  text-align: center;
  position: relative;
  margin: calc(24px + 16px) auto 0;
  padding: 32px 32px;
}

.blog_repo_wrap::before {
  content: "";
  border: 22px solid transparent;
  border-bottom: 22px solid #FFF;
  position: absolute;
  top: -44px;
  left: 50%;
  margin-left: -25px;
  z-index: 2;
}
.blog_repo_wrap::after {
  content: "";
  border: 24px solid transparent;
  border-bottom: 24px solid #cccee2;
  position: absolute;
  top: -49px;
  left: 50%;
  margin-left: -27px;
  z-index: 1;
}

.blog_repo_tit {
  --fs: 1.8rem;
  --fh: 2.2rem;
  color: #957cb6;
  font-size: var(--fs);
  font-weight: bold;
  line-height: var(--fh);
  margin: 56px 0 12px;
}
.blog_repo_wrap .blog_repo_tit:first-of-type { margin-top: 0px; }

.blog_repo_txt {
  --fs: 1.6rem;
  --fh: 2.2rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(-8px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.blog_repo_img { margin-bottom: 16px; }

.blog_repo_img_ragan { position: relative; }

.blog_repo_img_ragan_txt {
  font-size: 1.4rem;
  text-shadow: -1px -1px 1px white, 1px -1px 1px white, -1px 1px 1px white, 1px 1px 1px white;
  position: absolute;
  top: 4px;
  left: 4px;  
}

.blog_repo_img_flexWrap {
  display: flex;
  justify-content: space-between;
}

.blog_repo_img_flexL,
.blog_repo_img_flexR {
  width: 47%;
}


/* サブメニュー
------------------------------------------------------------------------------------*/
.subMenu_wrap {
  width: 300px;
  background: #f0f0f0;
  margin-left: 40px;
  padding-top: 4px;
}

.special_wrap,
.matomeBuy_wrap,
.subSearch_wrap {
  border-top: #999 solid 1px;
  margin-top: 32px;
}

.subMenu_tit {
  width: 100%;
  font-size: 2rem;
  margin: 24px 16px 0;
}

/* 関連ブログ */
.blogList_wrap {}

.blogList_link {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 24px 30px 0;
}
a.blogList_link:hover { text-decoration: none; }

.blogList_link + .blogList_link {
  margin-top: 32px;
}

.blogList_img {
  border-radius: 12px;
  margin-top: 8px;
  order: -1;
}

.blogList_txt {
  color: #222;
  --fs: 1.4rem;
  --fh: 1.8rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(8px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.blogList_info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  order: -2;
}

.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: 3px 16px;
}
.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 #f0f0f0;
  border-style: solid;
  border-width: 9px 0 9px 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 #f0f0f0 transparent transparent;
  border-style: solid;
  border-width: 9px 5px 9px 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;
}

/* 特集ページ */
.special_wrap {

}

.special_link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 30px 0;
}

/*
.special_txt {
  --fs: 1.2rem;
  --fh: 1.6rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(8px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}
*/

/* まとめ買い */
.matomeBuy_wrap { }

.matomeBuy_link1,
.matomeBuy_link2 {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 30px 0;
}

.matomeBuy_img { border-radius: 12px; }

/* LENS SEARCH */
.subSearch_wrap {
  border-top: #999 solid 1px;
  margin-top: 32px;
}

.subSearch_inner_first,
.subSearch_inner,
.subSearch_inner_COLOR {
  background: linear-gradient(to right, #707070, #707070 2px, transparent 2px, transparent 5px) top left / 5px 1px repeat-x;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 4px 30px 0;
  padding-top: 14px;
}
.subSearch_inner_first { background: none; }

.subSearch_btn,
.subSearch_btnDIA,
.subSearch_btnGDIA,
.subSearch_btnBC {
  width: 114px;
  height: 36px;
  background-color: #fafafa;
  border: #474747 solid 1px;
  border-radius: 8px;
  color: #222;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.subSearch_btnDIA,
.subSearch_btnGDIA,
.subSearch_btnBC {
  height: 52px;
}

.subSearch_btn_link {
  height: 100%;
  color: #222;
  display: grid;
  place-items: center;
}

.subSearch_btnDIA_link,
.subSearch_btnGDIA_link,
.subSearch_btnBC_link {
  height: 100%;
  color: #222;
  display: block;
}

.subSearch_btn_link:hover,
.subSearch_btnDIA_link:hover,
.subSearch_btnGDIA_link:hover,
.subSearch_btnBC_link:hover {
  text-decoration: none;
}

.subSearch_btnDIA_name,
.subSearch_btnGDIA_name,
.subSearch_btnBC_name {
  height: 17px;
  background: #474747;
  border-radius: 3px 3px 0 0;
  color: #fff;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
}

.subSearch_btnCOLOR {
  width: 62px;
  height: 94px;
  font-size: 1.4rem;
  text-align: center;
}

.subSearch_btnCOLOR_link {
  color: #222;
  display: block;
}
.subSearch_btnCOLOR_link:hover { text-decoration: none; }

.subSearch_btnCOLOR_icon {
  width: 90%;
  margin: 0 auto 4px;
}

.subSearch_btnCOLOR_txtS {
  letter-spacing: -0.04em;
  white-space: nowrap;
  transform: scaleX(0.9);
  display: block;
  margin: 0 -10px;
}

.subSearch_btn_txtS {
  letter-spacing: -0.03em;
  white-space: nowrap;
  transform: scaleX(0.8);
  display: block;
  margin: 0 -10px;
}


/* ページ毎
------------------------------------------------------------------------------------*/
/* blogpage90 */
.blogpage90_table1 th:first-of-type { width: 17%; }

/* blogpage56 */
.blogpage56_table1 th:first-of-type { width: 50%; }

/* blogpage10、blogpage14、blogpage15、blogpage51、blogpage61、blogpage64、blogpage82 */
.blog_btn_link:first-of-type {
  margin: 40px auto 0;
}
.blog_btn_link {
  display: block;
  width: 50%;
  margin: 20px auto 0;
}

/* blogpage25、blogpage37、blogpage65 */
.blog_txt_link {
  display: block;
  margin-top: 40px;
}

/* blogpage148 */
.blog_product_titMarigin {
  margin-top: 32px;
}