@charset "utf-8";

/* *****************************************************************************

  news style

***************************************************************************** */
/* news-list */
.news-list > .-item{
  border-bottom: 1px solid #999999;
}
.news-list > .-item > a{
  display: flex;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(/assets/images/arrow-link-red.svg) right 0.5rem center no-repeat;
  background-size: 2rem auto;
}
.news-list > .-item:nth-child(1) > a{
  padding-top: 0;
}
.news-list > .-item > a:hover{
  color: #c1272d;
}
.news-list > .-item > a > .-date{
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  font-size: 1.5rem;
  line-height: 1.75;
  padding-top: 0.3rem;
  padding-left: 0.5rem;
  width: 150px;
  color: #c1272d;
}
.news-list > .-item > a > .-text{
  font-size: 1.6rem;
  line-height: 1.75;
  padding-right: 6rem;
  flex: 1;
}

@media screen and (max-width : 760px){
  /* news-list */
  .news-list > .-item > a > .-date{
    width: 140px;
  }
}

@media screen and (max-width : 640px){
  /* news-list */
  .news-list > .-item > a{
    display: block;
  }
  .news-list > .-item > a > .-date{
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0.5rem;
  }
}

/* page-nav */
.page-nav{
  margin-top: 6rem;
  white-space: nowrap;
  text-align: center;
}
.page-nav a,
.page-nav .current{
  font-size: 1.6rem;
  background-color: #ffffff;
  color: #c1272d;
  width: 3.8rem;
  text-align: center;
  line-height: 3.6rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  padding: 0;
  display: inline-block;
  border: 1px solid #c1272d;
  font-weight: 700;
}
.page-nav a{
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-nav a:hover{
  background-color: #c1272d;
  color: #ffffff;  
}
.page-nav span{
  padding: 0;
  display: inline-block;
}
.page-nav .current{
  background-color: #c1272d;
  color: #ffffff;
}
.page-nav .extend{
  line-height: 3.4rem;
}
.page-nav .first,
.page-nav .previouspostslink,
.page-nav .nextpostslink,
.page-nav .last{
  font-size: 1.6rem;
  vertical-align: bottom;
  line-height: 3.6rem;
}

@media screen and (max-width : 760px){
  /* page-nav */
  .page-nav{
    margin-top: 4rem;
  }
  .page-nav a,
  .page-nav .current{
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}

/* *****************************************************************************

  news detail style

***************************************************************************** */
/* article-box */
.article-box{
}

/* article-heading */
.article-heading{
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
}
.article-heading > .-date{
  color: #c1272d;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.05em;
}
.article-heading > .-main{
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4286;
}

@media print, screen and (max-width: 760px){
  /* .article-heading */
}

/* article-box */
.article-box > p{
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.article-box > p > a{
  color: #c1272d;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; 
}
.article-box > p > a:hover{
  opacity: 0.75; 
}

/* article-img */
.article-img{
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  text-align: center;
}
.article-img img{
  width: 100%;
}

/* article-back */
.article-back{
  text-align: center;
  padding-top: 6rem;
}
.article-back > a{
  line-height: 3rem;
  font-weight: 700;
  display: inline-block;
  font-size: 1.8rem;
  padding-right: 5rem;
  background: url(/assets/images/arrow-circle-red.svg) right center no-repeat;
  background-size: 3rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.article-back > a:hover{
  color: #c1272d; 
}
