@charset "UTF-8";



.modal_open{
//    display: inline-block;
 //   margin: 3vw;
  //  float: left; 
	cursor: pointer;
}
 
.modal_box {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 80%;
    max-width: 600px;	/*840px;*/
/*
    height: 80%;
    max-height: 400px;
*/
    margin: 0;
/*    padding: 60px 2vw 80px;*/
/*    border: 2px solid red;*/
    text-align: center;
/*    background: red;*/
    box-sizing: border-box;
}

.modal_box img {
	width:auto;
	height:auto;
	max-width:100%;
	max-height:100%;
}


 
.modal_close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 30px;
    font-size: 24px;
    color: #000;
    line-height: 26px;
    text-align: center;
    background: #e6e6e6;
}
 
.modal_close i {
    line-height: 26px;
    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 {
    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: 769px) {
 
/*  ウィンドウサイズ769px以下の時のスタイル  */
 
  .modal_box {
      /*padding: 50px 2vw 40px;*/
  }
 
  .modal_close {
      width: 30px;
      line-height: 26px;
      font-size: 24px;
  }
 
  .modal_close i {
      line-height: 26px;
  }
 
  .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;
  }
 
}




/* 光るボタン */
#ShineBtn a img {
    display: inline-block;
    width: 100%;
    max-width: 116px;
    margin: 0;
}
#xShineBtn a {
    display: inline;
    position: relative;
    z-index: 6882;
    overflow: hidden;
    width: 100%;
    height: 17px;
/*    border: 1px solid #52d3ff;*/
    max-width: 116px;
/*    border-radius: 2px;*/
/*    background-color: red;*/
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    transition: .25s linear;
    -webkit-transition: .25s linear;
    -moz-transition: .25s linear;
}
#ShineBtn a:hover {
    color: #52d3ff;
    background-color: #ffaa44;

}

#ShineBtn a:hover img {
	opacity:0.7;
	filter:alpha(opacity=70);
	-ms-filter: “alpha( opacity=70 )”;
}


#xShineBtn a:before {
    display: block;
    position: absolute;
    z-index: 7777;
    left: -30%;
    top: -50%;
    content: "";
    width: 166px;
    height: 17px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, #ffffff rgba(255,255,255,1),rgba(255,255,255,0) 100%);
    animation: shiny 3s infinite linear;
    -webkit-animation: shiny 3s infinite linear;
    -moz-animation: shiny 3s infinite linear;
}
@keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-webkit-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-moz-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

