@charset "utf-8";
/* CSS Document */

	#overlay {
	  width: 100%;
	  height: 100%;
	  position: fixed;
	  top: 0;
	  left: 0;
	  background: rgba(0, 0, 0, 0.3);
	  display: none;
	  z-index: 2001
	 }

	#modalWindow {
	  width: 900px;
	  position: fixed;
	  background-color: #FFF;
	  display: none;
	  z-index: 2002;
	  padding:10px 0;
		box-shadow: 10px 10px 10px 10px rgba(0,0,0,0.4);
	}

	.coord_main_area{
		display:flex;
		display: -webkit-flex;
		justify-content: center;
		-webkit-justify-content: center;
		align-items: center;
		-webkit-align-items: center;
		width:90%
	}

	.coordinate_main{
		text-align: center;
		width: 60%;
	}

	.coordinate_main img{
		width: 80%;
	}

	.coordi_modal_item ul li{
		clear:both;
		margin-left:30px;
   	list-style-type: none;
	}

	.coordi_modal_item ul li a{
		width: 100%;
    /* height: 50px; */
    display: block;
    border: solid 1px rgb(41 41 41);
    color: rgb(41 40 40);
    margin: 0 0 25px 0;
    padding: 10px 20px;
    height: auto;
	}
	.coordi_modal_item ul li a :hover{
	}

	.coordi_modal_item ul li a .item_modal_category{
		border-bottom: solid 2px rgb(90 88 88);
    margin: 0 0 5px 0px;
    display: block;
    font-size: 15px;
    font-weight: 500;
	}

	.coordi_modal_item ul li a .coord_item_name{
    display: block;
		font-size: 16px;
		margin: 5px 0;
	}
	.coordi_modal_item ul li a .coord_item_price{
		display: block;
    font-size: 16px;
    margin: 5px 0;
	}


	.coordi_modal_item ul li a img{
		width:75px;
	}

     .coordi_modal_item ul li a p{
		 display:inline-block;
		 vertical-align:middle;
		 font-size: 18px;
	}


.coord_modal_wrapper{
	    opacity: 0
	}

.coord_modal_wrapper .close{
	cursor:pointer;
	position:absolute;
	top:0px;
	left:90%;
	color:#5e5b5b;
	padding: 15px 20px 15px 20px;
	font-size: 50px;
	}

.totalprice_area{
	text-align: center;
}

	/* ローディングアイコン */
	#loading {
			width: 80px; /* ローディングアイコンのサイズになる */
			height: 80px;
			border: 8px solid #696969;  /* 先の太さや色になる */
			border-right-color: transparent;
			border-radius: 50%;
			animation: spin 1s linear infinite;  /* 1秒ごとのアニメーションの指定 */
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			margin: auto;
	}

	/* アニメーションの設定 */
	@keyframes spin {
		0% {
				transform: rotate(0deg); /* 0度回す */
		}
		50% {
				transform: rotate(180deg);  /* 180度回す */
		}
		100% {
				transform: rotate(360deg);  /* 360度回す */
		}
	}

	/*sp*/
@media screen and (max-width: 455px) {

.coord_main_area {
	flex-direction: column;
	width: 100%;
}

.coordi_modal_item ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-wrap: wrap;
	width: 80%;
	margin: 0 auto;
}

.coordi_modal_item ul li {
    clear: both;
		margin-left: 0px;
    width: 48%;
		margin-top: 0px;
		text-align: center;
}

.coordi_modal_item ul li a {
    width: 100%;
    /* height: 50px; */
    display: block;
    border: solid 1px rgb(41 41 41);
    color: rgb(41 40 40);
    margin: 0 0 5px 0;
    padding: 2px 5px;
    height: auto;
}
.coordi_modal_item ul li a .item_modal_category {
    border-bottom: solid 2px rgb(90 88 88);
    margin: 0 0 3px 0px;
    display: block;
    font-size: 13px;
    font-weight: 500;
}
.coordi_modal_item ul li a .coord_item_name {
    display: block;
    font-size: 12px;
    margin: 1px 0;
}
.coordi_modal_item ul li a .coord_item_price {
    display: block;
    font-size: 12px;
    margin: 0px 0;
}


.coordi_modal_item ul li a p.item_img{
	display: none;
}

/* .coordi_modal_item ul li a img{
	display: none;
} */

.coordinate_main{
	width: 100%;
}

.coordinate_main img {
    width: 60%;
}

#modalWindow {
    width: 100%;
}

.coord_modal_wrapper .close{
	cursor: pointer;
	position: absolute;
	top: 0px;
	left: 87%;
	color: #5e5b5b;
	padding: 0;
	font-size: 40px;
   font-weight: 700;
}

.totalprice_area{
	margin-top: 10px;
}
.totalprice_area p{
    margin: 7px 0;
}


}


/*END*/
