@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:指定より小さい画面に適用 */
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする
*/
: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-bg-default: #fff;
  --color-bg-green: #6eb92b;
  --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;
}

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

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

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

@media screen and (max-width: 896px) {
  .posts > .container > .main > .posts {
    padding-bottom: 104px;
  }
}

.posts > .container > .main > .posts > .ttl {
  padding-bottom: 40px;
  font-size: 42px;
  line-height: 180%;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 896px) {
  .posts > .container > .main > .posts > .ttl {
    padding-bottom: 26px;
    font-size: 32px;
  }
}

.posts > .container > .main > .posts > .posts {
  margin-bottom: 72px;
}

@media screen and (max-width: 896px) {
  .posts > .container > .main > .posts > .posts {
    margin-bottom: 78px;
  }
}

.posts > .container > .main > .posts > .posts > .post {
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.posts > .container > .main > .posts > .posts > .post:first-child {
  padding-top: 0;
}

@media screen and (max-width: 896px) {
  .posts > .container > .main > .posts > .posts > .post:first-child {
    padding-top: 0;
  }
}

.posts > .container > .main > .posts > .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: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-thumb {
  display: block;
  width: 50%;
  min-width: 200px;
  max-width: 390px;
  min-height: 291px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .posts > .container > .main > .posts > .posts > .post > .post-cont > .post-thumb {
    width: 100%;
    max-width: none;
    height: 256px;
  }
}

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

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

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 2 448px;
  flex: 0 2 448px;
  padding: 32px 20px 64px;
}

@media screen and (max-width: 640px) {
  .posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos {
    min-height: 215px;
    padding: 16px 14px 48px;
  }
}

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-date-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-date-tags > .post-date {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 2em;
  color: var(--color-font-green2);
  margin-right: 10px;
}

.posts > .container > .main > .posts > .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;
  flex: 1;
  margin: 0 -1%;
}

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-date-tags > .post-tags > .post-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1% 5px;
}

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

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-ttl {
  margin-top: 11px;
}

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

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-ttl > .post-ttl-link {
  font-size: 18px;
  line-height: 160%;
}

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

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-desc {
  margin-top: 22px;
  font-size: 14px;
  line-height: 180%;
}

@media screen and (max-width: 896px) {
  .posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-desc {
    font-size: 12px;
  }
}

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

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-more {
  position: absolute;
  left: 20px;
  bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-font-gray);
}

@media screen and (max-width: 640px) {
  .posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-more {
    left: 14px;
    bottom: 14px;
    margin-top: 24px;
  }
}

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-more > .arw {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  width: 7px;
  height: 11px;
  margin-left: 4px;
  fill: none;
  stroke: #979797;
  stroke-width: 2;
  -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;
}

.posts > .container > .main > .posts > .posts > .post > .post-cont > .post-infos > .post-more:hover > .arw {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  -webkit-transition-delay: 0.002s;
  transition-delay: 0.002s;
}

.page-category,
.page-tag {
  overflow: hidden;
}
