/**
 * SuperGradient
 * SASS MULTI-COLOR GRADIENT MIXIN (LINEAR & RADIAL)
 * Options
 * $type: linear*, radial
 * $from: top*, left, top left, top right, bottom right, bottom left, center (radial)
 * $colors: hex, rgba
 * *default
 *
 * Include: bower install super-gradient
 *
 * Demo: http://super-gradient.ib.gs/
 */
.case-layout {
  margin: 60px 0 160px;
  padding: 0 24px;
}
@media (min-width: 992px) {
  .case-layout {
    margin: 124px 0 240px;
  }
}
.case-layout.is-detail {
  margin: 60px 0 160px;
}
@media (min-width: 992px) {
  .case-layout.is-detail {
    margin: 80px 0 240px;
  }
}
.case-layout__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.case-search {
  margin: 0 0 140px;
}
@media (min-width: 992px) {
  .case-search {
    margin: 0 0 120px;
  }
}
.case-search__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.case-search__title {
  margin: 0 0 24px;
  font-size: 18px;
  color: #0080CC;
  text-align: center;
}
@media (min-width: 992px) {
  .case-search__title {
    font-size: 22px;
  }
}
.case-search__form {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .case-search__form {
    padding: 56px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 128, 204, 0.12);
  }
}
.case-search__form .input-heading {
  margin: 0 0 14px;
  font-size: 16px;
}
.case-search__form .input-area {
  margin: 0 0 40px;
}
.case-search__form .input-category {
  margin: 0 0 50px;
}
.case-search__form .input-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 992px) {
  .case-search__form .input-checkbox {
    gap: 25px 40px;
  }
}
.case-search__form .input-checkbox .input-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-search__form .input-checkbox .input-checkbox-item input {
  font-size: 100%;
}
@media (max-width: 991px) {
  .case-search__form .input-checkbox .input-checkbox-item input {
    display: none;
  }
  .case-search__form .input-checkbox .input-checkbox-item input:checked + label {
    font-weight: bold;
    color: #fff;
    background-color: #0080CC;
  }
}
.case-search__form .input-checkbox .input-checkbox-item label {
  cursor: pointer;
  font-size: 15px;
}
@media (max-width: 991px) {
  .case-search__form .input-checkbox .input-checkbox-item label {
    padding: 8px 12px;
    font-size: 12px;
    background-color: #F6F6F6;
    border-radius: 6px;
  }
}
@media (min-width: 992px) {
  .case-search__form .input-checkbox .input-checkbox-item label:hover {
    background-color: #f0f0f0;
  }
}
.case-search__form .input-submit {
  display: flex;
  justify-content: center;
}
.case-search__form .input-submit button {
  width: 128px;
  padding: 16px 32px;
  font-size: 12px;
  color: #fff;
  background-color: #0080CC;
  border: 0;
  transition: 235ms ease;
}
.case-search__form .input-submit button:hover {
  opacity: 0.8;
}

.case-archive {
  margin: 100px 0 0;
}
@media (min-width: 992px) {
  .case-archive {
    margin: 120px 0 0;
  }
}
.case-archive__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.case-archive__inner .pager {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .case-archive__inner .pager {
    margin-top: 80px;
  }
}
.case-archive .text-center {
  margin: 2em 0;
  text-align: center;
}
.case-archive__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .case-archive__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.case-archive__list li {
  position: relative;
}
@media (min-width: 992px) {
  .case-archive__list li {
    width: calc(50% - 20px);
  }
}
.case-archive__list a {
  position: relative;
  display: block;
  color: currentColor;
  text-decoration: none;
  transition: 235ms ease;
}
.case-archive__list a:hover .thumbnail img {
  transform: scale(1.05);
}
.case-archive__list .thumbnail {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-image: url(../img/common/logo.png);
  background-size: 70% auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #E0E0E0;
}
.case-archive__list .thumbnail .thumbnail-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 128, 204, 0.3);
}
.case-archive__list .thumbnail .thumbnail-cover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 144px;
  background: linear-gradient(0deg, #0080cc 0%, rgba(0, 128, 204, 0) 100%);
}
.case-archive__list .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1500ms ease;
}
.case-archive__list .content .title {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  width: 100%;
  z-index: 2;
  padding: 16px 12px;
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  color: #fff;
}
.case-archive__list .content .title .title-main {
  flex: 1;
  max-height: 4.8em;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-archive__list .content .title .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
.case-archive__list .content .title .arrow svg {
  width: 20px;
  height: 16px;
}
.case-archive__list .content .case-taxonomy {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  z-index: 2;
  padding: 8px;
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  color: #fff;
}
.case-archive__list .content .case-taxonomy .case-area span,
.case-archive__list .content .case-taxonomy .case-category span {
  padding: 6px 16px;
  font-size: 12px;
  color: #0080CC;
  background-color: #fff;
}

.entry .entry-category {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 24px;
}
.entry .entry-category .case-cat,
.entry .entry-category .case-area {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.entry .entry-category .case-cat a,
.entry .entry-category .case-area a {
  padding: 6px 16px;
  color: #0080CC;
  border: 1px solid #0080CC;
}
/*# sourceMappingURL=maps/page-case.css.map */