@charset "utf-8";

/* ===================================
   リセット・汎用クラス　　　　　　　　　　　　　　　　
=================================== */
body{
  padding: 0;
  margin: 0;
  font-size: 100%;
  font-family: "Roboto",sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
h1,
h2,
h3,
h4,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td{
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #111;
  line-height: 1.8;
  box-sizing: border-box;
}
.contents_box{
   width: 1200px;
   margin: 0 auto;
}
.contents_box h2{
   font-size: 42px;
   font-weight: 900;
   text-align: center;
   line-height: 1.4;
   margin: 0 0 60px 0;
   letter-spacing: 0.04em;
}
a{
  text-decoration: none;
  color: #00a7ac;
}
img{
  border: none;
  vertical-align: middle;
}
ul li,
ol li{
   list-style: none;
}
sup{
  vertical-align: top;
}
.note{
  display: block;
  font-size: 0.85rem;
  line-height: 1.8 !important;
  padding-left: 1em;
  text-indent: -1em;
}
.note a{
   text-decoration: underline;
}
.indent{
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}


@media screen and (max-width: 767px){

body{
  margin: 0 !important;
  /*padding: 0;
  font-size: 100%;*/
}
h1,
h2,
h3,
h4,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td{
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #111;
  line-height: 1.8;
  box-sizing: border-box;
}

}


/* ===================================
   header　　　　　　　　　　　　　　　　
=================================== */
header{
   position: relative;
}
header img{
   position: absolute;
   top: 40px;
   left: 40px;
   width: 140px;
   z-index: 5;
}

@media screen and (max-width: 767px){

header img{
   position: absolute;
   top: 30px;
   left: 30px;
   width: 120px;
}

}



/* ===================================
   video　　　　　　　　　　　　　　　　
=================================== */
#video-wrapper{
   width: 100%;
   height: 100vh;
   margin: 0 auto;
   position: relative;
   overflow: hidden;
   display: flex;
   justify-content: center;
   align-items: center;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
}
#video-wrapper::before{
   content: "";
   display: block;
   width: 100%;
   height: 100vh;
   position: absolute;
   top: 0;
   left: 0;
   background-color: rgba(0, 0, 0, 0.3);
   background-image: radial-gradient(#000 21%, transparent 26%), radial-gradient(#000 21%, transparent 26%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
   z-index: 2;
}
#video-wrapper .video-box {
   position: relative;
   overflow: hidden;
   width: 100%;
   height: 100vh;
}
#video-wrapper .video-box video{
   min-width: 100%;
   min-height: 100vh;
   position: absolute;
}
@media (aspect-ratio: 16/9), (min-aspect-ratio: 16/9) {
#video-wrapper .video-box video {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-aspect-ratio: 16/9) {
#video-wrapper .video-box video {
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
#video-wrapper .catchcopy{
   position: absolute;
   z-index: 3;
}
#video-wrapper .catchcopy h2{}
#video-wrapper .catchcopy h2 img{
   width: 660px;
}
#video-wrapper .catchcopy .cta-box{
   background-color: #ffffff;
   border-radius: 45px;
   display: flex;
   align-items: center;
   width: 650px;
   height: 85px;
   margin: 20px auto 0 auto;
   padding: 0 20px 0 40px;
   box-shadow: 0px 0px 6px #888888;
}
#video-wrapper .catchcopy .cta-box h1 img{
   width: 130px;
}
#video-wrapper .catchcopy .cta-box a{
   border-radius: 30px;
   border: 1px solid #87398a;
   margin-left: 30px;
   font-weight: 500;
   color: #87398a;
   line-height: 50px;
   width: 160px;
   padding: 0 40px 0 20px;
   opacity: 1.0;
   transition: .2s all ease-out;
   background: url("../images/ico_arrow_purple.png") #fff right 20px center no-repeat;
   background-size: 18px;
}
#video-wrapper .catchcopy .cta-box a:last-child{
   margin-left: 10px;
   color: #fff;
   background: url("../images/ico_arrow_white.png") #87398a right 20px center no-repeat;
   background-size: 18px;
   width: 200px;
}
#video-wrapper .catchcopy .cta-box a:hover{
   opacity: 0.6;
   background: url("../images/ico_arrow_purple.png") #fff right 15px center no-repeat;
   background-size: 18px;
}
#video-wrapper .catchcopy .cta-box a:last-child:hover{
   background: url("../images/ico_arrow_white.png") #87398a right 15px center no-repeat;
   background-size: 18px;
}



