@charset "UTF-8";
/* ========== variables ========== */
/* ========== /variables ========== */
ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

/* ========== Twitter Button ========== */
.sns__twitter {
  position: absolute;
  top: 10px;
  left: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: #209bf1;
}

.bi-twitter {
  width: 20px;
  height: 20px;
  color: white;
}

.app-navbar-nav {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .sns__twitter {
    top: 0;
  }
}
/* ========== /Twitter Button ========== */
/* ========== slick-nav ========== */
.slick-nav-container {
  display: none;
}

@media (min-width: 992px) {
  .slick-nav-container {
    display: block;
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }
}
.slick-nav {
  padding: 0;
  border-width: 1px 1px 1px 0px;
  border-style: solid;
  border-color: #fad299;
}

.slick-nav .slick-prev {
  left: -24px;
  /* background-color: red; */
}

.slick-nav .slick-next {
  right: -24px;
  /* background-color: red; */
}

.slick-nav .slick-prev:before,
.slick-nav .slick-next:before {
  color: #645a5c;
  font-size: 16px;
}

.slick-nav .slick-prev:before {
  content: "＜";
}

.slick-nav .slick-next:before {
  content: "＞";
}

.slick-nav .slick-slide {
  border-width: 0 0px 0 1px;
  border-style: solid;
  border-color: #fad299;
}

.slick-nav .slick-slide a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #645a5c;
  font-weight: bold;
  font-size: 16px;
}

/* ========== /slick-nav ========== */
/* ========== card-post ========== */
.new-cards a:hover,
.category-cards a:hover {
  text-decoration: none;
}

.category-cards .card-post {
  display: block;
}
@media (min-width: 992px) {
  .category-cards .card-post {
    display: flex;
  }
}

.category-cards__hgroup__container {
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 12px 12px;
  background-color: #c7e5cf;
  color: #645a5c;
}
@media (min-width: 768px) {
  .category-cards__hgroup__container {
    display: flex;
  }
}

.category-cards__hgroup__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  color: #645a5c;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  font-size: 14px;
  line-height: 1;

  -webkit-line-clamp: 1;
  /* 制限したい行数が3の場合 */
}
@media (min-width: 768px) {
  .category-cards__hgroup__title {
    text-align: left;
    font-size: 16px;
  }
}
.category-cards__hgroup__more {
  margin-top: 6px;
  text-align: right;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 768px) {
  .category-cards__hgroup__more {
    margin-top: 0;
  }
}
.card-post {
  display: flex;
  align-items: stretch;
  margin-top: 12px;
  border: 1px solid #b4b4b4;
}
.card-post a {
  color: #645a5c;
}
.card-post a:hover,
.card-post a:active {
  color: #0645ad;
  text-decoration: underline;
}
.card-post .card-post__thumbnail img {
  width: 120px;
  height: 120px;

  object-fit: cover;
}
.card-post .card-post__text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  font-size: 16px;
}
.card-post .card-post__text-date {
  color: #645a5c;
  text-align: right;
  font-size: 12px;
}
.card-post .card-post__text-category {
  color: #645a5c;
  text-align: right;
  font-size: 12px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .card-post .card-post__text-category {
    font-size: 10px;
  }
}
.card-post .card-post__text-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  min-height: 63px;
  color: #645a5c;
  font-weight: bold;
  font-size: 14px;

  -webkit-line-clamp: 3;
  /* 制限したい行数が3の場合 */
}
@media (min-width: 992px) {
  .card-post .card-post__text-title {
    min-height: auto;
  }
}
.card-post .post-categories {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  -webkit-line-clamp: 1;
}
.card-post .post-categories li {
  display: inline;
}
.card-post .post-categories li::after {
  content: ",";
}
.card-post .post-categories li:last-child::after {
  content: "";
}
.card-post.card-post--aside .card-post__thumbnail img {
  width: 120px;
  height: 120px;
}
.card-post.card-post--aside .card-post__text-title {
  min-height: auto;

  -webkit-line-clamp: 3;
  /* 制限したい行数が3の場合 */
}
/* ========== /card-post ========== */
/* ========== button--archives-all ========== */
.c-button--archives-all {
  display: block;
  margin: 48px auto 0;
  margin-top: 48px;
  padding: 0.5rem 1.5rem;
  width: 290px;
  border-radius: 3px;
  background: lightcoral;
  color: white;
  text-align: center;
}
.c-button--archives-all:hover,
.c-button--archives-all:visited {
  color: white;
}

