/*ページタイトル*/
.ttl--page{
	width: 100%;
	display: table;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;	
	position: relative;
}
.ttl-text{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	position: relative;
	z-index:10;
}
.ttl-text img{
	width: 30%;
}
/*line==========================*/
.box--lineWrapper{
	width: 100%;
	height: 100%;
    position: absolute;
    z-index: 1;
	background-color:rgba(0,0,0,0.5);
}
.box--line{
	padding:20px;
    height: 100%;
}
.box--line__inner{
    height: 100%;
	border:1px solid #efd222;
}
/*content==========================*/
.content{
	padding-top: 100px;
	padding-bottom: 100px;
}

/*btn_more==========================*/
.btn_more{
	margin-top: 2em;
    display: block;
    border: 1px solid #efd222;
    padding: 2em;
    text-align: center;
}
.content--dark .btn_more-text{
	color: #efd222;
	text-decoration: underline;
}
.btn_more:hover{
	background-color: #437062;
	color: #fff;
}
.cont--pickup .alignleft{
	width: 110px;
	margin-right: 20px;
}

/*block--grid==========================*/
.block--grid{
	padding: 0;
	border-top: 1px solid #202020;
}
.grid__item{
	padding:0;
	height: 100%;
}

.grid__item a{
	display: block;
}
.grid__item a:hover{
	text-decoration: none;
	background-color: #000;
	color: #fff;
}

.thumb--grid__item{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.thumb--grid__item:before {
    content:"";
    display: block;
    padding-top: 56.25%;
}
.thumb--grid__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity:0.7;
}

.txt--grid__item{
	padding: 30px 40px 50px
}
.subttl--excerpt{
	font-size: 1.1em;
  line-height: 1.75;
	font-weight: bold;
	padding-bottom: 10px;
}
.txt--excerpt{
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis; /* Safari */
    -o-text-overflow: ellipsis; /* Opera */
}
/*buttonhover==========================*/
.change-border {
  position: relative;
}
/* Effect1
 *************************************** */
/* 擬似要素の共通スタイル */
.change-border::after,
.change-border::before,
.change-border__inner::after,
.change-border__inner::before {
  background-color: #efd222;
  content: '';
  display: block;
  position: absolute;
  z-index: 3;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
/* 左上へ配置 */
.change-border::after {
    height: 5px;
    left: 0px;
    top: 0px;
    width: 0px;
}
/* 右下へ配置 */
.change-border::before {
  bottom: 0px;
  height: 5px;
  right: 0px;
  width: 0px;
}
/* 左下へ配置 */
.change-border__inner::after {
  bottom: 0px;
  height: 0px;
  left: 0px;
  width: 5px;
}
/* 右下へ配置 */
.change-border__inner::before {
  height: 0px;
  right: 0px;
  top: 0px;
  width: 5px;
}

/* hover */
.change-border:hover::after,
.change-border:hover::before {
  width: 100%;
}
.change-border:hover .change-border__inner::after,
.change-border:hover .change-border__inner::before {
  height: 100%;
}
.change-border:hover img {
    opacity:1;
}
