body {
  overflow-x: hidden;
}
.kv {
  font-size: 0;
  margin: 0 0 48px;
}
.kv img {
  width: 100%;
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .kv {
    margin: 0 -24px 24px;
  }
  .kv img {
    border-radius: 0;
  }
}

.latest-post {
  margin: 0 0 52px;
}
.common-post {
  margin: 0 0 52px;
}
.post-head {
  display: flex;
  align-items: flex-end;
  margin: 0 0 12px;
}
.post-ttl {
  font-size: 24px;
  font-weight: 700;
  margin: 0 16px 0 0;
}
.post-head > a {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #a8adac;
}
.post-description {
  font-size: 12px;
  color: #a8adac;
  line-height: 1.4;
  margin: 0 0 20px;
}
.latest-post-item .common-post-keep-btn {
  background-image: url(/upload/static/bookmark_animation_fix03.png);
}

@media screen and (min-width: 768px) {
  .post-head > a:hover {
    color: #282828;
  }
}

@media screen and (max-width: 767px) {
  .latest-post {
    margin: 0 0 32px;
  }
  .common-post {
    margin: 0 0 32px;
  }
  .post-head {
    margin: 0 0 8px;
  }
  .post-description {
    margin: 0 0 16px;
  }
  .post-ttl {
    font-size: 20px;
    margin-right: 8px;
  }
}

.latest-post-li {
  margin-right: -20px;
}
.latest-post-li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  left: -100vw;
  bottom: 0;
  display: block;
  background: #fff;
  z-index: 5;
}
.latest-post-li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  left: calc(100% - 20px);
  bottom: 0;
  display: block;
  background: #fff;
  z-index: 5;
}
.latest-post-li .slick-list {
  overflow: inherit;
}
.latest-post-item {
  position: relative;
  border-radius: 6px;
}
.latest-post-li .slick-slide {
  margin: 0 20px 0 0;
}
.latest-post-li .slick-track {
  margin-left: 0;
}
.latest-post-item a {
  position: relative;
  display: block;
  z-index: 5;
}
.latest-post-item a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 6px;
  background: #ccc;
  opacity: 0.5;
  z-index: 1;
}
.latest-post-item a > img {
  width: 100%;
  border-radius: 6px;
}
.latest-post-detail {
  position: absolute;
  right: 12px;
  bottom: 16px;
  left: 12px;
  z-index: 5;
}
.latest-post-detail-wrap {
  margin-right: 48px;
}
.latest-post-detail-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 4px;
}
.latest-post-detail-ttl span {
  background: linear-gradient(#fff, #fff) 0 100%/0 1px no-repeat;
  transition: background 0.3s;
}
.latest-post-detail-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 8px;
}
.latest-post-detail-setting {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 12px;
}
.latest-post-detail-date {
  font-family: "Open Sans";
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
}
.latest-post-detail-category {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.latest-post-detail-category span {
  font-size: 10px;
  color: #a8adac;
  line-height: 1.4;
  border-radius: 9999px;
  background: #e6e6e6;
  padding: 2px 6px;
}
.latest-post-item .common-post-keep-btn {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 6;
  cursor: pointer;
}
.latest-post .slick-prev {
  left: -16px;
  width: 32px;
  height: 32px;
  border: 1px solid #282828;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
}
.latest-post .slick-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #282828;
  border-left: 2px solid #282828;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 2px;
}
.latest-post .slick-next {
  right: 4px;
  width: 32px;
  height: 32px;
  border: 1px solid #282828;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
}
.latest-post .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -2px;
}
.latest-post .slick-disabled {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .latest-post-item a:hover > img {
    opacity: 0.7;
  }
  .latest-post-item .common-post-favorite-btn:hover::after {
    transform: translate(-50%, -80%);
  }
  .latest-post-item .common-post-keep-btn:hover::after {
    left: -10px;
  }
  .latest-post-item a:hover .latest-post-detail-ttl span {
    background-size: 100% 1px;
  }
}

.common-post-li {
  margin-right: -20px;
}
.common-post-li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  left: -100vw;
  bottom: 0;
  display: block;
  background: #fff;
  z-index: 5;
}
.common-post-li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  left: calc(100% - 16px);
  bottom: 0;
  display: block;
  background: #fff;
  z-index: 5;
}
.common-post-li .slick-list {
  overflow: inherit;
}
.common-post-li .slick-slide {
  margin: 0 20px 0 0;
}
.common-post-li .slick-track {
  margin-left: 0;
}
.common-post .slick-prev {
  left: -16px;
  width: 32px;
  height: 32px;
  border: 1px solid #282828;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
}
.common-post .slick-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #282828;
  border-left: 2px solid #282828;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 2px;
}
.common-post .slick-next {
  right: 4px;
  width: 32px;
  height: 32px;
  border: 1px solid #282828;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
}
.common-post .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -2px;
}
.common-post .slick-disabled {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .common-post-item .common-post-favorite-btn:hover::after {
    transform: translate(-50%, -80%);
  }
  .common-post-item .common-post-keep-btn:hover::after {
    left: -10px;
    transform: translate(-50%, -80%);
  }
}

/* popup */
.remodal {
  max-width: 426px;
  border-radius: 12px;
  background: #fff;
  padding: 0;
  margin: 0;
}
.remodal-cancel {
  position: absolute;
  top: 24px;
  right: 24px;
  display: block;
  min-width: inherit;
  width: 24px;
  height: 24px;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: url(/upload/static/close.png);
  background-size: 24px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.remodal-cancel:hover {
  background-color: transparent;
  background-image: url(/upload/static/close.png);
  background-size: 24px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.remodal-ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 24px 48px;
}
.remodal-main {
  border-top: 1px solid #d9d9d9;
  padding: 24px;
}
.remodal-main-icon {
  text-align: center;
  margin: 0 0 12px;
}
.remodal-main-icon img {
  border-radius: 50%;
}
.remodal-main-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 24px;
}
.remodal-main-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 16px;
  margin: 0 0 16px;
}
.remodal-cancel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #282828;
  border-radius: 4px;
  background: #fff;
  padding: 8px 16px;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .remodal-cancel-btn:hover {
    background: #f0f0f0;
  }
}


/* Top page
*/
.common-post-category span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.common-post-category {
  width: 100%;
}
.common-post-detail .post-list-editor {
  display: flex;
  flex-wrap: wrap;
}
.common-post-editor {
  padding: 0 5px 0 0;
}