@charset "utf-8";
/*
font-family: "Noto Serif JP";
font-weight: 700;
sans:400=Regular,700=Bold
*/
#header{
  background-color: #FFF !important;
}
#keyview{
  position: relative;
  background: url(../images/img_keyview_sub.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 384px;
}
#keyview h2{
  position: absolute;
  top:50%;
  left:30px;
  margin: 24px 0 0;
  padding:0 30px;
  background-color: #0071bc;
  height: 56px;
  color: #FFF;
  font-size:34px;
  line-height: 56px;
  font-weight: 700;
}
#cont_movie{
  margin:100px auto 0;
  width: 1200px;
}
#cont_movie h3{
  position: relative;
  margin:0;
  padding:0 0 0 60px;
  color:#004b75;
  font-size:32px;
  line-height:1.2em;
  font-weight: 700;
}
#cont_movie h3::before{
  content: "";
  position: absolute;
  top:50%;
  left:0;
  background-color: #004b75;
  width: 40px;
  height: 2px;
  transform:translateY(-50%);
}
#search{
  display: flex;
  margin:30px 0 0;
}
.input_search{
  margin:0 10px 0 0;
  border:1px solid #a5c8e3;
  width: 613px;
  height: 58px;
}
.input_search input{
  padding:0 15px;
  width: 583px;
  height: 58px;
}
#search button{
  background-color: #0071bc;
  color:#FFF;
  width: 128px;
  height: 60px;
  font-size:18px;
}
#search button:hover{
  background-color: #0f3155;
}
#movie_area{
  display: flex;
  flex-wrap: wrap;
  margin:30px 0 0;
}
.movie_box{
  position: relative;
  margin:0 30px 30px 0;
  padding:20px;
  background-color: #fff;
  border: 1px solid #f0f4f8;
  border-radius: 2px;
  width: 338px;
  min-height: 440px;
  box-shadow: -1.5px 2.6px 5px 0.25px rgba(0, 0, 0, 0.1);
}
.movie_box:nth-child(3n){
  margin:0 0 30px;
}
.img_movie{
  position: relative;
  width: 340px;
  height: 191px;
  overflow: hidden;
}
.img_movie a{
  display: block;
  cursor: pointer;
}
.img_movie a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  vertical-align: bottom;
}
.img_movie a:hover img{
  transform: scale(1.1);
}
.movie_box h4{
  margin: 15px 0 0;
}
.movie_box h4 a{
  color:#005c99;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 700;
  text-decoration: none;
}
.movie_box h4 a:hover{
  text-decoration: underline;
}
.movie_box p{
  margin:20px 0 50px 0;
  font-size:14px;
  line-height: 1.2em;
}
/* 本文のh3,h4要素はリセットする */
#movie_area .movie_box .movie_content h3::before {
  content: none;
  display: none;
}
#movie_area .movie_box .movie_content h3,
#movie_area .movie_box .movie_content h4 {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  font-weight: normal;
  line-height: 1.5em;
  color:#333;
}
/* 本文のみ箇条書きを適用する */
div.movie_box ol li {
  list-style-type: decimal;
}
div.movie_box ul li {
  list-style-type: disc;
}
/* 親要素の余白 */
div.movie_box ul,
div.movie_box ol {
    padding-left: 1.5em;
}
/* 太字を適用 */
div.movie_box p strong {
  font-weight: bolder;
}
.btn_dl{
  position: absolute;
  bottom:20px;
  left:20px;
  margin:30px 0 0;
  background-color: #009688;
  width: 340px;
  height: 50px;
}
.btn_dl:hover{
  background-color: #0f3155;
}
.btn_dl a{
  display: block;
  position: relative;
  color: #FFF;
  font-size:18px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.btn_dl a::after{
  content: "";
  position: absolute;
  top:50%;
  left: 50%;
  margin:0 0 0 58px;
  background: url(../images/icon_dl.svg) no-repeat;
  background-size: cover;
  width: 13.26px;
  height: 18px;
  transform:translateY(-50%);
}
.navigation{
  margin: 70px auto 0;
  padding:0 0 120px;
}
.nav-links{
  display: flex;
  justify-content: center;
}
.nav-links a{
  display: block;
  margin:0 5px;
  background-color: #0071bc;
  width: 60px;
  height: 60px;
  color:#FFF;
  font-size:18px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
}
.nav-links a:hover{
  background-color:  #29abe2;
}
.nav-links a.prev{
  display: block;
  margin:0 5px;
  background: url(../images/icon_back.svg) no-repeat;
  background-size: 15px 24px;
  background-position: center center;
  background-color: #0071bc;
  width: 60px;
  height: 60px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
.nav-links a.next{
  display: block;
  margin:0 5px;
  background: url(../images/icon_next.svg) no-repeat;
  background-size: 15px 24px;
  background-position: center center;
  background-color: #0071bc;
  width: 60px;
  height: 60px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
.nav-links a.prev:hover,
.nav-links a.next:hover{
  background-color: #29abe2;
}
.current{
  display: block;
  margin:0 5px;
  background-color: #29abe2;
  width: 60px;
  height: 60px;
  color:#FFF;
  font-size:18px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
}
.dots{
  display: block;
  margin:0 5px;
  width: 30px;
  height: 60px;
  font-size:18px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 767px){
  #header{
    background-color: #FFF !important;
  }
  #keyview{
    position: relative;
    background: url(../images/img_keyview_sub.webp) no-repeat;
    background-size: cover;
    width: 100%;
    height: 192px;
  }
  #keyview h2{
    position: absolute;
    top:50%;
    left:50%;
    margin: 5px 0 0;
    padding:0 30px;
    background-color: #0071bc;
    height: 56px;
    color: #FFF;
    font-size:28px;
    line-height: 56px;
    font-weight: 700;
    white-space: nowrap;
    transform:translateX(-50%);
  }
  #cont_movie{
    margin:50px 10px 30px;
    width: calc(100% - 20px);
  }
  #cont_movie h3{
    position: relative;
    margin:0;
    padding:0 0 0 30px;
    color:#004b75;
    font-size:24px;
    line-height:1.2em;
    font-weight: 700;
  }
  #cont_movie h3::before{
    content: "";
    position: absolute;
    top:50%;
    left:0;
    background-color: #004b75;
    width: 20px;
    height: 2px;
    transform:translateY(-50%);
  }
  #search{
    display: flex;
    margin:30px 0 0;
  }
  .input_search{
    margin:0 5px 0 0;
    border:1px solid #a5c8e3;
    width: calc(100% - 69px);
    height: 46px;
  }
  .input_search input{
    padding:0 15px;
    width: 100%;
    height: 46px;
  }
  #search button{
    background-color: #0071bc;
    color:#FFF;
    width: 64px;
    height: 48px;
    font-size:16px;
  }
  #movie_area{
    display: block;
    flex-wrap:nowrap;
    margin:0px 0 0;
  }
  .movie_box{
    position: static;
    margin:15px 0px 0;
    padding:10px;
    background-color: #fff;
    border: 1px solid #f0f4f8;
    border-radius: 2px;
    width: calc(100% - 22px);
    min-height: auto;
    box-shadow: -1.5px 2.6px 5px 0.25px rgba(0, 0, 0, 0.1);
  }
  .movie_box:nth-child(3n){
    margin:15px 0 0;
  }
  .img_movie{
    position: relative;
    width: 100%;
    height: 191px;
    overflow: hidden;
  }
  .img_movie a{
    display: block;
    cursor: pointer;
  }
  .img_movie a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    vertical-align: bottom;
  }
  .img_movie a:hover img{
    transform: scale(1.1);
  }
  .movie_box h4{
    margin: 10px 0 0;
  }
  .movie_box h4 a{
    color:#005c99;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 700;
    text-decoration: none;
  }
  .movie_box h4 a:hover{
    text-decoration: underline;
  }
  .movie_box p{
    margin:10px 0 0;
    font-size:14px;
    line-height: 1.2em;
  }
  .btn_dl{
    position: static;
    margin:15px 0 0;
    background-color: #009688;
    width: 100%;
    height: 40px;
  }
  .btn_dl:hover{
    background-color: #0f3155;
  }
  .btn_dl a{
    display: block;
    position: relative;
    color: #FFF;
    font-size:16px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .btn_dl a::after{
    content: "";
    position: absolute;
    top:50%;
    left: 50%;
    margin:0 0 0 58px;
    background: url(../images/icon_dl.svg) no-repeat;
    background-size: cover;
    width: 12px;
    height: 16px;
    transform:translateY(-50%);
  }
  .navigation{
    margin: 35px auto 0;
    padding:0 0 30px;
  }
  .nav-links{
    display: flex;
    justify-content: center;
  }
  .nav-links a{
    display: block;
    margin:0 2.5px;
    background-color: #0071bc;
    width: 38px;
    height: 38px;
    color:#FFF;
    font-size:16px;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
  }
  .nav-links a:hover{
    background-color:  #29abe2;
  }
  .nav-links a.prev{
    display: block;
    margin:0 2.5px;
    background: url(../images/icon_back.svg) no-repeat;
    background-size: 15px 24px;
    background-position: center center;
    background-color: #0071bc;
    width: 38px;
    height: 38px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
  }
  .nav-links a.next{
    display: block;
    margin:0 2.5px;
    background: url(../images/icon_next.svg) no-repeat;
    background-size: 15px 24px;
    background-position: center center;
    background-color: #0071bc;
    width: 38px;
    height: 38px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
  }
  .nav-links a.prev:hover,
  .nav-links a.next:hover{
    background-color: #29abe2;
  }
  .current{
    display: block;
    margin:0 2.5px;
    background-color: #29abe2;
    width: 38px;
    height: 38px;
    color:#FFF;
    font-size:16px;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
  }
  .dots{
    display: block;
    margin:0 2.5px;
    width: 20px;
    height: 38px;
    font-size:16px;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
  }
}
@media (max-width: 767px) and (orientation:landscape){
}
