@charset "utf-8";
/* CSS Document */

/*大枠*/
#outer{
	width: 1260px;
	margin: 0 auto;
}
/*見出し*/
#outer .top_parts{
	width: 100%;
	display: flex;
	justify-content: space-between;
	background-color: #DAC0A3;
	margin-bottom: 50px;
}
#outer .top_parts .top_txt{
	width: 54%;
	color: #102C57;
	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.2em;
	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%;
}

/*ページジャンプ*/
#outer .jump{
	width: 100%;
	margin: 0 auto 50px;
	box-sizing: border-box;
	position: relative;
	top: 0;
	z-index: 2;
	padding-bottom: 0;
	padding-top: 0;
	max-width: 100%;
}
#outer .jump ul._genre_menu{
	width: 100%;
	display: flex;
	flex-flow: row;
	justify-content: center;
	margin: 0;
	box-sizing: border-box;
/*	border: solid 2px #CC9B6D;*/
	list-style: none;
	padding: 0;
}
#outer .jump ul._genre_menu li.global_item{
	width: 33%;
	border-right: solid 2px #FFFFFF;
	position: relative;	
	background-color: #DAC0A3;
}
#outer .jump ul._genre_menu li.global_item:last-child{
	border-right-style: none;
	margin-right: 0;
}
#outer .jump ul._genre_menu li.global_item a{
	display: block;
	padding: 20px;
	font-weight: bold;
	text-decoration: none;
	box-sizing: border-box;
	text-align: center;
	color: #102C57;
	font-size: 1.2em;
}
#outer .jump ul._genre_menu li.global_item:hover{
	background-color: #EBDDCE;
}

/*h2*/
#outer h2.uline_b{
	position: relative;
    margin-bottom: 0.2rem;
    padding: 1rem;
    color: #102C57;
    background-color: #EADBC8;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
/*	background: #F8F0E5;
	border: solid 1px #DAC0A3;
	padding: 0.75rem 1.5rem;
	margin-top: 45px;
	margin-bottom: 5px;
	font-size: 2em;
	font-weight: bold;
	color: #102C57;*/
}
#outer h2.uline_b:before {
    position: absolute;
    inset: -5px 5px 5px -5px;
    border: 2px solid #102C57;
    content: '';
}
/*h2・h3の下の文章*/
#outer p.contents_txt{
	font-size: 1.2em;
	padding: 10px;
	margin-bottom: 40px;
	line-height: 1.5;
}

/*h3*/
#outer h3.item_h3,#outer .column h3{
	font-size: 1.7em;
	font-weight: bold;
	margin: 15px 0 10px;
	position: relative;
	padding: 5px;
	color: #3F3A34;
}
#outer h3.item_h3::before{
	content: "┃";
	color: #D02D00;
}
#outer h3.item_h3._02{
	position: relative;
    margin-bottom: 2rem;
    padding: 0.5rem 0 0;
    border-bottom: 8px dotted #DAC0A3;
    font-weight: bold;
}

#outer .contents{
	width: 100%;
	margin-bottom: 50px;
}
#outer .item{
	margin: 10px 10px 30px;
	padding: 5px;
}
#outer .item p{
	font-size: 1.2em;
	line-height: 1.5;
}

/*左画像・右文章のところ*/
#outer .contents_a{
	margin: 0 auto 50px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	column-gap: 20px;
}
#outer .contents_a .item_img{
	grid-row: 1; grid-column: 1;
}
#outer .contents_a .item_img img{
	width: 100%;
}
#outer .contents_a .item_txt{
	grid-row: 1; grid-column: 2;
}
#outer .contents_a .item_txt p{
	font-size: 1.2em;
	line-height: 1.5;
}
#outer .contents_a .item_h4{
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 10px;
}

