@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
/*
100 thin
200 extralight
300 light
400 regular
500 medium 
600 semibold
700 bold
800 extrabold
900 black
*/
:root {
  --font: 'Hiragino Kaku Gothic Pro',Meiryo,sans-serif;
}

section, nav, article, aside, hgroup, header, footer, figure, figcaption, details {
  display: block;
}

html, body, div, span, applet, object, iframe, strong, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, legend, caption, tbody, tfoot, thead, table, label, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: calc(100vw / ( 1500 / 16 ));
}

body {
  font-family: var(--font);
  color: #222;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background: #f7f7f7;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  vertical-align: top;
  max-width: 100%;
}

hr {
  height: 1px;
  background-color: #ccc;
  border: 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-container iframe,
.video-container lite-youtube {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.pc_only {
  display: block;
}

.pc_only_inline {
  display: inline;
}

.sp_only,
.sp_only_inline {
  display: none;
}

.wrap {
  max-width: 1150px;
  padding: 0 60px;
  margin: 0 auto;
}
.wrap:after {
  content: "";
  display: block;
  clear: both;
}

.to_top {
  -webkit-transition: top .6s ease, opacity .6s ease;
  transition: top .6s ease, opacity .6s ease;
  position: relative;
  top: 50px;
  opacity: 0;
}

.isAnimate.show.to_top {
  top: 0;
  opacity: 1;
}

.to_top_left {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  top: 50px;
  left: 50px;
  opacity: 0;
}

.isAnimate.show.to_top_left {
  top: 0;
  left: 0;
  opacity: 1;
}

.to_top_right {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  top: 50px;
  right: 50px;
  opacity: 0;
}

.isAnimate.show.to_top_right {
  top: 0;
  right: 0;
  opacity: 1;
}

.btn {
  text-align: center;
}
.btn a,
.btn button {
  display: inline-block;
  line-height: 1.2;
  border-radius: calc(100vw / ( 1500 / 3 ));
  background: #fff;
  font-family: var(--font);
  padding: calc(100vw / ( 1500 / 15 )) calc(100vw / ( 1500 / 50 ));
  border: 1px solid #222;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.btn a:hover,
.btn button:hover {
  background: #f7f7f7;
}
.btn span {
  display: inline-block;
  position: relative;
  padding-left: calc(100vw / ( 1500 / 20 ));
}
.btn svg {
  width: calc(100vw / ( 1500 / 15 ));
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn.dark a,
.btn.dark button {
  background: #222;
  border-radius: calc(100vw / ( 1500 / 8 ));
  color: #fff;
  font-size: calc(100vw / ( 1500 / 20 ));
  font-weight: bold;
}
.btn.dark a:hover,
.btn.dark button:hover {
  background: #2f2f2f;
}
.btn.dark span {
  padding-left: calc(100vw / ( 1500 / 35 ));
}
.btn.dark svg {
  width: calc(100vw / ( 1500 / 22 ));
  fill: #fff;
}

/*=======================================
	header
=======================================*/
#header {
  line-height: 1.2;
}
#header .logo {
  padding: calc(100vw / ( 1500 / 40 )) 0 0 calc(100vw / ( 1500 / 40 ));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: normal;
}
#header .logo p {
  font-size: calc(100vw / ( 1500 / 30 ));
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-right: calc(100vw / ( 1500 / 20 ));
}
#header .logo h1 {
  font-size: calc(100vw / ( 1500 / 14 ));
}
#header nav {
  background: #222;
  color: #fff;
  font-weight: bold;
  height: calc(100vw / ( 1500 / 40 ));
  padding: 0 calc(100vw / ( 1500 / 15 )) 0 0;
  border-radius: 0 0 0 calc(100vw / ( 1500 / 15 ));
  font-size: calc(100vw / ( 1500 / 15 ));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
#header nav svg {
  width: calc(100vw / ( 1500 / 23 ));
  height: auto;
  fill: #fff;
}
#header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header nav li {
  margin: 0 calc(100vw / ( 1500 / 5 ));
}
#header nav a {
  display: block;
  padding: calc(100vw / ( 1500 / 6 )) calc(100vw / ( 1500 / 10 ));
  color: #fff;
  border-radius: calc(100vw / ( 1500 / 5 ));
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 1;
}
#header nav a:hover {
  opacity: 0.9;
}
#header nav li:first-child {
  position: relative;
  padding: 0 calc(100vw / ( 1500 / 20 ));
}
#header nav li:first-child:after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100vw / ( 1500 / 30 ));
  background: #858585;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#header nav li:first-child a {
  padding: calc(100vw / ( 1500 / 6 )) calc(100vw / ( 1500 / 10 ));
}
#header nav li:first-child span {
  display: none;
}

/*=======================================
	footer
=======================================*/
footer {
  background: #fff;
  border-top: 1px solid #999;
  padding: calc(100vw / ( 1500 / 50 )) 0;
  text-align: right;
  line-height: 1;
}
footer .wrap {
  position: relative;
}
footer .logo {
  font-size: calc(100vw / ( 1500 / 30 ));
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: calc(100vw / ( 1500 / 60 ));
}
footer nav .btn_youtube a {
  display: inline-block;
  vertical-align: top;
  background: #222;
  border-radius: calc(100vw / ( 1500 / 8 ));
  padding: calc(100vw / ( 1500 / 14 )) calc(100vw / ( 1500 / 30 ));
}
footer nav .btn_youtube a:hover {
  background: #2f2f2f;
}
footer nav .btn_youtube img {
  height: calc(100vw / ( 1500 / 20 ));
}
footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: calc(100vw / ( 1500 / 20 )) 0 calc(100vw / ( 1500 / 40 ));
  line-height: 1.4;
}
footer nav li:before {
  content: "/";
  color: #ccc;
  margin: 0 .5em;
}
footer nav li:first-child:before {
  content: "";
  margin: 0;
}
footer nav li a {
  position: relative;
}
footer nav li a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
footer nav li a:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
footer .copy {
  font-size: calc(100vw / ( 1500 / 12 ));
  color: #666;
}