/* ========== /button--archives-all ========== */
/* ========== app-aside ========== */
.app-aside {
  margin-top: 2rem;
}
.app-aside .app-aside__box--tag {
  margin-top: 24px;
}
.app-aside .app-aside__box--tag .app-aside__box-body {
  padding: 12px;
}
.app-aside .app-aside__box--tag a {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
  padding: 12px;
  border-width: 2px;
  border-style: solid;
  border-color: #d78a1e;
  border-radius: 9999px;
  color: #d78a1e;
  font-weight: bold;
  line-height: 1;
}
.app-aside .app-aside__box--tag a:visited,
.app-aside .app-aside__box--tag a:hover {
  color: #d78a1e;
  opacity: 0.8;
}
.app-aside .app-aside__box--pickup .card-post__text-date,
.app-aside .app-aside__box--pickup .card-post__text-category {
  font-size: 10px;
}
.app-aside .app-aside__box--ranking {
  margin-top: 24px;
  /** 人気記事のアイキャッチ内に順位番号を表示 */
  counter-reset: rank_number;
}
.app-aside .app-aside__box--ranking .card-post__text-date,
.app-aside .app-aside__box--ranking .card-post__text-category {
  font-size: 10px;
}
.app-aside .app-aside__box--ranking .wpp-thumbnail {
  margin-right: 0;
}
.app-aside .app-aside__box--ranking .wpp_thumb_wrapper {
  position: relative;
}
.app-aside .app-aside__box--ranking .wpp_thumb_wrapper:after {
  position: absolute;
  top: 3px;
  left: 3px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  background: rgba(50, 50, 50, 0.8);
  background-color: rgb(239, 68, 68);
  color: white;
  content: counter(rank_number);
  counter-increment: rank_number;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
}
.app-aside .app-aside__box--ranking .app-aside__box-header {
  background-image: url(../images/icon-crouwn.png),
    url(../images/icon-crouwn.png);
  background-position: left 10px center, right 10px center;
  background-size: 36px;
  background-repeat: no-repeat, no-repeat;
}
@media (min-width: 1200px) {
  .app-aside .app-aside__box--ranking .app-aside__box-header {
    background-position: left 30px center, right 30px center;
    background-size: 45px;
  }
}
.app-aside .app-aside__box--category {
  margin-top: 3rem;
}
.app-aside .app-aside__box--category a {
  display: block;
  padding: 12px;
  border-bottom: 1px solid #b4b4b4;
  color: #645a5c;
  font-weight: bold;
  line-height: 1;
}
.app-aside .app-aside__box--category a:last-child {
  border: 0;
}
.app-aside .app-aside__box--category a:hover,
.app-aside .app-aside__box--category a:visited {
  color: #645a5c;
  text-decoration: underline;
}
.app-aside .app-aside__box-header {
  padding: 12px;
  background-color: #fad299;
  color: #645a5c;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 992px) {
  .app-aside .app-aside__box-header {
    font-size: 18px;
  }
}
.app-aside .app-aside__box-body {
  border: 1px solid #b4b4b4;
}

@media (min-width: 992px) {
  .app-aside {
    margin-top: 0;
  }
}
.app-aside a {
  text-decoration: none;
}

.app-aside h2 {
  margin-bottom: 0;
}

.app-aside p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.app-aside-bnr {
  margin-top: 24px;
  padding: 12px;
}

.app-aside-bnr img {
  max-width: 200px;
}

.app-aside-bnr h2 {
  margin-bottom: 1rem;
  padding-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 0;
  border-bottom: 1px solid #b4b4b4;
  font-weight: bold;
  font-size: 0.875rem;
}

/* ========== /app-aside ========== */
/* ========== c-searchform ========== */
.c-searchform {
  position: relative;
  display: table;
  margin-right: auto;
  margin-left: auto;
}

.searchform button[type="submit"] {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0;
  width: 16px;
  height: 16px;
  border: none;
  background: none;
  color: #bbb;

  appearance: none;
}
.searchform button[type="submit"] svg {
  vertical-align: top;
}

.inp-hom {
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px 0 16px;
  width: 290px;
  height: 28px;
  border: 1px solid #bbb;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 3px;
  font-size: 14px;

  appearance: none;
}
.inp-hom:focus {
  outline: none;
}

.input-search {
  display: none;
}

@media (min-width: 992px) {
  .input-search {
    display: block;
  }
}
.button-search-sp {
  /* padding: 4px 12px; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #645a5c;
  border-radius: 3px;
}
.button-search-sp svg {
  width: 18px;
  height: 18px;
  color: #645a5c;
}

@media (min-width: 992px) {
  .button-search-sp {
    display: none;
  }
}
/* ========== /c-searchform ========== */
/* ========== app-share ========== */
.app-share {
  display: flex;
  display: none;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .app-share {
    display: flex;
  }
}

.app-share li + li {
  margin-top: 0;
  margin-left: 0.4rem;
}

.app-share .app-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: 0.2s;
}

.app-share .app-icon:hover {
  transform: scale(1.15, 1.15);
}

.app-icon-twitter {
  background: #00acee;
}

.app-icon-twitter :hover {
  background: #00acee;
}

.app-icon-instagram:hover {
  background: #833ab4;
}

.app-icon-line .cls-2 {
  fill: #fff;
}

.app-icon-line .cls-1 {
  fill: #b2b2b2;
}

.app-icon-line:hover .cls-1 {
  fill: #4cc764;
}

.app-icon-facebook:hover {
  background: #1877f2;
}

.app-icon-facebook img {
  width: 16px;
  height: 16px;
}

.app-share--twitter {
  font-weight: bold;
}

.app-share--twitter__catch {
  margin-bottom: 0;
  color: #00acee;
  text-align: center;
}

