@charset "UTF-8";
/* CSS Document */
/*トップ*/
.top-image{
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../images/top-image-bg6.jpg") no-repeat center/cover;
}
.top-filter {
  background-color: rgba(0, 0, 0, 0.20);
  height: 100%;
  width: 100%;
}
.top-image::after {
  position: absolute;
  content: "";
  background-image: url(../images/wave_long.svg);
  left: 0;
  background-repeat: repeat-x;
  height: 17px;
  background-position: center;
  width: 100%;
  bottom: -1px;
  background-size: 1200px;
}
.top-logo {
  display: block;
  position: absolute;
  width: 220px;
  cursor: pointer;
  z-index: 500;
  transition: all .5s;
  top: 12px;
  left: 15px;
}
.top-logo img {
  width: 100%;
  object-fit: cover;
}
.page-title {
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  color: #fff;
}
.page-title h1 {
  font-size: 2.6rem;
  font-family: 'Zen Maru Gothic', serif;
    font-weight: 500;
  letter-spacing: 0.2rem;
  opacity: 0;
}
.page-title p {
  font-family: Arial, Helvetica, "sans-serif", "Helvetica Neue";
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  opacity: 0;
}
/*トップ(タブレット)*/
@media(min-width:600px) {
  .top-logo {
    width: 260px;
  }
  .page-title {
  top: 43%;
}
}
/*トップ(PC)*/
@media(min-width:1000px) {
  .top-image {
    height:75vh;
  }
  .top-image::after {
    height: 27px;
    background-position: center;
    width: 100%;
    bottom: -5px;
    background-size: 1500px;
  }
  .page-title {
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 1.4;
    color: #fff;
  }
  .page-title h1 {
    font-size: 3.6rem;
    margin-bottom: 10px;
  }
  .page-title p {
    font-size: 2.0rem;
  }
}
/*お知らせ一覧*/
.section-news{
  padding: 60px 20px 80px;
}
.news-list{
  max-width: 460px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
}
.news-list li{
  margin-bottom: 30px;
}
.news-list li:last-of-type {
  margin-bottom: 0px;
}
.news-list li a{
  display: flex;
  align-items: center;
  padding: 25px 20px;
  background-color: #fff;
  border: dotted 2.5px #DBC8AD;
  border-radius: 15px;
  overflow: hidden;
  transition: all .3s
}
.news-list li a:hover {
  color: #c5a477;
}
.news-list p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.news-list time{
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-right: 15px;
  letter-spacing: 0.1rem;
}
.nav-links{
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media(max-width:369px){
  .nav-previous,.nav-next{
  width:45vw;
  position: relative;
  z-index: 100;
}
.nav-previous a,.nav-next a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.32vw;
  line-height: 1.4;
  font-weight: 500;
  background-color: #abd91d;
  color: #fff;
  padding: 2.98vw 0 3.25vw ;
  border-radius: 13.51vw;
  transition:all .4s;
}
   .nav-previous{
    margin-right: 1.08vw;
  }
    .nav-next{
    margin-left: 1.08vw;
  }
.nav-previous a::before{
  content: "";
  width: 4.60vw;
  height: 4.60vw;
  background: url("../images/arrow_white_left.svg") no-repeat center/contain;
  margin: 0.54vw 1.62vw 0 0;
  transition: all .4s ease-out;
}
.nav-next a::after{
  content: "";
  width: 4.60vw;
  height: 4.60vw;
  background: url("../images/arrow_white.svg") no-repeat center/contain;
  margin:0.54vw 0 0 1.62vw;
  transition: all .4s ease-out;
}
.nav-links a:hover {
  background-color: #83cd43;
}
.nav-next a:hover::after {
  transform: translateX(1.35vw);
}
.nav-previous a:hover::before{
  transform: translateX(-1.35vw);
}
}
@media(min-width:370px){
  .nav-previous,.nav-next{
  width: 170px;
  position: relative;
  z-index: 100;
}
.nav-links a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
    line-height: 1.4;
  font-weight: 500;
  background-color: #abd91d;
  color: #fff;
  padding: 11px 0 12px ;
  border-radius: 50px;
  transition:all .4s;
}
 .nav-previous{
    margin-right: 4px;
  }
   .nav-next{
    margin-left: 4px;
  }
.nav-previous a::before{
  content: "";
  width: 17px;
  height: 17px;
  background: url("../images/arrow_white_left.svg") no-repeat center/contain;
  margin: 2px 6px 0 0;
  transition: all .4s ease-out;
}
.nav-next a::after{
  content: "";
  width: 17px;
  height: 17px;
  background: url("../images/arrow_white.svg") no-repeat center/contain;
  margin:2px 0 0 6px;
  transition: all .4s ease-out;
}
.nav-links a:hover {
  background-color: #83cd43;
}
.nav-previous a:hover::before{
  transform: translateX(-5px);
}
.nav-next a:hover::after {
  transform: translateX(5px);
}
}
/*お知らせ一覧（タブレット）*/
@media(min-width:600px){
.section-news{
  padding: 80px 70px 100px;
}
.news-list{
  max-width: 640px;
}
.news-list li a{
  padding: 30px;
}
.news-list time{
  margin-right: 40px;
}
.nav-links{
  max-width: 640px;
}
.nav-previous,.nav-next{
  width: 200px;
}
.nav-links a{
  font-size: 1.8rem;
  padding: 13px 0 14px;
  border-radius: 80px;
}
.nav-previous a::before{
  width: 19px;
  height: 19px;
  margin:2px 8px 0 0 ;
}
.nav-next a::after{
  width: 19px;
  height: 19px;
  margin:2px 0 0 8px;
}
}
/*お知らせ一覧（PC）*/
@media(min-width:1000px){
  .section-news{
  padding: 100px 110px 140px;
}
.news-list{
  max-width: 800px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
}
.news-list li{
  margin-bottom: 45px;
}
.news-list li:last-of-type {
  margin-bottom: 0px;
}
.news-list li a{
  display: flex;
  align-items: center;
  padding: 35px;
  background-color: #fff;
  border: dotted 3px #DBC8AD;
  border-radius: 20px;
}
.news-list time{
  font-size: 1.6rem;
  margin-right: 60px;
}
.nav-links{
  max-width: 800px;
  }
.nav-previous,.nav-next{
  width: 220px;
}
}
