@charset "UTF-8";
/* ######################################################################################

　動画案内

###################################################################################### */
.pageMovie .movieclip_box {
  /*width: 100%;*/
  position: relative;
}

.pageMovie p.first {
	text-align: center;
	line-height: 1.5;
	font-size: 20px;
	margin: 50px auto 65px;
}

.movie_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.movie_list li { margin:0 30px 60px;}
.movie_list li button {
  transition: opacity 0.3s ease-in-out;
	appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;  
}
.movie_list li button, [type="button"] {
    cursor: pointer;
	border: none;
}

@media (min-width:767px) {
  .movie_list li button:hover {
    opacity: 0.7;
  }
}
.pageMovie .movie_list h3 { margin-top: 20px; margin-bottom: 15px;}
.pageMovie .movie_list .small { margin:20px auto 80px; line-height: 1.5;}

.btnbacklist ul {
	display: flex;
	justify-content: center;
	flex-wrap:wrap;
	margin-top: 40px;
}
.btnbacklist ul li { width: 40%;}
.btnbacklist ul li a {
	display: block;
	padding:20px 15px;
	background:#007991;
	color: #fff;
	font-size: 120%;
	box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
	transition: .5s box-shadow, .5s filter;
}
.btnbacklist ul li a:hover {
	background:#007991;
	box-shadow: none;
}
.btnbacklist ul li a:after {
	content: "\f105";
    display: inline-block;
    margin-left: 15px;
    color: #ffffff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

@media print, screen and (max-width: 767px) {
	.pageMovie p.first { text-align: left; font-size: 100%; margin: 30px auto 50px;}
	.movie_list li { margin: 0 0px 10px;}
	.btnbacklist ul { display: block;}
	.btnbacklist ul li { width: 100%; margin: 30px 0;}  
}



/* モーダル */
.modal_box {
  position: fixed;
  z-index: 999999999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0s;
}
.modal_box.opened {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.modal_in {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100vw - 40px);
  max-width: calc((100vh - 300px)/0.5625);
  height: calc((100vw - 40px) * 0.5625);
  max-height: calc(100vh - 300px);
  transform: scale(0.95);
  opacity: 1;
  transition: all 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0.3s;
}
.modal_box .modal_bg {
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
.close_button {
  width: 60px;
  height: 60px;
  cursor: pointer;
  top: 0;
  right: 0px;
  background: #0b649a;
  position: fixed;
  transition: all 0.3s ease-in-out 0s;
}
.close_button::before, .close_button::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #fff;
  top: 29px;
  left: 10px;
}
.close_button::before {
  transform: rotate(45deg);
}
.close_button::after {
  transform: rotate(-45deg);
}
.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}



/*end*/