/********************************************************
*　目次															
*　1. jumbotronの設定								
*　2. フッターを設定する						
*　3. スマホだけ余白を無くす				
*　4. トップへ戻るボタンを設置			
*　5. サイドバナーを付ける際の設定　
*　6. 新着情報のボーダーライン設定					
********************************************************/

body{
	background: url(../images/background.png);
	font-size: 16px;
}

.main-contents{
	background-color: #fff;
	margin-bottom: 20px;
	padding: 15px;
}

.thumbnail{
	padding: 0px;
}
.thumbnail-title{
  border-bottom: 1px solid #ddd;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
	margin: 0px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 15px;
	background: #f5f5f5;
	font-size: 1.2em;
}
.side-margin-auto{
	margin-right: auto;
	margin-left: auto;
}

.p-description{
	margin-top: 10px;
	font-size: 14pt;
}

.row-eq-height{
	display: flex;
	flex-wrap: wrap;
}
/*******************************************
*　1. jumbotronの設定　
*******************************************/
header.jumbotron	{
/*	background: url("../images/index-nabe.png");*/
	background-position: center 0;
	background-size: cover;
}

h1.jumbotron-h1{
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
@media (max-width: 767px){
	header.jumbotron {
		height: 410px;
		background: url("../images/index-nabe.png") center no-repeat;
		background-size: cover;
	}
}
/**********************************************
*　2. フッターを設定する　
***********************************************/
footer.sitemap{
	background-color: #eee;
	font-size: 14px;
	padding-top: 20px;
	padding-bottom: 10px;
}

p.sitemap{
	font-weight: bold;
}
p.sitemap a{
	text-decoration: none;
	color: black;
}
p.sitemap a:hover{
	border-bottom: black 1px solid;
}
footer.copyright{
	background-color: lightgray;
	font-size: 14px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.link-list{
	list-style: none;
	padding-left: 0px;
}

.link-list li a{
	color: gray;
	font-size: 13px;
}

/******************************
*　3. スマホだけ余白を無くす　*
******************************/
/* スマホ横画面用 */
@media screen and (max-width: 480px) {
  .container{padding:0}
  div[class^="col-"] {padding:0}
  .row {margin:0;}
}
/* スマホ縦画面用 */
@media screen and (max-width: 320px) {
  .container{padding:0}
  div[class^="col-"] {padding:0}
  .row {margin:0;}
}

/****************************************************
*　4. トップへ戻るボタンを設置　
****************************************************/
.pagetop{
	cursor: pointer;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: url(../images/pagetop.png) no-repeat;
	font-size: 2em;
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
}
.pagetop:hover{
	opacity: 0.8;
}
/***********************************************
*　スマホ画面上はボタンを小さくする　
***********************************************/
@media screen and (max-width: 480px) {
	.pagetop{
		background: url(../images/pagetop-small.png) no-repeat;
		bottom: 20px;
		right: 20px;
		width: 60px;
		height: 60px;
	}
}

@media screen and (max-width: 320px) {
	.pagetop{
		background: url(../images/pagetop-small.png) no-repeat;
		bottom: 20px;
		right: 20px;
		width: 60px;
		height: 60px;
	}
}

/**********************************************
*　5. サイドバナーを付ける際の設定　
**********************************************/
.main-content .content-area {
  padding: 20px 15px;
}
.sidebar aside {
  background: #f0f0f0;
  padding: 20px;
  margin-bottom: 20px;
}	

/**********************************************
*　6. 新着情報のボーダーライン設定　
**********************************************/
.spacing-top {
	min-height: 65px;
	padding-top:15px;
	padding-bottom:15px;
	border-top-width: 2px;
	border-top-style: dotted;
	border-top-color: #5a3300;
}

/**********************************************
*　7. 余白の設定　
**********************************************/
.padding5 {
	padding: 5px;
}

.padding10 {
	padding: 10px;
}

.padding15 {
	padding: 15px;
}

.margin10{
	margin: 10px 0px;
}

.item-title{
	font-weight: bold;
	font-size: 18px;
}