@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:指定より小さい画面に適用 */
.page-top {
  overflow: hidden;
}

.page-top > .posts-pickup {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../../../assets/imgs/bg_pickup.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 896px) {
  .page-top > .posts-pickup {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.page-top > .posts-pickup > .container > .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts {
    display: block;
  }
}

.page-top > .posts-pickup > .container > .posts > .main-post {
  width: 48%;
  position: relative;
}

.page-top > .posts-pickup > .container > .posts > .main-post:before {
  white-space: pre;
  content: "PICK\aUP";
  position: absolute;
  top: -20px;
  left: 25px;
  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: 56px;
  height: 73px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2em;
  text-align: center;
  color: var(--color-font-white);
  background-image: url(../../../assets/imgs/svgs/pickup.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  padding-bottom: 15px;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .main-post {
    width: 100%;
  }
}

.page-top > .posts-pickup > .container > .posts > .main-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;
}

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

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

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

.page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-thumb > .post-thumb-img {
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
  height: 100%;
  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-top > .posts-pickup > .container > .posts > .main-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-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos {
  position: relative;
  padding: 30px 45px 40px;
}

@media screen and (max-width: 1080px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos {
    padding: 25px 30px 30px;
  }
}

@media screen and (max-width: 896px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos {
    padding: 20px 15px 25px;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos {
    width: 100%;
    padding: 25px;
  }
}

.page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-date-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-date-tags {
    display: block;
    margin-top: 15px;
  }
}

.page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-date-tags > .date {
  font-size: 14px;
  line-height: 1.6em;
  color: var(--color-font-green2);
  display: block;
  margin-right: 20px;
}

@media screen and (max-width: 896px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-date-tags > .date {
    margin-right: 10px;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-date-tags > .date {
    font-size: 12px;
    margin-right: 0;
  }
}

.page-top > .posts-pickup > .container > .posts > .main-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: 0 -1%;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-date-tags > .post-tags {
    margin-top: 15px;
  }
}

.page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-date-tags > .post-tags > .post-tag {
  margin: 0 1% 4px;
}

.page-top > .posts-pickup > .container > .posts > .main-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-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-ttl {
  margin-bottom: 10px;
}

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

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-ttl {
    margin-bottom: 15px;
  }
}

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

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

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

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

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .main-post > .post-cont > .post-infos > .post-desc {
  }
}

.page-top > .posts-pickup > .container > .posts > .sub-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 48%;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts {
    width: 100%;
  }
}

.page-top > .posts-pickup > .container > .posts > .sub-posts > .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 31%;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post {
    margin-top: 20px;
  }
}

.page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  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;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont {
    display: block;
  }
}

.page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-thumb {
  display: block;
  width: 50%;
  min-width: 50px;
  max-width: 235px;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-thumb {
    width: 40%;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-thumb {
    width: 100%;
    max-width: none;
    height: 195px;
  }
}

.page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-thumb > .post-thumb-img {
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
  height: 100%;
  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-top > .posts-pickup > .container > .posts > .sub-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-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 2 448px;
  flex: 0 2 448px;
  padding: 10px 30px 10px 35px;
}

@media screen and (max-width: 1080px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos {
  padding: 10px 20px 10px 25px;
  }
}

@media screen and (max-width: 896px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos {
    padding: 10px 15px 10px 15px;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos {
    padding: 25px;
  }
}

.page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-date-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
/*  margin-top: -2px;*/
}

.page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-date-tags > .post-date {
  font-size: 12px;
  line-height: 180%;
  color: var(--color-font-green2);
}

.page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-date-tags > .post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1%;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-date-tags > .post-tags {
    margin-top: 10px;
  }
}
.page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-date-tags > .post-tags > .post-tag {
  margin: 5px 1% 0;
}

.page-top > .posts-pickup > .container > .posts > .sub-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-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-ttl {
  margin-bottom: 5px;
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-ttl {
    margin-bottom: 15px;
  }
}

.page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
  font-size: 18px;
  line-height: 120%;
}

@media screen and (max-width: 1080px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 896px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts-pickup > .container > .posts > .sub-posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
    font-size: 18px;
    line-height: 160%;
  }
}

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

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

.page-top > .posts > .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-top > .posts > .container > .main {
    padding-right: 0;
  }
}

.page-top > .posts > .container > .main > .posts-new {
  margin-bottom: 100px;
}

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

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

