@charset "UTF-8";
/* ==========================================================================

   reset + base

   デフォルトスタイルの初期化や、プロジェクトにおける基本的なスタイルを定義します。
   ページの下地としての全体の背景や、基本的なタイポグラフィなどが該当します。

============================================================================== */
/* Reset
-------------------------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, select {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

nav ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #000000;
  color: #fff;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  padding: 0;
  border: 0;
  margin: 0;
}

textarea {
  vertical-align: middle;
  padding: 0;
  border: 0;
  margin: 0;
  max-width: 100%;
}
textarea.c-form-control {
  height: auto;
}

/*clearfix*/
.cf {
  display: inline-block;
}
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack */
/* Base
-------------------------------------------------------------------- */
/* ベース：要素そのもののデフォルトスタイル
----------------------------------------------------*/
* {
  box-sizing: border-box;
}

a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

strong {
  color: #FF5722;
}

html, body {
  height: 100%;
  margin: 0;
}

/*画像伸縮*/
img {
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: top;
  /*IE8のみ適用*/
}

body {
  font-size: 100%;
  font-size: 14px;
  height: 100%;
  color: black;
  font-feature-settings: "palt";
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* table */
table td, table th {
  vertical-align: top;
  line-height: 1.6;
  padding: 0;
}


/*----------------------------------------------------
header
----------------------------------------------------*/
/*header Nav*/
.l-header_horizon {
  width: 100%;
  height: 70px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  background-color: #27AAA3;
}
.l-header_horizon .l-header_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1170px) {
  .l-header_horizon .l-header_inner {
    width: 1170px;
    margin-inline: auto;
  }
}
.l-header_horizon .l-header_inner .l-logo a {
  color: #FFFFFF;
  width: 110px;
  display: block;
  margin: 8px 0 0 15px;
}
@media screen and (min-width: 1200px) {
  .l-header_horizon .l-header_inner .l-logo a{
    margin-left: 0;
  }
}
.l-header_horizon .l-header_inner .l-logo span {
  text-decoration: none;
  font-weight: normal;
  font-size: 10px;
  margin: 3px 0 0 0;
  display: block;
}
.l-header {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
  background-color: #27AAA3;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  z-index: 999;
}

