@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  記事一覧

---------------------------------*/
.artcleBlock {
  padding: 10rem 0 10rem;
}
.artcleBlock .wrap {
  margin: auto;
  max-width: 1024px;
  width: 90%;
}
/*---------------------------------
  タイトル
---------------------------------*/
.artcleBlock .wrap .title {
  display: flex;
  align-items: baseline;
  line-height: 1;
  position: relative;
}
.artcleBlock .wrap .title::after {
  background: #333;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
}
.artcleBlock .wrap .title h2 {
  background: #fff;
  color: #F86841;
  font: var(--enfont);
  font-size: 3rem;
  margin-left: 3rem;
  padding: 0 2rem;
}
.artcleBlock .wrap .title p {
  background: #fff;
  letter-spacing: 2px;
  padding-right: 3rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .artcleBlock {
    padding: 3rem 0 5rem;
  }
  .artcleBlock .wrap .title {
    margin-bottom: 2rem;
  }
  .artcleBlock .wrap .title h2 {
    font-size: 2.5rem;
    margin-left: 2rem;
    padding: 0 1rem;
  }
  .artcleBlock .wrap .title p {
    font-size: 1.2rem;
    padding-right: 1.5rem;
  }
}
/*---------------------------------
  検索
---------------------------------*/
.artcleBlock .wrap .search {
  margin: 2rem auto 0;
}
.artcleBlock .wrap .search form {
  position: relative;
  margin-left: auto;
  max-width: 30rem;
  width: 100%;
}
.artcleBlock .wrap .search input[type="text"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid #fff;
  border-bottom: 1px solid #333;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 1rem 2rem;
  padding-right: 5rem;
  width: 100%;
}
.artcleBlock .wrap .search input[type="text"]:focus {
  background: #f3f3f3;
  box-shadow: none;
  outline: none;
}
.artcleBlock .wrap .search input[type="submit"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/i_search.svg") no-repeat center/1.5rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4rem;
  z-index: 1;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .artcleBlock .wrap .search {
    background: #f3f3f3;
    margin: 2rem auto 0;
    padding: 2rem;
  }
  .artcleBlock .wrap .search form {
    position: relative;
    margin: auto;
    max-width: 30rem;
    width: 100%;
  }
  .artcleBlock .wrap .search input[type="text"] {
    border: 1px solid rgba(0, 0, 0, 0.16);
  }
  .artcleBlock .wrap .search input[type="text"]:focus {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.32);
  }
}
/*---------------------------------
  カテゴリー
---------------------------------*/
.artcleBlock .wrap .categoryList {
  margin-bottom: 4rem;
}
.artcleBlock .wrap .categoryList h3 {
  border-left: 2px solid #F86841;
  color: #888;
  font: var(--enfont);
  font-size: 2rem;
  padding-left: 2rem;
}
.artcleBlock .wrap .categoryList ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.artcleBlock .wrap .categoryList ul li {
  flex-basis: 32%;
  margin-bottom: 2%;
}
.artcleBlock .wrap .categoryList ul li a {
  color: #666;
  display: block;
}
.artcleBlock .wrap .categoryList ul li a img {
  border: 1px solid #eee;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.artcleBlock .wrap .categoryList ul li a p {
  font-size: 1.4rem;
  padding: 1rem 0;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (min-width: 481px) {
  .artcleBlock .wrap .categoryList ul li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 480px) {
  .artcleBlock .wrap .categoryList {
    margin-bottom: 5rem;
  }
  .artcleBlock .wrap .categoryList ul {
    display: block;
  }
  .artcleBlock .wrap .categoryList ul li {
    margin-bottom: 4%;
  }
}
/*---------------------------------
  カテゴリー見出し
---------------------------------*/
.artcleBlock .wrap .cate_headTtl {
  margin: 0 auto 7rem;
  max-width: 75rem;
}
.artcleBlock .wrap .cate_headTtl figure {
  margin: 0 auto 2rem;
}
.artcleBlock .wrap .cate_headTtl p {
  font-size: .93em;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
}
/*---------------------------------
  一覧
---------------------------------*/
.artcleBlock .wrap .artcle__wrap {}
.artcleBlock .wrap .artcle__wrap .artcle_item {
  border-bottom: 1px solid #ccc;
  padding: 5rem 0;
}
.artcleBlock .wrap .artcle__wrap .artcle_item a {
  color: #333;
  display: flex;
}
.artcleBlock .wrap .artcle__wrap .artcle_item a figure {
  flex-basis: 40%;
}
.artcleBlock .wrap .artcle__wrap .artcle_item a figure img {
  object-fit: cover;
  height: 25rem;
}
.artcleBlock .wrap .artcle__wrap .artcle_item a .txtBox {
  flex-basis: 60%;
  padding-left: 5rem;
}
.artcleBlock .wrap .artcle__wrap .artcle_item a .data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  padding: .5rem 0;
}
.artcleBlock .wrap .artcle__wrap .artcle_item a .data time {
  font: var(--enfont);
  font-size: 1.2rem;
}
.artcleBlock .wrap .artcle__wrap .artcle_item a p.ttl {
  font-size: 2.3rem;
  line-height: 1.4;
  margin: 1rem 0 2rem;
  text-align: justify;
}
.artcleBlock .wrap .artcle__wrap .artcle_item a p.cap {
  color: #888;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  /*text-align: justify;*/
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .artcleBlock .wrap .artcle__wrap .artcle_item {
    padding: 2.5rem 0;
  }
  .artcleBlock .wrap .artcle__wrap .artcle_item a {
    display: block;
  }
  .artcleBlock .wrap .artcle__wrap .artcle_item a figure img {
    height: 18rem;
  }
  .artcleBlock .wrap .artcle__wrap .artcle_item a .txtBox {
    margin-top: 1rem;
    padding-left: 0;
  }
  .artcleBlock .wrap .artcle__wrap .artcle_item a .data {
    padding: .5rem 0;
  }
  .artcleBlock .wrap .artcle__wrap .artcle_item a .data time {
    font-size: 1.2rem;
  }
  .artcleBlock .wrap .artcle__wrap .artcle_item a p.ttl {
    font-size: 2rem;
    margin: .5rem 0 1rem;
  }
  .artcleBlock .wrap .artcle__wrap .artcle_item a p.cap {
    font-size: 1.2rem;
  }
}
/*---------------------------------

  ページャー

---------------------------------*/
#pagerList {
  margin-top: 5rem;
  text-align: center;
}
#pagerList ol {
  font-size: 0;
  list-style: none;
  letter-spacing: -.4em;
}
#pagerList ol li {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: normal;
  margin: 0 0.2em;
}
#pagerList ol li .page-numbers {
  border: 1px solid #666;
  color: #333;
  display: grid;
  align-items: center;
  min-width: 5rem;
  min-height: 5rem;
  text-align: center;
}
#pagerList ol li .current {
  background: #F86841;
  border: 1px solid #F86841;
  color: #fff;
}
@media screen and (max-width: 480px) {
  #pagerList {
    margin-top: 3rem;
  }
  #pagerList ol li .page-numbers {
    min-width: 3.5rem;
    min-height: 3.5rem;
  }
}
/*---------------------------------

  記事詳細

---------------------------------*/
.detalisBlock {
  background: #f6f6f6;
  padding: 10rem 0;
}
.detalisBlock .wrap {
  max-width: 65rem;
  margin: 0 auto;
  width: 90%;
}
.detalisBlock .wrap .title {
  margin: 0 auto 7rem;
}
.detalisBlock .wrap .title h1 {
  font: var(--minfont);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.detalisBlock .wrap .txtContent {
  line-height: 2;
  text-align: justify;
}
.detalisBlock .wrap .txtContent h2 {
  background: #eee;
  font: var(--minfont);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 7rem auto 5rem;
  padding: 1rem;
  text-align: center;
}
.detalisBlock .wrap .txtContent h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 5rem auto 3rem;
  text-align: center;
}
.detalisBlock .wrap .txtContent h3::before, .detalisBlock .wrap .txtContent h3::after {
  background: #999;
  content: '';
  display: block;
  flex: 1 1 auto;
  height: 1px;
}
.detalisBlock .wrap .txtContent h3::before {
  margin-right: 2rem;
}
.detalisBlock .wrap .txtContent h3::after {
  margin-left: 2rem;
}
.detalisBlock .wrap .txtContent h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 1rem 0;
  text-align: center;
}
.detalisBlock .wrap .txtContent h5 {}
.detalisBlock .wrap .txtContent p {
  letter-spacing: 0.08em;
  margin: 1em 0;
}
.detalisBlock .wrap .txtContent sup {
  font-size: 0.7em;
  vertical-align: top;
}
.detalisBlock .wrap .txtContent ul, .detalisBlock .wrap .txtContent ol {
  margin: 1rem 0 1rem 2.5rem;
}
.detalisBlock .wrap .txtContent p a, .detalisBlock .wrap .txtContent li a {
  color: #F86841;
  text-decoration: underline;
}
.detalisBlock .wrap .txtContent img {
  display: block;
  margin: 3rem auto;
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: bottom;
}
.detalisBlock .wrap .txtContent table {
  margin: 1em 0;
}
.detalisBlock .wrap .txtContent table th, .detalisBlock .wrap .txtContent table td {
  border: 1px solid #ccc;
  font-size: .9em;
  line-height: 1.6;
  padding: 1rem;
  width: auto;
}
.detalisBlock .wrap .txtContent table td p {
  margin: 0;
}
.detalisBlock .wrap .txtContent blockquote {
  position: relative;
  border-left: 3px solid #ccc;
  padding-left: 20px;
  padding-top: 30px;
}
.detalisBlock .wrap .txtContent blockquote::before {
  position: absolute;
  content: '“';
  font-size: 70px;
  color: #ccc;
  line-height: 1;
  position: absolute;
  top: 0;
}
.detalisBlock .wrap .txtContent blockquote p {
  position: relative;
}
.detalisBlock .wrap .txtContent blockquote cite {
  display: block;
  font-size: 0.8rem;
  color: #FAA58E;
  text-align: right;
  padding: 10px;
}
.detalisBlock .wrap .txtContent .wp-caption {
  margin: auto;
  width: 100% !important;
}
.detalisBlock .wrap .txtContent .wp-caption-text {
  font-size: 1.4rem;
  margin: -2rem 0 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .detalisBlock {
    padding: 3rem 0 5rem;
  }
  .detalisBlock .wrap .title {
    margin: 0 auto 3rem;
  }
  .detalisBlock .wrap .title h1 {
    font-size: 2.5rem;
  }
  .detalisBlock .wrap .txtContent {
    line-height: 2;
    text-align: justify;
  }
  .detalisBlock .wrap .txtContent h2 {
    font-size: 2rem;
    margin: 4rem auto 2rem;
  }
  .detalisBlock .wrap .txtContent h3 {
    font-size: 1.6rem;
    margin: 3rem auto 1.5rem;
  }
  .detalisBlock .wrap .txtContent h4 {}
  .detalisBlock .wrap .txtContent h5 {}
  .detalisBlock .wrap .txtContent p {
    font-size: 1.3rem;
  }
  .detalisBlock .wrap .txtContent img {
    margin: 2rem auto;
  }
  .detalisBlock .wrap .txtContent .wp-caption-text {
    font-size: 1.2rem;
    margin: -2rem 0 0;
  }
}
/*---------------------------------

  吹き出し

---------------------------------*/
.detalisBlock .wrap .txtContent div.fukidashi_woman, .detalisBlock .wrap .txtContent div.fukidashi_man, .detalisBlock .wrap .txtContent div.fukidashi_child, .detalisBlock .wrap .txtContent div.fukidashi_sherb {
  display: flex;
  align-items: center;
  margin: 3rem 0;
}
.detalisBlock .wrap .txtContent div.fukidashi_woman p, .detalisBlock .wrap .txtContent div.fukidashi_man p, .detalisBlock .wrap .txtContent div.fukidashi_child p, .detalisBlock .wrap .txtContent div.fukidashi_sherb p {
  border-radius: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1.45rem;
  line-height: 1.7;
  flex: 1 1;
  padding: 1.5rem;
  position: relative;
  text-align: justify;
}
/*---------------------------------
  お客様
---------------------------------*/
.detalisBlock .wrap .txtContent div.fukidashi_woman p::before, .detalisBlock .wrap .txtContent div.fukidashi_man p::before, .detalisBlock .wrap .txtContent div.fukidashi_child p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -26px;
  margin-top: -8px;
  border: 8px solid transparent;
  border-right: 20px solid #FFF;
  z-index: 2;
}
.detalisBlock .wrap .txtContent div.fukidashi_woman p::after, .detalisBlock .wrap .txtContent div.fukidashi_man p::after, .detalisBlock .wrap .txtContent div.fukidashi_child p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -29px;
  margin-top: -9px;
  border: 9px solid transparent;
  border-right: 20px solid #ccc;
  z-index: 1;
}
.detalisBlock .wrap .txtContent div.fukidashi_woman::before {
  content: '';
  background: url("../../images/testimonial_vol1/icon_woman.png") no-repeat center/contain;
  display: block;
  flex: 0 0 10rem;
  margin-right: 5rem;
  height: 10rem;
}
.detalisBlock .wrap .txtContent div.fukidashi_man::before {
  content: '';
  background: url("../images/icon_man.png") no-repeat center/contain;
  display: block;
  flex: 0 0 10rem;
  margin-right: 5rem;
  height: 10rem;
}
.detalisBlock .wrap .txtContent div.fukidashi_child::before {
  content: '';
  background: url("../../images/testimonial_vol1/icon_child.png") no-repeat center/contain;
  display: block;
  flex: 0 0 10rem;
  margin-right: 5rem;
  height: 10rem;
}
/*---------------------------------
  鈴木ハーブ
---------------------------------*/
.detalisBlock .wrap .txtContent div.fukidashi_sherb::before {
  content: '';
  background: url("../../images/testimonial_vol1/icon_sherb.png") no-repeat center/contain;
  display: block;
  flex: 0 0 10rem;
  margin-left: 5rem;
  height: 10rem;
  order: 1;
}
.detalisBlock .wrap .txtContent div.fukidashi_sherb p {
  border-color: #8BC5A6;
  color: #006d4b;
}
.detalisBlock .wrap .txtContent div.fukidashi_sherb p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -8px;
  border: 8px solid transparent;
  border-left: 20px solid #FFF;
  z-index: 2;
}
.detalisBlock .wrap .txtContent div.fukidashi_sherb p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -29px;
  margin-top: -9px;
  border: 9px solid transparent;
  border-left: 20px solid #8BC5A6;
  z-index: 1;
}
/*---------------------------------
  インタビューありがとうございました
---------------------------------*/
.detalisBlock .wrap .txtContent div.thx_sherb {
  border-radius: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  padding: 6.5rem 3rem 1rem;
  position: relative;
}
.detalisBlock .wrap .txtContent div.thx_sherb::before {
  background: #F86841;
  content: 'Thank you for taking part in the interview.';
  color: #fff;
  display: block;
  font-size: 1.8rem;
  padding: 0.9rem 3rem;
  position: absolute;
  top: 1rem;
  left: -1rem;
  width: 100%;
}
.detalisBlock .wrap .txtContent div.thx_sherb::after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.detalisBlock .wrap .txtContent div.thx_sherb::after {
  top: 1rem;
  right: 1rem;
  border-width: 26px 15px 30px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
/*---------------------------------
  インタビューありがとうございました
---------------------------------*/
.detalisBlock .wrap .txtContent div.box_50wrap {
  display: flex;
  justify-content: space-between;
}
.detalisBlock .wrap .txtContent div.box_50wrap * {
  flex-basis: 48%;
  margin: 0;
  width: auto;
}
/*---------------------------------
  商品紹介
---------------------------------*/
.detalisBlock .wrap dl.prodact {
  width: 100%;
  max-width: 65rem;
  margin: 3rem auto 5rem;
}
.detalisBlock .wrap dl.prodact code {
  display: flex;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif, 游ゴシック体, 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}
.detalisBlock .wrap dl.prodact img {
  width: 100%;
  vertical-align: bottom;
}
.detalisBlock .wrap dl.prodact dt {
  width: 40%;
  text-align: center;
}
.detalisBlock .wrap dl.prodact dt img {
  /*max-width: 10rem;*/
  margin: 0 auto;
}
.detalisBlock .wrap dl.prodact dt.w6 img {
  max-width: 6rem;
}
.detalisBlock .wrap dl.prodact dt.w7 img {
  max-width: 7rem;
}
.detalisBlock .wrap dl.prodact dt.w8 img {
  max-width: 8rem;
}
.detalisBlock .wrap dl.prodact dt.w10 img {
  max-width: none;
}
.detalisBlock .wrap dl.prodact dd {
  width: 60%;
}
.detalisBlock .wrap dl.prodact dd p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.detalisBlock .wrap dl.prodact dd p span {
  font-size: 0.6em;
  vertical-align: text-top;
}
.detalisBlock .wrap dl.prodact dd h3 {
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid;
  text-align: left;
}
.detalisBlock .wrap dl.prodact dd h3 + p {
  margin: 0 0 1rem;
}
.detalisBlock .wrap dl.prodact dd p img {
  width: 80%;
  margin-bottom: 2rem;
}
.detalisBlock .wrap dl.prodact dd p a {
  display: block;
  margin: 1rem 0;
  font-size: 1.8rem;
  font-family: 'Noto Serif JP', serif;
  color: #006D4B;
}
.detalisBlock .wrap dl.prodact dd p.txt {
  font-size: 1.4rem;
  margin-top: 1rem;
  line-height: 1.5;
}
.detalisBlock .wrap dl.prodact + figure {
  margin: -4rem auto 5rem;
}
.detalisBlock .wrap dl.prodact dd .btn {
  max-width: 25rem;
  margin-top: 2rem;
}
.detalisBlock .wrap dl.prodact dd .btn a {
  display: block;
  padding: 1rem;
  border: 4px double #ccc;
  background: rgba(0, 109, 75, 1.00);
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .detalisBlock .wrap dl.prodact {
    margin: 3.5rem auto;
  }
  .detalisBlock .wrap dl.prodact code {
    display: block;
  }
  .detalisBlock .wrap dl.prodact dt {
    width: 100%;
  }
  .detalisBlock .wrap dl.prodact dd {
    margin-top: 2rem;
    width: 100%;
  }
  .detalisBlock .wrap dl.prodact dd h3 {
    text-align: center;
  }
  .detalisBlock .wrap dl.prodact dd h3 + p {
    margin: 0 0 .5rem;
    text-align: center;
  }
  .detalisBlock .wrap dl.prodact dd p img {
    width: 80%;
    margin-bottom: 2rem;
  }
  .detalisBlock .wrap dl.prodact dd p a {
    font-size: 1.6rem;
    margin: auto;
    text-align: center;
  }
  .detalisBlock .wrap dl.prodact dd p.txt {
    font-size: 1.2rem;
  }
  .detalisBlock .wrap dl.prodact dd .btn {
    margin: 2rem auto 0;
  }
  .detalisBlock .wrap dl.prodact + figure {
    margin: -2rem auto 4rem;
  }
}
/*---------------------------------

  関連記事

---------------------------------*/
.related_post {
  background: #f6f6f6;
  padding: 3rem 0 10rem;
}
.related_post .wrap {
  max-width: 85rem;
  margin: auto;
  width: 90%;
}
.related_post .wrap h3.headline {
  background: #333;
  color: #fff;
  display: grid;
  align-items: center;
  justify-content: center;
  font: var(--minfont);
  margin: 0 auto 5rem;
  max-width: 12rem;
  height: 10rem;
}
.related_post .wrap ul.post_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.related_post .wrap ul.post_list li {
  background: #fff;
  border: 1px solid #eee;
  flex-basis: calc(100%/3);
}
.related_post .wrap ul.post_list li a {
  color: #333;
  display: block;
}
.related_post .wrap ul.post_list li a figure {}
.related_post .wrap ul.post_list li a figure img {
  height: 18rem;
  object-fit: cover;
}
.related_post .wrap ul.post_list li a p {
  font-size: 1.4rem;
  padding: 1rem 2rem;
}
.related_post .wrap ul.post_list li a time {
  color: #808080;
  display: block;
  font: var(--enfont);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.5rem;
  text-align: right;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (min-width: 481px) {
  .related_post .wrap ul.post_list li:nth-child(2), .related_post .wrap ul.post_list li:nth-child(5) {
    border-left: none;
    border-right: none;
  }
  .related_post .wrap ul.post_list li:nth-child(-n + 3) {
    border-bottom: none;
  }
}
@media screen and (max-width: 480px) {
  .related_post {
    padding: 2rem 0 3rem;
  }
  .related_post .wrap h3.headline {
    margin: 0 auto 3rem;
  }
  .related_post .wrap ul.post_list li {
    flex-basis: calc(100%/2);
  }
  .related_post .wrap ul.post_list li:nth-child(2n) {
    border-left: none;
  }
  .related_post .wrap ul.post_list li:nth-child(-n + 4) {
    border-bottom: none;
  }
  .related_post .wrap ul.post_list li a p {
    font-size: 1.2rem;
    padding: 1rem 1rem;
  }
  .related_post .wrap ul.post_list li a time {
    font-size: 1.0rem;
  }
}
/*---------------------------------

  検索ページ

---------------------------------*/
.searchBlock {
  padding: 10rem 0 10rem;
}
.searchBlock .wrap {
  margin: auto;
  max-width: 1024px;
  width: 90%;
}
.searchBlock .wrap .title {
  display: flex;
  align-items: baseline;
  line-height: 1;
  position: relative;
}
.searchBlock .wrap .title::after {
  background: #333;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
}
.searchBlock .wrap .title h2 {
  background: #fff;
  color: #F86841;
  font: var(--enfont);
  font-size: 3rem;
  margin-left: 3rem;
  padding: 0 2rem;
}
.searchBlock .wrap .title p {
  background: #fff;
  letter-spacing: 2px;
  padding-right: 3rem;
}
.searchBlock .wrap .search {
  background: #f6f6f6;
  margin: 5rem auto;
  padding: 5rem 5rem;
}
.searchBlock .wrap .search .txt {
  padding: 0 0 3rem;
  text-align: center;
}
.searchBlock .wrap .search form {
  position: relative;
  width: 100%;
}
.searchBlock .wrap .search input[type="text"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 1rem 1rem;
  padding-right: 5rem;
  width: 100%;
}
.searchBlock .wrap .search input[type="text"]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
.searchBlock .wrap .search input[type="submit"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/i_search.svg") no-repeat center/1.5rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4rem;
  z-index: 1;
}
.searchBlock .wrap .taglist h3 {
  font-weight: 400;
  margin-bottom: 2rem;
}
.searchBlock .wrap .taglist ul {
  list-style: none;
}
.searchBlock .wrap .taglist ul li {
  display: inline-block;
  margin: 0 1rem 1rem 0;
}
.searchBlock .wrap .taglist ul li a {
  border: 1px solid rgba(41, 91, 75, 0.2);
  border-radius: 2rem;
  color: #295B4B;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding: .3rem 2rem;
}
.searchBlock .wrap .taglist ul li a::before {
  content: '#';
  margin-right: .2rem;
}
.searchBlock .wrap .taglist ul li a:hover {
  background: rgba(248, 104, 65, 0.2);
  border: 1px solid rgba(41, 91, 75, 1);
  opacity: 1;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .searchBlock {
    padding: 3rem 0 5rem;
  }
  .searchBlock .wrap .search .txt {
    padding: 0 0 2rem;
  }
  .searchBlock .wrap .search {
    margin: 3rem auto;
    padding: 3rem 2rem;
  }
}