@charset "UTF-8";
#main {
  overflow: visible;
}

/* ▼▼▼ 導入事例 一覧
======================================================*/
.ttl_wrap {
  margin-top: 32px;
}
@media screen and (min-width: 768px), print {
  .ttl_wrap {
    margin-top: 60px;
  }
}

.column_wrap {
  margin-top: 32px;
}
@media screen and (min-width: 768px), print {
  .column_wrap {
    margin-top: 60px;
  }
}

.category_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}
.category_search_text {
  position: relative;
  font-weight: 500;
  font-size: var(--Heading-H5);
  padding-left: 32px;
}
.category_search_text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url(../img/icon_list.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.category_search .search_reset {
  cursor: pointer;
}
.category_search .search_reset:hover {
  text-decoration: underline;
}

.tab_list {
  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;
  gap: 4px;
  width: 100%;
  margin: 0 auto 4px;
}
@media screen and (min-width: 768px), print {
  .tab_list {
    max-width: 1256px;
  }
}

.tab {
  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;
  gap: 4px;
  padding: 16px 10px;
  width: 50%;
  cursor: pointer;
  border-radius: 20px 20px 0px 0px;
  background: var(--Background-Quaternary);
  font-weight: 500;
  font-size: var(--Heading-H6);
  text-align: center;
  color: var(--Object-Disabled);
}
@media screen and (min-width: 768px), print {
  .tab {
    padding: 24px 32px;
    height: 77px;
  }
}
.tab.active {
  color: var(--Object-Primary);
  background: var(--Background-Secondary);
}
.tab a {
  display: block;
  width: 100%;
  height: 100%;
}

.tag_wrap {
  padding: 16px;
  background: var(--Background-Secondary);
  margin-bottom: 32px;
}
@media screen and (min-width: 768px), print {
  .tag_wrap {
    padding: 32px;
    max-width: 1256px;
    border-radius: 0px 0px 20px 20px;
    margin: 0 auto 60px;
  }
}
.tag_wrap_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.tag_wrap_inner.tag_all {
  padding-bottom: 8px;
}
.tag_wrap_inner.tag_second {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--Line-Primary);
}
@media screen and (min-width: 768px), print {
  .tag_wrap_inner.tag_second {
    padding-bottom: 24px;
  }
}
.tag_wrap_inner.tag_third {
  padding-top: 16px;
}
@media screen and (min-width: 768px), print {
  .tag_wrap_inner.tag_third {
    padding-top: 24px;
  }
}
.tag_wrap .category_tag {
  padding: 1px 12px 4px;
  border-radius: 100vmax;
  font-weight: 500;
  font-size: var(--Label-X-Small);
  text-align: center;
  background: var(--Background-Tertiary);
  color: var(--Object-Secondary);
}
.tag_wrap .category_tag_primary {
  background: var(--Brand-color-Primary);
  color: var(--Object-Primary-Reverse);
}

.case_section {
  border-radius: 24px;
  background: var(--Object-Primary-Reverse);
  max-width: 1256px;
  margin: 0 auto;
  padding: 32px 0;
}
@media screen and (min-width: 768px), print {
  .case_section {
    padding: 60px 44px;
  }
}

.case_main_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px), print {
  .case_main_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px), print {
  .case_main_list .case_item {
    width: calc(50% - 16px);
  }
}

.case_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 768px), print {
  .case_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}
@media screen and (min-width: 768px), print {
  .case_list .case_item {
    width: calc(33.3333333333% - 16px);
  }
}

.case_item:hover {
  opacity: 0.7;
}
.case_item_image {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--Line-Tertiary);
  margin-bottom: 16px;
}
@media screen and (min-width: 768px), print {
  .case_item_image {
    margin-bottom: 24px;
  }
}
.case_item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.case_item_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.case_item_category {
  padding-left: 32px;
  position: relative;
}
.case_item_category.facility::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_facility.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.case_item_category_text {
  font-weight: 500;
  font-size: var(--Label-X-Small);
  color: var(--Object-Secondary);
}
.case_item_title {
  font-weight: 500;
  font-size: var(--Heading-H4);
  color: var(--Object-Primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case_item_facility_name {
  font-size: var(--List-Medium);
}
.case_item_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.case_item_tag {
  padding: 1px 12px 4px;
  background: var(--Background-Tertiary);
  border-radius: 100vmax;
  font-weight: 500;
  font-size: var(--Label-X-Small);
  color: var(--Object-Secondary);
}

.pagination_wrap {
  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: 100%;
  margin-top: 32px;
  padding: 0 16px;
}
@media screen and (min-width: 768px), print {
  .pagination_wrap {
    margin-top: 48px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 8px 16px;
  background-color: var(--Object-Primary-Reverse);
  border-radius: 100vmax;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .pagination {
    padding: 8px 65px;
    width: auto;
  }
}

@media screen and (min-width: 768px), print {
  .page-item:not(.page-item-prev):not(.page-item-next) {
    margin: 0 8px;
  }
}
.page-item:not(.page-item-prev):not(.page-item-next):first-of-type {
  margin-left: 0;
}
.page-item:not(.page-item-prev):not(.page-item-next):last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 768px), print {
  .page-item.page-item-prev {
    margin-right: 32px;
  }
}
@media screen and (min-width: 768px), print {
  .page-item.page-item-next {
    margin-left: 32px;
  }
}
.page-item.page-item-prev .page-link, .page-item.page-item-next .page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
}
.page-item[aria-disabled=true] .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: var(--Heading-H5);
  line-height: 1em;
  color: var(--Line-Icon-Primary);
  text-decoration: none;
  min-width: 36px;
  height: 36px;
  padding: 0;
}
.page-link:hover {
  opacity: 0.7;
}
.page-link-text {
  font-weight: 500;
  font-size: var(--Heading-H6);
  color: var(--Line-Icon-Primary);
  display: none;
}
@media screen and (min-width: 768px), print {
  .page-link-text {
    display: inline-block;
  }
}
.page-link-ellipsis {
  color: var(--Object-Secondary);
  cursor: default;
}
.page-link-ellipsis:hover {
  opacity: 1;
}

.page-item-prev .page-link,
.page-item-next .page-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
}
.page-item-prev .page-link::after,
.page-item-next .page-link::after {
  position: absolute;
  top: 50%;
  left: -16px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_chevron_bl.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  .page-item-prev .page-link::after,
  .page-item-next .page-link::after {
    left: -32px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.page-item-prev .page-link::before,
.page-item-next .page-link::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: -32px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 48px;
  height: 24px;
  border-radius: 100vmax;
  border: 1px solid var(--Brand-color-Primary);
  background: #FFF;
}
@media screen and (min-width: 768px), print {
  .page-item-prev .page-link::before,
  .page-item-next .page-link::before {
    left: -58px;
  }
}

.page-item-next .page-link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-item-next .page-link::after {
  left: auto;
  right: -16px;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  rotate: 180deg;
}
@media screen and (min-width: 768px), print {
  .page-item-next .page-link::after {
    right: -42px;
  }
}
.page-item-next .page-link::before {
  left: auto;
  right: -32px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px), print {
  .page-item-next .page-link::before {
    right: -58px;
  }
}

.page-item.active .page-link {
  width: 36px;
  height: 36px;
  background-color: var(--Brand-color-Primary);
  border-radius: 100vmax;
  color: var(--Object-Primary-Reverse);
  cursor: default;
}
.page-item.active .page-link:hover {
  opacity: 1;
}