@media screen and (max-width: 767px){

/*#video-wrapper video{
   width: 100%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
   min-width: 100%;
   min-height: 100vh;
}*/
#video-wrapper .catchcopy h2{
   margin: 0 auto 20px auto;
   width: 80%;
}
#video-wrapper .catchcopy h2 img{
   width: 100%;
}
#video-wrapper .catchcopy .cta-box{
   border-radius: 10px;
   display: block;
   width: 80%;
   height: inherit;
   padding: 20px;
   text-align: center;
   box-shadow: 0px 0px 6px #888888;
}
#video-wrapper .catchcopy .cta-box h1 img{
   width: 130px;
   margin-bottom: 15px;
}
#video-wrapper .catchcopy .cta-box a{
   display: block;
   border-radius: 40px;
   box-sizing: border-box;
   margin-left: 0px;
   line-height: 1.0;
   width: 100%;
   padding: 18px;
}
#video-wrapper .catchcopy .cta-box a:last-child{
   margin-left: 0px;
   margin-top: 8px;
   background: url("../images/ico_arrow_white.png") #87398a right 20px center no-repeat;
   background-size: 18px;
   width: 100%;
}
#video-wrapper .catchcopy .cta-box a:hover{
   opacity: 1.0;
   background: url("../images/ico_arrow_purple.png") #fff right 15px center no-repeat;
   background-size: 18px;
}
#video-wrapper .catchcopy .cta-box a:last-child:hover{
   background: url("../images/ico_arrow_white.png") #87398a right 15px center no-repeat;
   background-size: 18px;
}


}



/* ===================================
   contents　　　　　　　　　　　　　　　
=================================== */
#contents-wrapper{
   padding: 100px 0 0 0;
   background: url("../images/bg_wire.png") center top -250px no-repeat;
}
#contents-wrapper h2{
   font-size: 50px;
   font-weight: 900;
   line-height: 1.4;
   margin-bottom: 60px;
   text-align: center;
   background: linear-gradient(90deg, #87398a 0%, #3266a7 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}
#contents-wrapper h2 span{
   font-weight: 300;
   display: block;
}
#contents-wrapper h3{
   font-weight: 900;
   font-size: 22px;
   margin-bottom: 20px;
   letter-spacing: 0.075em;
}
#contents-wrapper .features-box{
   width: 1000px;
   margin: 0 auto 80px auto;
   display: flex;
}
#contents-wrapper .features-box .features-flex {
   width: 370px;
   margin-right: 40px;
}
#contents-wrapper .features-box .features-flex p{
   font-size: 20px;
   line-height: 1.9;
}
#contents-wrapper .features-box > p{
   margin-right: 50px;
}
#contents-wrapper .features-box img{
   width: 200px;
}
#contents-wrapper .features-box ul{
   padding-top: 52px;
}
#contents-wrapper .features-box ul li{
   font-size: 20px;
   margin-bottom: 15px;
}

#contents-wrapper .movie-box{
   width: 1000px;
   margin: 0 auto 80px auto;
}
#contents-wrapper .movie-box .movie-innerbox {
   width: 800px;
   margin: 0 auto;
}
#contents-wrapper .movie-box .movie-innerbox .movie-iframe{
   position: relative;
   width: 100%;
   padding-top: 56.25%;
}
#contents-wrapper .movie-box  .movie-innerbox .movie-iframe iframe{
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
}

