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

/* ---------------------------------------------------------------------------------------------

　   header

--------------------------------------------------------------------------------------------- */

/*ロゴマーク*/
.site_ttl{}

.site_ttl h1{}
.site_ttl h1 a{
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	}
.site_ttl h1 a:hover{
	opacity: .6;
	}
.site_ttl h1 a img{
	width: 100%;
	max-width: 284px;
	height: auto;
	max-height: 107px;
	}
	@media only screen and ( max-width : 800px ) {
		
		}
	@media only screen and ( max-width : 650px ) {
		.site_ttl h1{
			width: 90%;
			}
		}
	@media only screen and ( max-width : 480px ) {
		.site_ttl h1{
			width: 80%;
			}
		}
	@media only screen and ( max-width : 360px ) {
		
		}



/* ---------------------------------------------------------------------------------------------

　   画像

--------------------------------------------------------------------------------------------- */

	
/* ---------------------------------------------------------------------------------------------

　   main

--------------------------------------------------------------------------------------------- */

/*-- TOPスライダー --*/
.main_visual{
	width: 100%;
	}

.main_visual ul li img{
	width: 100%;
	height: auto;
	}




/*----------

　お知らせ

----------*/

/*全体*/
.news{
	background: url("../img/bg_beige.jpg") repeat;
	width: 100%;
	padding-top: 25px;
	padding-bottom: 10px;
	}
.news_block{
	width: 96%;
	max-width: 980px;
	margin: 0 auto;
	}

/*記事 囲み*/
.news .n_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	}

/*記事 1個ずつ*/
.news .n_wrap .item{
	width: 48%;
	margin-bottom: 35px;
	}
.news .n_wrap .item:nth-child(n+5){
	margin-bottom: 5px;
	}

.news .n_wrap .item a{
	display: flex;
	background: #fff;
	border-radius: 3px;
	text-decoration: none;
	transition: .3s;
	}
.news .n_wrap .item a:hover{
	background:#F7DFE4;
	}
.news .n_wrap .item a:hover .ph{
	opacity: .8;
	}

/*画像 囲み*/
.news .n_wrap .item .ph{
	width: 50%;
	transition: .3s;
	}

/*アイキャッチ画像*/
.news .n_wrap .item .ph .trmg{
	position: relative;
	border-radius: 5px;
	width: 100%;
	}
.news .n_wrap .item .ph .trmg:before{
  content: "";
  display: block;
  padding-top: 100%;
	}
.news .n_wrap .item .ph .trmg img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
	/*IE対応*/
  object-position: center;
  font-family: 'object-fit: cover; object-position: bottom;';
	}

/*タイトル・日付 囲み*/
.news .n_wrap .item .tx{
	margin: 20px;
	width: 50%;
	}

/*タイトル*/
.news .n_wrap .item h3.ttl{
	color: #b52b44;
	/*font-size: 15px;*/
	font-size: 110%;
	
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden; 
	}

/*日付*/
.news .n_wrap .item .date{
	color: #333;
	/*font-size: 13px;*/
	font-size: 90%;
	
	margin-top: 5px;
	}
.news .n_wrap .item .date::before{
	font-family: "Font Awesome 5 Free";
	content: '\f5ac';
	font-weight: 900;
	margin-right: 4px;
	color:#999;
	}

	@media only screen and ( max-width : 800px ) {
		/*タイトル・日付 囲み*/
		.news .n_wrap .item .tx{
			margin: 15px;
			width: 50%;
			}
		}
	@media only screen and ( max-width : 650px ) {
		.news .n_wrap .item a{
			display: block;
			padding-bottom: 5px;
			}
		/*画像 囲み*/
		.news .n_wrap .item .ph{
			width: 100%;
			}
		/*タイトル・日付 囲み*/
		.news .n_wrap .item .tx{
			margin: 15px 8% 10px 8%;
			width: 84%;
			}
		}
	@media only screen and ( max-width : 480px ) {
		/*全体*/
		.news{
			padding-top: 15px;
			padding-bottom: 10px;
			}
		/*記事 1個ずつ*/
		.news .n_wrap .item{
			margin-bottom: 20px;
			}
		}
	@media only screen and ( max-width : 360px ) {
		}


/*----------

　バナー

----------*/

.bnr{
	background: url("../img/bg_beige.jpg") repeat;
	margin: 20px auto 20px auto;
	padding: 50px 0;
	}

.bnr .bnr_block{
	width: 96%;
	max-width: 1200px;/*max-width: 980px;*/
	margin: 0 auto;
	}

