@charset "utf-8";
/* CSS Document */

/*============================
NEWSページのCSS（PC用）
============================*/

/*--共通要素=======================-*/
.text-bold { font-weight: bold; }
.text-red { color:#DD6161; }
.p-news-detail__contents a { color: #00a0e9; text-decoration: underline; }
.text-red { color:#ee4d4d; font-weight: bold; font-size: 1.2em; }
small { font-size: 0.8em; }
/*--見出し要素=======================-*/
.p-news-detail__contents h2 {
    font-family: "游明朝";
	font-size: 1.3em;
    font-weight: bold;
    color: #9F764A;
    position: relative;
    padding-bottom: 0.5em;
    border-bottom: 4px solid #e5e7eb;
    margin: 1% 0 3% 0;
}
 
.p-news-detail__contents h2::after {
     position: absolute;
     content: " ";
     border-bottom: solid 4px #B89A80;
     bottom: -4px;
     width:10%;
     display: block;
}
.p-news-detail__contents h3 {
	display: inline-block;
    font-size: 1em;
    background: #B89A80;
	border-radius: 2px;
    color: #ffffff;
    padding: 0.5%;
    margin: 0;
}
.p-news-detail__contents h4::before,
.p-news-detail__contents h4::after {
    content: '';
    position: absolute;
    top: 100%;
    border-style: solid;
    border-color: transparent;
}
.p-news-detail__contents h4::before {
    left: 0;
    border-width: 0 15px 15px 0;
    border-right-color: #e2d626;
}
.p-news-detail__contents h4::after {
    right: 0;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-top-color: #e2d626;
}

.p-news-detail__contents h5 {
    position: relative;
    padding: 0.25em 1em;
    border-top: solid 2px #ccc;
    border-bottom: solid 2px #ccc;
    display: inline;
}
.p-news-detail__contents h5:before, .p-news-detail__contents h5:after {
    content: '';
    position: absolute;
    top: -7px;
    width: 2px;
    height: -webkit-calc(100% + 14px);
    height: calc(100% + 14px);
    background-color: #ccc;
}
.p-news-detail__contents h5:before {
    left: 7px;
}
.p-news-detail__contents h5:after {
    right: 7px;
}
/*--リンクボタン要素=======================-*/
.p-news-detail__contents .link_btn {
    margin-bottom: 8%;
}
.p-news-detail__contents .link_btn a {
    display: block;
    width: 40%;
    height: 54px;
    text-align: center;
    text-decoration: none;
    line-height: 54px;
    outline: none;
	border-radius: 6px;
	margin: 0 auto;
}
.p-news-detail__contents .link_btn a::before, .p-news-detail__contents .link_btn a::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}
.p-news-detail__contents .link_btn a, .link_btn a::before, .p-news-detail__contents .link_btn a::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.p-news-detail__contents .link_btn a {
    position: relative;
    z-index: 2;
    background-color: #dda231;
    border: 2px solid #dda231;
    color: #ffffff;
    line-height: 50px;
	filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.p-news-detail__contents .link_btn a:hover {
  background-color: #ffffff;
  border-color: #dda231;
  color: #dda231;
}
.p-news-detail__contents .link_btn a::before, .p-news-detail__contents .link_btn a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #dda231;
}
.p-news-detail__contents .link_btn a::before {
  right: 0;
}
.p-news-detail__contents .link_btn a::after {
  left: 0;
}
.p-news-detail__contents .link_btn a:hover::before,
.p-news-detail__contents .link_btn a:hover::after {
  width: 0;
  background-color: #dda231;
}
/*--注意文=======================-*/
.notice_box {
    background-color: #da494e;
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    color: #fff;
    margin: 0 0 3% 0;
    padding: 2% 3%;
    border-radius: 10px;
}

/*--2カラムのバナー=======================-*/
.banner_2col { overflow: hidden; max-width:940px; margin-top: 10px;  }
.banner_2col ul { width:100%; padding:0; font-size:0; ;}
.banner_2col ul li { float: left;}
.banner_2col ul li a img { margin: 0;}