@charset "UTF-8";

/* page-head */
.page-head {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  margin-top: 70px;
  position: relative;
  z-index: 2;
}
.page-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /* background: rgba(0,0,0,.5); */
  background: rgba(0,96,192,.63);
  height: 100%;
  width: 100%;
}
.page-head .txt-wrap {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.page-head .txt-wrap .en {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
}
.page-head .txt-wrap .ja {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}
.page-head .breadcrumb-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #EDEDED;
  padding: .5rem 0;
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .page-head {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-head .txt-wrap .en {
    font-size: 1.4rem;
  }
  .page-head .txt-wrap .ja {
    font-size: 1.8rem;
  }
  .page-head .breadcrumb-wrap {
    padding: .5rem 0;
  }
}

/* リスト */
.ul1 > li {
  position: relative;
  padding-left: 2rem;
}
.ul1 > li::before {
  position: absolute;
  content: '・';
  top: 0;
  left: 0;
}
.ul-kome > li {
  position: relative;
  padding-left: 2rem;
}
.ul-kome > li::before {
  position: absolute;
  content: '※';
  top: 0;
  left: 0;
}
.ul-asterisk > li {
  position: relative;
  padding-left: 2rem;
}
.ul-asterisk > li::before {
  position: absolute;
  content: '＊';
  top: 0;
  left: 0;
}

.ol1 {
  counter-reset: count 0;
}
.ol1 > li {
  position: relative;
  padding-left: 2rem;
}
.ol1 > li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  position: absolute;
  top: 0;
  left: 0;
}
.ol1 > li:nth-child(n + 10) {
  padding-left: 3rem;
}

/* ページネーション 一覧 */
.pagination {
  margin-top: 8rem;
}
.page-numbers {
  background: #fff;
  border: 1px solid #005495;
  color: #005495;
  padding: 1rem 2rem;
}
.page-numbers.current {
  background: #005495;
  border: 2px solid #005495;
  color: #fff;
}
a.page-numbers:hover {
  background: #005495;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 5rem;
  }
  .page-numbers {
    padding: .5rem 1.5rem;
  }
}

/* ページネーション 詳細 */
.ul-pager li {
  display: inline-block;
}
.ul-pager li a {
  background: #fff;
  border: 1px solid #005495;
  display: block;
  padding: .5rem 1rem;
}
.ul-pager .all a {
  background: #005495;
  color: #fff;
}
.ul-pager .all a:hover {
  background: #fff;
  color: #005495;
  opacity: 1;
}
.ul-pager .next:hover a,
.ul-pager .prev:hover a {
  background: #005495;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .ul-pager li a {
    padding: .5rem 1rem;
  }
}

/* ul-menu-tab */
.ul-menu-tab {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 8rem;
}
.ul-menu-tab li a {
  border: 2px solid #005495;
  display: block;
  padding: 1rem 2rem;
  text-align: center;
}
.ul-menu-tab li:hover a,
.ul-menu-tab li.current a {
  background: #005495;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .ul-menu-tab {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .ul-menu-tab li {
    width: calc(100% / 2 - 1rem);
  }
}
@media screen and (max-width: 767px) {
  .ul-menu-tab {
    gap: 1rem;
    margin-bottom: 5rem;
  }
  .ul-menu-tab li {
    width: calc(100% / 2 - .5rem);
  }
  .ul-menu-tab li a {
    padding: .5rem 1rem;
  }
}

.ul-page-tab {
  display: flex;
  gap: 2rem;
}
.ul-page-tab li {
  width: calc(100% / 5);
}
.ul-page-tab li a {
  background: #005495;
  border: 2px solid #005495;
  color: #fff;
  display: block;
  text-align: center;
}
.ul-page-tab li.current a {
  background: #fff;
  color: #005495;
}
@media screen and (max-width: 767px) {
  .ul-page-tab {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .ul-page-tab li {
    width: calc(100% / 2 - .5rem);
  }
}

/* お知らせカテゴリータブ */
.ul-news-tab {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.ul-news-tab li {
  width: calc(100% / 5);
}
.ul-news-tab li a {
  background: #005495;
  border: 2px solid #005495;
  border-radius: 5px;
  color: #fff;
  display: block;
  text-align: center;
}
.ul-news-tab li.current a {
  background: #fff;
  color: #005495;
}
@media screen and (max-width: 767px) {
  .ul-news-tab {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .ul-news-tab li {
    width: calc(100% / 2 - .5rem);
  }
}

/* 事例紹介 */
.ul-case-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem 2rem;
}
.ul-case-archive > li {
  width: calc(100% / 2 - 1rem);
}
.ul-case-archive > li a {
  display: flex;
  gap: 2rem;
}
.ul-case-archive > li a.link-none {
  cursor: initial;
  pointer-events: none;
}
.ul-case-archive .img-wrap {
  /* aspect-ratio: 1/2;
  height: 300px; */
  width: 200px;
}
.ul-case-archive .img-wrap img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.ul-case-archive .ele-wrap {
  width: calc(100% - 200px);
}
.dl-case-detail dt,
.dl-case-detail dd {
  padding: .5rem 1rem;
}
.dl-case-detail dt {
  background: #f5f5f5;
}
@media screen and (max-width: 820px) {
  .ul-case-archive > li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .ul-case-archive > li a {
    flex-wrap: wrap;
  }
  .ul-case-archive {
    gap: 4rem 2rem;
  }
  .ul-case-archive .img-wrap {
    margin: 0 auto;
  }
  .ul-case-archive .ele-wrap {
    width: 100%;
  }
}

/* project-catch-sec */

.tbl-project th,
.tbl-project td {
  padding: 1rem;
}
.tbl-project {
  width: 100%;
  border: 1px solid #005495;
  border-collapse: collapse;
}
.tbl-project thead th {
  background: #005495;
  color: #fff;
}
.tbl-project thead th:not(:last-child) {
  border-right: 1px solid #fff;
}
.tbl-project tbody td {
  border: 1px solid #005495;
}
@media screen and (max-width: 767px) {
  .tbl-project {
    width: 800px;
  }
}

/* 採用ページ使用 */
.dl-recruit {
  display: flex;
  flex-wrap: wrap;
}
.dl-recruit dt,
.dl-recruit dd {
  padding: 1rem;
  background-image: linear-gradient(to right, #ccc, #ccc 2px, transparent 2px, transparent 0);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.dl-recruit dt {
  width: 150px;
}
.dl-recruit dd {
  width: calc(100% - 150px);
}
@media screen and (max-width: 767px) {
  .dl-recruit dt {
    background: none;
    padding: 0;
    width: 100%;
  }
  .dl-recruit dd {
    padding: 0 1rem .5rem;
    width: 100%;
  }
  .dl-recruit dd:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
