@charset "utf-8";
/* CSS Document */

/*大枠*/
#outer{
	width: 1260px;
	margin: 0 auto;
}
/*パンくず*/
.navitopicpath_{
	overflow: hidden;
	font-size: 12px;
	margin: 15px 10px 25px;
}
#bread-crumb-list{
	width: 100%;
	float: left;
	overflow: hidden;
}
#bread-crumb-list li{
	display: inline;
}
.navitopicpath_ a{
	margin: 0 0.5em;
	white-space: nowrap;
}

/*見出し*/
#outer .top_parts{
	width: 100%;
	display: flex;
	justify-content: space-between;
	background-color: #86B2AA;
	margin-bottom: 50px;
}
#outer .top_parts .top_txt{
	width: 54%;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	padding: 0 0 0 25px;
}
#outer .top_parts .top_txt h1{
	font-size: 2.3em;
	font-weight: bold;
	padding-bottom: 5px;
	line-height: 1.2;
}
#outer .top_parts .top_txt p{
	font-size: 1.3em;
	padding-top: 10px;
}
#outer .top_parts .top_img{
	width: 44%;
}
#outer .top_parts .top_img img{
	width: 100%;
}
/*h2*/
h2.uline_b{
	font-size: 2em;
	font-weight: bold;
	border-bottom: solid 5px #000000;
	margin-top: 45px;
	margin-bottom: 25px;
}
p.contents_txt{
	width: 100%;
	font-size: 1.2em;
	padding: 10px;
	margin-bottom: 40px;
}

/*項目部分*/
#outer .contents{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}
.contents h3{
	font-size: 1.8em;
	font-weight: bold;
	margin-bottom: 10px;
	padding-left: 5px;
}
.contents h3::before{
	content: "┃"
}
.contents .item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	justify-content: space-between;
	padding: 10px;
	margin-bottom: 35px;
}

.contents .item .item_txt_01{
	width: 100%;
	box-sizing: border-box;
}
.contents .item .item_txt_01 p{
	line-height: 1.5;
    font-size: 1.2em;
    margin-bottom: 5px;
	padding: 5px;
}
.contents .item .item_img_01{
	width: 65%;
	margin: 0 auto;
}
.contents .item .item_img_01 img{
	width: 100%;
}

.contents .item .item_img{
	width: 49%;
}
.contents .item .item_img img{
	width: 100%;
}
.contents .item .item_txt{
	width: 49%;
	padding: 0 15px 15px;
	box-sizing: border-box;
}
.contents .item .item_txt p{
	line-height: 1.5;
    font-size: 1.2em;
    margin-bottom: 5px;
	padding: 5px 15px 10px;
}
.contents .item .item_txt span{
	font-weight: bold;
	font-size: 1.2em;
	color: #005BC9;
/*	border-bottom: solid 1px #000000;*/
}
.contents .item .item_txt ul.item_point{
	font-size: 1.2em;
	padding: 5px 15px 10px;
	line-height: 2;
}
.contents .item .item_txt ul.item_point li{
	font-weight: bold;
	font-size: 1.2em;
}
.contents .item .item_txt ul.item_point li::before{
	content: "・"
}

.contents .item .item_txt_01 strong{
	font-weight: bold;
}

/*おすすめ商品*/
#outer .recommend{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
	margin: 15px auto 45px;
}
#outer .recommend .recommend_item{
	width: 24%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	margin-bottom: 20px;
	border: solid 1px #90A6A7;
	padding: 0 0 1rem;
}
#outer .recommend .recommend_item a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -999px;
	transition: .3s;
}
#outer .recommend .recommend_item img{
	width: 100%;
}
#outer .recommend .recommend_item p{
	padding: 5px 5px 0;
}


dl.item_dl{
	width: 90%;
/*	border: solid 1px #ccc;*/
	padding: 25px;
	margin: 0 auto;
}
dl.item_dl dt{
	font-weight: bold;
	font-size: 1.2em;
	color: #005BC9;
}
dl.item_dl dd{
	font-size: 1.2em;
	padding: 3px 20px 20px 0;
}



/*スマホの設定*/
@media screen and (max-width : 768px ){
	/*	body * {
		outline: red 1px solid;
	}
	*/
	/*大枠*/
	#outer{
		width: 100%;
	}
	/*見出し*/
	#outer .top_parts{
		flex-direction: column-reverse;
	}
	#outer .top_parts .top_txt{
		width: 100%;
		padding: 15px;
	}
	#outer .top_parts .top_txt h1{
		font-size: 1.6em;
		padding: 5px 5px 20px 5px;
	}
	#outer .top_parts .top_txt p{
		font-size: 1em;
		padding: 5px;
	}
	#outer .top_parts .top_img{
		width: 100%;
	}
	#outer .top_parts .top_img img{
		width: 100%;
	}
	/*h2*/
	h2.uline_b{
		font-size: 1.7em;
		font-weight: bold;
		margin: 25px 10px 25px;
		padding-bottom: 5px;
		line-height: 1.2;
		text-align: center;
	}
	
	/*各項目*/
	.contents h3{
		font-size: 20px;
		font-weight: bold;
		margin: 25px 10px 25;
		border-left: none;
	}
	.contents h3::before{
		content: "┃"
	}
	.contents .item{
		width: 100%;
		margin: 0 0 5px 0;
		padding-bottom: 15px;
	}
	
	.contents .item .item_txt_01{
		width: 100%;
	}
	.contents .item .item_txt_01 p{
		line-height: 1.5;
		font-size: 1.2em;
	}
	.contents .item .item_img_01{
		width: 100%;
	}
	
	.contents .item .item_img{
		width: 100%;
	}
	.contents .item .item_txt{
		width: 100%;
		padding: 5px;
	}
	.contents .item .item_txt p{
		line-height: 1.5;
		font-size: 1.2em;
		padding: 5px;
	}
	.contents .item .item_txt ul.item_point{
		width: 100%;
		padding: 5px;
	}
	
	
	.contents .item .item_txt_{
		width: 100%;
		padding: 5px;
	}
	.contents .item .item_txt_ p{
		line-height: 1.5;
		font-size: 1.2em;
		padding: 5px;
	}
	dl.item_dl{
		width: 100%;
		padding: 5px;
		margin: 0 auto;
	}
	dl.item_dl dt{
		font-weight: bold;
		font-size: 1.2em;
		padding: 5px;
	}
	dl.item_dl dd{
		font-size: 1.2em;
		padding: 5px 10px 30px;
	}
	
	/*おすすめ商品一覧*/
	#outer .recommend{
		justify-content: space-between;
		box-sizing: border-box;
		padding: 0 10px;
	}
	#outer .recommend .recommend_item{
		width: 49%;
		font-size: 0.8em;
	}
}