@charset "utf-8";


body{
    background-image: url(../img/cm-bgA.png), url(../img/cm-pattern.png) ;
    background-repeat: no-repeat, repeat;
    background-position: top center, top;
}
/*-------------------------------------------------------------
			mainvisual
-------------------------------------------------------------*/

main{
    width: 100%;
    height: auto;
}

.main-wrap{
    width: 100%;
    max-width: none;/*打ち消し*/
    min-width: 1040px;
    /*max-width: 1020px;*/
    margin: 140px auto 0px auto;
    padding: 0 0px 0px;/*打ち消し*/
    /*border: 1px solid red;*/
}

.main-ttl{
    text-align: center;
    margin-bottom: 65px;
}

.mini-ttl{
    margin: 0 auto 25px;
    width: 178px;
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 0.5em 2em;

    color: #FFF;
    border-radius: 20px;
    background-color: #263841;

    letter-spacing: 0.1em;
}


/*-------------------------------------------------------------
			mainvisual
-------------------------------------------------------------*/


.movie-Area{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 4rem;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
    /*border: 1px solid red;*/
}

.movie-box{
    width: 520px;
    margin: 0 0 5rem;
    text-align: left;
}

.movie-box-B{
  width:340px;
  margin: 0 0 5rem;
  text-align: left;
}

.movie-box-ttl{
    margin: 1em 0 0;
    text-align: left;
    /*border-bottom:1px solid Gray;*/
}


.movie-box iframe{
    box-shadow: 0 0 10px 0 rgba(0,0,0,.16);
}

.pop-iframe{
  display: block;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.16);
  transition: all ease 0.2s;
}
.pop-iframe:hover{
  opacity: 0.65;
}

.youtube-link-box{
    text-align:left;
}
.youtube-link{
    display: inline-block;
    margin: 0.6rem 0;
    transition: all ease 0.4s;
}
.youtube-link:hover{
    opacity: 0.6;
}
/*******/
.is-set{
    opacity: 0;
    transform: translate(0px, 20px);
    transition: all ease 0.6s;
}
.is-active{
    opacity: 1;
    transform: translate(0px,0px);
}


/*-------------------------------------------------------------
			loader
-------------------------------------------------------------*/

#loader{
    padding-top: 0px;
    text-align: center;
}


#loader-wrap{
    width: 100%;
    height: 100%;
    text-align: center;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255,158,173, 0.2);
  border-right: 1.1em solid rgba(255,158,173, 0.2);
  border-bottom: 1.1em solid rgba(255,158,173, 0.2);
  border-left: 1.1em solid #ff9ead;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