/*=======================================
	section_search
=======================================*/
.section_search {
  margin: calc(100vw / ( 1500 / 65 )) 0 calc(100vw / ( 1500 / 70 ));
}
.home .section_search {
  margin-bottom: calc(100vw / ( 1500 / 40 ));
}
.section_search .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.section_search .search_box {
  width: calc(100vw / ( 1500 / 430 ));
  position: relative;
}
.section_search .search_box input {
  width: 100%;
  height: calc(100vw / ( 1500 / 44 ));
  padding: 0 calc(100vw / ( 1500 / 130 )) 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #999;
  background: none;
  font-size: calc(100vw / ( 1500 / 16 ));
}
.section_search .search_box input:focus {
  outline: none;
}
.section_search .search_box input:-webkit-input-placeholder {
  color: #666;
}
.section_search .search_box input:-ms-input-placeholder {
  color: #666;
}
.section_search .search_box input::-webkit-input-placeholder {
  color: #666;
}
.section_search .search_box input::-ms-input-placeholder {
  color: #666;
}
.section_search .search_box input::placeholder {
  color: #666;
}
.section_search .search_box button {
  position: absolute;
  bottom: calc(100vw / ( 1500 / 10 ));
  right: 0;
  background: #222;
  color: #fff;
  padding: 0;
  border: none;
  line-height: 1;
  font-family: var(--font);
  font-size: calc(100vw / ( 1500 / 18 ));
  font-weight: bold;
  letter-spacing: 0.2em;
  height: calc(100vw / ( 1500 / 40 ));
  padding: 0 calc(100vw / ( 1500 / 20 ));
  border-radius: calc(100vw / ( 1500 / 8 ));
  cursor: pointer;
}
.section_search .search_box button span {
  display: inline-block;
  padding-left: calc(100vw / ( 1500 / 26 ));
  position: relative;
}
.section_search .search_box button svg {
  width: calc(100vw / ( 1500 / 19 ));
  height: auto;
  fill: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section_search .nav_category {
  width: calc(100vw / ( 1500 / 720 ));
}
.section_search .nav_category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  anchor-name: --popover-anchor;
}
.section_search .nav_category li {
  margin-right: calc(100vw / ( 1500 / 20 ));
}
.section_search .nav_category button {
  background: #fff;
  padding: 0 calc(100vw / ( 1500 / 25 ));
  border: 1px solid #999;
  line-height: 1;
  font-size: calc(100vw / ( 1500 / 16 ));
  height: calc(100vw / ( 1500 / 50 ));
  border-radius: calc(100vw / ( 1500 / 8 ));
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.section_search .nav_category button:hover {
  background: #fafafa;
}
.section_search .nav_category button span {
  position: relative;
  display: inline-block;
  padding: 0 calc(100vw / ( 1500 / 20 )) 0 calc(100vw / ( 1500 / 30 ));
}
.section_search .nav_category button span br {
  display: none;
}
.section_search .nav_category button span:after {
  content: "";
  display: block;
  width: calc(100vw / ( 1500 / 8 ));
  height: calc(100vw / ( 1500 / 8 ));
  border-right: calc(100vw / ( 1500 / 2 )) solid #222;
  border-bottom: calc(100vw / ( 1500 / 2 )) solid #222;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.section_search .nav_category button svg {
  width: calc(100vw / ( 1500 / 20 ));
  height: auto;
  fill: #222;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section_search .nav_category li:nth-of-type(1) svg {
  width: calc(100vw / ( 1500 / 22 ));
}
.section_search .nav_category .popover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
  max-width: 800px;
  background: #fff;
  border: 1px solid #999;
  border-radius: calc(100vw / ( 1500 / 8 ));
  padding: calc(100vw / ( 1500 / 30 )) calc(100vw / ( 1500 / 40 )) calc(100vw / ( 1500 / 22 ));
  margin-top: calc(100vw / ( 1500 / 10 ));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.4;
  position: fixed;
  position-anchor: --popover-anchor;
  top: anchor(bottom);
  left: anchor(left);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity .2s ease, overlay .2s ease allow-discrete, display .2s ease allow-discrete, -webkit-transform .2s ease;
  transition: opacity .2s ease, overlay .2s ease allow-discrete, display .2s ease allow-discrete, -webkit-transform .2s ease;
  transition: opacity .2s ease, transform .2s ease, overlay .2s ease allow-discrete, display .2s ease allow-discrete;
  transition: opacity .2s ease, transform .2s ease, overlay .2s ease allow-discrete, display .2s ease allow-discrete, -webkit-transform .2s ease;
}
.section_search .nav_category .popover a {
  display: block;
  background: #fff;
  padding: calc(100vw / ( 1500 / 8 )) calc(100vw / ( 1500 / 10 ));
  border: 1px solid #999;
  line-height: 1;
  border-radius: calc(100vw / ( 1500 / 6 ));
  margin: 0 calc(100vw / ( 1500 / 8 )) calc(100vw / ( 1500 / 8 )) 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.section_search .nav_category .popover a:hover {
  background: #f7f7f7;
}
.section_search .nav_category .popover:popover-open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@starting-style {
  .section_search .nav_category .popover:popover-open {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
/*=======================================
	page_nav
=======================================*/
.page_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin: 1.5rem 0;
}
.page_nav .pagination {
  margin-top: 0;
}

.sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sort a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #999;
  line-height: 1.2;
  padding: .5rem 1rem;
  border-radius: calc(100vw / ( 1500 / 8 ));
  margin-right: calc(100vw / ( 1500 / 10 ));
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.sort a:hover {
  text-decoration: none;
  background: #f0f0f0;
}
.sort a.active {
  background: #222;
  color: #fff;
  font-weight: bold;
}
.sort a.active:hover {
  cursor: default;
  pointer-events: none;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: calc(100vw / ( 1500 / 30 ));
}
.pagination a,
.pagination span {
  display: block;
  width: calc(100vw / ( 1500 / 50 ));
  height: calc(100vw / ( 1500 / 50 ));
  line-height: calc(100vw / ( 1500 / 50 ));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #999;
  border-right: none;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.pagination a:last-child,
.pagination span:last-child {
  border-right: 1px solid #999;
}
.pagination a span,
.pagination span span {
  display: none;
}
.pagination .prev,
.pagination .next {
  position: relative;
}
.pagination .prev:before,
.pagination .next:before {
  content: "";
  display: block;
  width: calc(100vw / ( 1500 / 8 ));
  height: calc(100vw / ( 1500 / 8 ));
  border-right: calc(100vw / ( 1500 / 2 )) solid #222;
  border-bottom: calc(100vw / ( 1500 / 2 )) solid #222;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.pagination .next:before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.pagination a:hover,
.pagination a.current,
.pagination span:hover,
.pagination span.current {
  text-decoration: none;
  background: #222;
  color: #fff;
  font-weight: bold;
}
.pagination .prev:hover:before,
.pagination .next:hover:before {
  border-color: #fff;
  border-width: calc(100vw / ( 1500 / 3 ));
}
.pagination a.current,
.pagination a.dots,
.pagination span.current,
.pagination span.dots {
  cursor: default;
  pointer-events: none;
}

/*=======================================
	movie_list
=======================================*/
.movie_list .movie_info {
  line-height: 1.2;
}
.movie_list .movie_info a {
  display: block;
}
.movie_list .movie_info h3 {
  font-size: calc(100vw / ( 1500 / 18 ));
  font-weight: bold;
  margin: calc(100vw / ( 1500 / 15 )) 0 calc(100vw / ( 1500 / 10 ));
}
.movie_list .movie_info .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: calc(100vw / ( 1500 / 12 ));
  line-height: 1.4;
  padding-left: calc(100vw / ( 1500 / 20 ));
  margin-bottom: calc(100vw / ( 1500 / 10 ));
  position: relative;
}
.movie_list .movie_info .tag:before {
  content: "";
  display: block;
  width: calc(100vw / ( 1500 / 15 ));
  height: calc(100vw / ( 1500 / 15 ));
  background: url("../images/ico_tag-line.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: .1em;
  left: 0;
}
.movie_list .movie_info .tag li:after {
  content: ",";
  margin-right: .5em;
}
.movie_list .movie_info .tag li:last-child:after {
  content: "";
  margin-right: 0;
}
.movie_list .movie_info .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: calc(100vw / ( 1500 / 14 ));
  font-weight: bold;
  text-align: center;
  height: calc(100vw / ( 1500 / 28 ));
  margin-bottom: calc(100vw / ( 1500 / 12 ));
}
.movie_list .movie_info .num li {
  width: 33%;
  height: 100%;
  padding: 0 .5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #222;
}
.movie_list .movie_info .num li:last-child {
  border-right: none;
}
.movie_list .movie_info .num span:not(.js-dl-count-num) {
  display: inline-block;
  padding-left: calc(100vw / ( 1500 / 20 ));
  position: relative;
}
.movie_list .movie_info .num svg {
  width: calc(100vw / ( 1500 / 14 ));
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.movie_list .btn.download a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: calc(100vw / ( 1500 / 16 )) calc(100vw / ( 1500 / 30 ));
}
.movie_list .btn.download a span {
  padding-left: calc(100vw / ( 1500 / 30 ));
}
.movie_list .btn.download a svg {
  width: calc(100vw / ( 1500 / 20 ));
}
.movie_list.movie_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: calc(100vw / ( 1500 / 80 ));
  margin-bottom: calc(100vw / ( 1500 / 60 ));
  border-bottom: 1px solid #999;
}
.movie_list.movie_detail .movie {
  width: 52.1739130435%;
  margin-right: 4.347826087%;
}
.movie_list.movie_detail .txt {
  width: 43.4782608696%;
}
.movie_list.movie_detail .movie_info h2 span {
  display: block;
  font-size: calc(100vw / ( 1500 / 16 ));
  margin-top: .3em;
}
.movie_list.movie_detail .movie_info p {
  line-height: 1.6;
  margin-bottom: calc(100vw / ( 1500 / 20 ));
}
.movie_list.movie_detail .movie_info .genre {
  margin-bottom: calc(100vw / ( 1500 / 10 ));
}
.movie_list.movie_detail .movie_info .genre h3 {
  font-size: calc(100vw / ( 1500 / 18 ));
  font-weight: bold;
  margin-bottom: calc(100vw / ( 1500 / 8 ));
}
.movie_list.movie_detail .movie_info .genre ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.movie_list.movie_detail .movie_info .genre a {
  display: block;
  background: #fff;
  padding: calc(100vw / ( 1500 / 8 )) calc(100vw / ( 1500 / 10 ));
  border: 1px solid #999;
  line-height: 1;
  border-radius: calc(100vw / ( 1500 / 6 ));
  margin: 0 calc(100vw / ( 1500 / 8 )) calc(100vw / ( 1500 / 8 )) 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.movie_list.movie_detail .movie_info .genre a:hover {
  background: #f7f7f7;
}
.movie_list.movie_detail .movie_info .tag {
  font-size: calc(100vw / ( 1500 / 16 ));
  padding-left: calc(100vw / ( 1500 / 30 ));
  margin-bottom: calc(100vw / ( 1500 / 20 ));
}
.movie_list.movie_detail .movie_info .tag:before {
  width: calc(100vw / ( 1500 / 20 ));
  height: calc(100vw / ( 1500 / 20 ));
  top: .1em;
}
.movie_list.movie_detail .movie_info .tag a {
  display: inline-block;
  line-height: 1.4;
  position: relative;
}
.movie_list.movie_detail .movie_info .tag a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.movie_list.movie_detail .movie_info .tag a:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.movie_list.movie_detail .movie_info .num {
  font-size: calc(100vw / ( 1500 / 18 ));
  height: calc(100vw / ( 1500 / 35 ));
  margin-bottom: calc(100vw / ( 1500 / 20 ));
}
.movie_list.movie_detail .movie_info .num span:not(.js-dl-count-num) {
  padding-left: calc(100vw / ( 1500 / 28 ));
}
.movie_list.movie_detail .movie_info .num svg {
  width: calc(100vw / ( 1500 / 20 ));
}
.movie_list.movie_detail .btn.download a {
  font-size: calc(100vw / ( 1500 / 18 ));
}

/*=======================================
	section_common
=======================================*/
.section_common {
  padding: 0 calc(100vw / ( 1500 / 30 ));
  margin-bottom: calc(100vw / ( 1500 / 30 ));
}
.section_common .outer {
  background: #fff;
  border: 1px solid #999;
  border-radius: 50px;
  border-radius: calc(100vw / ( 1500 / 50 ));
  padding: calc(100vw / ( 1500 / 50 )) 0;
}
.section_common h2 {
  font-size: 32px;
  font-size: calc(100vw / ( 1500 / 32 ));
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: calc(100vw / ( 1500 / 30 ));
}
.section_common h2 .result_count {
  font-size: .8em;
}
.section_common .movie_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section_common .movie_list > li {
  width: 30.4347826087%;
  border: 1px solid #ccc;
  padding: calc(100vw / ( 1500 / 8 ));
  margin: 0 4.347826087% calc(100vw / ( 1500 / 40 )) 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.section_common .movie_list > li:hover {
  border: 1px solid #999;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.section_common .movie_list > li:nth-child(3n) {
  margin-right: 0;
}
.section_common .movie_list > li:nth-last-child(1), .section_common .movie_list > li:nth-last-child(2), .section_common .movie_list > li:nth-last-child(3) {
  margin-bottom: 0;
}
.section_common .movie_list.movie_detail > li {
  width: auto;
  border: none;
  padding: auto;
  margin: auto;
}
.section_common .movie_list + .btn {
  margin-top: calc(100vw / ( 1500 / 40 ));
}
.section_common .no_results .btn {
  margin-top: 2rem;
}

.section_common.page {
  margin-top: calc(100vw / ( 1500 / 40 ));
}
.section_common.page h2 {
  text-align: center;
}

.section_common.terms,
.section_common.privacy {
  line-height: 1.6;
}
.section_common.terms section,
.section_common.privacy section {
  margin: 0 0 3rem;
}
.section_common.terms section h3,
.section_common.privacy section h3 {
  font-size: 1.13em;
  font-weight: bold;
  margin-bottom: .3em;
}
.section_common.terms section p,
.section_common.privacy section p {
  margin: 0 0 1rem;
}
.section_common.terms section ul,
.section_common.privacy section ul {
  margin: 0 0 1rem;
}
.section_common.terms section li,
.section_common.privacy section li {
  margin-bottom: .5em;
  padding-left: 1em;
  position: relative;
}
.section_common.terms section li:before,
.section_common.privacy section li:before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.section_common.terms section:last-of-type,
.section_common.privacy section:last-of-type {
  text-align: right;
}

/*=======================================
	section_recommend
=======================================*/
.section_recommend {
  margin: calc(100vw / ( 1500 / 30 )) 0 calc(100vw / ( 1500 / 50 ));
}
.section_recommend .slide_recommend {
  display: none;
}
.section_recommend .slide_recommend.slick-initialized {
  display: block;
}
.section_recommend .box {
  width: 100%;
  border: 1px solid #999;
  border-radius: calc(100vw / ( 1500 / 16 ));
  background: #fff;
  padding: calc(100vw / ( 1500 / 10 )) calc(100vw / ( 1500 / 30 )) calc(100vw / ( 1500 / 30 ));
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.section_recommend .box .txt {
  text-align: center;
  font-weight: bold;
  margin: 0 0 calc(100vw / ( 1500 / 10 ));
  opacity: 0;
  -webkit-transform: translateY(10px) scale(0.8);
          transform: translateY(10px) scale(0.8);
}
.section_recommend .is-active .txt.show-txt {
  -webkit-animation: poyon 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
          animation: poyon 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@-webkit-keyframes poyon {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px) scale(0.8);
            transform: translateY(10px) scale(0.8);
  }
  70% {
    -webkit-transform: translateY(-5px) scale(1.1);
            transform: translateY(-5px) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes poyon {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px) scale(0.8);
            transform: translateY(10px) scale(0.8);
  }
  70% {
    -webkit-transform: translateY(-5px) scale(1.1);
            transform: translateY(-5px) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
.section_recommend .box .inner {
  border: 1px solid #ccc;
  padding: calc(100vw / ( 1500 / 8 ));
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.section_recommend .box .inner:hover {
  border: 1px solid #999;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.section_recommend .is-active .box {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.section_recommend .slick-arrow {
  width: calc(100vw / ( 1500 / 60 ));
  height: calc(100vw / ( 1500 / 60 ));
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: calc(100vw / ( 1500 / 30 ));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.section_recommend .slick-arrow:after {
  content: "";
  display: block;
  width: calc(100vw / ( 1500 / 16 ));
  height: calc(100vw / ( 1500 / 16 ));
  border-right: calc(100vw / ( 1500 / 3 )) solid #fff;
  border-bottom: calc(100vw / ( 1500 / 3 )) solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 53%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.section_recommend .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.25);
}
.section_recommend .slick-arrow.next {
  left: auto;
  right: calc(100vw / ( 1500 / 30 ));
}
.section_recommend .slick-arrow.next:after {
  left: 48%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.section_recommend .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: calc(100vw / ( 1500 / -30 ));
  left: 0;
  width: 100%;
}
.section_recommend .slick-dots li {
  width: calc(100vw / ( 1500 / 6 ));
  height: calc(100vw / ( 1500 / 6 ));
  background: #ccc;
  margin: 0 calc(100vw / ( 1500 / 8 ));
  border-radius: 50%;
}
.section_recommend .slick-dots .slick-active {
  background: #333;
}
.section_recommend .slick-dots button {
  font-size: 0;
  line-height: 0;
  border: none;
  background: none;
  outline: none;
}

/*=======================================
	section_ad
=======================================*/
.section_ad {
  margin: 50px 0;
}
.section_ad .bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_ad li {
  width: 26.0869565217%;
  margin: 0 4.347826087%;
}
.section_ad li:first-child {
  margin-left: 0;
}
.section_ad li:last-child {
  margin-right: 0;
}

/*=======================================
	404
=======================================*/
.not_found {
  text-align: center;
}
.not_found h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 600;
}
.not_found h1 + p {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 1rem;
}
.not_found .btn {
  margin-top: 3rem;
}

@media only screen and (min-width: 1500px) {
  html {
    font-size: 16px;
  }

  .btn a,
  .btn button {
    border-radius: 3px;
    padding: 15px 50px;
  }
  .btn span {
    padding-left: 20px;
  }
  .btn svg {
    width: 15px;
  }

  .btn.dark a,
  .btn.dark button {
    border-radius: 8px;
    font-size: 20px;
  }
  .btn.dark span {
    padding-left: 35px;
  }
  .btn.dark svg {
    width: 22px;
  }

  /*=======================================
  	header
  =======================================*/
  #header .logo {
    padding: 40px 0 0 40px;
  }
  #header .logo p {
    font-size: 30px;
    margin-right: 20px;
  }
  #header .logo h1 {
    font-size: 14px;
  }
  #header nav {
    height: 40px;
    padding: 0 15px 0 0;
    border-radius: 0 0 0 15px;
    font-size: 15px;
  }
  #header nav svg {
    width: 23px;
  }
  #header nav li {
    margin: 0 5px;
  }
  #header nav a {
    padding: 6px 10px;
    border-radius: 5px;
  }
  #header nav li:first-child {
    padding: 0 20px;
  }
  #header nav li:first-child:after {
    height: 30px;
  }
  #header nav li:first-child a {
    padding: 6px 10px;
  }

  /*=======================================
  	footer
  =======================================*/
  footer {
    padding: 50px 0;
  }
  footer .logo {
    font-size: 30px;
    left: 60px;
  }
  footer nav .btn_youtube a {
    border-radius: 8px;
    padding: 14px 30px;
  }
  footer nav .btn_youtube img {
    height: 20px;
  }
  footer nav ul {
    margin: 20px 0 40px;
  }
  footer .copy {
    font-size: 12px;
  }

  /*=======================================
  	section_search
  =======================================*/
  .section_search {
    margin: 65px 0 70px;
  }
  .home .section_search {
    margin-bottom: 40px;
  }
  .section_search .search_box {
    width: 430px;
  }
  .section_search .search_box input {
    height: 44px;
    padding: 0 130px 0 0;
    font-size: 16px;
  }
  .section_search .search_box button {
    bottom: 10px;
    font-size: 18px;
    height: 40px;
    padding: 0 20px;
    border-radius: 8px;
  }
  .section_search .search_box button span {
    padding-left: 26px;
  }
  .section_search .search_box button svg {
    width: 19px;
  }
  .section_search .nav_category {
    width: 720px;
  }
  .section_search .nav_category li {
    margin-right: 20px;
  }
  .section_search .nav_category button {
    padding: 0 25px;
    font-size: 16px;
    height: 50px;
    border-radius: 8px;
  }
  .section_search .nav_category button span {
    padding: 0 20px 0 30px;
  }
  .section_search .nav_category button span:after {
    width: 8px;
    height: 8px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
  }
  .section_search .nav_category button svg {
    width: 20px;
  }
  .section_search .nav_category li:nth-of-type(1) svg {
    width: 22px;
  }
  .section_search .nav_category .popover {
    border-radius: 8px;
    padding: 30px 40px 22px;
    margin-top: 10px;
  }
  .section_search .nav_category .popover a {
    padding: 8px 10px;
    border-radius: 6px;
    margin: 0 8px 8px 0;
  }

  /*=======================================
  	page_nav
  =======================================*/
  .sort a {
    border-radius: 8px;
    margin-right: 10px;
  }

  .pagination {
    margin-top: 30px;
  }
  .pagination a,
  .pagination span {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .pagination .prev:before,
  .pagination .next:before {
    width: 8px;
    height: 8px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
  }
  .pagination .prev:hover:before,
  .pagination .next:hover:before {
    border-width: 3px;
  }

  /*=======================================
  	movie_list
  =======================================*/
  .movie_list .movie_info h3 {
    font-size: 18px;
    margin: 15px 0 10px;
  }
  .movie_list .movie_info .tag {
    font-size: 12px;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .movie_list .movie_info .tag:before {
    width: 15px;
    height: 15px;
  }
  .movie_list .movie_info .num {
    font-size: 14px;
    height: 28px;
    margin-bottom: 12px;
  }
  .movie_list .movie_info .num span:not(.js-dl-count-num) {
    padding-left: 20px;
  }
  .movie_list .movie_info .num svg {
    width: 14px;
  }
  .movie_list .btn.download a {
    padding: 16px 30px;
  }
  .movie_list .btn.download a span {
    padding-left: 30px;
  }
  .movie_list .btn.download a svg {
    width: 20px;
  }
  .movie_list.movie_detail {
    padding-bottom: 80px;
    margin-bottom: 60px;
  }
  .movie_list.movie_detail .movie_info h2 span {
    font-size: 16px;
  }
  .movie_list.movie_detail .movie_info p {
    margin-bottom: 20px;
  }
  .movie_list.movie_detail .movie_info .genre {
    margin-bottom: 10px;
  }
  .movie_list.movie_detail .movie_info .genre h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .movie_list.movie_detail .movie_info .genre a {
    padding: 8px 10px;
    border-radius: 6px;
    margin: 0 8px 8px 0;
  }
  .movie_list.movie_detail .movie_info .tag {
    font-size: 16px;
    padding-left: 30px;
    margin-bottom: 20px;
  }
  .movie_list.movie_detail .movie_info .tag:before {
    width: 20px;
    height: 20px;
  }
  .movie_list.movie_detail .movie_info .num {
    font-size: 18px;
    height: 35px;
    margin-bottom: 20px;
  }
  .movie_list.movie_detail .movie_info .num span:not(.js-dl-count-num) {
    padding-left: 28px;
  }
  .movie_list.movie_detail .movie_info .num svg {
    width: 20px;
  }
  .movie_list.movie_detail .btn.download a {
    font-size: 18px;
  }

  /*=======================================
  	section_common
  =======================================*/
  .section_common {
    padding: 0 30px;
    margin-bottom: 30px;
  }
  .section_common .outer {
    border-radius: 50px;
    padding: 50px 0;
  }
  .section_common h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .section_common .movie_list > li {
    padding: 8px;
    margin: 0 4.347826087% 40px 0;
  }
  .section_common .movie_list + .btn {
    margin-top: 40px;
  }

  .section_common.page {
    margin-top: 40px;
  }

  /*=======================================
  	section_recommend
  =======================================*/
  .section_recommend {
    margin: 30px 0 50px;
  }
  .section_recommend .box {
    border-radius: 16px;
    padding: 10px 30px 30px;
  }
  .section_recommend .box .txt {
    margin: 0 0 10px;
  }
  .section_recommend .box .inner {
    padding: 8px;
  }
  .section_recommend .slick-arrow {
    width: 60px;
    height: 60px;
    left: 30px;
  }
  .section_recommend .slick-arrow:after {
    width: 16px;
    height: 16px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .section_recommend .slick-arrow.next {
    right: 30px;
  }
  .section_recommend .slick-dots {
    bottom: -30px;
  }
  .section_recommend .slick-dots li {
    width: 6px;
    height: 6px;
    margin: 0 8px;
  }
}
@media only screen and (max-width: 1170px) {
  .section_search {
    margin: calc(100vw / ( 1500 / 50 )) 0 calc(100vw / ( 1500 / 60 ));
  }
  .section_search .wrap {
    display: block;
  }
  .section_search .search_box {
    width: 600px;
    margin: 0 auto 20px;
  }
  .section_search .nav_category {
    width: auto;
  }
  .section_search .nav_category ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section_search .nav_category li:last-child {
    margin-right: 0;
  }
  .section_search .nav_category .popover {
    width: 80%;
    position-area: block-end;
  }
}
@media only screen and (max-width: 980px) {
  .page_nav {
    display: block;
  }

  .sort {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 1rem;
  }
  .sort a:last-child {
    margin-right: 0;
  }
}
/******************************************************************************************

	sp size

******************************************************************************************/
@media only screen and (max-width: 640px) {
  html {
    font-size: calc(100vw / ( 640 / 26 ));
  }

  .pc_only,
  .pc_only_inline {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .sp_only_inline {
    display: inline;
  }

  .wrap {
    padding: 0 calc(100vw / ( 640 / 40 ));
  }

  .btn a,
  .btn button {
    border-radius: calc(100vw / ( 640 / 6 ));
    padding: calc(100vw / ( 640 / 20 )) calc(100vw / ( 640 / 50 ));
    border: calc(100vw / ( 640 / 2 )) solid #222;
  }
  .btn span {
    padding-left: calc(100vw / ( 640 / 40 ));
  }
  .btn svg {
    width: calc(100vw / ( 640 / 30 ));
  }

  .btn.dark a,
  .btn.dark button {
    border-radius: calc(100vw / ( 640 / 8 ));
    font-size: calc(100vw / ( 640 / 26 ));
  }
  .btn.dark span {
    padding-left: calc(100vw / ( 640 / 40 ));
  }
  .btn.dark svg {
    width: calc(100vw / ( 640 / 26 ));
  }

  /*=======================================
  	header
  =======================================*/
  #header {
    height: calc(100vw / ( 640 / 80 ));
    border-bottom: calc(100vw / ( 640 / 2 )) solid #999;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  #header .logo {
    padding: 0 0 0 calc(100vw / ( 640 / 30 ));
    height: 100%;
  }
  #header .logo p {
    font-size: calc(100vw / ( 640 / 30 ));
    margin-right: calc(100vw / ( 640 / 20 ));
    position: relative;
    z-index: 101;
  }
  #header .logo h1 {
    font-size: calc(100vw / ( 640 / 12 ));
    color: #666;
  }
  #header.active .logo p a {
    color: #fff;
  }
  #header .sp_btn {
    display: block;
    width: calc(100vw / ( 640 / 80 ));
    height: 100%;
    border-left: calc(100vw / ( 640 / 2 )) solid #999;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 110;
  }
  #header .sp_btn span,
  #header .sp_btn span:before,
  #header .sp_btn span:after {
    content: "";
    display: block;
    width: calc(100vw / ( 640 / 40 ));
    height: calc(100vw / ( 640 / 2 ));
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  #header .sp_btn span:before {
    top: calc(100vw / ( 640 / -16 ));
  }
  #header .sp_btn span:after {
    top: calc(100vw / ( 640 / 16 ));
  }
  #header.active .sp_btn {
    border-left: none;
  }
  #header.active .sp_btn span {
    background: transparent;
  }
  #header.active .sp_btn span:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    top: calc(100vw / ( 640 / 2 ));
    background: #fff;
  }
  #header.active .sp_btn span:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
    top: calc(100vw / ( 640 / 2 ));
    background: #fff;
  }
  #header nav {
    display: block;
    padding: 0;
    border-radius: 0;
    font-size: calc(100vw / ( 640 / 24 ));
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header nav svg {
    display: none;
  }
  #header nav ul {
    display: block;
    margin: calc(100vw / ( 640 / 100 )) 0 0;
    padding: 0 calc(100vw / ( 640 / 60 ));
  }
  #header nav a {
    padding: 1.5rem 1.25rem;
    border-bottom: calc(100vw / ( 640 / 2 )) solid #666;
    border-radius: calc(100vw / ( 640 / 6 ));
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    opacity: 1;
    position: relative;
  }
  #header nav a:after {
    content: "";
    display: block;
    width: calc(100vw / ( 640 / 16 ));
    height: calc(100vw / ( 640 / 16 ));
    border-right: calc(100vw / ( 640 / 2 )) solid #fff;
    border-bottom: calc(100vw / ( 640 / 2 )) solid #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 1.25rem;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  #header nav li:first-child {
    position: relative;
    padding: 0;
  }
  #header nav li:first-child:after {
    display: none;
  }
  #header nav li:first-child a {
    padding: 1rem 1.25rem;
  }
  #header nav li:first-child span {
    display: inline;
  }
  #header.active nav {
    opacity: 1;
    visibility: inherit;
  }
  #header.active nav li {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  /*=======================================
  	footer
  =======================================*/
  footer {
    border-top: calc(100vw / ( 640 / 2 )) solid #999;
    padding: calc(100vw / ( 640 / 50 )) 0;
    text-align: center;
  }
  footer .logo {
    font-size: calc(100vw / ( 640 / 30 ));
    position: static;
    top: auto;
    left: auto;
  }
  footer nav .btn_youtube {
    margin: 1rem 0;
  }
  footer nav .btn_youtube a {
    border-radius: calc(100vw / ( 640 / 8 ));
    padding: calc(100vw / ( 640 / 18 )) calc(100vw / ( 640 / 40 ));
  }
  footer nav .btn_youtube img {
    height: calc(100vw / ( 640 / 30 ));
  }
  footer nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 calc(100vw / ( 640 / 40 ));
    font-size: calc(100vw / ( 640 / 24 ));
  }
  footer nav li {
    margin-bottom: .5rem;
  }
  footer nav li a:after {
    display: none;
  }
  footer .copy {
    font-size: calc(100vw / ( 640 / 16 ));
  }

  /*=======================================
  	section_search
  =======================================*/
  .section_search {
    margin: calc(100vw / ( 640 / 120 )) 0 calc(100vw / ( 640 / 50 ));
  }
  .home .section_search {
    margin-bottom: calc(100vw / ( 640 / 40 ));
  }
  .section_search .search_box {
    width: auto;
    margin: 0 auto calc(100vw / ( 640 / 30 ));
  }
  .section_search .search_box input {
    height: calc(100vw / ( 640 / 70 ));
    padding: 0 calc(100vw / ( 640 / 150 )) 0 0;
    border-bottom: calc(100vw / ( 640 / 2 )) solid #999;
  }
  .section_search .search_box input:-webkit-input-placeholder {
    font-size: calc(100vw / ( 640 / 20 ));
  }
  .section_search .search_box input:-ms-input-placeholder {
    font-size: calc(100vw / ( 640 / 20 ));
  }
  .section_search .search_box input::-webkit-input-placeholder {
    font-size: calc(100vw / ( 640 / 20 ));
  }
  .section_search .search_box input::-ms-input-placeholder {
    font-size: calc(100vw / ( 640 / 20 ));
  }
  .section_search .search_box input::placeholder {
    font-size: calc(100vw / ( 640 / 20 ));
  }
  .section_search .search_box button {
    bottom: calc(100vw / ( 640 / 10 ));
    font-size: calc(100vw / ( 640 / 20 ));
    height: calc(100vw / ( 640 / 60 ));
    padding: 0 calc(100vw / ( 640 / 20 ));
    border-radius: calc(100vw / ( 640 / 8 ));
  }
  .section_search .search_box button span {
    padding-left: calc(100vw / ( 640 / 26 ));
  }
  .section_search .search_box button svg {
    width: calc(100vw / ( 640 / 20 ));
  }
  .section_search .nav_category li {
    margin-right: calc(100vw / ( 640 / 16 ));
  }
  .section_search .nav_category button {
    padding: 0;
    border: calc(100vw / ( 640 / 2 )) solid #bbb;
    color: #222;
    line-height: 1.3;
    font-size: calc(100vw / ( 640 / 18 ));
    width: calc(100vw / ( 640 / 176 ));
    height: calc(100vw / ( 640 / 80 ));
    border-radius: calc(100vw / ( 640 / 8 ));
    position: relative;
  }
  .section_search .nav_category button span {
    padding: 0 calc(100vw / ( 640 / 20 )) 0 0;
    margin-top: calc(100vw / ( 640 / 24 ));
  }
  .section_search .nav_category button span:after {
    width: calc(100vw / ( 640 / 8 ));
    height: calc(100vw / ( 640 / 8 ));
    border-right: calc(100vw / ( 640 / 2 )) solid #222;
    border-bottom: calc(100vw / ( 640 / 2 )) solid #222;
  }
  .section_search .nav_category button svg {
    width: calc(100vw / ( 640 / 24 ));
    top: calc(100vw / ( 640 / -28 ));
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section_search .nav_category li:nth-of-type(1) svg {
    width: calc(100vw / ( 640 / 26 ));
  }
  .section_search .nav_category .popover {
    border: calc(100vw / ( 640 / 2 )) solid #999;
    border-radius: calc(100vw / ( 640 / 8 ));
    padding: calc(100vw / ( 640 / 30 )) calc(100vw / ( 640 / 30 )) calc(100vw / ( 640 / 18 ));
    margin-top: calc(100vw / ( 640 / 16 ));
  }
  .section_search .nav_category .popover a {
    font-size: calc(100vw / ( 640 / 20 ));
    padding: calc(100vw / ( 640 / 12 )) calc(100vw / ( 640 / 20 ));
    border: calc(100vw / ( 640 / 2 )) solid #999;
    border-radius: calc(100vw / ( 640 / 6 ));
    margin: 0 calc(100vw / ( 640 / 12 )) calc(100vw / ( 640 / 12 )) 0;
  }

  /*=======================================
  	page_nav
  =======================================*/
  .page_nav {
    display: block;
  }
  .page_nav .pagination {
    margin: 0;
  }

  .sort {
    margin-bottom: 1rem;
  }
  .sort a {
    font-size: calc(100vw / ( 640 / 20 ));
    padding: .5rem 1rem;
    border-radius: calc(100vw / ( 640 / 8 ));
    margin-right: calc(100vw / ( 640 / 16 ));
  }

  .pagination {
    margin: 1.5rem 0 1rem;
  }
  .pagination a,
  .pagination span {
    width: calc(100vw / ( 640 / 70 ));
    height: calc(100vw / ( 640 / 70 ));
    line-height: calc(100vw / ( 640 / 70 ));
    font-size: calc(100vw / ( 640 / 24 ));
    border: calc(100vw / ( 640 / 2 )) solid #999;
  }
  .pagination a:last-child,
  .pagination span:last-child {
    border-right: calc(100vw / ( 640 / 2 )) solid #999;
  }
  .pagination .prev:before,
  .pagination .next:before {
    width: calc(100vw / ( 640 / 16 ));
    height: calc(100vw / ( 640 / 16 ));
    border-right: calc(100vw / ( 640 / 4 )) solid #222;
    border-bottom: calc(100vw / ( 640 / 4 )) solid #222;
  }
  .pagination .prev:hover:before,
  .pagination .next:hover:before {
    border-width: calc(100vw / ( 640 / 6 ));
  }

  /*=======================================
  	movie_list
  =======================================*/
  .movie_list .movie_info {
    padding: 0 calc(100vw / ( 640 / 10 ));
  }
  .movie_list .movie_info h3 {
    font-size: calc(100vw / ( 640 / 28 ));
    margin: calc(100vw / ( 640 / 20 )) 0 calc(100vw / ( 640 / 10 ));
  }
  .movie_list .movie_info .tag {
    font-size: calc(100vw / ( 640 / 18 ));
    padding-left: calc(100vw / ( 640 / 20 ));
    margin-bottom: calc(100vw / ( 640 / 16 ));
  }
  .movie_list .movie_info .tag:before {
    width: calc(100vw / ( 640 / 18 ));
    height: calc(100vw / ( 640 / 18 ));
  }
  .movie_list .movie_info .num {
    font-size: calc(100vw / ( 640 / 18 ));
    height: calc(100vw / ( 640 / 40 ));
    margin-bottom: calc(100vw / ( 640 / 16 ));
  }
  .movie_list .movie_info .num li {
    border-right: calc(100vw / ( 640 / 2 )) solid #222;
  }
  .movie_list .movie_info .num span:not(.js-dl-count-num) {
    padding-left: calc(100vw / ( 640 / 30 ));
  }
  .movie_list .movie_info .num svg {
    width: calc(100vw / ( 640 / 20 ));
  }
  .movie_list .btn.download a {
    padding: calc(100vw / ( 640 / 20 )) calc(100vw / ( 640 / 30 ));
  }
  .movie_list .btn.download a span {
    padding-left: calc(100vw / ( 640 / 40 ));
  }
  .movie_list .btn.download a svg {
    width: calc(100vw / ( 640 / 30 ));
  }
  .movie_list.movie_detail {
    display: block;
    padding-bottom: calc(100vw / ( 640 / 80 ));
    margin-bottom: calc(100vw / ( 640 / 60 ));
    border-bottom: calc(100vw / ( 640 / 2 )) solid #999;
  }
  .movie_list.movie_detail .movie {
    width: auto;
    margin: 0 0 1rem;
  }
  .movie_list.movie_detail .txt {
    width: auto;
  }
  .movie_list.movie_detail .movie_info h2 {
    margin-bottom: 1rem;
  }
  .movie_list.movie_detail .movie_info h2 span {
    font-size: calc(100vw / ( 640 / 16 ));
  }
  .movie_list.movie_detail .movie_info p {
    font-size: calc(100vw / ( 640 / 24 ));
    margin-bottom: 1rem;
  }
  .movie_list.movie_detail .movie_info .genre {
    margin-bottom: .5rem;
  }
  .movie_list.movie_detail .movie_info .genre h3 {
    font-size: calc(100vw / ( 640 / 26 ));
    margin-bottom: .5rem;
  }
  .movie_list.movie_detail .movie_info .genre a {
    font-size: calc(100vw / ( 640 / 20 ));
    padding: calc(100vw / ( 640 / 12 )) calc(100vw / ( 640 / 20 ));
    border: calc(100vw / ( 640 / 2 )) solid #999;
    border-radius: calc(100vw / ( 640 / 6 ));
    margin: 0 calc(100vw / ( 640 / 12 )) calc(100vw / ( 640 / 12 )) 0;
  }
  .movie_list.movie_detail .movie_info .tag {
    font-size: calc(100vw / ( 640 / 22 ));
    padding-left: calc(100vw / ( 640 / 36 ));
    margin-bottom: .5rem;
  }
  .movie_list.movie_detail .movie_info .tag:before {
    width: calc(100vw / ( 640 / 26 ));
    height: calc(100vw / ( 640 / 26 ));
    top: .2em;
  }
  .movie_list.movie_detail .movie_info .tag a:after {
    display: none;
  }
  .movie_list.movie_detail .movie_info .num {
    font-size: calc(100vw / ( 640 / 24 ));
    height: calc(100vw / ( 640 / 60 ));
    margin-bottom: .5rem;
  }
  .movie_list.movie_detail .movie_info .num span:not(.js-dl-count-num) {
    padding-left: calc(100vw / ( 640 / 36 ));
  }
  .movie_list.movie_detail .movie_info .num svg {
    width: calc(100vw / ( 640 / 26 ));
  }
  .movie_list.movie_detail .btn.download a {
    font-size: calc(100vw / ( 640 / 26 ));
  }

  /*=======================================
  	section_common
  =======================================*/
  .section_common {
    padding: 0 calc(100vw / ( 640 / 10 ));
    margin-bottom: calc(100vw / ( 640 / 30 ));
  }
  .section_common .outer {
    border: calc(100vw / ( 640 / 2 )) solid #bbb;
    border-radius: calc(100vw / ( 640 / 20 ));
    padding: calc(100vw / ( 640 / 40 )) calc(100vw / ( 640 / 30 ));
  }
  .section_common .wrap {
    padding: 0;
  }
  .section_common h2 {
    font-size: calc(100vw / ( 640 / 28 ));
    margin-bottom: calc(100vw / ( 640 / 30 ));
  }
  .section_common .movie_list {
    display: block;
  }
  .section_common .movie_list > li {
    width: auto;
    border: calc(100vw / ( 640 / 2 )) solid #ccc;
    padding: calc(100vw / ( 640 / 8 ));
    margin: 0 0 calc(100vw / ( 640 / 30 ));
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .section_common .movie_list > li:nth-last-child(2), .section_common .movie_list > li:nth-last-child(3) {
    margin-bottom: calc(100vw / ( 640 / 30 ));
  }
  .section_common .movie_list + .btn {
    margin-top: calc(100vw / ( 640 / 30 ));
  }
  .section_common .no_results p {
    padding: 0 1rem;
  }
  .section_common .no_results .btn {
    margin: 1.5rem 0 1rem;
  }

  .section_common.page {
    padding: 0 calc(100vw / ( 640 / 20 ));
    margin-top: calc(100vw / ( 640 / 100 ));
  }
  .section_common.page h2 {
    font-size: calc(100vw / ( 640 / 32 ));
    text-align: center;
  }

  .section_common.terms,
  .section_common.privacy {
    line-height: 1.6;
  }
  .section_common.terms section,
  .section_common.privacy section {
    font-size: calc(100vw / ( 640 / 22 ));
    margin: 0 0 2rem;
  }
  .section_common.terms section h3,
  .section_common.privacy section h3 {
    font-size: calc(100vw / ( 640 / 24 ));
  }
  .section_common.terms section p,
  .section_common.privacy section p {
    margin: 0 0 .5rem;
  }
  .section_common.terms section ul,
  .section_common.privacy section ul {
    margin: 0 0 .5rem;
  }

  /*=======================================
  	section_recommend
  =======================================*/
  .section_recommend {
    margin: calc(100vw / ( 640 / 30 )) 0 calc(100vw / ( 640 / 50 ));
  }
  .section_recommend .box {
    border: calc(100vw / ( 640 / 2 )) solid #bbb;
    border-radius: calc(100vw / ( 640 / 16 ));
    padding: calc(100vw / ( 640 / 10 )) calc(100vw / ( 640 / 30 )) calc(100vw / ( 640 / 30 ));
  }
  .section_recommend .box .txt {
    margin: 0 0 calc(100vw / ( 640 / 10 ));
  }
  .section_recommend .box .inner {
    border: calc(100vw / ( 640 / 2 )) solid #ccc;
    padding: calc(100vw / ( 640 / 8 ));
  }
  .section_recommend .slick-dots {
    bottom: calc(100vw / ( 640 / -30 ));
  }
  .section_recommend .slick-dots li {
    width: calc(100vw / ( 640 / 8 ));
    height: calc(100vw / ( 640 / 8 ));
    margin: 0 calc(100vw / ( 640 / 10 ));
  }

  /*=======================================
  	section_ad
  =======================================*/
  .section_ad {
    margin: calc(100vw / ( 640 / 70 )) 0;
    text-align: center;
  }
  .section_ad .bnr {
    display: block;
    max-width: calc(100vw / ( 640 / 500 ));
    margin: 0 auto;
  }
  .section_ad li {
    width: auto;
    margin: 0 0 calc(100vw / ( 640 / 30 ));
  }
  .section_ad li:last-child {
    margin-bottom: 0;
  }

  /*=======================================
  	404
  =======================================*/
  .not_found h1 {
    font-size: 1.5em;
  }
  .not_found h1 + p {
    font-size: 1em;
    text-align: center;
  }
  .not_found p {
    text-align: left;
  }
  .not_found .btn {
    margin-top: 2rem;
  }
}
