@charset "UTF-8";

/*******************************
 
Top以下page共通Css
 
*******************************/
/*---title----*/
.page-ttl{
	background-image: url(/images/common/pagettl_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 90px 0;
	margin-bottom: 65px;
}
.page-ttl h2{
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 4px;
}


/*---page内navi----*/
.pagenavi{
	margin-bottom: 65px;
}
.pagenavi .box-flex{
	justify-content: space-between;
}
.pagenavi .item{
	width: 24%;
}
.ancher {
	height: 60px;
	display: block;
	text-align: center;
	background-color: #fff;
	border: solid 2px #000;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	border-radius: 10px;
	position: relative;
	padding-top: 15px;
	clear: both;
	margin: 0 auto;
	text-decoration: none;
}
.ancher:after{
	content: "\f105";
    font-family: FontAwesome;
    display: inline-block;
	margin-left: 10px;
}
.ancher:hover {
	background-color: #000;
	text-decoration: none;
	-webkit-transition: all .3s;
	transition: all .3s;
  	color: #fff;
	opacity: 1;
}

/*---section以下----*/
section{
	margin-top: -180px;
	padding-top: 180px;
	margin-bottom: 110px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.page-ttl{
		padding: 30px 0;
		margin-bottom: 30px;
	}
	.page-ttl h2{
		font-size: 24px;
	}
	.pagenavi{margin-bottom: 30px;}
	.ancher{
		font-size: 14px;
		height: 40px;
    	padding-top: 8px;
	}
	section{
		margin-bottom: 60px;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.pagenavi .item {
		width: 48%;
		margin-bottom: 10px;
	}
	section{
		margin-bottom: 30px;
		margin-top: -50px;
		padding-top: 50px;
	}
}
/*******************************
 
MenuCss
 
*******************************/
section.category h3{
	font-size: 24px;
    font-weight: bold;
    text-align: left;
    background-color: #f5e8c5;
    display: block;
    padding: 12px 0 12px 14px;
    border-left: solid 10px #e30920;
	margin-bottom: 40px;
}
.menu-list{
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.menu-list .item{
	width: 32%;
	text-align: left;
	align-self: stretch;
}
.menu-list .item:hover a{
	text-decoration: none;
}
.menu-list .img{
	border: solid 1px #d1d1d1;
	margin-bottom: 30px;
}
.menu-list .txt .detail{
	text-align: right;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	margin-bottom: 15px;
}
.menu-list .txt .detail:after{
	content: '(税込)';
	font-size: 12px;
}
.menu-list .txt .detail .name{
	background-color: #e30920;
    padding: 6px 20px;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 0;
}
.menu-list .txt .description{
	font-size: 14px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	section.category h3{
		font-size: 18px;
		padding: 8px;
		margin-bottom: 20px;
	}
	.menu-list .img{
		margin-bottom: 10px;
	}
	.menu-list .txt .detail{
		font-size: 16px;
	}
	.menu-list .txt .detail .name{
		font-size: 14px;
    	padding: 0 15px;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.menu-list .item {
		width: 100%;
		margin-bottom: 20px;
	}
}

/*******************************
 
MenuDetailCss
 
*******************************/
section.menu-detail h3{
	font-size: 24px;
    font-weight: bold;
    text-align: left;
    background-color: #f5e8c5;
    display: block;
    padding: 12px 0 12px 14px;
    border-left: solid 10px #e30920;
	margin-bottom: 30px;
}
section.menu-detail .img{
	margin-bottom: 30px;
}
section.menu-detail .txt{
	padding: 30px;
    border: solid 1px #d2d2d2;
    border-radius: 10px;
    text-align: left;
	font-size: 14px;
	margin-bottom: 20px;
}
section.menu-detail .description{
	font-weight: bold;
	margin-bottom: 30px;
}
section.menu-detail .description:before{
	content: '商品説明';
	display: block;
	color: #e30920;
	font-size: 20px;
	margin-bottom: 20px;
}
section.menu-detail .price{
	padding: 15px 30px;
    border: solid 1px #d2d2d2;
    border-radius: 10px;
    text-align: left;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 50px;
}
section.menu-detail .price:before{
	content: '価格';
	display: inline-block;
	color: #e30920;
	font-size: 20px;
	margin-right: 20px;
}
section.menu-detail .price:after{
	content: '(税込)';
	display: inline-block;
	font-size: 12px;
}
section.menu-detail .btn{
	font-size: 14px;
    font-weight: bold;
    border: solid 1px;
    border-radius: 0;
    display: inline-block;
    margin: 0 auto;
	padding: 10px 40px;
}
section.menu-detail .btn:hover{
	opacity: 1;
	background-color: #000;
	color: #fff;
}
section.menu-detail .btn:after{
	display: none;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	section.menu-detail h3{
		font-size: 18px;
		padding: 8px;
		margin-bottom: 20px;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	section.menu-detail .txt {
    	padding: 20px;
	}
	section.menu-detail .description{
		margin-bottom: 10px;
	}
	section.menu-detail .description:before {
		font-size: 18px;
		margin-bottom: 10px;
	}
	section.menu-detail .price {
    	padding: 15px 20px;
		margin-bottom: 30px;
	}
	section.menu-detail .price:before{
		font-size: 18px;
	}
	
}