.l-header_nav {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .l-header_nav-right {
    padding-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header_nav-right {
    padding-right: 0;
  }
}

.l-header_nav-menu {
  opacity: inherit;
  overflow: visible;
  height: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  display: block;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .l-header_nav-menu {
    display: flex;
    opacity: inherit;
    overflow: visible;
    width: 100%;
    border-top: 0;
    z-index: 2;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    position: static; /*absolute打消し*/
    padding-left: 40px;
  }
}

.l-header_nav-menu-right {
  opacity: inherit;
  overflow: visible;
  height: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  display: block;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .l-header_nav-menu-right {
    display: flex;
    opacity: inherit;
    overflow: visible;
    width: 100%;
    border-top: 0;
    z-index: 2;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    position: static; /*absolute打消し*/
  }
}

.l-header_nav-menu a {
  color: #ffffff;
}
.l-header_nav-menu .menu-link h2 > a {
  position: relative;
  font-size: 18px;
  padding: 15px;
  display: block;
  border-bottom: 1px #ffffff solid;
  background: #27aaa3;
  -webkit-appearance: none;
  cursor: pointer;
  text-align: left;
}
.l-header_nav-menu .menu-link h2 > a:hover {
  color: #27aaa3;
  background: #ffffff;
}
@media screen and (min-width: 992px) {
  .l-header_nav-menu .menu-link h2 > a {
    background: none;
    border: 0;
    padding: 28px 10px;
    font-size: 14px;
  }
}

/* メガメニュー */
.menu-mega {
  border-top: 1px #ffffff solid;
  border-bottom: 1px #ffffff solid;
}
@media screen and (min-width: 992px) {
  .menu-mega {
    border: none;
  }
}
.l-header_nav-menu .menu-mega .sub_menu-mega .sub_menu-mega-item-ttl {
  color:#ffffff;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 0 15px 15px 15px;
  transition: 0.3s ease-in-out;
  background: #27aaa3;
}
@media screen and (min-width: 992px) {
  .l-header_nav-menu .menu-mega .sub_menu-mega .sub_menu-mega-item-ttl {
    padding:10px 0 30px 0;
    color: #000;
    text-align: center;
    background: none;
    display: block;
  }
}
.l-header_nav-menu .menu-mega .sub_menu-mega-item figure img {
  display: none;
}
@media screen and (min-width: 992px) {
  .l-header_nav-menu .menu-mega .sub_menu-mega-item figure img {
    display: block;
    width: 120px;
    margin: auto;
  }
}
.l-header_nav-menu .menu-mega .sub_menu-mega-item {
  position: relative;
}
.l-header_nav-menu .menu-mega .menu-mega-ttl {
  position: relative;
  font-size: 18px;
  padding: 15px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  background: #27aaa3;
  -webkit-appearance: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
@media screen and (min-width: 992px) {
  .l-header_nav-menu .menu-mega .menu-mega-ttl {
    background: none;
    border: 0;
    padding: 28px 10px;
    font-size: 14px;
  }
}
.l-header_nav-menu .menu-mega .sub_menu-mega li a:hover {
  color: #27aaa3;
}
.l-header_nav-menu .menu-mega i {
  color: #ffffff;
  font-size: 16px;
  padding-top: 4px;
}
@media screen and (min-width: 992px) {
  .l-header_nav-menu .menu-mega i {
    display: none;
  }
  .l-header_nav-menu .menu-mega > h2:hover {
    color: #27aaa3;
    background: #ffffff;
  }
  .l-header_nav-menu .menu-mega .sub_menu-mega {
    position: absolute;
    top: 70px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 30px 30px 0px 30px;
    background: #ffffff;
    transition: all 0.2s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    /*PCで2階層目の矢印非表示*/
  }
  .l-header_nav-menu .menu-mega .sub_menu-mega .sub_menu-mega-item a:hover .sub_menu-mega-item-ttl {
    color: #27aaa3;
  }
  .l-header_nav-menu .menu-mega .sub_menu-mega .sub_menu-mega-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .l-header_nav-menu .menu-mega .sub_menu-mega .sub_menu-mega-item {
    width: 25%;
    border: none;
    padding: 0px 20px;
  }
  .l-header_nav-menu .menu-mega .sub_menu-mega .js-dropdown-sub > i {
    display: none;
  }
  .l-header_nav-menu .menu-mega:hover .sub_menu-mega {
    top: 70px;
    visibility: visible;
    opacity: 1;
  }
  .l-header_nav-menu .menu-mega .sub_menu-mega > .sub_menu-mega-item > h2 {
    border-bottom: 1px #ccc solid;
    padding: 0px 0px 10px 0px;
    background: none;
    cursor: inherit;
  }
  .l-header_nav-menu .sub_menu-mega {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
  }
}

/* かんたんお問い合わせフォーム */
.menu-contact {
  background: #27aaa3;
  padding: 20px 0;
}
.contact-button {
  background-color: #FD5252;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  align-items: center;
  transition: .3s;
  text-decoration: none;
  width: 345px;
  height: 60px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .menu-contact {
    background: #27aaa3;
    padding: 10px 0 0 10px;
  }
  .contact-button {
    width: 200px;
    height: 50px;
    font-size: 12px;
  }
  .contact-button:hover {
    opacity: .8;
    transition: .3s;
  }
}

/* TEL */
.menu-tel {
  background: #27aaa3;
  padding-bottom: 20px;
  text-align: center;
}
.menu-tel .tel {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  width: 345px;
  transition: .3s;
  text-decoration: none;
  margin-inline: auto;
  display: block;
}
.menu-tel .tel:hover {
  opacity: .8;
  transition: .3s;
}
@media screen and (min-width: 992px) {
  .menu-tel {
    padding: 25px 0 0 10px;
  }
  .menu-tel .tel {
    font-size: 20px;
    width: 210px;
    font-family: "helvetica neue";
  }
  .menu-tel .tel:hover {
    opacity: .8;
    transition: .3s;
  }
}


/*fbのエリア*/
.menu-fb{
  background: #27aaa3;
  padding: 0px 0 20px;
}
.menu-fb .menu-fb-btn{
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1877f2;
  -webkit-appearance: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-inline: auto;
  margin-block: auto;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .menu-fb{
    padding: 20px 0 0 20px;
  }
}


/*検索窓のエリア*/
.menu-search {
  padding: 16px 20px;
  display: block;
  background: #27aaa3;
  -webkit-appearance: none;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .menu-search {
    background: none;
    padding: 10px 0 0 20px;
  }
}
/*テキスト入力input設定*/
.menu-search-text{
  -webkit-appearance:none;/*SafariやChromeのデフォルトの設定を無効*/
  width: 180px;/*テキスト入力エリアが伸びる前の横幅*/
  height: 50px;
  padding: 10px 0px 10px 40px;
  border: none;
  background:#55bcb6;
  background-size: 50px 20px;
  transition: all 0.5s;/*transitionを使ってスムースに伸ばす*/
  outline: none;
  border-radius: 8px;
}
@media screen and (min-width: 992px) {
  .menu-search-text{
    width: 180px; /*テキスト入力エリアが伸びる前の横幅*/
    cursor: pointer; /*カーソルを指マークに*/
  }
}
.menu-search-wrap {
    position: relative;
}
input#searchsubmit {
    padding: 10px;
    cursor: pointer;
    width: 20px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: url("../img/icon_search.svg") no-repeat 0px center;/*虫眼鏡アイコンを背景に表示*/
    z-index: 1;
  }

/*トグルメニュー*/
@media screen and (max-width: 992px) {
  /* ※.l-nav-menu より下に設置 */
  .is-toggle_horizon {
    opacity: 0;
    overflow: hidden;
    width: 100%;
    height: 0;
    z-index: 2;
  }
}
/* ハンバーガー */
#toggle_horizon {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media screen and (min-width: 992px) {
  #toggle_horizon {
    overflow: hidden;
    display: none;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    height: 0;
    opacity: 0;
  }
}

