@charset "utf-8";
/* CSS Document */

/*modal*/

.modal_open:hover{
	cursor: pointer;
	opacity: 0.8;
}

.modal_box {
	color: #ffffff;
	font-size: 1.5em;
    position: absolute;
	z-index: 9999;
    display: none;
    width: 90%;
    max-width: 1000px;
    margin: 1em 0 0;
    padding: 60px 2vw 40px;
    border-radius: 0.5em;
    text-align: center;
    background: #302e2e;
    box-sizing: border-box;
	overflow: hidden;

}

.modal_box .btn a{
	color:#0152ad;
	text-decoration: none;
	display: block;
	text-align: center;
	margin-top: 0.5em;
	padding: 1em 2em;
	border:1px solid #0152ad;
	border-radius: 4px;
	box-sizing: border-box;
	position: relative;
}

.modal_box .btn a:hover{
	cursor: pointer;
	background: #e9f1fc;
}

.modal_x01 .modal_close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 62px;
    font-size: 46px;
    line-height: 62px;
    text-align: center;
}
 
.modal_x01 .modal_close span {
    line-height: 62px;
    vertical-align: bottom;
	display: inline-block;
}
.modal_x01 .zmdi-close:before{
	content: '×';
	color: #ffffff;
}

.modal_x02 .modal_close{
	font-size: 0.5em;
	color: #ffffff;
	display: inline-block;
	width: 40%;
	padding: 1em 0;
	border: 2px solid #ffffff;
	position: relative;
}

.modal_x01 .modal_close:hover,
.modal_x02 .modal_close:hover{
	cursor: pointer;
}

.modal_x02 .modal_close:before{
	content: '×';
	color: #ffffff;
	position: absolute;
	top: 1em;
	right: 1em;
}

.modal_center{
	font-weight: 700;
	font-size: 0.8em;
	text-align: center;
	margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
	.modal_x02 .modal_close{
		padding: 2em 0;
	}
	
	.modal_x02 .modal_close:before{
		top: 2em;
	}
}

.modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.7);
}

.modal_img {
	margin-bottom: 2em;
}

.modal_img img{
	width: 100%;
}

.modal_tl{
	font-weight: 700;
	margin-bottom: 2em;
}

.modal_lead{
	font-weight: 700;
	font-size: 0.8em;
	text-align: left;
	margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
	.modal_lead{
		text-align: center;
	}
}

.modal_stl{
	font-size: 0.6em;
	position: relative;
	margin-bottom: 2em;
}

.modal_stl span{
	font-weight: 700;
	background: #302e2e;
	z-index: 99999;
	position: relative;
	padding: 0 2em;
}

.modal_stl::before{
	content: "";
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	border-bottom: 2px solid #ffffff;
}

.modal_list01{
	margin-bottom: 2em;
}

.modal_ex-text{
	font-size: 0.6em;
	margin-bottom: 2em;
}

.modal_day{
	font-size: 0.8em;
	font-weight: 700;
	margin-bottom: 2em;
}

.modal_list02{
	font-size: 0.6em;
	text-align: left;
	margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
	.modal_wrap {
		width: 80%;
		margin: 0 auto;
	}
	
	.modal_list01{
		display: flex;
		flex-wrap: wrap;
		text-align: left;
		font-size: 0.6em;
	}
	
	.modal_list01 li{
		min-width: calc(100% / 3);
		box-sizing: border-box;
		padding-right: 1em;
	}
}

@media screen and (max-width: 767px) {
	.modal_list01{
		text-align: left;
		font-size: 0.6em;
	}
	
	.modal_ex-text{
		font-size: 0.5em;
	}
}

@media screen and (max-width: 321px) {

	.modal_ex-text{
		font-size: 0.4em;
	}
}


.modal_ex-text a{
	color: #ffffff;
	padding-bottom: 0.25em;
	border-bottom: 2px solid #ffffff;
	position: relative;
	padding-right: 1em;
}

.modal_ex-text a::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}

@media screen and (min-width: 768px) {
	.modal_ex-text a:hover{
		opacity: 0.8;
	}
}


/*modal*/