/*
	Basic Modal Styles
*/
.modal {
	display: none;
}
.modal.is-open {
	display: block;
}
.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: rgba(0,0,0,0.7);
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal__container {
	background-color: #fff;
	padding: 20px;
	margin-right: 20px;
	margin-left: 20px;
	max-width: 600px;
	max-height: 100vh;
	width: 100%;
	border-radius: 4px;
	overflow-y: auto;
	box-sizing: border-box;
}
.modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px !important;
}
.modal__title {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.25;
	color: #00449e;
	box-sizing: border-box;
}
.modal__close {
	font-weight: 600;
	font-size: 1.5rem;
	background: transparent;
	border: 0;
}
.modal__header .modal__close::before {
	content: "\2715";
}
.modal__content {
	line-height: 1.5;
	text-align: center;
}
.modal__btn {
	-webkit-appearance: none; /*button*/
	font-size: 1.25rem;
	padding: 1rem;
	background-color: #2980b9;
	color: #fff;
	border-radius: 4px;
	border-style: none;
	border-width: 0;
	cursor: pointer;
	text-transform: none;
	overflow: visible;
	line-height: 1.15;
	text-decoration: none;
	width: 100%;
	max-width: 320px;
	margin: 0;
	display: inline-block;
	will-change: transform;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}
.modal__btn:focus, .modal__btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	text-decoration: none;
}
.modal__btn-primary {
	background-color: #00449e;
	color: #fff;
}
.modal__btn-wrap {
	margin-bottom: 1rem;
}
.modal__btn-wrap a.modal__btn {
	color: #fff;
}
.modal__btn-wrap a.modal__btn:hover {
	text-decoration: none;
}
.modal__btn--tel::before {
	font-family: "design_plus";
	content: "\f095";
	margin-right: 3px;
	font-size: 1.1em;
}
.modal__header, .modal__content, .modal__btn-wrap, .modal__btn {
	box-sizing: inherit;
}
.modal__container p {
	margin-bottom: 0 !important;
}
.modal__menulogo-wrap {
	padding-top: 10px;
	padding-bottom: 10px;
}
.modal__apps-wrap {
	display: flex;
}
.modal__apps-link {
	flex-basis: 50%;
}

/*
	Demo Animation Style
*/
@keyframes mmfadeIn {
	  from { opacity: 0; }
	    to { opacity: 1; }
}
@keyframes mmfadeOut {
	  from { opacity: 1; }
	    to { opacity: 0; }
}
@keyframes mmslideIn {
	from { transform: translateY(15%); }
	  to { transform: translateY(0); }
}
@keyframes mmslideOut {
	  from { transform: translateY(0); }
	  to { transform: translateY(-10%); }
}
.micromodal-slide {
	display: none;
}
.micromodal-slide.is-open {
	display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}

/*
	Common
*/
/*.sec {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}
.sec::after {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
	background: rgba(0, 0, 0, .5);
}
.sec01 {
	background-image: url(img/bg-01.jpg);
}
.sec02 {
	background-image: url(img/bg-02.jpg);
}
.wrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}*/
.modal__btn-wrap{
	max-width: 100%;
	flex: 0 0 100%;
	position: relative;
	z-index: 1;
	text-align: center;
}
/*.heading {
	color: #fff;
	font-size: 28px;
	margin-bottom: 20px;
}*/
.modal__footer {
	margin-left: auto;
	margin-right: auto;
	padding: 20px 0;
}
.modal__footer button {
	font-size: 1rem;
	padding: 0.5rem 1rem;
	color: #000;
	border-radius: 4px;
	border-width: 0;
	cursor: pointer;
	-webkit-appearance: button;
	text-transform: none;
	overflow: visible;
	max-width: 120px;
	line-height: 1.15;
	width: 100%;
	margin: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}