.l-icon-animation {
  width: 70px;
  height: 70px;
  cursor: pointer;
  top: 0px;
  right: 0px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  position: absolute;
  background: #27aaa3;
}
.l-icon-animation span {
  width: 25px;
  height: 2px;
  background: #ededed;
  position: absolute;
  left: 33%;
  top: 45%;
}

.type- span {
  transition: all 0.3s;
  transform: rotate(0);
}
.type- .top {
  transform: translateY(-7px);
  width: 25px;
}
.type- .middle {
  width: 25px;
}
.type- .bottom {
  transform: translateY(8px);
}
.type-:hover .middle {
  width: 20px;
}
.type-.is-open .middle {
  background: rgba(255, 255, 255, 0);
}
.type-.is-open .top {
  transform: rotate(-45deg) translateY(0);
  width: 25px;
}
.type-.is-open .bottom {
  transform: rotate(45deg) translateY(0);
}

/*矢印回転*/
.is-rotate {
  transition: all 0.3s;
  transform: rotate(360deg);
}
/*# sourceMappingURL=sourcemaps/style.css.map */


/*# sourceMappingURL=sourcemaps/style.css.map */
/*----------------------------------------------------
  main
----------------------------------------------------*/

.lpFilm .l-main {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}
.lpFilm .l-container {
  max-width: 1000px;
  margin: auto;
}

/*----------------------------------------------------
  footer
----------------------------------------------------*/
#footer {
  font-size: 14px;
  height: 100px;
  line-height: 1;
  width: 100%;
  background-color: #27AAA3;
  margin-top: 120px;
}