.app-share .app-share--twitter__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 40px;
  border-radius: 3px;
  background-color: #00acee;
  color: white;
  font-size: 12px;
}

.app-share .app-share--twitter__button img {
  width: 20px;
}

.app-share .app-share--twitter__button p {
  margin-bottom: 0;
  margin-left: 6px;
  line-height: 1.35;
}

/* ========== /app-share ========== */
/* ========== p-musthead ========== */
.nav-category {
  display: none;
}
.p-masthead__col-r {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.p-masthead__col-r .input-search {
  margin-right: 12px;
}

/* ========== /p-musthead ========== */
/* ========== p-categories ========== */
.p-categories .col-6:nth-child(odd) .category-cards {
  margin-right: -7.5px;
}
@media (min-width: 576px) {
  .p-categories .col-6:nth-child(odd) .category-cards {
    margin-right: 0;
  }
}
.p-categories .col-6:nth-child(even) .category-cards {
  margin-left: -7.5px;
}
@media (min-width: 576px) {
  .p-categories .col-6:nth-child(even) .category-cards {
    margin-left: 0;
  }
}
.p-categories .card-post__thumbnail img {
  width: 100%;
  height: 32vw;

  object-fit: cover;
}
@media (min-width: 992px) {
  .p-categories .card-post__thumbnail img {
    width: 120px;
    height: 120px;

    object-fit: cover;
  }
}

/* ========== /p-categories ========== */
/* ========== app-aside__box--ranking ========== */
.app-aside__box--ranking .wpp-list {
  display: flex;
  flex-wrap: wrap;
}
.app-aside__box--ranking .wpp-list li {
  margin-bottom: 0;
}
.app-aside__box--ranking .ranking-card-container {
  width: 50%;
}
@media (min-width: 992px) {
  .app-aside__box--ranking .ranking-card-container {
    width: 100%;
  }
}
.app-aside__box--ranking .ranking-card-container:nth-child(1),
.app-aside__box--ranking .ranking-card-container:nth-child(6) {
  width: 100%;
}
.app-aside__box--ranking .ranking-card-container:nth-child(2),
.app-aside__box--ranking .ranking-card-container:nth-child(4),
.app-aside__box--ranking .ranking-card-container:nth-child(7),
.app-aside__box--ranking .ranking-card-container:nth-child(9) {
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .app-aside__box--ranking .ranking-card-container:nth-child(2),
  .app-aside__box--ranking .ranking-card-container:nth-child(4),
  .app-aside__box--ranking .ranking-card-container:nth-child(7),
  .app-aside__box--ranking .ranking-card-container:nth-child(9) {
    padding-right: 0;
  }
}
.app-aside__box--ranking .ranking-card-container:nth-child(3),
.app-aside__box--ranking .ranking-card-container:nth-child(5),
.app-aside__box--ranking .ranking-card-container:nth-child(8),
.app-aside__box--ranking .ranking-card-container:nth-child(10) {
  padding-left: 7.5px;
}
@media (min-width: 992px) {
  .app-aside__box--ranking .ranking-card-container:nth-child(3),
  .app-aside__box--ranking .ranking-card-container:nth-child(5),
  .app-aside__box--ranking .ranking-card-container:nth-child(8),
  .app-aside__box--ranking .ranking-card-container:nth-child(10) {
    padding-left: 0;
  }
}
.app-aside__box--ranking .card-post.card-post--aside {
  display: block;
}
@media (min-width: 992px) {
  .app-aside__box--ranking .card-post.card-post--aside {
    display: flex;
  }
}
.app-aside__box--ranking .card-post.card-post--aside .card-post__text-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  min-height: auto;

  -webkit-line-clamp: 3;
}
.app-aside__box--ranking .card-post.card-post--aside .card-post__thumbnail img {
  width: 100%;
  height: 32vw;

  object-fit: cover;
}
@media (min-width: 992px) {
  .app-aside__box--ranking
    .card-post.card-post--aside
    .card-post__thumbnail
    img {
    width: 120px;
    height: 120px;

    object-fit: cover;
  }
}

.card-post__text-category {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  -webkit-line-clamp: 1;
}

/* ========== /app-aside__box--ranking ========== */
.addtoany_share_save_container {
  display: table;
  margin-right: auto;
  margin-left: 0;
  text-align: center;
}

.addtoany_share_save_container__catch {
  color: #645a5c;
  font-weight: bold;
}

/* ========== .info-media ========== */
.info-media {
  padding: 12px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: #b9b9b9;
  font-size: 13px;
}
@media (min-width: 576px) {
  .info-media {
    padding: 12px 32px;
    font-size: 16px;
  }
}
.info-media .widgettitle {
  font-weight: bold;
  font-size: 18px;
}
.info-media span {
  margin-right: 6px;
  padding: 3px;
  border-radius: 3px;
  background-color: #f70f3a;
  color: white;
  font-size: 11px;
}
@media (min-width: 576px) {
  .info-media span {
    font-size: 15px;
  }
}
.info-media .custom-html-widget li {
  margin-top: 6px;
}

/* ========== /.info-media ========== */
.ad-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
}