@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする
*/
:root {
  --color-font-default: #262924;
  --color-font-black: #000000;
  --color-font-white: #fff;
  --color-font-light-green: #E2F1D5;
  --color-font-gray: #979797;
  --color-font-dark-gray: #6F6F6F;
  --color-font-dark-gray2: #7F7F7F;
  --color-font-dark-gray3: #828282;
  --color-font-light-gray: #F2F2F2;
  --color-font-light-gray2: #F4F4F4;
  --color-font-light-gray3: #BDBDBD;
  --color-font-red: #FA6767;
  --color-font-green: #6eb92b;
  --color-font-green2: #6fba2c;
  --color-bg-default: #fff;
  --color-bg-green: #6eb92b;
  --color-bg-green2: #6fba2c;
  --color-bg-light-green: #F3F9EE;
  --color-bg-light-gray: #F7F7F7;
  --color-bg-light-gray2: #F8F8F8;
  --color-bg-gray: #979797;
  --color-bg-black: #262924;
  --color-button-default: #000;
  --color-stroke-default: #121830;
  --color-stroke-gray: #BDBDBD;
  --color-stroke-dark-gray: #979797;
  --color-stroke-light-gray: #EAEAEA;
  --color-stroke-light-gray2: #EEEEEE;
  --color-stroke-light-gray3: #e0e0e0;
  --color-stroke-black: #000000;
  --color-stroke-black2: #262924;
  --color-stroke-white: #ffffff;
  --color-stroke-twitter: #20A1F1;
  --color-stroke-facebook: #405992;
  --color-stroke-green: #6eb92b;
  --color-stroke-green2: #6fba2c;
}

/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/* ブレイクポイントの設定 min~max */
/* mq-target:指定してメディアクエリのみに適用 */
/* mq:指定より小さい画面に適用 */
/*
prev-nextのSCSSに関して記述しているファイル
*/
.prev-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.prev-next > .prev > .link,
.prev-next > .next > .link,
.prev-next > .list > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  line-height: 180%;
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}

@media screen and (max-width: 896px) {
  .prev-next > .prev > .link,
  .prev-next > .next > .link,
  .prev-next > .list > .link {
    font-size: 14px;
  }
}

.prev-next > .prev > .link > .icon,
.prev-next > .next > .link > .icon,
.prev-next > .list > .link > .icon {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  width: 8px;
  height: 14px;
  fill: none;
  stroke: var(--color-stroke-black);
  stroke-width: 2px;
  -webkit-transition: -webkit-transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s;
  transition: -webkit-transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s;
  transition: transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s;
  transition: transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s, -webkit-transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s;
}

@media screen and (max-width: 896px) {
  .prev-next > .prev > .link > .icon,
  .prev-next > .next > .link > .icon,
  .prev-next > .list > .link > .icon {
    width: 7px;
    height: 12px;
  }
}

.prev-next > .prev > .link:hover > .icon,
.prev-next > .next > .link:hover > .icon,
.prev-next > .list > .link:hover > .icon {
  -webkit-transition-delay: 0.002s;
  transition-delay: 0.002s;
}

.prev-next > .prev.disabled > .link,
.prev-next > .next.disabled > .link,
.prev-next > .list.disabled > .link {
  opacity: 0;
  pointer-events: none;
  cursor: none;
}

.prev-next > .prev > .prev-link > .icon {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  margin-right: 11px;
}

.prev-next > .prev > .prev-link:hover > .icon {
  -webkit-transform: scale(-1, 1) translateX(5px);
  transform: scale(-1, 1) translateX(5px);
}

.prev-next > .next > .next-link > .icon {
  margin-left: 11px;
}

.prev-next > .next > .next-link:hover > .icon {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

/*
share-dwのSCSSに関して記述しているファイル
*/
.share-dw {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media screen and (max-width: 1080px) {
  .share-dw {
    display: block;
  }
}

@media screen and (max-width: 896px) {
  .share-dw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 640px) {
  .share-dw {
    display: block;
  }
}

.share-dw::before, .share-dw::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  height: 1px;
  background-color: var(--color-stroke-light-gray);
}

.share-dw::before {
  top: 0;
}

.share-dw::after {
  bottom: 0;
}

.share-dw > .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.share-dw > .share > .share-txt {
  padding-right: 8px;
  font-size: 16px;
  line-height: 1.8em;
  color: var(--color-font-gray);
}

.share-dw > .share > .list-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.share-dw > .share > .list-sns > .item-sns {
  margin-left: 16px;
}

.share-dw > .share > .list-sns > .item-sns > .sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.share-dw > .share > .list-sns > .item-sns > .sns-link > .icon {
  width: 24px;
  height: 24px;
}

.share-dw > .share > .list-sns > .item-sns.twitter > .sns-link {
  border: 1px solid var(--color-stroke-twitter);
}

.share-dw > .share > .list-sns > .item-sns.twitter > .sns-link > .icon {
  fill: var(--color-stroke-twitter);
}

.share-dw > .share > .list-sns > .item-sns.facebook > .sns-link {
  border: 1px solid var(--color-stroke-facebook);
}

.share-dw > .share > .list-sns > .item-sns.facebook > .sns-link > .icon {
  fill: var(--color-stroke-facebook);
}

.share-dw > .dw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 316px;
  margin-left: 64px;
}

