@charset "UTF-8";
.modal_open{
  cursor: pointer;
  overflow: hidden;
}
 
.modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15000;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
}

.modal_box {
    position: fixed;
    z-index: 2147483630;
    display: none;
    width: 100%;
    max-width: 750px;
	height: 80vh;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    text-align: center;
    background: #ffffff;
    box-sizing: border-box;
}

.modal_close i {
    line-height: 62px;
    vertical-align: bottom;
}
 
.link_area {
    overflow: hidden;
    max-width: 410px;
    margin: 60px auto 0;
    text-align: center;
}
 
.link_area .modal_link {
    display: inline;
}
 
.link_area .modal_link a {
    display: inline-block;
    width: 180px;
    color: #000;
    line-height: 2.5;
    text-decoration: none;
    margin: 0 10px;
    background: #e6e6e6;
}
 
.link-area ul li.modal_link:first-child a {
    float: left;
}
 
.link-area ul li.modal_link:last-child a {
    float: right;
}
 
 
@media screen and (max-width: 768px) {
.modal_bg {
   position: fixed;
   top: 0;
   left: 0;
   z-index: 15000;
   display: none;
   width: 100%;
   height: 100%;
   background-color: rgba(0,0,0,0.75);
}

  .modal_box {
    position: fixed;
    z-index: 2147483630;
    display: none;
    width: 88%;
	height: 70vh;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    text-align: center;
    background: #ffffff;
    box-sizing: border-box;
    top: 5vh !important;
  }
 
  .modal_close i {
      line-height: 44px;
  }
 
  .link_area {
      margin: 25px auto 0;
  }
 
  .link_area .modal_link a {
      margin: 15px auto 0;
  }
 
  .link_area ul li.modal_link:first-child a {
      float: none;
      margin-top: 0;
  }
 
  .link_area ul li.modal_link:last-child a {
      float: none;
  }
 
}