#contents-wrapper .about-box{
   width: 1000px;
   margin: 0 auto 80px auto;
}
#contents-wrapper .about-box .about-innerbox{
   display: flex;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox{
   display: block;
   width: 320px;
   text-align: center;
   box-sizing: border-box;
   background-color: #F6F6F6;
   border: 2px solid #f1f1f1;
   border-radius: 10px;
   margin-right: 20px;
   padding: 20px 20px 22px 20px;
   transition: .2s all ease-out;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox:last-child{
   margin-right: 0;   
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox:hover{
   border: 2px solid #87398a;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox img{
   width: 100%;
   border: 1px solid #87398a;
}

#contents-wrapper .about-box .about-innerbox a.about-downloadbox p:nth-child(1){
   margin-bottom: 12px;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox p:nth-child(2){
   line-height: 1.4;
   min-height: 45px;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox p:nth-child(3){
   color:#87398a;
   display: inline-block;
   text-decoration: underline;
   font-weight: 500;
   margin-top: 6px;
   padding-right: 30px;
   background: url("../images/ico_download.png") right center no-repeat;
   background-size: 20px;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox p:nth-child(3):hover{
   text-decoration: none;
}

#contents-wrapper .contact-box{
   background: url("../images/bg_contact.png") #ddd center center no-repeat;
   background-size: cover;
   padding: 60px 0;
}
#contents-wrapper .contact-box .contact-innerbox{
   width: 1000px;
   margin: 0 auto;
   display: flex;
   align-items: center;
}
#contents-wrapper .contact-box .contact-innerbox .contact-flex{
   width: 330px;
   margin-right: 60px;
}
#contents-wrapper .contact-box .contact-innerbox a{
   border-radius: 30px;
   border: 1px solid #87398a;
   font-size: 18px;
   font-weight: 500;
   color: #87398a;
   line-height: 60px;
   box-sizing: border-box;
   width: 300px;
   padding: 0 40px 0 20px;
   opacity: 1.0;
   transition: .2s all ease-out;
   background: url("../images/ico_arrow_purple.png") #fff right 20px center no-repeat;
   background-size: 18px;
}
#contents-wrapper .contact-box .contact-innerbox a:last-child{
   margin-left: 10px;
   color: #fff;
   background: url("../images/ico_arrow_white.png") #87398a right 20px center no-repeat;
   background-size: 18px;
}
#contents-wrapper .contact-box .contact-innerbox a:hover{
   background: url("../images/ico_arrow_purple.png") #fff right 15px center no-repeat;
   background-size: 18px;
   opacity: 0.6;
}
#contents-wrapper .contact-box .contact-innerbox a:last-child:hover{
   background: url("../images/ico_arrow_white.png") #87398a right 15px center no-repeat;
   background-size: 18px;
}



@media screen and (max-width: 767px){

#contents-wrapper{
   padding: 60px 0 0 0;
}
#contents-wrapper h2{
   font-size: 30px;
   line-height: 1.4;
   padding: 0 20px;
   margin-bottom: 40px;
}
#contents-wrapper h2 span{
   font-weight: 300;
   display: block;
}
#contents-wrapper h3{
   font-weight: 900;
   font-size: 20px;
   margin-bottom: 20px;
   letter-spacing: 0.075em;
}
#contents-wrapper .features-box{
   width: 90%;
   margin: 0 auto 40px auto;
   display: block;
}
#contents-wrapper .features-box .features-flex {
   width: 100%;
   margin-right: 0;
   margin-bottom: 20px;
}
#contents-wrapper .features-box .features-flex p{
   font-size: 18px;
   line-height: 1.6;
}
#contents-wrapper .features-box > p{
   text-align: center;
   margin-right: 0;
}
#contents-wrapper .features-box img{
   width: 50%;
   max-width: 220px;
}
#contents-wrapper .features-box ul{
   padding-top: 20px;
}
#contents-wrapper .features-box ul li{
   font-size: 18px;
   margin-bottom: 10px;
}

