@charset "utf-8";

main{
  padding-bottom: 0;
}
.cmn_topicpath{
  margin-bottom: 0;
}
/* ===============================================
# area_ttl
=============================================== */
.box_top{
  display: -webkit-box;
  display: -ms-flex;  
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  background-color: #fdfbf5;    
}
.box_top .inner{
  width: 100%;
}
.area_ttl{
  max-width: 980px;
  padding: 45px 0 22px;
}
.area_ttl .ttl_news{
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 300;
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1;
}
.area_ttl .box_date{
  padding-top: 25px;
}
.area_ttl .box_date .date{
  width: 112px;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;  
}
.area_ttl .box_date .cmn_ico_news{
  flex: 1;
}
.area_ttl .box_date .cmn_ico_news span{
  font-size: 15px;
  font-variant-caps: 1.5rem;
  padding: 7px 17px;
  border-radius: 15px;
}
.area_ttl .box_date .cmn_ico_news span:nth-child(n+2){
  margin-left: 9px;
}
.area_ttl .ttl_article{
  padding-top: 8px;
  padding-bottom: 18px;
  border-bottom: solid 2px #063e8d;
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.14;
}
.area_ttl .box_sns ul{
  margin-top: 18px;
  justify-content: flex-end;
}
.area_ttl .box_sns li{
  width: 77px;
}
.area_ttl .box_sns li:nth-child(n+2){
  margin-left: 9px;
}
@media screen and (max-width :768px){
  .box_top.list{
    background: none;
  }
  .box_top .inner{
    order: 1;
    width: 96.4%;
  }
  .box_top .cmn_topicpath{
    order: 0;
  }
  .area_ttl{
    padding: 19px 0 19px;
  }
  .box_top.list .area_ttl{
    padding: 25px 0 0;
    text-align: center;
  }
  .area_ttl .ttl_news{
    font-size: 25px;
    font-size: 2.5rem;
  }
  .area_ttl .box_date{
    padding-top: 18px;
  }
  .area_ttl .box_date .date{
    width: 6em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .area_ttl .box_date .cmn_ico_news span{
    font-size: 11px;
    font-variant-caps: 1.1rem;
    padding: 4px 12px;
    border-radius: 22px;
  }
  .area_ttl .box_date .cmn_ico_news span:nth-child(n+2){
    margin-left: 7px;
  }
  .area_ttl .ttl_article{
    padding-top: 6px;
    padding-bottom: 15px;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.02;
    border-width: 1px;
  }
  .area_ttl .box_sns ul{
    margin-top: 13px;
    justify-content: flex-start;
  }
  .area_ttl .box_sns li{
    width: 60px;
  }
  .area_ttl .box_sns li:nth-child(n+2){
    margin-left: 5px;
  }  
}
/* ===============================================
# sec_news
=============================================== */
.sec_news{
  padding-top: 47px;
  padding-bottom: 60px;
}
.sec_news .inner{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.sec_news .box_left{
  width: 81.16%;
  padding-right: 5%;
}
.sec_news.list .box_left{
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width :1000px){
  .sec_news .inner{
    display: block;
  }
  .sec_news .box_left{
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width :768px){
  .sec_news{
    padding-top: 20px;
    padding-bottom: 0;
  }
  .sec_news .inner{
    width: 100%;
  }
  .sec_news .box_left{
    padding-right: 0;
  }  
  .sec_news.list .box_left{
    padding-top: 5px;
    padding-bottom: 30px;
  }  
  .sec_news .area_article{
    width: 94.6%;
    margin: 0 auto;
  }
}


/*記事中身-------------------------------------*/
.area_article{
  flex-wrap: wrap;
}
/*段落*/
.area_article p{
  display: block;
  text-align: left;
  margin-bottom: 25px;
}
/*画像*/
.area_article img{
  /*width: 46%;*/
  margin: -18px auto 25px;
}
@media screen and (max-width :768px){
  .area_article img{
    width:auto;
  }
}
/*太字*/
.area_article b{
  font-weight: bold;
}
.area_article strong{
  font-weight: bold;
}
/*em*/
.area_article em{
  font-style: italic;
}
/*引用*/
.area_article blockquote{
  border-left:solid 3px #cccccc;
  padding:10px;
  margin-left: 35px;
  margin-bottom: 25px;
}
.area_article a{
  color: #003399;
  text-decoration: underline;
}
/*通常リスト*/
.area_article ul{
   margin-bottom: 60px;
}
.area_article ul > li{
  margin-left: 2em;  
  text-indent: -1.3em;
}
.area_article ul > li:nth-child(n+2){
	margin-top:3px;
}
.area_article ul >li:before {
	color:#063e8d;
	content:"●";
	font-size:10px;
  padding-top: 3px;
  width: 2em;
  display:block;
	float:left;  
}
.area_article ul a{
  color: #004ea1;
  text-decoration: underline;
}
@media screen and (max-width :768px){
  .area_article ul{
     margin-bottom: 30px;
  }
}
/*数字リスト*/
.area_article ol{
  margin-bottom: 60px;
}
.area_article ol > li{
  list-style: decimal outside;
  margin-left: 2em;  
}
.area_article ol > li:nth-child(n+2){
  margin-top: 3px;
}
.area_article ol a{
  color: #004ea1;
  text-decoration: underline;
}
@media screen and (max-width :768px){
  .area_article ol{
    margin-bottom: 30px;
  }
}

/* ===============================================
# 見出し
=============================================== */
/*大見出し-------------------------*/
.area_article h4{
  margin-top: 25px;  
  margin-bottom: 25px;   
  font-size: 28px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  padding:13px 0 13px 30px;
  border-left: solid 5px #063e8d;
}
.area_article h4:nth-of-type(n+2){
  margin-top: 60px;
}
@media screen and (max-width :768px){
  .area_article h4{
    margin-top: 12.5px;
    margin-bottom: 12.5px;
    font-size: 19px;
    font-size: 1.7rem;
    padding:9px 0 9px 16px;
    border-width: 4px;
  }  
}
/*中見出し-------------------------*/
.area_article h5{
  margin-top: 40px;  
  margin-bottom: 20px;     
  display: -webkit-box;
  display: -ms-flex;  
  display: -webkit-flex;
  display: flex;  
  position: relative;
  padding-bottom: 16px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
}
.area_article h5::before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #ba9716;
}
.area_article h5::after{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 130px;
  background-color: #063e8d;
  z-index: 1;
}
@media screen and (max-width :768px){
  .area_article h5{
    margin-top: 12.5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 17px;
    font-size: 1.6rem;
    line-height: 1.176;
  }
  .area_article h5::before{
    height: 2px;
  }
  .area_article h5::after{
    height: 2px;
    width: 18.3%;
  }
}
/*小見出し①-------------------------*/
.area_article h6{
  margin-bottom: 10px;  
  margin-top: 10px; 
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width :768px){
  .area_article h6{
    font-size: 17px;
    font-size: 1.5rem;
    line-height: 1.176;
  }
}
/* ===============================================
# ニュース一覧（右）
=============================================== */
.area_newslist{
  width: 18.84%;
  min-width: 160px;
}
.area_newslist .ttl{
  padding: 37px 0 31px;
  background-color: #063e8d;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.area_newslist ul li{
  border-bottom: solid 1px #cccccc;
}
.area_newslist ul li a{
  display: block;
  line-height: 1;
  padding:  17px 30px 17px 9.8%;
  background:url(/common/img/ico_arrow_b.svg) no-repeat right 17px center;
  background-size: 7px 10px;
}
.area_newslist ul li.active a{
  background-color: #f3f7fd;
}
@media screen and (min-width :769px){
  .area_newslist ul li a:hover{
    background-color: #f3f7fd;
  }
}
@media screen and (max-width :1000px){
  .area_newslist{
    width:100%;
    margin-top: 30px;
  }
  .area_newslist .ttl{
    padding: 22px 0 22px;
    font-size: 13.5px;
    font-size: 1.35rem;
  }
  .area_newslist ul{
    display: -webkit-box;
    display: -ms-flex;  
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .area_newslist ul li{
    width: 50%;
  }
  .area_newslist ul li:nth-child(odd){
    border-right: solid 1px #cccccc;
  }
  .area_newslist ul li a{
    padding:  12px 10px 12px 5.3%;
    background-position: right 14px center;
    background-size: 5px auto;
    font-size: 14px;
    font-size: 1.4rem;
  }  
  
  /*android*/
  body.android .area_newslist ul{
    display: block;
  }
  body.android .area_newslist ul li{
    width: 100%;
  }
}

/* ===============================================
# ボタン
=============================================== */
.area_button{
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.area_button a{
  display: block;
  width: 48%;
  max-width: 268px;  
  padding: 25px 7%;
  margin: 0 1%;
  border: solid 1px #666666;
  color: #666666;
  line-height: 1;
  text-align: center;
  background: url(/common/img/ico_arrow_b.svg) no-repeat right 9% center;
  background-size: 7px 10px;  
}
.area_button a.back{
  background: url(/common/img/ico_arrow_back.svg) no-repeat left 9% center;
  background-size: 7px 10px;
}
@media screen and (min-width :769px){
  .area_button a:hover{
    background-color: #fdf8ea;
    opacity: 1;
  }
}
@media screen and (max-width :768px){
  .area_button{
    width: 94.6%;
    margin: 0 auto;
  }
  .area_button a{
    width: 50%;
    max-width: inherit;  
    padding: 19px 7%;
    margin:0;
    background-size: 5px auto;  
    font-size: 12px;
    font-size: 1.2rem;
  }
  .area_button a.back{
    background-size: 5px auto;  
    border-right: none;
  }  
}

/* ===============================================
# リスト
=============================================== */
.sec_news .list_news{
  margin: 50px 0;
  border-top: solid 1px #c0bfbf;  
}
.sec_news .list_news li{
  border-bottom: solid 1px #c0bfbf;
  font-size: 16px;
  font-size: 1.6rem;  
}
.sec_news .list_news li a{
  display: -webkit-box;
  display: -ms-flex;  
  display: -webkit-flex;
  display: flex;
  padding: 16px 0;
}
.sec_news .list_news .date{
  width: 120px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;  
  vertical-align: middle;
  text-align: right;
}
.sec_news .list_news .cmn_ico_news{
  padding: 0 20px;
}
.sec_news .list_news .ttl{
  flex: 1;
  vertical-align: middle;
  padding-right: 30px;
}
@media screen and (max-width :1000px){
  .sec_news .list_news{
    width: 94.6%;
    margin:20px auto;
  }
  .sec_news .list_news li{
    font-size: 14px;
    font-size: 1.4rem;  
  }
  .sec_news .list_news li a{
    padding: 8px 0;
    display: block;
  }
  .sec_news .list_news .date{
    width: 6em;
    text-align: left;
    float: left;
  }
  .sec_news .list_news .cmn_ico_news{
    padding:0;
    float: left;
  }
  .sec_news .list_news .ttl{
    clear: both;  
    padding-top: 3px;
    line-height: 1.42;
    padding-right: 0;
  }
}
@media screen and (max-width :768px){
}
/* ===============================================
# その他リスト
=============================================== */
.area_other .ttl_other{
  margin-top: 60px;
  padding: 21px 0 21px;
  background-color: #063e8d;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.area_other .list_news{
  margin: 0;
  border-top: 0;
}
@media screen and (max-width :1000px){
  .area_other .ttl_other{
    margin-top: 46.5px;
    padding: 22px 0 22px;
    font-size: 13.5px;
    font-size: 1.35rem;
  }
  .area_other .list_news{
    margin: 7px auto 0;
  }
  .area_other .list_news li:last-child{
    border-bottom: none;
  }  
}

/*ページャー*/
.news_pagination{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news_pagination li{
  width: 50px;
  height: 34px;
  margin: 0 4.5px;
  border: solid 1px #bfbfbf;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;  
}
.news_pagination li a{
  height: 100%;
  display: -webkit-box;
  display: -ms-flex;  
  display: -webkit-flex;
  display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center; 
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;  
}
.news_pagination li.active a{
  color: #fff;
  background-color: #063e8d;
}
.news_pagination .arrow img{
  width: 7px;
  height: auto;
}
.news_pagination .arrow.prev img{
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media screen and (max-width :768px){
  .news_pagination{
    width: 96.4%;
    max-width: 340px;
    margin: 0 auto;
    -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
  }
  .news_pagination li{
    width: 12%;
    height: 28px;
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .news_pagination .arrow img{
    width: 6px;
  }
}