/*4個並びのとこ*/
#outer .contents_b{
	width: 100%;
	margin: 0 auto 50px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 15px;
	grid-row-gap: 10px;
}
#outer .contents_b .item_2{
	border: solid 1px #cccccc;
	padding: 5px;
	position: relative;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
}
#outer .contents_b .item_2 .item_img{
	text-align: center;
}
#outer .contents_b .item_2 .item_img　img{
	width: 100%;
}
#outer .contents_b .item_2 .item_img .new_icon{
	position: relative;
}
#outer .contents_b .item_2 .item_img .new_icon img{
	position: absolute;
	top: 5px;
	left: 10px;
}
#outer .contents_b .item_2 .item_txt{
	padding: 5px;
	margin-bottom: 15px;
	font-size: 1.2em;
}
#outer .contents_b .item_2 .item_txt p.item_p{
	font-weight: bold;
}
#outer .contents_b .item_2 p.btn_p{
	margin-top: auto;
	margin-bottom: 12px;
	padding: 10px;
	background-color: #DAC0A3;
	text-align: center;
	color: #102C57;
	font-weight: bold;
	border-radius: 100vh;
	font-size: 1.2em;
}
#outer .contents_b .item_2 a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*カテゴリへの大きいボタン*/
#outer .btn{
	width: 100%;
	font-size: 2em;
	margin: 25px auto 85px;
}
#outer .btn a{
	position: relative;
	display: block;
	text-align: center;
	vertical-align: middle;
	margin: auto;
	padding: 10px;
	font-weight: bold;
	border-radius: 100vh;
	background-color: #DAC0A3;
	color: #102C57;
	border: solid 2px #DAC0A3;
	text-decoration: none;
}

/*関連記事のところ*/
#outer .column{
	width: 100%;
	margin-bottom: 45px;
}
/*#outer .column h3{
	font-size: 1.5em;
	font-weight: bold;
	margin: 35px 0 15px;
}*/
#outer .column h3::before{
	content: "●";
	color: #D02D00;
}
#outer .contents_02{
	display: flex;
	flex-wrap: wrap;
/*	justify-content: space-between;*/
	margin: 0 auto;
}
#outer .contents_02 .item_{
	width: 32%;
	box-sizing: border-box;
/*	border: solid 1px #cccccc;*/
	display: flex;
	flex-direction: column;
}
#outer .contents_02::after{
	content: "";
	display: block;
	width: 32%;
	height: 0;
}

#outer .contents_02 .item_ ul.btns_{
	margin-top: auto;
	margin-bottom: 12px;
	padding: 0 10px;
}
#outer .contents_02 .item_ ul.btns_ li.btn_gazou_{
	position: relative;
}
#outer .item_ .btn_gazou_ a{
	display: block;
	position: relative;
	padding: 10px;
	color: #102C57;
	background-color: #DAC0A3;
	font-weight: bold;
	border-radius: 20px;
	text-align: center;
	text-decoration: none;
	font-size: 1em;
}

#outer .column ul.tokusyu{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
	list-style: none;
	margin: 0 auto;
}
#outer .column ul.tokusyu li{
	width: 23%;
	margin-bottom: 10px;
}
#outer .column ul.tokusyu li img{
	width: 100%;
	height: auto;
}
#outer .column ul.tokusyu::before{
	content: "";
	display: block;
	width: 23%;
	order: 1;
}
#outer .column ul.tokusyu::after{
	content: "";
	display: block;
	width: 23%;
}

#outer .btn a:hover,#outer .contents_b .item_2:hover,
#outer .column ul.tokusyu li:hover,
#outer .contents_02 .item_ ul.btns_ li.btn_gazou_:hover{
	opacity: 0.7;
}




