@charset "UTF-8";

/* page-head */
.page-head {
  background-image: url(../../images/page/common/page-head.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  margin-top: 90px;
  position: relative;
}
.page-head.news {
  background-image: url(../../images/page/news/page-head-news.webp);
}
.page-head.news {
  background-image: url(../../images/page/news/page-head-news.webp);
}
.page-company .page-head {
  background-position: center -5.5vw;
}
.page-head::before {
  background: rgba(0,0,0,.5);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.page-head .txt-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
}
.page-head .txt-wrap .ja {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: .5rem;
}
.page-head .txt-wrap .en {
  font-size: 1.4rem;
  position: relative;
  text-transform: uppercase;
}
.page-head .txt-wrap .en::before {
  background: #60AC88;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 20px;
}
.breadcrumb-wrap {
  margin-top: -4rem;
  position: relative;
}
@media screen and (max-width: 1180px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 820px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 767px) {
  .page-head {
    height: 220px;
    margin-top: 86px;
  }
  .page-company .page-head {
    background-position: center;
  }
  .page-head .txt-wrap .ja {
    font-size: 2.3rem;
  }
}

/* リスト */
.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 #60AC88;
  color: #60AC88;
  padding: 1rem 2rem;
}
.page-numbers.current {
  background: #60AC88;
  border: 2px solid #60AC88;
  color: #fff;
}
a.page-numbers:hover {
  background: #60AC88;
  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 #60AC88;
  color: #181818;
  display: block;
  padding: .5rem 1rem;
}
.ul-pager .all a {
  background: #60AC88;
  color: #fff;
}
.ul-pager .all a:hover {
  background: #fff;
  color: #60AC88;
  opacity: 1;
}
.ul-pager .next:hover a,
.ul-pager .prev:hover a {
  background: #60AC88;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .ul-pager li a {
    padding: .5rem 1rem;
  }
}

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

/*****************************
cases-archive-sec
*****************************/
.mainflex {
  display: flex;
  gap: 4rem;
  padding: 10rem 0;
}
.mainflex article {
  width: 75%;
}
.mainflex aside {
  width: 25%;
}
.mainflex .yearnav .ttl {
  background: #60AC88;
  font-size: 2rem;
  padding: 1rem 2rem;
}
.mainflex .yearnav li {
  background: #fff;
}
.mainflex .yearnav li:not(:last-child) {
  border-bottom: 1px solid #60AC88;
}
.mainflex .yearnav a {
  color: #181818;
  display: block;
  padding: 1rem 2rem;
}
.caseslist {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.caseslist li {
  width: calc(100% / 2 - 1rem);
}
.caseslist li a {
  display: block;
  opacity: 1;
}
.caseslist .img-wrap {
  aspect-ratio: 2/1.5;
  overflow: hidden;
}
.caseslist .img-wrap img {
  object-fit: cover;
  transition: .5s;
  height: 100%;
  width: 100%;
}
/* .caseslist li:hover .img-wrap img {
  transform: scale(1.1);
} */
.caseslist li:hover p {
  background: #60AC88;
  color: #fff;
}
.caseslist li:hover .img-wrap {
  cursor: pointer;
}
.caseslist li:hover i {
  color: #fff;
}
.caseslist .ttl-wrap p {
  background: #fff;
  color: #181818;
  font-weight: 500;
  padding: 1rem 0;
  text-align: center;
}
.caseslist .ttl-wrap i {
  color: #60AC88;
}
.yearnav .ttl {
  font-size: 2rem;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .mainflex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .mainflex article {
    width: 100%;
  }
  .mainflex aside {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .caseslist li {
    width: 100%;
  }
}