.footer__contents__logo {
  width: 110px;
}

#footer ul, #footer dl {
  margin: 0;
}

#footer .contents {
  background-color: #22272e;
  color: #fff;
}

#footer .contents .inner {
  display: flex;
  margin: 0 auto;
  padding: 30px 0;
  max-width: 1170px;
  justify-content: center
}

#footer .navigation {
  display: flex;
  justify-content: space-between;
  margin-left: 200px;
}

#footer .title {
  border-left: 2px solid #27AAA3;
  font-size: 20px;
  line-height: 1.2;
  padding-left: 20px;
}

#footer .wrapper {
  margin-left: 100px;
}

#footer .wrapper:first-child {
  margin-left: 0;
}

#footer .link-list {
  margin: 30px 0 0 10px;
}

#footer .link-list--contact {
  margin-top: 20px;
}

#footer .link-list li {
  margin-top: 10px;
}

#footer .link-list li:first-child {
  margin-top: 0;
}

#footer .link-list li .contact {
  margin-top: 20px;
}

#footer .link-list li .contact:first-child {
  margin-top: 0;
}

#footer .link-list li a {
  color: #fff;
  display: block;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s;
}

#footer .link-list li a:hover {
  opacity: 0.6;
}

#footer .link-list li a.button-link {
  border: 1px solid #fff;
  box-sizing: border-box;
  display: flex;
  padding: 10px 50px;
  position: relative;
  text-align: center;
}

#footer .link-list li a.button-link:hover {
  background-color: #27AAA3;
  border-color: transparent;
  color: #fff;
  opacity: 1;
}

#footer .link-list li a.tel {
  font-size: 30px;
  font-weight: bold;
}

#footer .link-list li a.tel .sub {
  font-size: 20px;
  margin-right: 15px;
}

#copyright {
  background-color: #1c2127;
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

#page-top {
  position: fixed;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #27AAA3;
  background-color: #fff;
  z-index: 2;
  bottom: 15px;
  right: 15px;
}

#page-top a {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 0;
  height: 0;
  border-right: solid 10px transparent;
  border-bottom: solid 18px #27AAA3;
  border-left: solid 10px transparent;
}

@media (max-width: 992px) {
  #footer {
    margin-top: 0;
  }

  #footer .contents .inner {
    display: block;
    padding: 10px 0;
    width: 100%;
  }

  .footer__contents__logo img {
    transform: scale(0.7);
  }

  #footer .navigation {
    margin: 10px 0 0 20px;
  }

  #footer .title {
    font-size: 16px;
    line-height: 1.2;
    padding-left: 10px;
  }

  #footer .wrapper {
    margin-left: 20px;
  }

  #footer .wrapper:first-child {
    margin-left: 0;
  }

  #footer .link-list {
    margin: 15px 0 0 5px;
  }

  #footer .link-list--contact {
    margin-top: 10px;
    margin-right: 20px;
  }

  #footer .link-list li {
    margin-top: 10px;
  }

  #footer .link-list li:first-child {
    margin-top: 0;
  }

  #footer .link-list li .contact {
    margin-top: 20px;
  }

  #footer .link-list li .contact:first-child {
    margin-top: 0;
  }

  #footer .link-list li a.button-link {
    padding: 10px;
    font-size: 10px;
    line-height: 1.3;
  }

  #footer .link-list li a.tel {
    font-size: 20px;
  }

  #footer .link-list li a.tel .sub {
    font-size: 20px;
    margin-right: 15px;
  }

  #copyright {
    font-size: 10px;
  }

  #page-top {
    width: 64px;
    height: 64px;
  }

  #page-top a {
    border-right: solid 8px transparent;
    border-left: solid 8px transparent;
    border-bottom: solid 18px #27AAA3;
    top: 20px;
    left: 22px;
  }
}

