@charset "UTF-8";
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: "Helvetica Neue", Arial, "メイリオ", "Meiryo", Osaka, sans-serif;
  letter-spacing: 0.025em;
}

.l-header {
  width: 100%;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.l-header > .header-border {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #a50000;
}

.l-header__top {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  max-width: 956px;
  height: 98px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
}

.l-header__top__main {
  display: flex;
  height: 40px;
  margin-top: 32px;
}

.l-header__top__main__logo {
  width: 110px;
  height: 38px;
  transition: 0.3s;
}

.l-header__top__main__logo:hover {
  opacity: 0.8;
}

.l-header__top__main__name {
  margin-left: 8px;
  font-size: 20px;
  line-height: 59px;
}

.l-header__top__main__name a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.l-header__top__main__name a:hover {
  opacity: 0.7;
}

.l-header__top__contact {
  position: absolute;
  top: 28px;
  right: 20px;
}

.l-header__narrow {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  max-width: 956px;
  height: 98px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
}

.l-header__narrow.l-header__narrow--large {
  max-width: 1280px;
}

.l-header__narrow__main {
  display: flex;
  height: 40px;
  margin-top: 32px;
}

.l-header__narrow__main__logo {
  width: 110px;
  height: 38px;
  transition: 0.3s;
}

.l-header__narrow__main__logo:hover {
  opacity: 0.8;
}

.l-header__narrow__main__name {
  margin-left: 8px;
  font-size: 14px;
  line-height: 59px; 
}

.l-header__narrow__main__name a {
  margin-right: 0;
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.l-header__narrow__main__name a:hover {
  opacity: 0.7;
}

.l-header__narrow__contact {
  margin-top: 28px;
}

.l-header__nav {
  width: 100%;
  height: 50px;
  background-color: #a50000;
}

.l-header__nav__box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 956px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.l-header__nav__box.l-header__nav__box--large {
  max-width: 1280px;
}

.l-header__nav__box__menu {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 50px;
  text-decoration: none;
  transition: 0.1s;
}

.l-header__nav__box__menu.current::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scale(1, 1);
  transform-origin: left top;
  background: #fff;
  content: "";
}

.l-header__nav__box__menu::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scale(0, 1);
  transform-origin: left top;
  background: #fff;
  content: "";
  transition: transform 0.1s;
}

.l-header__nav__box__menu:hover::after {
  transform: scale(1, 1);
}

.l-header__bread {
  width: 100%;
  height: 40px;
  background-color: #fff;
  font-size: 14px;
  line-height: 40px;
}

