/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
  filter: blur(3px);
}
/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(240, 240, 240, 0.6);
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 0px 0px 0;
}
/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 80%;
  margin-bottom: 10px;
  padding: 25px;
  transform: translate3d(0, 0, 0);
  color: #171717;
  background: #fff;
}
.remodal.remodal-is-opening, .remodal.remodal-is-closing {
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */
.remodal, .remodal-wrapper:after {
  vertical-align: top;
  margin: 100px 0px 0 0;
}
.header-menu{
		display: none;
	}
.link-menu:after {
  content: "∨";
  margin: 0 0 0 3px;
  font-weight: 600;
  font-size: 90%;
  color: #000;
}
/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media print, screen and (min-width : 768px) {
	.header-menu{
		display: none;
	}
  .modal-flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  	transform: translate3d(0,0,0);
	  margin: 0 100px 0 0;
}
  .modal-menu {
    padding: 0px;
    margin: 0 12px 0px 0;
    font-size: 18px; 
    text-align: right;
    font-weight: 500;
  }
  .modal-menu a {
  }
  .button-multi {
    width: 30px;
  }
  .cate-warp {
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    padding: 0px 0px 30px 0px;
    margin: 0 0 0 0;
  }
  .cate-menu {
    display: flex;
    justify-content:center;
    align-items:center;
    flex-wrap: wrap;
    font-size: 19px;
    text-align: center;
    margin: 10px 10px 10px 10px;
  }
  .cate-menu a {
		display: block;
		width: 290px;
		padding: 20px 10px 20px 10px;
		background: #fff;
    	color: #171717;
		border: #ddd 1px solid;
		border-radius: 6px;
		font-weight: 500;
  }
	.cate-menu a:hover {
	  text-decoration: none;
		background: #ffffcc;
	  color: #1b598c;
	  transition: all 0.5s;
	}
  .cate-menu p {
    line-height: 1.4em;
  }
  .cate-img {
    margin: 0 10px 0 0;
    width: 80px;
  }
  .remodal {
    max-width: 100%;
  }
  .remodal-cancel {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #171717;
    width: 55px;
    height: 55px;
    background: #fff;
    border: none;
    font-size: 2.6rem;
  }
  .multiling {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 2.0rem;
    text-align: left;
    margin: 0px 0 0px 10%;
    padding: 25px 0;
  }
  .multiling li {
    width: 156px;
    margin: 15px 0 15px 0;
  }
  .multiling li a {
    color: #171717;
  }
ul.btn-price > li.btn-price > a {
		background: #E82359;
		border-radius: 20px;
		padding: 5px 15px 5px 15px;
		margin: 0 0 0px 0;
		text-align: center;
		font-size: 17px;
		color: #fff;
		display: block;
	border: 2px solid #E82359;
}
	ul.btn-price > li.btn-price > a:hover {
		background: #fff;
		text-decoration: none;
		transition: all 1.0s;
		color: #E82359;
		border: 2px solid #E82359;
	}
}
@media print, screen and (min-width : 1200px) {
	.header-menu{
		display: block;
	}
  .modal-menu {
    padding: 0px;
    margin: 0 30px 0px 0;
    font-size: 19px; 
    text-align: right;
    font-weight: 500;
  }
}
@media print, screen and (min-width : 1600px) {
  .modal-menu {
    padding: 0px;
    margin: 0 35px 0px 0;
    font-size: 1.8rem; 
    text-align: right;
    font-weight: 500;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}