@media screen and (max-width: 1080px) {
  .share-dw > .dw {
    max-width: none;
    margin: 18px 0 0;
  }
}

@media screen and (max-width: 896px) {
  .share-dw > .dw {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 316px;
    margin: 0 0 0 32px;
  }
}

@media screen and (max-width: 640px) {
  .share-dw > .dw {
    max-width: none;
    margin: 18px 0 0;
  }
}

.share-dw > .dw > .dw-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 316px;
  padding: 20px;
  font-size: 16px;
  line-height: 180%;
  color: var(--color-font-white);
  background-color: var(--color-bg-green);
  border: 0;
  border-radius: 300px;
}

@media screen and (max-width: 896px) {
  .share-dw > .dw > .dw-btn {
    max-width: 345px;
  }
}

.share-dw > .dw > .dw-btn > .icon {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  width: 8px;
  height: 14px;
  margin-left: 9px;
  fill: none;
  stroke: var(--color-stroke-white);
  stroke-width: 2px;
  -webkit-transition: -webkit-transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s;
  transition: -webkit-transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s;
  transition: transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s;
  transition: transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s, -webkit-transform 0.04s cubic-bezier(0.5, 0, 0.75, 0) 0.008s;
}

.share-dw > .dw > .dw-btn:hover > .icon {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  -webkit-transition-delay: 0.002s;
  transition-delay: 0.002s;
}

/*
breadsのSCSSに関して記述しているファイル
*/
.breads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
}

.breads > .bread {
  margin-left: 14px;
}

@media screen and (max-width: 896px) {
  .breads > .bread {
    margin-left: 9px;
  }
}

.breads > .bread:first-child {
  margin-left: 0;
}

.breads > .bread > .bread-link,
.breads > .bread > .bread-txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  color: var(--color-font-gray);
}

@media screen and (max-width: 896px) {
  .breads > .bread > .bread-link,
  .breads > .bread > .bread-txt {
    font-size: 12px;
  }
}

.breads > .bread > .bread-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breads > .bread > .bread-link::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  background-image: url(../../../assets/imgs/svgs/arrow-right-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 14px;
  margin-bottom: -1px;
}

@media screen and (max-width: 896px) {
  .breads > .bread > .bread-link::after {
    margin-left: 9px;
  }
}

/*
post-contentのSCSSに関して記述しているファイル
*/
.post-body > .post-cont,
.event-cont,
.news-cont {
  font-weight: 600;
  font-size: 16px;
  line-height: 180%;
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont,
  .event-cont,
  .news-cont {
    font-size: 14px;
  }
}

.post-body > .post-cont > *,
.event-cont > *,
.news-cont > * {
  margin-top: 16px;
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont > *,
  .event-cont > *,
  .news-cont > * {
    margin-top: 20px;
  }
}

.post-body > .post-cont > *:first-child,
.event-cont > *:first-child,
.news-cont > *:first-child {
  margin-top: 0;
}

.post-body > .post-cont p {
  display: block;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
}

.event-cont p,
.news-cont p {
  display: block;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.post-body > .post-cont > h2,
.post-body > .post-cont > h3,
.post-body > .post-cont > ul,
.post-body > .post-cont > figure,
.event-cont > h2,
.event-cont > h3,
.event-cont > ul,
.event-cont > figure,
.news-cont > h2,
.news-cont > h3,
.news-cont > ul,
.news-cont > figure {
  margin-top: 64px;
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont > h2,
  .post-body > .post-cont > h3,
  .post-body > .post-cont > ul,
  .post-body > .post-cont > figure,
  .event-cont > h2,
  .event-cont > h3,
  .event-cont > ul,
  .event-cont > figure,
  .news-cont > h2,
  .news-cont > h3,
  .news-cont > ul,
  .news-cont > figure {
    margin-top: 54px;
  }
}

.post-body > .post-cont h2,
.event-cont h2,
.news-cont h2 {
  position: relative;
  padding-left: 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 160%;
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont h2,
  .event-cont h2,
  .news-cont h2 {
    padding-left: 14px;
    font-size: 20px;
  }
}

.post-body > .post-cont h2::before,
.event-cont h2::before,
.news-cont h2::before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  display: block;
  width: 4px;
  height: 30px;
  background-color: var(--color-stroke-light-gray);
}