.l-header__bread__inner {
  display: flex;
  max-width: 956px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-header__bread__inner.l-header__bread__inner--large {
  max-width: 1280px;
}

.l-header__bread__inner li {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.l-header__bread__inner li:after {
  padding: 0 0.7em;
  content: ">";
  color: black;
}

.l-header__bread__inner li:last-child:after {
  content: "";
}

.l-header__bread__inner li > a {
  display: inline-block;
  position: relative;
  color: black;
  text-decoration: none;
  text-decoration: none;
  transition: 0.1s;
}

.l-header__bread__inner li > a::after {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left top;
  background: #333;
  content: "";
  transition: transform 0.1s;
}

.l-header__bread__inner li > a:hover::after {
  transform: scale(1, 1);
}

.l-header__bread__inner li > a:hover {
  opacity: 1;
}

.s-header {
  display: flex;
  z-index: 40;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.s-header__logo {
  height: 30px;
  margin-top: 10px;
  margin-left: 15px;
}

.s-header__logo__img {
  height: 30px;
}

.s-header__name {
  margin-top: 25.5px;
  margin-left: 5px;
  font-weight: bold;
  font-size: 16px;
}

.s-header__name > a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.s-header__name > a:hover {
  opacity: 0.7;
}

.s-header__hamburger {
  z-index: 30;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.s-header__hamburger__line {
  position: absolute;
  left: 8px;
  width: 25px;
  height: 1px;
  background-color: #a50000;
  transition: all 0.3s;
}

.black-bg {
  display: block;
  visibility: hidden;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  cursor: pointer;
  opacity: 0;
  transition: all 0.8s;
}

.nav-open .headerNav {
  top: 30px;
}

.nav-open .black-bg {
  visibility: visible;
  opacity: 0.6;
}

.hamburger_line_1 {
  top: 20px;
}

.hamburger_line_2 {
  top: 26px;
}

.hamburger_line_3 {
  top: 32px;
}

.nav-open .hamburger_line_1 {
  top: 25px;
  transform: rotate(45deg);
}

.nav-open .hamburger_line_2 {
  width: 0;
}

.nav-open .hamburger_line_3 {
  top: 25px;
  transform: rotate(-45deg);
}

.headerNav {
  z-index: 20;
  position: fixed;
  top: calc(-100% + -50px);
  top: -100%;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 40px;
  overflow-y: auto;
  background-color: #a50000;
  transition: all 0.3s;
}

.navList {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}

.navItem {
  padding: 1rem 1rem 0;
}

.navItem a {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0 1rem;
  border-bottom: 1px solid #eee;
  color: #fff;
  text-decoration: none;
}

.navItem a > .current {
  text-decoration: underline;
}

.l-footer {
  height: 80px;
  background-color: #333;
  color: #fff;
  line-height: 40px;
}

.l-footer__links {
  width: 100%;
  height: 40px;
  text-align: center;
}

.l-footer__links > .none {
  display: none;
}

.l-footer__link {
  margin-left: 15px;
  color: white;
  font-size: 12px;
  transition: 0.1s;
}

.l-footer__link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.l-footer__copy {
  height: 40px;
  background-color: #a50000;
  font-size: 12px;
  text-align: center;
}

.button {
  display: inline-block;
  border-radius: 5px;
  background-color: #a50000;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.05);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

.button:hover {
  opacity: 0.8;
}

.button[data-button="a"] {
  padding: 14.5px;
  font-size: 16px;
}

.button[data-button="b"] {
  padding: 15px 40px;
  font-size: 16px;
  text-decoration: none;
}

.button[data-icon="download"] > i {
  display: inline-block;
  width: 15px;
  margin-right: 10px;
}

.button[data-icon="download"] > i > img {
  vertical-align: middle;
}

.l-container {
  max-width: 956px;
  margin: 0 auto;
  padding: 50px 20px 70px 20px;
}

.l-container.l-container--large {
  max-width: 1280px;
}

.l-container h1 {
  margin-bottom: 30px;
  padding-left: 5px;
  border-bottom: 1px solid #a50000;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.5;
}

.l-container .titleTag {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid #a50000;
}

.l-container .titleTag h1 {
  margin-top: 10px;
  margin-bottom: 0;
  border-bottom: none;
}

.l-container .titleTag .tag {
  height: 45px;
  margin-top: 5px;
  margin-left: 20px;
  padding: 0 15px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 45px;
}

.l-container .titleTag .tag > span {
  padding: 3px 12px;
  border-radius: 2px;
  background-color: #3f3f3f;
}

.l-container h2 {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}

.l-container h3 {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
}

.l-container h4 {
  margin-bottom: 30px;
  font-weight: bold;
}

.l-container p {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}

.l-container small {
  font-size: 12px;
}

.l-container ul[data-list="a"] {
  margin-bottom: 30px;
  list-style-type: disc;
}

.l-container ul[data-list="b"] {
  margin-bottom: 30px;
  list-style-type: decimal;
}

.l-container ul li {
  margin-bottom: 5px;
  margin-left: 2em;
  font-size: 16px;
  line-height: 1.5;
  list-style-position: outside;
}

.l-container .table-scroll {
  margin-bottom: 30px;
}

.l-container .table-scroll table {
  z-index: 1;
  font-size: 14px;
  vertical-align: middle;
}

.l-container .table-scroll table[data-table="a"] {
  width: 100%;
  min-width: 700px;
}

.l-container .table-scroll table[data-table="a"] tbody tr th,
.l-container .table-scroll table[data-table="a"] tbody tr td {
  padding: 10px;
  border: 1px solid grey;
  line-height: 1.5;
}

.l-container .table-scroll table[data-table="a"] tbody tr th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 120px;
  background-color: #000;
  color: #fff;
}

.l-container .table-scroll table[data-table="a"] tbody tr td {
  min-width: 60px;
}

.l-container .table-scroll table[data-table="b"] {
  width: 100%;
  min-width: 700px;
}

.l-container .table-scroll table[data-table="b"] tbody tr th,
.l-container .table-scroll table[data-table="b"] tbody tr td {
  padding: 10px;
  border: 1px solid #000;
}

.l-container .table-scroll table[data-table="b"] tbody tr th {
  background-color: #000;
  color: #fff;
}

.l-container b {
  font-weight: bold;
}

.l-container mark {
  background-color: transparent;
  color: #f00;
  font-weight: bold;
}

.l-container .buttonLayout[data-pos="left"] {
  text-align: left;
}

.l-container .buttonLayout[data-pos="left"] .buttonLayout__button {
  margin-left: 30px;
}

.l-container .buttonLayout[data-pos="left"] .buttonLayout__button:first-child {
  margin-left: 0;
}

.l-container .buttonLayout[data-pos="right"] {
  text-align: right;
}

.l-container .buttonLayout[data-pos="right"] .buttonLayout__button {
  margin-left: 30px;
}

.l-container .buttonLayout[data-pos="right"] .buttonLayout__button:first-child {
  margin-left: 0;
}

.l-container .buttonLayout[data-pos="center"] {
  text-align: center;
}

.l-container .buttonLayout[data-pos="center"] .buttonLayout__button {
  margin-left: 30px;
}

.l-container .buttonLayout[data-pos="center"] .buttonLayout__button:first-child {
  margin-left: 0;
}

.l-container .layoutA {
  display: flex;
  width: 100%;
  min-height: 200px;
  margin-bottom: 20px;
}

.l-container .layoutA p {
  margin-bottom: 0;
}

.l-container .layoutA__column {
  display: flex;
  width: 455px;
}

.l-container .layoutA__column__imageBox {
  display: flex;
  justify-content: center;
  min-width: 140px;
  height: 200px;
}

.l-container .layoutA__column__imageBox > img {
  width: 100%;
}

.l-container .layoutA__column__sentence {
  height: 100%;
  margin-left: 25px;
}

.l-container .layoutA .mllv03 {
  margin-left: 25px;
}

.l-container .layoutB {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 200px;
  margin-bottom: 30px;
}

.l-container .layoutB p {
  margin-bottom: 0;
}

.l-container .layoutB__media {
  width: 360px;
  height: 100%;
  min-height: 200px;
}

.l-container .layoutB__media__inner {
  position: relative;
  width: 100%;
  min-width: 360px;
}

.l-container .layoutB__media__inner:before {
  display: block;
  padding-top: 56%;
  content: "";
  /* 高さを幅の75%に固定 */
}

.l-container .layoutB__media__inner > video-js {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-container .layoutB__media > video {
  width: 360px;
}

.l-container .layoutB__text {
  width: 63%;
  padding: 0 15px 15px 15px;
}

.l-container .layoutB__text__main-theme {
  display: block;
  padding-bottom: 10px;
  color: #a50000;
  font-weight: bold;
  font-size: 22px;
}

.l-container .layoutB__text__sub-theme {
  display: block;
  padding-bottom: 15px;
  color: #a50000;
  font-size: 20px;
}

.l-container .layoutB-img {
  height: 100%;
}

.l-container .layoutB-img .theme {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 20px;
}

.l-container .layoutB-img .layoutB__media {
  min-width: 360px;
  height: 360px;
}

.l-container .layoutB-img .b-img {
  width: 100%;
  height: 100%;
}

.l-container .layoutC {
  display: flex;
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

.l-container .layoutC__media {
  display: flex;
  justify-content: center;
  width: 200px;
  max-height: 280px;
}

.l-container .layoutC__media > img {
  width: 100%;
}

.l-container .layoutC__text {
  position: relative;
  width: 81%;
  margin-left: 15px;
}

.l-container .layoutC__text__buttonArea {
  text-align: right;
}

.l-container .layoutD {
  display: flex;
  width: 100%;
  min-height: 200px;
  margin-bottom: 20px;
}

.l-container .layoutD p {
  margin-bottom: 0;
}

.l-container .layoutD__column {
  display: flex;
  width: 455px;
}

.l-container .layoutD__column .imageBox {
  display: flex;
  justify-content: center;
  min-width: 140px;
  height: 200px;
}

.l-container .layoutD__column .imageBox > img {
  width: 100%;
}

.l-container .layoutD__column .sentence {
  margin-left: 25px;
}

.l-container .layoutD__column .dl-btn {
  text-align: right;
}

.l-container .layoutD__column .dl-btn > a {
  margin-top: 20px;
}

.l-container .layoutD__column .dl-btn > a > img {
  width: 15px;
  height: 15px;
  margin-right: 30px;
}

.l-container .layoutD .mllv03 {
  margin-left: 25px;
}

.l-container .layoutE {
  display: flex;
  flex-wrap: wrap;
  max-width: 936px;
  margin-bottom: 30px;
}

.l-container .layoutE__box {
  width: 298px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.l-container .layoutE__box:last-child {
  margin-right: 0;
}

.l-container .layoutE__box__img {
  width: 100%;
  margin-bottom: 15px;
}

.l-container .layoutE__box__img > img {
  max-width: 298px;
}

.l-container .layoutE__box__text {
  line-height: 1.75;
}

.l-container .downloadArea {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px;
  background: linear-gradient(#333, #616161);
  color: #fff;
}

.l-container .downloadArea__media {
  width: 300px;
}

.l-container .downloadArea__media > img {
  width: 100%;
}

.l-container .downloadArea__text {
  width: 380px;
  margin-left: 50px;
}

.l-container .overviewArea {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 280px;
  margin-bottom: 30px;
}

.l-container .overviewArea p {
  margin-bottom: 0;
}

.l-container .overviewArea__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 100%;
  margin: 0 auto;
}

.l-container .overviewArea__media > img {
  width: 100%;
}

.l-container .overviewArea__text {
  width: 668px;
  padding-left: 20px;
}

.l-container .manualArea {
  width: 100%;
  height: 180px;
  margin-bottom: 30px;
  overflow: hidden;
  background-color: lightgray;
  text-align: center;
}

.l-container .manualArea .text {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}

.l-container .freeArea {
  width: 100%;
  margin-bottom: 30px;
}

.l-container .banner {
  width: 100%;
  max-width: 936px;
  margin-bottom: 30px;
  transition: 0.2s;
}

.l-container .banner :hover {
  opacity: 0.9;
}

.l-container .banner > a {
  width: 100%;
  height: 100%;
}

.l-container .banner > a > img {
  width: 100%;
}

.l-container .movie {
  width: 100%;
  margin-bottom: 30px;
}

.l-container .movie__inner {
  position: relative;
  width: 100%;
  min-width: 360px;
  border: none;
  outline: none;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}

.l-container .movie__inner:before {
  display: block;
  padding-top: 56.5%;
  content: "";
}

.l-container .movie__inner > video-js {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.l-container .movie__inner .vjs-poster {
  background-size: cover;
  background-color: transparent;
}

.l-container .key-visual {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-bottom: 30px;
  overflow: hidden;
  transform: translateX(-50%);
}

.l-container .key-visual > img {
  width: 100vw;
}

.l-container .fas {
  width: 15px;
  height: 15px;
}

.l-container .small {
  margin-bottom: 20px;
}

.l-container .mblv00 {
  margin-bottom: 0;
}

.l-container .mblv01 {
  margin-bottom: 10px;
}

.l-container .mblv02 {
  margin-bottom: 20px;
}

.l-container .mblv03 {
  margin-bottom: 30px;
}

.l-container .mblv04 {
  margin-bottom: 40px;
}

.l-container .mblv05 {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  body {
    padding-top: 50px;
  }
  .l-header {
    display: none;
  }
  .l-footer {
    display: block;
    height: 100%;
  }
  .l-footer__links {
    display: block;
    height: 100%;
  }
  .l-footer__copy {
    display: block;
    height: 100%;
  }
  .l-container {
    width: 95%;
    padding-top: 30px;
    padding-right: 0;
    padding-bottom: 30px;
    padding-left: 0;
  }
  .l-container h1 {
    font-size: 26px;
  }
  .l-container .titleTag {
    flex-direction: column-reverse;
  }
  .l-container .titleTag h1 {
    margin-top: 0;
  }
  .l-container .titleTag .tag {
    height: auto;
    margin-bottom: 7px;
    margin-left: 0;
    padding-top: 3px;
    padding-left: 5px;
    font-size: 16px;
    line-height: 30px;
  }
  .l-container h2 {
    font-size: 20px;
  }
  .l-container h3 {
    font-size: 16px;
  }
  .l-container p {
    font-size: 14px;
  }
  .l-container .table-scroll {
    overflow-x: scroll;
  }
  .l-container .buttonLayout[data-pos="left"] {
    text-align: center;
  }
  .l-container .buttonLayout[data-pos="left"] .buttonLayout__button {
    margin-bottom: 20px;
    margin-left: 0;
  }
  .l-container .buttonLayout[data-pos="right"] {
    text-align: center;
  }
  .l-container .buttonLayout[data-pos="right"] .buttonLayout__button {
    margin-bottom: 20px;
    margin-left: 0;
  }
  .l-container .buttonLayout[data-pos="center"] .buttonLayout__button {
    margin-bottom: 20px;
    margin-left: 0;
  }
  .l-container .layoutA {
    display: block;
  }
  .l-container .layoutA__column {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  .l-container .layoutA__column__imageBox {
    max-width: 400px;
    height: auto;
    margin: auto;
    margin-bottom: 15px;
  }
  .l-container .layoutA__column__imageBox > img {
    width: auto;
    height: 100%;
  }
  .l-container .layoutA__column__sentence {
    margin-left: 0;
  }
  .l-container .layoutA .mllv03 {
    margin-left: 0;
  }
  .l-container .layoutB {
    display: block;
    height: 100%;
  }
  .l-container .layoutB__media__inner > video-js {
    width: 100%;
  }
  .l-container .layoutB__media > video {
    width: 100%;
    min-height: 0;
  }
  .l-container .layoutB__media {
    width: 100%;
  }
  .l-container .layoutB__text {
    width: 100%;
    padding: 0;
    padding-top: 20px;
  }
  .l-container .layoutB__text__main-theme {
    font-size: 18px;
  }
  .l-container .layoutB__text__sub-theme {
    font-size: 16px;
  }
  .l-container .layoutB-img .layoutB__media {
    min-width: 0;
    height: auto;
    max-height: none;
  }
  .l-container .layoutC {
    display: block;
  }
  .l-container .layoutC__media {
    width: 100%;
    max-height: 480px;
    margin-bottom: 20px;
  }
  .l-container .layoutC__media > img {
    max-width: 350px;
    margin: 0 auto;
  }
  .l-container .layoutC__text {
    width: 100%;
    margin-left: 0;
  }
  .l-container .layoutC__text__buttonArea {
    text-align: center;
  }
  .l-container .layoutD {
    display: block;
  }
  .l-container .layoutD__column {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  .l-container .layoutD__column .imageBox {
    max-width: 400px;
    height: auto;
    margin: auto;
    margin-bottom: 15px;
  }
  .l-container .layoutD__column .imageBox > img {
    width: auto;
    height: 100%;
  }
  .l-container .layoutD__column .sentence {
    margin-left: 0;
  }
  .l-container .layoutD__column .dl-btn {
    text-align: center;
  }
  .l-container .layoutD .mllv03 {
    margin-left: 0;
  }
  .l-container .layoutE {
    display: block;
  }
  .l-container .layoutE__box {
    width: 100%;
    margin-right: 0;
  }
  .l-container .layoutE__box__img > img {
    width: 100%;
    max-width: 767px;
    height: 100%;
  }
  .l-container .downloadArea {
    display: block;
    height: 100%;
  }
  .l-container .downloadArea__media {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .l-container .downloadArea__text {
    width: 100%;
    margin-left: 0;
  }
  .l-container .downloadArea__text__buttonArea {
    text-align: center;
  }
  .l-container .overviewArea {
    display: block;
  }
  .l-container .overviewArea__media {
    width: 100%;
    max-width: 350px;
  }
  .l-container .overviewArea__text {
    width: 100%;
    padding-left: 0;
  }
  .l-container .manualArea {
    height: 230px;
  }
  .l-container .manualArea .text {
    padding: 0 15px;
    font-size: 20px;
  }
  .l-container .movie__inner > video-js {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .s-header {
    display: none;
  }
  .headerNav {
    display: none;
  }
}

@media only screen and (max-width: 470px) {
  .l-footer__links {
    padding: 7px;
    line-height: 23px;
  }
  .l-footer__links > .none {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