.page-top > .posts > .container > .main > .posts-new > .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -15px;
}

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-new > .posts {
    margin-top: -15px;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post {
    width: 100%;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child {
  width: 100%;
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*  min-height: 291px;*/
  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;
  padding: 20px 20px 25px;
  flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont {
/*    display: block;*/
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-thumb {
  display: block;
  width: 50%;
  min-width: 100px;
  max-width: 180px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-thumb {
    max-width: 130px;
    height: 85px;
  }
}

.page-top > .posts > .container > .main > .posts-new > .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-top > .posts > .container > .main > .posts-new > .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-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 0 0 25px;
}

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos {
    padding: 0 0 0 15px;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos {
    padding: 0 0 0 20px;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px -1% 0;
  width: 100%;
  flex: auto;
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-tags {
    margin-top: 15px;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-tags > .post-tag {
  margin: 5px 1% 0;
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .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-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos > .post-ttl {
  margin-top: 5px;
}

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos > .post-ttl {
    line-height: 1.4em;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos > .post-ttl {
    margin-top: 5px;
    line-height: 1.8em;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
  font-size: 16px;
  line-height: 1.6em;
  word-break: break-all;
}

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
    font-size: 14px;
    line-height: 1.2em;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
    font-size: 16px;
    line-height: 1.6em;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post > .post-cont > .post-infos > .post-date {
  margin-top: 5px;
  font-size: 12px;
  line-height: 180%;
  color: var(--color-font-green2);
}

/* 最初の記事 */
.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 0;
  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;
  padding: 0;
  flex-wrap: nowrap;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont {
    display: block;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-thumb {
  display: block;
  width: 50%;
  min-width: 200px;
  max-width: 350px;
  height: auto;
  min-height: 250px;
  border-radius: 0;
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-thumb {
    width: 100%;
    max-width: none;
    height: 195px;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 40px;
}

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos {
    padding: 20px 20px 20px 15px;
  }
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos {
    padding: 25px;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos > .post-date-tags {
  display: block;
  margin-top: 5px;
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos > .post-date-tags .post-date {
  font-size: 12px;
  line-height: 180%;
  color: var(--color-font-green2);
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos > .post-date-tags > .post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px -1% 0;
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos > .post-date-tags > .post-tags {
    margin-top: 10px;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos > .post-date-tags > .post-tags > .post-tag {
  margin: 0 1% 4px;
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .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-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos > .post-ttl {
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos > .post-ttl {
    margin-bottom: 15px;
  }
}

.page-top > .posts > .container > .main > .posts-new > .posts > .post:first-child > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
  font-size: 20px;
  line-height: 160%;
}

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

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

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

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-popular {

  }
}

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

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

.page-top > .posts > .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-top > .posts > .container > .main > .posts-popular > .posts {
    display: block;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    margin-top: -15px;
  }
}

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

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

.page-top > .posts > .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-top > .posts > .container > .main > .posts-popular > .posts > .post > .post-cont {
/*    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 157px;*/
  }
}

.page-top > .posts > .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-top > .posts > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-thumb {
    height: 195px;
  }
}

.page-top > .posts > .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: 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-top > .posts > .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-top > .posts > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos {
  position: relative;
  padding: 30px 40px;
}

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

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos {
    padding: 20px 15px;
  }
}

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

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

.page-top > .posts > .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-top > .posts > .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: 10px -1% 0;
}

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

.page-top > .posts > .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-top > .posts > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-ttl {
  margin-bottom: 10px;
}

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

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

.page-top > .posts > .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-top > .posts > .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-top > .posts > .container > .main > .posts-popular > .posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
    font-size: 16px;
  }
}

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

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

.page-top > .posts > .container > .main > .ad-banner {
  margin-bottom: 40px;
  text-align: center;
}
.page-top > .posts > .container > .main > .ad-banner.first {
  margin-top: 60px;
}
.page-top > .posts > .container > .main > .ad-banner.last {
  margin-bottom: 100px;
}

@media screen and (max-width: 896px) {
  .page-top > .posts > .container > .main > .ad-banner {
    margin-bottom: 20px;
  }
  .page-top > .posts > .container > .main > .ad-banner.last {
    margin-bottom: 45px;
  }
}

.page-top > .posts > .container > .main > .ad-banner > .banner-link > .banner-img,
.page-top > .posts > .container > .main > .ad-banner > .banner-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline;
}