/*スマホの設定*/
@media screen and (max-width : 768px ){
/*	body * {
		outline: red 1px solid;
	}*/
	
	/*大枠*/
	#outer{
		width: 100%;
	}
	/*見出し*/
	#outer .top_parts{
		flex-direction: column-reverse;
		margin-bottom: 25px;
	}
	#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%;
	}
	
	/*ページジャンプ*/
	#outer .jump{
		width: 100%;
		background-color: #DAC0A3;
		box-sizing: border-box;
		border-radius: 1rem;
		position: static;
	}
	#outer .jump ul._genre_menu{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		font-size: 0.9em;
		border-top: #FFFFFF; 
		border-right-style: none;
		border-left-style: none;
		border-bottom-style: none;
	}
	#outer .jump ul._genre_menu li.global_item{
		border-left: none;
		width: 100%;
		border-bottom: solid 1px #ffffff;
		box-sizing: border-box;
		border-right: none;
		background-color: #DAC0A3;
		padding: 10px;
	}
	#outer .jump ul._genre_menu li.global_item a{
		width: 100%;
		margin: 0 auto;
		padding: 5px 7px;
		font-size: 14px;
		text-align: center;
	}
	#outer .jump ul._genre_menu li.global_item a::after{
		content: none;
	}	
	#outer .jump ul._genre_menu li.global_item a::before{
		content: "";
  		position: absolute;
		top: 20px;
		left: 40px;
		border: 8px solid transparent;
		border-top: 10px solid #ffffff;  
	}
	
	/*h2*/
	#outer h2.uline_b{
		font-size: 1.7em;
		font-weight: bold;
		margin: 25px 5px 0 10px;
		padding: 10px;
		line-height: 1.2;
		text-align: center;
	}
	#outer h2.uline_b._01{
		font-size: 1.8em;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	#outer p.contents_txt{
		margin-bottom: 0;
		line-height: 1.5;
	}
	
	/*h3*/
	#outer h3.item_h3{
		font-size: 1.4em;
		font-weight: bold;
		margin: 25px 0 10px;
		border-left: none;
		padding: 5px;
	}
	#outer h3.item_h3._02{
		margin: 5px 10px 20px;
		padding: 0.5rem 0 0;
		border-bottom: 8px dotted #DAC0A3;
	}
	
	/*左画像・右文章のとこ*/
	#outer .contents_a{
		display: inherit;
		padding: 10px;
	}
	#outer .contents_a .item_img{
		text-align: center;
	}
	#outer .contents_a .item_img img{
		width: 100%;
	}
	#outer .contents_a .item_txt{
		padding-top: 5px;
	}
	#outer .contents_a .item_h4{
		font-size: 1.2em;
		font-weight: bold;
	}

	
	/*おすすめ商品のとこ*/
	#outer .contents_b{
		grid-template-columns: 1fr 1fr;
		column-gap: 0;
		grid-row-gap: 0;
	}
	#outer .contents_b .item_2{
		margin: 5px;
	}
	#outer .contents_b .item_2 .item_img img{
		width: 100%;
	}
	#outer .contents_b .item_2 .item_img .new_icon{
		position: relative;
		width: 25%;
	}
	#outer .contents_b .item_2 .item_img .new_icon img{
		position: absolute;
		top: 0;
		left: 3px;
	}
	#outer .contents_b .item_2 .item_txt p.item_p{
		font-size: 0.9em;
	}
	#outer .contents_b .item_2 p.btn_p{
		padding: 3px;
	}
		
	/*カテゴリへのでかいボタン*/
	#outer .btn{
		font-size: 10px;
		width: 100%;
		margin-top: 20px;
		margin-bottom: 90px;
	}
	#outer .btn a{
		padding: 5px;
		background-color: #DAC0A3;
		border-radius: 100vh;
		color: #102C57;
		font-weight: bold;
		text-align: center;
		display: block;
		position: relative;
		transition: .3s;
		margin: 10px;
		font-size: 1.5em;
	}
	
	/*関連記事のとこ*/
	#outer .column{
		width: 100%;
	}
	#outer .column h3{
		padding: 5px;
		font-size: 1.3em;
		margin: 5px;
	}
	#outer .column h3::before{
		content: "●"
	}
	#outer .contents_02{
		padding: 0 10px;
	}
	#outer .contents_02 .item_{
		width: 100%;
		margin: 5px auto;
		padding: 0;
	}
	#outer .contents_02::after{
		content: none;
	}
	#outer .contents_02 .item_ ul.btns_{
		font-size: 0.8em;
		width: 100%;
		margin-bottom: 0;
		padding: 0;
	}
	#outer .contents_02 .item_ ul.btns_ li.btn_gazou_{
		position: relative;
	}
	#outer .item_ .btn_gazou_ a{
		padding: 10px 0;
		background-color: #DAC0A3;
		border-radius: 100vh;
		color: #102C57;
		font-weight: bold;
		text-align: center;
		display: block;
		position: relative;
		transition: .3s;
		margin: 5px;
	}
	
	#outer .column ul.tokusyu{
		width: 96%;
		margin: 0 auto 25px;
		padding: 0;
		float: none;
	}
	#outer .column ul.tokusyu li{
		width: 49%;
	}	
	
}
	