.post-body > .post-cont h3,
.event-cont h3,
.news-cont h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont h3,
  .event-cont h3,
  .news-cont h3 {
    font-size: 17px;
  }
}

.post-body > .post-cont a,
.event-cont a,
.news-cont a {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: underline;
  color: var(--color-font-green);
}

.post-body > .post-cont ul > li,
.event-cont ul > li,
.news-cont ul > li {
  position: relative;
  margin-top: 4px;
  padding-left: 12px;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont ul > li,
  .event-cont ul > li,
  .news-cont ul > li {
    margin-top: 6px;
    font-size: 14px;
  }
}

.post-body > .post-cont ul > li:first-child,
.event-cont ul > li:first-child,
.news-cont ul > li:first-child {
  margin-top: 0;
}

.post-body > .post-cont ul > li::before,
.event-cont ul > li::before,
.news-cont ul > li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-bg-black);
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont ul > li::before,
  .event-cont ul > li::before,
  .news-cont ul > li::before {
    top: 11px;
  }
}

.post-body > .post-cont figure.wp-block-image,
.event-cont figure.wp-block-image,
.news-cont figure.wp-block-image {
  width: 80%;
  max-width: 636px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  padding-bottom: 48px;
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont figure.wp-block-image,
  .event-cont figure.wp-block-image,
  .news-cont figure.wp-block-image {
    width: 100%;
    padding-bottom: 38px;
  }
}

.post-body > .post-cont figure > figcaption,
.event-cont figure > figcaption,
.news-cont figure > figcaption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 180%;
  color: var(--color-font-gray);
}

@media screen and (max-width: 896px) {
  .post-body > .post-cont figure > figcaption,
  .event-cont figure > figcaption,
  .news-cont figure > figcaption {
    margin-top: 4px;
  }
}

.page-single {
  overflow: hidden;
}

.page-single > .post > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 55px;
  padding-bottom: 70px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container {
    display: block;
    padding-top: 48px;
    padding-bottom: 0;
  }
}

.page-single > .post > .container > .main {
  -webkit-box-flex: 0;
  -ms-flex: 0 2 75%;
  flex: 0 2 75%;
  padding-right: 5.8%;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main {
    padding-right: 0;
    padding-bottom: 104px;
  }
}

.page-single > .post > .container > .main > .post {
/*  padding-top: 48px;*/
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post {
/*    padding-top: 32px;*/
  }
}

