@charset "utf-8";

*{
    box-sizing:border-box;
}

#id_list{
	display:none;
}

#main.select{
    max-width:1200px;
    width:100%;
    margin:auto;
	padding:120px 20px 30px 20px;
}

#main p{
	font-size:13px;
}

#main .comment{
	display:block;
	padding:10px;
	margin:10px 0;
	background:#F8F5EA;
	border:solid 1px #f1edde;
}

#main .comment h3{
	color:#807c6b;
	padding-bottom:5px;
}

#main .dark_gray{
	color:#444;
}

#main a{
	text-decoration:underline;
}

#main h2{
    margin:0;
	margin-top:20px;
	margin-bottom:15px;
    font-size:24px;
}

#main .login{
	padding:10px 0;
}

.eachTitle{
	position:relative;
	padding-bottom:8px;
}

p.item_cd{
	display:inline-block;
	font-size:12px;
	color:#222;
	margin-top:4px;
	margin-bottom:4px;
	border:solid 1px #aaaaaa;
	padding:1px 8px;
	border-radius:13px;
}

p.item_cd:before{
	content:"商品コード：";
}

#item_list {
	display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 90px 50px;
    margin-top: 24px;
    width: auto;
	padding: 1%;
	margin-bottom:80px;
}

#item_list a{
	text-decoration:none;
}

#item_list a:hover{
	text-decoration:underline;
}

#item_list .price{
	padding-top:5px;
	font-size:20px;
	font-weight:bold;
	
}

#item_list .price .zeikomi{
	font-size:13px;
}

.imgFixed .eachCont{
	display:flex;
	justify-content:center;
}

.imgFixed .eachCont.cf .bottleImg{
    display: flex;
	justify-content:center;
	margin-bottom:15px;
    width: 170px;
    height: 170px;
    border: none;
}
.imgFixed .eachCont.cf .bottleImg>a>img{
    max-width: 170px;
    max-height: 170px;
}
.imgFixed .eachCont.cf .bottleImg:hover{
    border: none;
}

#main .wrap_product{
	position:relative;
	height:calc(100% + 60px);
}

#main .btns{
	position:absolute;
	width:100%;
	display:flex;
	gap:15px;
	bottom:0;
	justify-content:center;
	cursor:pointer;
}

#main .btns .btn{
	width:100%;
	text-align:center;
	padding:10px 0;
}

#main a.btn {
	text-decoration:none;
    display:inline-block;
    color: #111;
    background: #edb500;
    border: 1px solid #d8a424;
    padding:10px;
    border-radius:4px;
    margin:10px 0;
}

#main .thanks a.btn {
	text-decoration:none;
    display:inline-block;
    color: #111;
    background: #fff;
    border: 1px solid #494949;
    padding:10px;
    border-radius:4px;
    margin:10px 0;
}
#main a.btn.detail{
	border:1px solid #494949;
	background:#fff;
}
#main a.btn:hover{
	border-color:#E17100;
    opacity:0.9;
    text-decoration:none;
}

.bread a{
    color:#646464;
}

.bottom_comment{
	display:none;
	width:100%;
	border-top:solid 1px #ccc;
	padding-top:5px;
}

.thanks{
	width:100%;
	border-top:solid 1px #ccc;
	padding-top:5px;
	margin-top:20px;
}

.thanks h3{
	padding-top:20px;
}

.thanks ul{
	padding-top:5px;
	padding-bottom:10px;
}

.thanks ul li{
	list-style-type:disc;
	margin-left:15px;
}

#main .bottom_comment .btn{
	margin-bottom:20px;
}

#main .bottom_comment .cart_all{
	margin-top:15px;
	cursor:pointer;
}

.under_arrow{
	width: 35px;
	height: 35px;
	border: 5px solid;
	border-color:  transparent transparent #bdbdbd #bdbdbd;
	transform: rotate(-45deg);
	margin:auto;
	margin-bottom:15px;
}

.region{
	font-size:13px;
	margin-bottom:8px;
}

.flag>span:before{
	content:"";
	display:block;
	width:25px;
	height:15px;
	float:left;
	margin-right:4px;
	margin-top:1px;
}

.flag-franch:before {
	background: url(../images/france.png) no-repeat 0 0;
	background-size: contain
}
.flag-spain:before {
	background: url(../images/spain.png) no-repeat 0 0;
	background-size: contain
}
.flag-italy:before {
	background: url(../images/italy.png) no-repeat 0 0;
	background-size: contain
}
.flag-germany:before {
	background: url(../images/germany.png) no-repeat 0 0;
	background-size: contain
}
.flag-austria:before {
	background: url(../images/austria.png) no-repeat 0 0;
	background-size: contain
}
.flag-usa:before {
	background: url(../images/america.png) no-repeat 0 0;
	background-size: contain
}

@media screen and (max-width:1000px) {
	#item_list {
		display: grid;
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


@media screen and (max-width:850px) {
	#main.select{
		padding:140px 15px 50px 15px;
	}
	#item_list {
		display: grid;
	    grid-template-columns: repeat(1, minmax(0, 1fr));
	    grid-gap: 12px 12px;
	    margin-top: 24px;
	    width: auto;
		padding: 1%;
		margin-bottom:0;
		padding-bottom:20px;
	}

	#main .btns{
		position:relative;
	}

	#main .btns .btn{
		width:100%;
		text-align:center;
		padding:10px 0;
	}

}