.lpFilm .c-cardsFeature {
  display: flex;
  flex-wrap: wrap;
  /*折り返し*/
  margin: calc(-50px / 2);
}
.lpFilm .c-cardsFeature__item {
  width: calc(100% / 1 - 50px);
  /*1カラム*/
  margin: calc(50px / 2);
}
@media screen and (min-width: 500px) {
  .lpFilm .c-cardsFeature__item {
    width: calc(100% / 2 - 50px);
    /*2カラム*/
  }
}
@media screen and (min-width: 1000px) {
  .lpFilm .c-cardsFeature__item {
    width: calc(100% / 3 - 50px);
    /*3カラム*/
  }
}
.lpFilm .c-cardFeature {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* 文字行数制限 */
}
.lpFilm .c-cardFeature__img {
  margin: auto;
}
.lpFilm .c-cardFeature__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}
.lpFilm .c-cardFeature__inner {
  text-align: center;
  color: #ffffff;
}
.lpFilm .c-cardFeature__ttl {
  font-size: 20px;
  letter-spacing: 2px;
  padding: 15px 0;
}
.lpFilm .c-cardFeature__ttl__jp {
  letter-spacing: 1px;
  display: block;
  font-weight: normal;
  margin: 0 auto;
  white-space: nowrap;
  /* 文字行数制限 */
  overflow: hidden;
  /* 文字行数制限 */
  text-overflow: ellipsis;
  /* 文字行数制限 */
}
.lpFilm .c-cardFeature__text {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  display: -webkit-box;
  /* 文字行数制限 */
  -webkit-box-orient: vertical;
  /* 文字行数制限 */
  -webkit-line-clamp: 5;
  /* 文字行数制限 */
}
.lpFilm .c-cardsScene {
  display: flex;
  flex-wrap: wrap;
  /*折り返し*/
  margin: calc(-50px / 2);
}
.lpFilm .c-cardsScene__item {
  width: calc(100% / 1 - 50px);
  /*1カラム*/
  margin: calc(50px / 2);
}
@media screen and (min-width: 500px) {
  .lpFilm .c-cardsScene__item {
    width: calc(100% / 2 - 50px);
    /*2カラム*/
  }
}
@media screen and (min-width: 1000px) {
  .lpFilm .c-cardsScene__item {
    width: calc(100% / 3 - 50px);
    /*3カラム*/
  }
}
.lpFilm .c-cardScene {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* 文字行数制限 */
}
.lpFilm .c-cardScene__inner {
  text-align: center;
  color: #001B4D;
}
.lpFilm .c-cardScene__ttl {
  padding: 15px 0;
}
.lpFilm .c-cardScene__ttl__jp {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 auto;
  white-space: nowrap;
  /* 文字行数制限 */
  overflow: hidden;
  /* 文字行数制限 */
  text-overflow: ellipsis;
  /* 文字行数制限 */
}
.lpFilm .c-cardsWorks {
  display: flex;
  flex-wrap: wrap;
  /*折り返し*/
  margin: calc(-50px / 2);
}
.lpFilm .c-cardsWorks__item {
  width: calc(100% / 1 - 50px);
  /*1カラム*/
  margin: auto;
  padding: 45px 15px;
}
@media screen and (min-width: 768px) {
  .lpFilm .c-cardsWorks__item {
    padding: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .lpFilm .c-cardsWorks__item {
    padding: 80px;
  }
}
.lpFilm .c-cardsWorks__item:nth-child(odd) {
  background: #02205C;
}
.lpFilm .c-cardWorks {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .lpFilm .c-cardWorks {
    flex-direction: row-reverse;
    align-items: center;
  }
}
.lpFilm .c-cardWorks__movie {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lpFilm .c-cardWorks__movie {
    width: 50%;
  }
}
.lpFilm .c-cardWorks__inner {
  text-align: left;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .lpFilm .c-cardWorks__inner {
    width: 50%;
  }
}
.lpFilm .c-cardWorks__ttl__sub {
  font-size: 14px;
  padding: 10px 0 5px;
}
@media screen and (min-width: 768px) {
  .lpFilm .c-cardWorks__ttl__sub {
    font-size: 20px;
    padding: 0 0 15px 0;
  }
}
@media screen and (max-width: 1200px) {
  .lpFilm .c-cardWorks__ttl__sub {
    font-size: 1.7vw;
  }
}
.lpFilm .c-cardWorks__ttl {
  padding: 0;
}
.lpFilm .c-cardWorks__ttl__jp {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 auto;
  white-space: nowrap;
  /* 文字行数制限 */
  overflow: hidden;
  /* 文字行数制限 */
  text-overflow: ellipsis;
  /* 文字行数制限 */
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .lpFilm .c-cardWorks__ttl__jp {
    font-size: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .lpFilm .c-cardWorks__ttl__jp {
    font-size: 4vw;
  }
}
.lpFilm .c-cardWorks br {
  display: none;
}
@media screen and (min-width: 768px) {
  .lpFilm .c-cardWorks br {
    display: block;
  }
}
.lpFilm .c-cardsVideo {
  display: flex;
  flex-wrap: wrap;
  /*折り返し*/
  margin: calc(-50px / 2);
}
.lpFilm .c-cardsVideo__item {
  width: calc(100% / 1 - 50px);
  /*1カラム*/
  margin: calc(50px / 2);
}
@media screen and (min-width: 768px) {
  .lpFilm .c-cardsVideo__item {
    width: calc(100% / 2 - 50px);
    /*2カラム*/
  }
}
.lpFilm .c-cardVideo {
  display: flex;
  flex-direction: column;
}
.lpFilm .c-cardVideo__ttl {
  color: #090950;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
}

/* パンクズ */
#breadcrumb {
  margin: 70px 0 0;
  font-size: 14px;
}

#breadcrumb ul {
  display: flex;
  overflow-x: scroll;
  /* スクロール指定 */
  word-break: keep-all;
  white-space: nowrap;
  padding: 15px;
}