.page-single > .post > .container > .main > .post > .post-ttl {
  font-size: 30px;
  line-height: 1.6em;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-ttl {
    padding-top: 0;
    font-size: 24px;
    line-height: 1.6em;
  }
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 17px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-date-tags-sns {
    display: block;
    margin-top: 10px;
  }
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-date-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-date-tags {
    display: block;
  }
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-date-tags > .post-date {
  font-size: 14px;
  line-height: 2em;
  color: var(--color-stroke-green2);
  margin-right: 15px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-date-tags > .post-date {
    display: block;
    margin: 0 0 10px;
  }
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-date-tags > .post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5%;
  width: 100%;
  flex: auto;
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-date-tags > .post-tags > .post-tag {
  margin: 0 0.5% 5px;
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-date-tags > .post-tags > .post-tag > .post-tag-link {
  padding: 0 10px;
  font-size: 12px;
  line-height: 2em;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 1em;
  min-width: 78px;
  text-align: center;
  display: block;
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns {
    margin-top: 17px;
  }
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns > .list-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns > .list-sns > .item-sns {
  margin-left: 8px;
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns > .list-sns > .item-sns.twitter {
  margin-left: 0;
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns > .list-sns > .item-sns.twitter > .sns-link > .icon {
  fill: var(--color-stroke-twitter);
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns > .list-sns > .item-sns.facebook > .sns-link > .icon {
  fill: var(--color-stroke-facebook);
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns > .list-sns > .item-sns > .sns-link > .icon {
  width: 21px;
}

.page-single > .post > .container > .main > .post > .post-date-tags-sns > .post-sns > .sponsored {
  margin-left: 24px;
  padding: 0 2px;
  font-size: 12px;
  line-height: 22px;
  color: var(--color-font-white);
  background-color: #f0bc37;
  border-radius: 2px;
}

.page-single > .post > .container > .main > .post > .post-body {
  background-color: var(--color-bg-default);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 64px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-body {
    box-shadow: none;
    border-radius: 0;
    margin-top: 50px;
    margin-bottom: 54px;
  }
}

.page-single > .post > .container > .main > .post > .post-body > .post-thumb {
/*  margin-top: 78px;*/
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-body > .post-thumb {
/*    margin-top: 32px;*/
  }
}

.page-single > .post > .container > .main > .post > .post-body > .post-thumb > .post-thumb-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-body > .post-thumb > .post-thumb-img {
    width: 100%;
  }
}

.page-single > .post > .container > .main > .post > .post-body > .post-cont {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.8em;
  padding: 0 60px 60px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-body > .post-cont {
    padding: 0;
  }
}

.page-single > .post > .container > .main > .post > .post-body > .post-cont > .dl-btn {
  margin: 70px auto 0;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-body > .post-cont > .dl-btn {
    margin-top: 40px;
  }
}

.page-single > .post > .container > .main > .post > .post-body > .post-cont > .dl-btn > .dl-link {
  display: block;
  max-width: 316px;
  width: auto;
  color: var(--color-font-white);
  background-color: var(--color-bg-green2);
  text-align: center;
  font-size: 18px;
  line-height: 74px;
  text-decoration: none;
  border-radius: 40px;
  padding: 0 10px;
  margin: 0 auto;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .post > .post-body > .post-cont > .dl-btn > .dl-link {
  }
}

.page-single > .post > .container > .main > .prev-next {
  margin-top: 64px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .prev-next {
    margin-top: 24px;
  }
}

.page-single > .post > .container > .main > .posts-popular {
  position: relative;
  margin-top: 130px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .posts-popular {
    margin-top: 100px;
  }
}

.page-single > .post > .container > .main > .posts-popular > .ttl {
  font-size: 24px;
  line-height: 180%;
  margin-bottom: 25px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .posts-popular > .ttl {
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
  }
}

.page-single > .post > .container > .main > .posts-popular > .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: -15px;
}

@media screen and (max-width: 640px) {
  .page-single > .post > .container > .main > .posts-popular > .posts {
    display: block;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    margin-top: -15px;
  }
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post {
  width: 48%;
  padding: 15px 0;
}

@media screen and (max-width: 640px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post {
    width: 100%;
    max-width: none;
    padding: 18px 0;
  }
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background-color: var(--color-bg-default);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont {
/*    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 157px;*/
  }
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 215px;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-thumb {
    height: 190px;
  }
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-thumb > .post-thumb-img {
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: -webkit-transform 0.12s cubic-bezier(0.11, 0, 0.5, 0) 0.004s;
  transition: -webkit-transform 0.12s cubic-bezier(0.11, 0, 0.5, 0) 0.004s;
  transition: transform 0.12s cubic-bezier(0.11, 0, 0.5, 0) 0.004s;
  transition: transform 0.12s cubic-bezier(0.11, 0, 0.5, 0) 0.004s, -webkit-transform 0.12s cubic-bezier(0.11, 0, 0.5, 0) 0.004s;
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont:hover > .post-thumb > .post-thumb-img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-transition-delay: 0.002s;
  transition-delay: 0.002s;
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos {
  position: relative;
  padding: 35px 40px;
}

@media screen and (max-width: 1080px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos {
    width: 100%;
    padding: 25px 20px;
  }
}

@media screen and (max-width: 640px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos {
    width: 100%;
    padding: 15px 12px 15px;
  }
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-date-tags {
  margin-top: 15px;
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-date-tags > .date {
  font-size: 12px;
  line-height: 1.6em;
  color: var(--color-font-green2);
  display: block;
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-date-tags > .post-tags {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 15px -1% 0;
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-date-tags > .post-tags > .post-tag {
  margin: 5px 1% 0;
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-date-tags > .post-tags > .post-tag > .post-tag-link {
  padding: 0 10px;
  font-size: 12px;
  line-height: 2em;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 1em;
  min-width: 78px;
  text-align: center;
  display: block;
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-ttl {
  margin-bottom: 15px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-ttl {
  }
}

@media screen and (max-width: 640px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-ttl {
  }
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
  font-size: 20px;
  line-height: 1.6em;
  color: var(--color-font-black);
}

@media screen and (max-width: 1080px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
    font-size: 18px;
  }
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
    font-size: 16px;
  }
}

.page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-desc {
  font-size: 14px;
  margin-top: 20px;
}

@media screen and (max-width: 896px) {
  .page-single > .post > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-desc {
    display: none;
  }
}

