@charset "UTF-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

img{
	max-width: 100%;
	height: auto;
}
.fluid-image{
	max-width: 100%;
	height: auto;
}
body {
	background-image: url(../images/grape.svg);
	background-repeat: no-repeat;
	background-size: contain;
}
.wine_list {
	width: 80%;
	margin: 0 auto;
	padding: 45% 0 0 0;
}
header{
	background-color: rgba(255,255,255,0.75);
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: space-around;
}
header h1{
	color:darkslateblue;
	font-family: serif;
	font-size: 1.2rem;
}
header .backbtn{
	background-color:rgba(0,15,38,.35);
	border:2px solid #999;
	border-radius: 10px;
	display: inline-block;
}
header .backbtn a{
	text-decoration: none;
	color:white;
	display: block;
	padding: 10px 15px;
}
header .backbtn:hover{
	background-color: cadetblue;

}
.wineback{
	position: absolute;
	width: 100%;
	z-index: -1;
	top:0;
	left: 0;
}
.wine_list h2{
	font-weight: normal;
	font-size: 1rem;

	text-align: left;
	width: 90%;
	margin: 10px auto;

}
.wine_sentence {
	text-align: left;
	width: 90%;
	margin: 0 auto;
	border-top: 1px solid #999;
	padding: 10px 0;
}

.wineback img{
	min-width: 100%;
	height: auto;
}

.bottle{
	width: 21%;
	margin: 2%;
	min-width: 140px;
}
.bottle h2 {
	text-align: center;
}
.bottle-img{
	width:auto;
	/* height: 100%;
	aspect-ratio: 1/1.2;
	max-height: 230px; */
	text-align: center;
}
.wine_title {
	text-align: center;
}
/*
このクラスの背景としてぶどう画像をいれています。
画像のサイズが小さいので、横幅1920px以上にしておくと良いでしょう。
*/

.winelist_pic{
	display: block;
	width: 100%;
	height: auto;
	min-width: 100%;
	left: 0;
	
	
}
.winelist_pic img{
	width: 100%;
}



.wine_container1{
	width: 100%;
	height: auto;
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}





.flag{
text-align:center;
}

.marginbox{
	margin:30vw;
}
.pairing{
	width: 100%;
	text-align: center;
	padding: 120px 0;
	background-image: url(../images/awa-border.png),url(../images/awa-border.png);
	background-repeat: repeat-x,repeat-x;
	background-position: top center,bottom center;

}

@media(max-width: 600px) {

	.wine_list {
		width: 98%;
		
	}
	.bottle{
		width: 21%;
		margin: 4% 1%;
		min-width: 140px;
	}
	header{
		display: block;
	}
	header .backbtn{
		display: block;
		margin: 2% auto;
		text-align: center;
	}
}