@media screen and (min-width: 992px) {
  #breadcrumb ul {
    width: 1170px;
    margin-inline: auto;
  }
}
#breadcrumb ul::-webkit-scrollbar {
  display: none;
  /* スクロールバー非表示 */
}

#breadcrumb ul li:not(:last-child) {
  position: relative;
  padding-right: 25px;
}

#breadcrumb ul li:not(:last-child)::after {
  content: ">";
  display: block;
  position: absolute;
  width: 10px;
  height: 15px;
  top: 0px;
  right: 5px;
}

/*----------------------------------------------------
  LP 透過型フィルムLED
----------------------------------------------------*/
.lpFilm {
  margin-bottom: -120px;
  margin-top: 56px;
  /*DLボタン*/
  /*ヒーローエリア*/
  /* 製品特長 */
  /* シーン */
  /* 設置事例集 */
  /* 基本システム構成・設置イメージ・仕様のタイトル */
  /*仕様*/
}
@media (max-width: 992px) {
  .lpFilm {
    margin-bottom: 0;
  }
}
.lpFilm .c-btn__pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 230px;
  height: 50px;
  margin: auto;
}
.lpFilm .c-btn__pdf:hover {
  background: #ffecec;
}
.lpFilm .c-btn__pdf--text {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.07em;
}
.lpFilm .c-btn__pdf--img {
  padding-right: 10px;
}
.lpFilm .p-hero {
  padding: 30px 15px;
  background-image: linear-gradient(to bottom, #0a1c4200, rgba(26, 52, 123, 0)), url(../img/hero-bg_lpFilm.png);
  background-size: cover;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-hero {
    padding: 125px 50px;
  }
}
.lpFilm .p-hero__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-hero__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.lpFilm .p-hero__content {
  width: 100%;
  max-width: 450px;
  order: 2;
  padding: 20px 0 0 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-hero__content {
    width: 50%;
    order: 1;
    padding: 0;
    margin: initial;
  }
}
.lpFilm .p-hero__ttl {
  font-size: 30px;
  font-weight: bold;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-hero__ttl {
    font-size: 24px;
    text-align: left;
  }
}
.lpFilm .p-hero__lead {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lpFilm .p-hero__img{
    margin-top: 50px;
  }

  .lpFilm .p-hero__ttl {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .lpFilm .p-hero__lead {
    text-align: left;
  }
}
.lpFilm .p-hero__img {
  width: 100%;
  order: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-hero__img {
    width: 45%;
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .lpFilm .p-hero__btn {
    width: fit-content;
  }
}
.lpFilm .p-hero br {
  display: block;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-hero br {
    display: none;
  }
}
.lpFilm .p-feature {
  padding: 50px 15px 70px;
  background: #001B4D;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-feature {
    padding: 70px 40px 100px;
  }
}
.lpFilm .p-feature__ttl {
  text-align: center;
  margin-bottom: 80px;
}
.lpFilm .p-feature__ttl--en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 90px;
  font-weight: bold;
  color: #124083;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-feature__ttl--en {
    font-size: 120px;
  }
}
.lpFilm .p-feature__ttl--jp {
  font-size: 26px;
  font-weight: bold;
  margin-top: -75px;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-feature__ttl--jp {
    font-size: 40px;
    margin-top: -100px;
  }
}
.lpFilm .p-scene {
  padding: 50px 15px 70px;
  background: #E0E0E0;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-scene {
    padding: 70px 40px 100px;
  }
}
.lpFilm .p-scene__ttl {
  text-align: center;
  margin-bottom: 80px;
}
.lpFilm .p-scene__ttl--en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 90px;
  font-weight: bold;
  color: #b1cbe1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-scene__ttl--en {
    font-size: 120px;
  }
}
.lpFilm .p-scene__ttl--jp {
  font-size: 26px;
  font-weight: bold;
  margin-top: -75px;
  color: #001B4D;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-scene__ttl--jp {
    font-size: 40px;
    margin-top: -100px;
  }
}
.lpFilm .p-works {
  padding: 50px 0 70px;
  background: #001B4D;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-works {
    padding: 70px 0 100px;
  }
}
.lpFilm .p-works__ttl {
  text-align: center;
  margin-bottom: 80px;
}
.lpFilm .p-works__ttl--en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 90px;
  font-weight: bold;
  color: #124083;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-works__ttl--en {
    font-size: 120px;
  }
}
.lpFilm .p-works__ttl--jp {
  font-size: 26px;
  font-weight: bold;
  margin-top: -75px;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-works__ttl--jp {
    font-size: 40px;
    margin-top: -100px;
  }
}
.lpFilm .p-productSpec {
  padding: 50px 15px 0;
  background: #E0E0E0;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-productSpec {
    padding: 70px 40px 0;
  }
}
.lpFilm .p-productSpec__ttl {
  text-align: center;
  color: #090950;
  margin-bottom: 20px;
}
.lpFilm .p-productSpec__ttl--jp {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-productSpec__ttl--jp {
    font-size: 52px;
  }
}
.lpFilm .p-productSpec:nth-child(3) {
  padding-bottom: 50px;
}
.lpFilm .p-spec__annotation {
  padding-top: 20px;
}
.lpFilm .p-spec__table table {
  border-collapse: collapse;
  background: white;
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
  /*横幅に合わせて縮小*/
  word-break: break-word;
  /*横幅に合わせて文字改行*/
}
.lpFilm .p-spec__table table th,
.lpFilm .p-spec__table table td {
  padding: 10px;
  border: 1px #CCCCCC solid;
  text-align: center;
  vertical-align: middle;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .lpFilm .p-spec__table table th,
.lpFilm .p-spec__table table td {
    font-size: 14px;
  }
}
.lpFilm .p-spec__table table th {
  background: #EFEFEF;
}

/*----------------------------------------------------
  アニメーション
----------------------------------------------------*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 100;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */
