@charset "UTF-8";
/* CSS Document */

.clear{
  clear: both;
  overflow: hidden;
}
.left{float: left;}
.right{float: right;}
.center{float: center;}


header,
footer{
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #004098;
  text-align: center;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
header .header_wrapp,
footer .footer_wrapp{
  padding: 5rem 2rem;
  max-width: 122rem;
  margin: 0 auto;
}
header .header_wrapp{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header .header_wrapp h1{
  width: 60%;
}
header .header_wrapp .link_box{
  width: 35%;
  display: flex;
  justify-content: space-around;
}
header .header_wrapp .link_box a{
  width: 45%;
}

footer .footer_wrapp ul{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.view{
  padding:5%;
}
.view ul{
  width:100%;
  text-align: center;
  list-style: none;
  display:block;
}
.view li{
  display: inline-block;
  width: 300px;
  height: auto;
  margin-right:40px;
  margin-top: 20px;
  vertical-align: top;
}

.view li a{
  display: block;
  width: 100%;
  height: 560px;
  background-repeat:no-repeat;
  background-size: 100% auto;
  background-position: top center;
  transition: 1s ease-in;
  border:1px solid #ddd;
}
.view li a:hover{
  background-position: bottom center;
  transition: 10s linear;
}
.view li:nth-child(2) a:hover{
  background-position: bottom center;
  transition: 16s linear;
}

.view li:nth-child(3) a:hover{
  background-position: bottom center;
  transition: 16s linear;
}
.view li h2{
  font-size:17px;
}


.view li p{
  font-size:14px;
  text-align: center;
  line-height:20px;
}




main{
  margin-top: 207px;
}

#ooo1,
#ooo2,
#ooo3,
#ooo4{
  margin-top: -207px;
  padding-top: 207px;
}
nav.menu{
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  background-color: #fff;
}
nav.menu a{
  position: relative;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
}
nav.menu a::after{
  position: absolute;
  content: "";
  width: 0px;
  height: 4px;
  background-color: #E94318;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
nav.menu a:hover::after{
  width: 100%;
  transition: 0.3s;
}

.d-flex{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  gap: 2rem;
}
.movie_box{
  width: 100%;
  background-color: #fff;
  padding: 3rem 3rem 6rem;
  margin-top: 6rem;
}
.video{
  position: relative;
  width: 26rem;
  padding: 1rem 1rem 4rem;
  background: url("../images/phone_bg.png") no-repeat top center/cover;
}
.video::before{
  position: absolute;
  content: "";
  top: 2rem;
  left: 50%;
  width: 80%;
  height: 3rem;
  transform: translateX(-50%);
  background: url("../images/phone_part.png") no-repeat top center/100%;
  z-index: 10;
}
.video video{
  width: 24rem;
  height: auto;
  aspect-ratio: 9 / 16;
  border-top-left-radius: 3.0rem;
  border-top-right-radius: 3.0rem;
}

.content{
  background:#F2F3F8;
}
.container{
  max-width: 100rem;
  margin: 0 auto;
  padding: 2rem 2rem 12rem;
  text-align: center;
}
h1{
  color: #fff;
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: center;
}
h1 strong{
  font-size: 5rem;
  white-space: nowrap;
}
h1 span{
  display: inline-block;
  font-size: 2rem;
  margin-left: 2rem;
}
h2{
  border-bottom: 0.4rem solid #006fd5;
  text-align: center;
  padding-bottom: 2rem;
  color: #555;
  font-weight: 900;
}
h3{
  font-size:17px;
  color: #fff;
  padding: 2rem;
}

.sp_br {
  display: none;
}


@media screen and (max-width: 768px) {
  
  header .header_wrapp{
    flex-flow: column;
  }
  header .header_wrapp h1{
    width: 100%;
  }
  header .header_wrapp .link_box{
    width: 100%;
    margin-top: 2rem;
  }
  header .header_wrapp .link_box a{
    width: 45%;
  }
  
  h1{
    text-align: center;
    flex-flow: column;
  }
  h1 strong{
    font-size: 4rem;
  }
  h1 span{
    font-size: 1.5rem;
    margin-left: 2rem;
  }
  nav.menu{
    gap: 1rem;
  }
  nav.menu a{
    font-size: 1.5rem;
  }
  
  .movie_box{
    width: 100%;
    padding: 2rem 2rem;
    margin-top: 4rem;
  }
  
  .sp_br {
    display: block;
  }
  
  footer .footer_wrapp ul {
    flex-wrap: wrap;
  }
  footer .footer_wrapp ul li{
    width: 48%;
  }
  
  
}