@charset "utf-8";
/* 
 style info : 下層ページ共通スタイル

2018/9/24

メインカラーオレンジ　#e7380d
サブカラー
緑　#33b963　
青　#3075fd
ピンク　#f15089

文字色グレー　#333
 */
 
 
  /*----------------------------------------------------
	下層ページ共通
----------------------------------------------------*/

#contents>section{
	padding:10px 0 70px;
}


 @media screen and (max-width: 768px) {
	#contents>section{
	padding:10px 0 50px;
	box-sizing:border-box;
	}
 }
 
 
h2,h3,h4,h5,p,ul,ol,dl,table{
	margin-top:20px;
	margin-bottom:20px;
}
@media screen and (max-width: 768px) {
	h2,h3,h4,h5,p,ul,ol,dl,table{
	margin-top:15px;
	margin-bottom:15px;
}
}

/*	breadcrumb パンくずナビ
----------------------------------------------------*/
.breadcrumb{
	width:100%;
/*	height:35px;
	line-height:35px;*/
	background:#fff;
	line-height:1.2;
	padding:8px 0;
}
.breadcrumb li{
	display:inline;
	margin-right:4px;
	font-size:1.2rem;
}
.breadcrumb li:after{
	content:" /"
}
.breadcrumb li:last-child:after{
	content:""
}
.breadcrumb li a{
	text-decoration:none;
	color:#333;
}
@media screen and (max-width: 768px) {
	.breadcrumb{
		padding:5px 10px;
		box-sizing:border-box;
		height:initial;
		height:auto;
		line-height:1.2;
	}
}
 
/*下層ページタイトル
----------------------------------------------------*/

.ttl{
	padding:20px 0;
	background:#fef6e5;
	margin-bottom:50px;
}
.ttl h2{
	width:960px;
	margin:auto;
	font-size:3.2rem;
	line-height:1.2;
	background:url(../img/page/ttl_icon.png) no-repeat left center;
	background-size:25px;
	padding-left:33px;
}

h3.subttl,h4.subttl{
	font-size:2.4rem;
	position: relative;
	padding-bottom:10px;
	margin:0 0 35px;
	color:#333;
}
h3.subttl:before,h4.subttl:before{
	width:100%;
	background-color: #f3f3f3; /* 線色 */
    border-radius:3px; /* 線幅の半分 */
    content: "";
    display: block;
    height: 6px;
	position:absolute;
	bottom:0;
}
h3.subttl:after,h4.subttl:after{
	width:50%;
	background-color: #33b963; /* 線色 */
    border-radius:3px; /* 線幅の半分 */
    content: "";
    display: block;
    height: 6px;
	position:absolute;
	bottom:0;
}
h3.subttl.blue:after,h4.subttl.blue:after{
	background-color:#3075fd;
}
h3.subttl.pink:after,h4.subttl.pink:after{
	background-color:#f15089;
}

/*サブタイトル2個目以下マージンtop*/
h3.subttl:nth-of-type(n+2) ,h4.subttl:nth-of-type(n+2),h5.subttl:nth-of-type(n+2),.caption:nth-of-type(n+2) {
    margin-top: 60px;
}
h5.subttl{
	color:#e7380d;
	font-weight:bold;
	font-size:1.8rem;
}
.caption{
	background-color: #fde9e4;
	padding: 10px 15px;
	border-radius: 7px;
	font-weight:bold;
	font-size:1.8rem;
	margin:0 0 35px;
}

@media screen and (max-width: 768px) {
	.ttl{
	height:initial;
	height:auto;
	padding: 0;
	margin-bottom:30px;
}
.ttl h2{
	width:100%;
	margin:0 10px;
	box-sizing:border-box;
	font-size:2.4rem;
	line-height:1.1;
	background:url(../img/page/ttl_icon.png) no-repeat left center;
	background-size:20px;
	padding:10px 10px 10px 25px;
}
h3.subttl,h4.subttl{
	font-size:1.8rem;
	margin-bottom:25px;
}
h3.subttl br,h4.subttl br{
	display:none;
}

h3.subttl:nth-of-type(n+2),h4.subttl:nth-of-type(n+2)  {
    margin-top: 50px;
}

}

/*カテゴリTOP一覧*/

ul.catmenu{
	margin:auto;
}
 .catmenu li{
	 display:inline-block;
	 width:300px;
	 vertical-align:top;
	 margin-right:20px;
	 padding:0 0 40px;
 }
  .catmenu li:nth-of-type(3n){
	   margin-right:0px;
  }
 .catmenu li h4, .catmenu li p{
	 margin:0 ;
 }

@media screen and (max-width: 768px) {
	ul.catmenu{
	}
	.catmenu li{
		display:block;
		 margin:0 auto 30px;
		 padding:0;
		 width:100%;
	}
	  .catmenu li:nth-of-type(3n){
	   margin-right: auto;
  }
.catmenu li img{
		 width:100%;
	}
}


/* table 表組基本
-----------------------------------------*/	

table {
	border-collapse: collapse;
	width:100%;
	box-sizing: border-box;
}
 table th,table td{
	border-bottom:1px solid  #b3a9a6;
}
 table tr:last-child th,table tr:last-child td{
	border-bottom:none;
}
table th {
	background: #f3f3f3;
	padding: 10px 20px;
	vertical-align:middle;
	white-space:nowrap;
}
table td {
	padding: 10px 20px;
	vertical-align:middle;
}

@media screen and (max-width: 768px) {
	
	table {
    width: 100%;
  }
  table th {
		padding:10px;
		display:block;
		width:100%;
		box-sizing:border-box;
		white-space:initial;
	}
	table td {
		padding:10px;
		display:block;
		width:100%;
		box-sizing:border-box;
	}
 table tr:last-child th,table tr:last-child td{
	border-bottom:1px solid  #b3a9a6;
}
}

/*横並びbox
-----------------------------------------*/	

.sidebox{
	display:inline-block;
	width:47%;
	margin-right: 2%;
	vertical-align:middle;
	box-sizing:border-box;
}
.sidebox2 figure {
	display:inline-block;
	width:47%;
	margin-right: 2%;
	vertical-align:top;
	margin-bottom: 24px;
	box-sizing:border-box;
}
.sidebox2 figure img{
	max-width: 100%;
	height: auto;
}

.sidebox2 figure:nth-child(even) {
	margin-right: 0;
}
 @media screen and (max-width: 768px) {
	 .sidebox{
		 width: 100%;
		 display:block;
	 }
	.sidebox2 figure {
		width: 100%;
		margin-bottom:10px;
}
 }

/* テキストリストボックス
-----------------------------------------*/	

ul.text-list {
   
}
ul.text-list  li {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
}
ul.text-list  li a {
    color: #000;
    display: block;
    width: 100%;
	padding: 20px ;
    height: 100%;
	box-sizing:border-box;
}
ul.text-list  li h3{
		margin:0 ;
	font-size:2.0rem;
}
ul.text-list  li p{
		margin:0 ;
	}

ul.text-list  li:nth-of-type(odd){
	background:#f6f4f3;
}

/*pdfアイコン表示*/
ul.text-list  li a[href$=".pdf"]{
    background: url(../img/common/icon-pdf-m.png) no-repeat right 20px center;
	padding-right: 40px;
}

ul.text-list li a:hover{
	background:#ffe2d6;
}
ul.text-list li a[href$=".pdf"]:hover,ul.text-list li a.pdf:hover{
   background: #ffe2d6 url(../img/common/icon-pdf-m.png) no-repeat right 20px center;
}　

@media screen and (max-width: 768px) {
	ul.text-list  li a {
		padding: 10px 1em;
	}
	ul.text-list  li h3{
	font-size:1.8rem;
}
}



/*注釈リスト(２行目以降インデント有り
-----------------------------------------*/	
.notice{
	margin-left:1em;
}
.notice li{
	text-indent: -1em;
}
.notice li:before {
  content: "■";
}

.notice2{
	margin-left:1em;
}
.notice2 li{
	text-indent: -1em;
}
.notice2 li:before {
  content: "※";
}



