@charset "UTF-8";

/*****************************
  pagecommon
*****************************/
.pagesec{
  padding: 10rem 0 0;
}
.pagesec:last-of-type{
  padding-bottom: 10rem;
}
@media only screen and (max-width: 1180px) {
  .pagesec{
    padding: 6rem 0 0;
  }
  .pagesec:last-of-type{
    padding-bottom: 6rem;
  }
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
}

/*****************************
pagehead
*****************************/
.pagehead{
  margin-top: 95px;
  position: relative;
}
.pagehead-bg{
  height: 300px;
}
.pagehead-bg::before,
.pagehead-bg::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.pagehead-bg::before{
  background: url(../images/head/head_cmn.webp) no-repeat center / cover;
}
.pagehead-bg::after{
  background: #fff;
  opacity: .78;
}
.pagehead-ttl {
  position: absolute;
  top: 50%;
  left: 0;
  line-height: 1.6;
  text-align: center;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.pagehead-ttl .ttlen{
  color: #2A5350;
  font-family: "trajan-pro-3", serif;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 4px;
  word-break: break-word;
}
.pagehead-ttl .ttl{
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 1195px) {
  .pagehead{
    margin-top: 84px;
  }
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .pagehead-ttl .ttlen{
    font-size: 3rem;
    letter-spacing: 2px;
  }
}

/*****************************
parts galleylist
*****************************/
.galleylist {
  gap: 2rem;
  margin-top: 4rem;
}
.galleylist li{
  width: calc(50% - 2rem);
}

.galleylist li .imgbox::before,
.galleylist li .imgbox::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
}
.galleylist li .imgbox::before{
  background: #2A5350;
  aspect-ratio: 1/1;
  width: 35px;
}
.galleylist li .imgbox::after{
  content: "\f00e";
  color: #fff;
  font: var(--fa-font-solid);
  font-size: 2rem;
  top: 7px;
  right: 7px;
}
.galleylist li img{
  aspect-ratio: 3/2;
  object-fit: cover;
  height: auto;
  width: 100%;
}
.galleylist li p{
  margin-top: 1rem;
  text-align: center;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .galleylist {
    gap: 1rem;
  }
  .galleylist li{
    width: calc(50% - 1rem);
  }
  .galleylist li p{
    font-size: 1.4rem;
    margin-top: .5rem;
    text-align: left;
  }
}

/*****************************
parts news archive
*****************************/
.newslist li{
  margin-bottom: 1rem;
}
.newslist a{
  border-bottom: 1px dotted #333333;
  padding: 0 0 1rem;
}
.newslist time{
  width: 100px;
}
.newslist .ttl{
  width: calc(100% - 100px);
}

/*****************************
parts news single
*****************************/
.singlehead{
  margin-bottom: 2rem;
  padding: .5rem 0 ;
}
.singlehead .ttl{
  border-left: 3px solid #1E4538;
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 2rem ;
}



/*****************************
parts pagenation
*****************************/
.pagination{
  margin-top: 3rem;
  text-align: center;
}
.pagination .page-numbers{
  border: 1px solid #2A5350;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 25px;
}
.pagination .page-numbers.dots{
  border: none;
  pointer-events: none;
}
.page-numbers:hover,
.page-numbers.current{
  background: #2A5350;
  color: #fff;
  opacity: 1;
}
.pager{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.pager li{
  margin: 0 1rem;
  text-align: center;
  width: 50px;
}
.pager li.all{
  width: 80px;
}
.pager li a{
  display: block;
  padding: .2rem 1rem;
}
.pager li.all a{
  background: #2A5350;
  border: 1px solid #2A5350;
  border-radius: 5px;
  color: #fff;
  transition: .5s;
}
.pager li.all a:hover{
  background: #fff;
  color: #000;
}