@charset "UTF-8";



/* ****************
  ニュース一覧ページ
***************** */


/* タイトル */
#greeting_01{
    padding: 0 5%;
}
.page_title02{
    color:#000;
    letter-spacing: 0.1rem;
    text-align: center;
    margin: 0 0 80px;
    font-size: 2.4rem;
}
.page_title02 span{
    font-size: 1.6rem;
    color: #000;
    display: block;
    margin-top: 5px;
    letter-spacing: 0.04rem;
}
.page_title02 span b{
    position: relative;
}
.page_title02 span b::before{
    content:"";
    left: -50px;
    top: 50%;
    width: 30px;
    height: 2px;
    position: absolute;
    background-color: #000;
}
.page_title02 span b::after{
    content:"";
    right: -50px;
    top: 50%;
    width: 30px;
    height: 2px;
    position: absolute;
    background-color: #000;
}

/* ニュース一覧 */
#news{
    margin: 0 5% 180px;
    padding: 30px 5%;
    background-color: #e6e6e6;
}
#news_box{
    max-width: 1000px;
    margin: 25px auto;
}
#news_box dl{
    background: #fff;
    display:flex;
    flex-wrap: wrap;
}
#news_box dl a{
    padding: 30px 50px;
    overflow: hidden;
}
#news_box dl a:hover{
    color: #cc0000;
}
#news_box dl dt{
    width: 150px;
}
#news_box dl dd {
  margin-left: 150px;
  margin-top:-1.5rem;
}
#news_box dl dd .news_title{
    display: inline-block;
    font-size:1rem;
    margin:0;
}

/* ページャー */
.news_Pager{
    width: 100%;
    padding: 30px 0;
}
.news_Pager ul{
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    list-style: none;
}
.news_Pager li{
    margin-left: 5px;
}
.news_Pager a{
    padding: 8px 14px;
    background: #cc0000;
    display: inline-block;
    color: #fff;
}
.news_Pager span{
    padding: 6px 12px;
    border: 2px solid #cc0000;
    display: inline-block;
    color: #cc0000;
}
.news_Pager .last_page a{
    width: 0 20px;
}

/* ****************
  ニュース記事ページ
***************** */
#page_fv .fv_ttl {
  margin-top: 35px;
  line-height: 1.5;
  font-size: 2.2rem;
}
#news-detail {
  margin: 80px 5% 180px;
  padding: 50px 5%;
  background-color: #e6e6e6;
}
#news-detail .news_box {
  margin: 0 auto;
  padding: 50px 50px;
  background: #fff;
}
#news-detail  .news_box p{
  line-height: 2;
}
#news-detail .detail-title {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
#news-detail img {
  display: block;
  margin: 30px auto;
}

/* 戻るボタン */
#sel_btn{
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}
#sel_btn .sel_btnli{
	list-style: none;
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
#sel_btn .sel_btnli li{
  width: 200px;
}
#sel_btn .sel_btnli li:nth-of-type(1) {
  margin-right: 10px;
}
#sel_btn .sel_btnli li a{
  display: block;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  padding: 8px 0px;
  border: solid 3px #cc0000;
  background:#cc0000;
}
#sel_btn .sel_btnli li a:hover{
  background-color: #fff;
  color: #cc0000;
}

/* ****************
  スマホ
***************** */
@media (max-width: 768px) {

  .inner {
    width:90%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  #news {
    margin: 0 0 150px;
  }
  #news_box dl dt{
    width: 100%;
  }
  #news_box dl dd {
    margin-left: 0;
    margin-top:0;
  }
  #news_box dl a{
    display: block;
    padding: 20px 25px;
  }
  #news_box dl dd .news_title{
    margin-top: 8px;
  }

  /* ページャー */
  .news_Pager ul{
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    list-style: none;
  }
  .news_Pager li{
    margin-left: 3px;
  }
  .news_Pager a{
    padding: 6px 11px;
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .news_Pager span{
    padding: 4px 10px;
    font-size: 1rem;
  }

/* ****************
  ニュース記事ページ
***************** */
  #news-detail {
    margin: 50px 0 150px;
  }
  #news-detail  .news_box p{
    line-height: 1.7;
  }
  #news-detail .news_box {
    padding: 30px 5% 50px;
  }
  #sel_btn .sel_btnli{
    flex-flow: row wrap;
  }
  #sel_btn .sel_btnli li{
    width: 80%;
    max-width: 600px;
    margin-bottom: 10px;
  }
  #sel_btn .sel_btnli li:nth-of-type(1) {
    margin-right: 0;
  }
  #sel_btn .sel_btnli li a{
    font-size: 1rem;
  }
  #page_fv .fv_ttl {
    margin-top: 45px;
    line-height: 1.3;
    font-size: 1.8rem;
  }
  #news-detail img {
    max-width: 100%;
}

}