/*	ページャー
----------------------------------------------------*/
ul.pager {
	margin: 0;
	padding: 10px 10px 5px;
	text-align: center;
}
ul.pager li {
	display: inline;
	margin: 0 8px;
	padding: 0;
}
ul.pager li span,
ul.pager li a {
	display: inline-block;
	margin-bottom: 5px;
	padding: 8px 16px;
	background: #fff;
	text-decoration: none;
	vertical-align: middle;
	border-radius:6px;
	border:1px solid #ccc;
}
ul.pager li span{
	background:#f3f3f3;
}
ul.pager li a:hover {
	background:#ffe2d6;
}
ul.p-top {
	margin: 0 0 30px 0;
}
ul.p-bottom {
	margin: 40px 0 0 0;
}
@media screen and (max-width: 768px) {
	ul.pager {
	padding: 0px;
	}
	ul.pager li {
		margin:0 3px;
	}
	ul.pager li span,
ul.pager li a {
	display: inline-block;
	margin-bottom: 5px;
	padding: 3px 3.5%;
	border-radius:4px;
}
	
}

/*もっと見るボタン*/

.morebtn{
	margin: 40px 0 0 0;
}
	.morebtn span{
	box-sizing:border-box;
	position:relative;
	display:block;
	border:1px solid #666;
	width:300px;
	margin:auto;
	padding:10px 20px;
	text-align:center;
	color:#666;
	cursor:pointer;
}
.morebtn span:after{
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -12px;
    content: "\f107";
	color:#666;
    font-family: FontAwesome;
	}
	.morebtn span:hover{
		background:#f5f5f5;
	}
@media screen and (max-width: 768px) {
	.morebtn a{
		width:100%;
	}
}



/*ボタン類
----------------------------------------------------*/

 .btnbase a{
	box-sizing:border-box;
	position:relative;
	display:block;
	background:#666;
	width:300px;
	margin:auto;
	padding:10px 20px;
	text-align:center;
	color:#fff;
}
.btnbase a:after{
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -12px;
    content: "\f105";
	color:#fff;
    font-family: FontAwesome;
	}
@media screen and (max-width: 768px) {
	.btnbase a{
		width:100%;
	}
}

a.linkbtn {
	background:#f3f3f3;
	margin:8px 0 0;
	padding:10px 20px;
	border-radius:8px;
	display:block;
	width:450px;
	text-align:center;
	box-sizing:border-box;
}
a.linkbtn[href$=".pdf"]{
    background:#f3f3f3 url(../img/common/icon-pdf-m.png) no-repeat right 20px center;
    padding-right:50px;
 
}
@media screen and (max-width: 768px) {
	a.linkbtn{
		width:100%;
		text-align:left;
	}
}



/*動画 埋め込み
-----------------------------------------*/	
.movie_wrap video{
width: 100%;
height: auto;
margin: 0 auto 40px;
}

/*バックナンバー
-----------------------------------------*/	
.backnumber h4 {
    background-color: #fde9e4;
    padding: 10px 15px;
    border-radius: 7px;
    font-weight: normal; 
}

.backnumber ul li {
  position: relative;
  padding-left: 20px;
   margin: 0 0 15px 20px;
}
.backnumber ul li a{
	text-decoration: underline;
	margin: 0 8px;
}
.backnumber ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #b3a9a6;
 }

@media screen and (max-width: 768px) {
.backnumber ul li {
   margin: 0 0 15px 10px;
}
}


/*eatime 新聞
-----------------------------------------*/	
#contents>section.eatimenews_wrap{
padding-top: 0;
}

.eatimenews_wrap h3{
	margin-top:0;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #28498C;
	color: #28498C;
	text-align: center;
	font-size: 2.0rem;
}
.eatimenews_wrap p{
	margin: 0;
}
.eatimenews_list {
	margin: 40px 0 ;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.eatimenews_list li{
	width: 40%;
	text-align: center;
	margin-bottom: 20px;
}
.eatimenews_list li h4{
	margin-top: 10px;
}
.eatimenews_list li img{
	width:300px;
}

