
@charset "utf-8";
/* CSS Document */

#main{
 position: relative;
}
#special_body .movie {
 position: absolute;
 width: 50%;
 top: 52.5%;
 right: 6%;
}
a:hover img{
opacity: 0.6;
filter: alpha(opacity=60);
-moz-opacity:0.6;
}
/* modal
----------------------------------------------------------------------------------------------*/
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.modal_bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  background-color: rgba(0,0,0,0.8);
  width: 100%;
  height: 100%;
}
.modal_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal_content {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 12;
  max-width: 800px;
  width: 90%;
  transform: translate(-50%,-50%);
}
.modal_content.is-show {
  display: block;
}
.modal_movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal_movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.modal_text p {
  color: #fff;
  font-size: 1.2rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 20px;
}
.modal_button {
  position: relative;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  min-width: 280px;
  width: 40%;
  border-radius: 4px;
  border: 1px solid #fff;
  padding: 10px;
  margin: 20px auto 0;
}
.modal_button:hover {
  background-color: rgba(255,255,255,0.2);
}
.modal_button::before,
.modal_button::after {
  content: '';
  display: block;
  position: absolute;
  left: 95%;
  top: 50%;
  background-color: #fff;
  width: 1px;
  height: 10px;
}
.modal_button::before {
  transform: translate(0,-50%) rotate(45deg);
}
.modal_button::after {
  transform: translate(0,-50%) rotate(-45deg);
}

@media screen and (max-width: 640px){
#special_body .movie {
    position: absolute;
    width: 50%;
    top: 52.5%;
    right: 6%;
}
}



