@charset "UTF-8";
.movie-area {
	margin: 50px auto;
	width: 1080px;
	background-color: #fff;
	border: 3px solid #eee;
	box-sizing: border-box;
	padding: 40px 40px 120px;
}
.movie-area h1 {
	font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 auto 50px;
    padding: 20px 0 18px 0px;
    border-top: 1px solid #005bab;
    border-bottom: 1px solid #005bab;
}

.movie-area h1:before {
    border-right-color: #005bab;
	left: -13px;
    top: 0;
	content: "";
    border: 18px solid transparent;
    display: block;
    font-size: 20px;
    height: 0;
    left: -18px;
    position: absolute;
    transform: rotate(45deg);
    top: -18px;
    width: 0;
}

.movie-area div {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	-ms-flex-wrap: wrap;
      flex-wrap: wrap;
	-webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
	margin-bottom: 7%;
}

.movie-area div div {
	flex-basis: 48%;
}

/* アコーディオン　ここから */
input[name=navinput]{
  display: none;
}
.listnav01:hover{
  color: #999;
}
.listnav01:after{
  content: "▼";
}
#nav01:checked ~ .title .listnav01:after{
  content: "▲";
}
.box{
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  padding: 0 0px;
}
#nav01:checked ~ .box01{
  height: auto;
  opacity: 1;
  padding: 0px;
}
/* アコーディオン　ここまで */


/* 文字色　青 */
.font-hint {
  color: #005BAB;
  text-decoration : underline;
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}


.iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow:auto; 
  -webkit-overflow-scrolling:touch;
  border:2px solid #ccc; 
}
.iframe-wrap iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}




/* 閉じる　ボタン */
.btn-push {
  display: inline-block;
  max-width: 400px;
  text-align: center;
  background-color: #005BAB;
  font-size: 18px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 4px;
  border-bottom: 4px solid #002b52;
  margin-top: 4px;
  margin-bottom: 4px;
}
.btn-push:active {
  transform: translateY(4px);
  border-bottom: none;
}






/* 幅769px以上から
------------------------------------------------------------*/
@media only screen and (min-width: 769px) {
	
}

/* 幅768px以下から
------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
/* スマホ */
.movie-area {
	margin: 5% auto;
	width: 96%;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 4% 4% 12%;
}
	
.movie-area div {
	display: block;
	margin-bottom: 12%;
}

.movie-area div div {
	flex-basis: 100%;
	margin-bottom: 5%;
}	

}



/* 幅375px以下から
------------------------------------------------------------*/
@media only screen and (max-width: 375px) {
	
}