#contents-wrapper .movie-box{
   width: 90%;
   margin: 0 auto 40px auto;
}
#contents-wrapper .movie-box .movie-innerbox {
   width: 100%;
   margin: 0 auto;
}
#contents-wrapper .movie-box .movie-innerbox .movie-iframe{
   position: relative;
   width: 100%;
   padding-top: 56.25%;
}
#contents-wrapper .movie-box  .movie-innerbox .movie-iframe iframe{
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
}

#contents-wrapper .about-box{
   width: 90%;
   margin: 0 auto 60px auto;
}
#contents-wrapper .about-box .about-innerbox{
   display: block;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox{
   display: block;
   width: 100%;
   margin-right: 0;
   margin-bottom: 15px;
   padding: 18px 15px 15px 15px;
   border: 1px solid #87398a;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox img{
   width: 75%;
   border: 0;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox:last-child{
   margin-right: 0;   
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox:hover{
   border: 1px solid #87398a;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox p{
   line-height: 1.4;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox p:nth-child(2){
   min-height: inherit;
}
#contents-wrapper .about-box .about-innerbox a.about-downloadbox p:nth-child(3):hover{
   text-decoration: none;
}

#contents-wrapper .contact-box{
   background: url("../images/bg_contact.png") #ddd center top no-repeat;
   background-size: cover;
   padding: 40px 0 60px 0;
}
#contents-wrapper .contact-box .contact-innerbox{
   width: 90%;
   margin: 0 auto;
   display: block;
   align-items: center;
}
#contents-wrapper .contact-box .contact-innerbox .contact-flex{
   width: 100%;
   margin-right: 0px;
}
#contents-wrapper .contact-box .contact-innerbox a{
   display: block;
   line-height: 1.0;
   padding: 18px;
   margin: 15px 0 0 0;
   width: 100%;
}
#contents-wrapper .contact-box .contact-innerbox a:last-child{
   margin-left: 0px;
   margin-top: 8px;
}
#contents-wrapper .contact-box .contact-innerbox a:hover{
   background: url("../images/ico_arrow_purple.png") #fff right 20px center no-repeat;
   background-size: 18px;
   opacity: 1.0;
}
#contents-wrapper .contact-box .contact-innerbox a:last-child:hover{
   background: url("../images/ico_arrow_white.png") #87398a right 20px center no-repeat;
   background-size: 18px;
}

}



/* ===================================
   footer　　　　　　　　　　　　　　　　
=================================== */
footer {
   width: 100%;
   padding: 40px 0;
   background: #333f48;
}
footer .footer-wrapper{
   width: 1000px;
   margin: 0 auto;
   display: flex;
   align-items: flex-end;
}
footer .footer-wrapper div{
   width: 500px;
}
footer .footer-wrapper div h4 img{
   width: 360px;
}
footer .footer-wrapper div ul{
   margin-top: 10px;
}
footer .footer-wrapper div ul li{
   font-size: 14px;
   color: #fff;
}
footer .footer-wrapper div ul li a{
   color: #fff;
   text-decoration: underline;
}
footer .footer-wrapper p{
   font-size: 14px;
   color: #81868b;
   text-align: right;
}



@media screen and (max-width: 767px){

/*footer {
   width: 100%;
   padding: 40px 0;
   background: #333f48;
}*/
footer .footer-wrapper{
   width: 100%;
   padding: 0 5%;
   display: block;
   align-items: inherit;
}
footer .footer-wrapper div{
   width: 100%;
}
footer .footer-wrapper div h4 img{
   width: 100%;
   max-width: 340px;
}
footer .footer-wrapper div ul{
   margin-top: 10px;
   margin-bottom: 10px
}
footer .footer-wrapper div ul li{
   font-size: 13px;
   line-height: 1.5;
   margin-bottom: 6px;
}
footer .footer-wrapper p{
   font-size: 13px;
   text-align: left;
   line-height: 1.5;
}

}
