.modal_open{
    display: inline-block;
    margin: 3vw;
    float: left; 
}
 
.modal_box {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 80%;
    max-width: 840px;
    margin: 0;
    padding: 60px 2vw 80px;
    border: 2px solid #aaa;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}
 
.modal_close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 62px;
    font-size: 46px;
    color: #000;
    line-height: 62px;
    text-align: center;
    background: #e6e6e6;
}
 
.modal_close i {
    line-height: 62px;
    vertical-align: bottom;
}
 
.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);
}

.link_area ul{
	display: -webkit-flex;
    display: flex;
    align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.link_area ul li{
	margin: 0 5px;
	list-style: none;
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-size: 110%;
}
.link_area ul li a{
	padding: 10px 40px;
	text-align: center;
	background: #000;
	display: block;
	border-radius: 3px;
	color: #fff!important;
	cursor: pointer;
	line-height: 1.4em;
}
.link_area ul li a span{
	display: -webkit-flex;
    display: flex;
    align-items: center;
	justify-content: center;
}
.link_area ul li i {font-size: 80%; margin-left: 5px;}

.link-area ul li.back a {
	background: #333!important;
}
.link-area ul li.back i {margin-left: 0; margin-right: 5px;}
 
@media screen and (max-width: 767px) {
 
/*  ウィンドウサイズ769px以下の時のスタイル  */
 
  .modal_box {
      padding: 30px 2vw 30px;
  }
 
  .modal_close {
      width: 40px;
	  height: 40px;
      line-height: 40px;
      font-size: 30px;
	   display:flex;
   align-items:center;
   justify-content:center;
  }
 
  .modal_close i {
      line-height: 44px;
  }
	
	.link_area ul li a{
		padding: 10px 20px;
	}
 
}