/* --------------------
   news
-------------------- */
#news{
  padding-bottom: 100px;
}
#news .item{
  display: flex;
  position: relative;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  padding: 1.625em 3em 1.625em 0;
  z-index: 1;
}
#news .list a .item:before{
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: block;
  position: absolute;
  opacity: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 2px);
  background-color: #F8F5F1;
  transition: .2s;
}
#news a:hover .item .txs-20{
  color: #E79236;
}
#news .list a:hover .item:before{ opacity: 1; }
#news .list a:nth-child(n+2) .item{
  border-top: solid 1px;
}
#news .item .arow{
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  position: absolute;
  right: 1.25em;
  width: 1em; }
#news .item .arow img{
  transition: .2s;
  width: 100%; }

#news .item .txs-20:first-child{ width: 6em; }
#news .item .icon{
  margin-right: 0.625em;
  width: 3.125em;
  text-align: center;
  margin-top: 0.25em;
  border-radius: 5em;
  font-weight: 600;
}
#news .item .icon.new{
  color: #fff;
  background-color: #E79236;
}

#news .item .arow img.on{
  opacity: 0;
  position: absolute; }
#news .list a:hover .item .arow img.on{ opacity: 1; }
#news .list a:hover .item .arow img.off{ opacity: 0; }
@media screen and (max-width: 768px){
  #news{
    padding-bottom: 60px;
    padding-top: 60px;
  }
  #news .item{
    padding: 1em 1.25em 1em 0;
  }
  #news .item .main-tx{ width: 100%; }
  #news .item .arow{
    right: 0;
    width: 0.75em;
  }
}

/* pagenation */
.pagenation{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.pagenation li.current{
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #E79236;
  color: #E79236;
  width: 2.5em;
  height: 2.5em;
  border-radius: 4px;
  font-weight: 700;
}
.pagenation li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  background-color: #E79236;
  border: solid 2px #E79236;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}
.pagenation li:first-child a,
.pagenation li:last-child a{
  width: auto;
  padding:  0 0.75em;
}
@media screen and (min-width: 769px){
  .pagenation{
    margin-top: 50px;
  }
}

/* --------------------
   single
-------------------- */
#single{
  padding-bottom: 70px;
}
#single .title{
  border-bottom: #272525 solid 1px;
  margin-bottom: 20px;
}
#single .title p,
#single .title h2{
  font-weight: 700;
}
#single .title p{
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
  margin-bottom: 1em;
}
#single .title h2{
  padding-bottom: 0.75em;
}
#single .cont figure{
  max-width: 100%;
  margin: 20px auto 20px;
}
#single .cont figure img{
  width: 100%;
}
#single .cont p:nth-child(n+2){
  margin-top: 25px;
}
#single .cont p+p{
  margin-top: 1em!important;
}
#single .button01{
  margin-top: 45px;
}
@media screen and (max-width: 768px){
  #single .title p{
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px){
  #single .title{
    margin-bottom: 60px;
  }
  #single{
    padding-bottom: 160px;
  }
  #single .cont figure{
    max-width: 100%;
    margin: 60px auto 60px;
  }
  #single .cont p:nth-child(n+2){
    margin-top: 60px;
  }
  #single .button01{
    margin-top: 80px;
  }
}