@charset "utf-8";
@import url("global.css");

/*---------------------------------------------------------------------------------------
	トップページ
----------------------------------------------------------------------------------------*/

.top-main {
	position: relative;
    margin-bottom: 3em;
    text-align: center;
}
.top-main img{
	width: 100%;
	height: calc(90vh);
	object-fit: cover;
	object-position: center center;
}

.top-about {
	display: flex;
	justify-content: space-between;
}
.top-about figure{
	width: 40%;
	height: 500px;
}
.top-about figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.top-about div {
	width: 57%;
	margin-top: 1em;
}
.top-about span {
	font-size: var(--large);
}
.top-shop {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top-shop li {
	width: 48%;
	margin-bottom: 1.5em;
	display: flex;
	justify-content: space-between;
}
.top-shop li figure{
	width: 40%;
}
.top-shop li div{
	width: 57%;
}
.item-list {
	display: flex;
	flex-wrap: wrap;
}
.item-list li {
	width: calc(100% / 3 - 40px);
	margin: 20px;
}
.item-list li h3{
	margin-top: 1em;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	.top-main  img{
		height: auto;
	}
	.top-about {
		display: block;
	}
	.top-about figure{
		width: 100%;
		height: 350px;
	}

	.top-about div {
		width: 100%;
		margin-top: 1em;
	}
	.top-about span {
		font-size: var(--midium);
	}
	.top-shop {
		display: block;
	}
	.top-shop li {
		width: 100%;
		margin-bottom: 1.5em;
	}
	.top-shop li figure{
		width: 35%;
	}
	.top-shop li div{
		width: 62%;
	}
	.item-list li {
		width: calc(100% / 2 - 10px);
		margin: 5px;
	}
	.item-list li h3{
		margin-top: 1em;
	}
}

/*---------------------------------------------------------------------------------------
	news お知らせ一覧
----------------------------------------------------------------------------------------*/

.news-list {
	max-width: 100%;
	margin-bottom: 2em;
}
.news-list li{
	padding: 1em 0;
	display: flex;
	align-items: flex-start;
	line-height: 1.4;
}
.news-list li .date{
	width: 120px;
	margin-right: 1em;
}
.news-list li .tag{
	margin-right: 2em;
	line-height: 1;
	height: auto;
	padding: 5px;
}
.tag{
    display: inline-block;
    width: 160px;
    padding: .4em .8em;
    color:  var(--white);
    background: var(--back1);
    font-size: var(--small);
    text-align: center;
    vertical-align: middle;
	line-height: 1.4;
	border-radius: 4px;
}
.tag.news {background-color: var(--key)}
.tag.event {background-color: var(--subkey1)}
.tag.recruit {background-color: var(--key-m)}
.news-list li .title{
	width: 100%;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){

	.news-list li{
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		line-height: 1.4;
	}
	.news-list li .date{
		width: auto;
	}
	.news-list li .title	{
		width: 100%;
		margin-top: .3em;
	}
	.tag{
	    width: auto;
	    padding: .3em 1em;
	}


}
/*---------------------------------------------------------------------------------------
	調理法　how-to-cook
----------------------------------------------------------------------------------------*/
.how-to-cook article h3{
	font-size: var(--x-large);
	font-weight: bold;
}
.how-to-cook article {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 2em;
}
.how-to-cook article figure {
	width: 30%;
}
.how-to-cook article div {
	width: 67%;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	.how-to-cook article figure {
		width: 20%;
	}
	.how-to-cook article div {
		width: 77%;
	}

}
