main {
}


.archive main {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 50px;
}
@media screen and (max-width: 1024px) {
    .archive main {
        margin: 60px auto 80px;
        padding: 0 20px;
    }

}
/*----- page head -----*/
.pageHead {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}
.pageTtl {
    font-size: 6.5rem;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    color: var(--color01);
    font-weight: normal;
}
.pageTtlJa {}
.pageHead::after {
    content: "";
    display: inline-block;
    width: 150px;
    height: 2px;
    background-color: #73B5E5;
    position: relative;
    bottom: -5px;
}
@media screen and (max-width: 767px) {
    .pageHead {
        margin-bottom: 40px;
    }
    .pageTtl {
        font-size: 3.6rem;
    }
.pageTtlJa {
    font-size: 1.4rem;
}
}

/*----- page head end -----*/
/*----- news list  -----*/
.newsList {
    border-top: solid 1px #B1B5C3;;
}
.newsPost {}
.newsPost__link {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 20px 0;
    padding-right: 30px;
    border-bottom: solid 1px #B1B5C3;
    position: relative;
    transition: all ease .4s;
}
.newsPost__link::after {
    content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #B1B5C3;
  border-right: solid 1px #B1B5C3;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin: auto;
  transition: all ease .4s;
}
.newsPost__date {
    width: 80px;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.newsPost__cat {
    font-size: 1.4rem;
    text-align: center;
    border: solid 1px var(--color01);
    border-radius: 3px;
    width: 110px;
    padding: 0 1em;
    color: var(--color01);
    flex-shrink: 0;
}
.newsPost__ttl {
    font-size: 1.8rem;
    font-weight: normal;
    color: #000;
    overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.newsPost__link:hover {
    background-color: #fafafa;
}
@media screen and (max-width: 767px) {
.newsList {
    margin-bottom: 30px;
}
.newsPost__link {
    gap: 5px;
    width: 100%;
    padding: 15px 0;
    padding-right: 20px;
    flex-wrap: wrap;
}
.newsPost__date {
    width: 70px;
    font-size: 1.2rem;
}
.newsPost__cat {
    font-size: 1.2rem;
    width: 90px;
}
.newsPost__ttl {
    font-size: 1.5rem;
    width: 100%;
}
.newsPost__link::after {
    right: 10px;
}
}
/*----- news list end -----*/