* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #ECEEF1;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",sans-serif;
}

header {
  width: 100%;
  height: 100px;
  background-color: #fbef58;
  position: relative;
}

header img {
  display: block;
  width: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin: auto;
}

header .header-inner {
  max-width: 1600px;
  margin: 0 auto;
}

header .header-inner p {
  display: inline-block;
  color: #9d94a1;
  font-size: 16px;
  font-weight: 400;
  margin-left: 40px;
  margin-top: 35px;
}

.video {
  margin: 30px auto;
  max-width: 1600px;
  background-color: #fcfcfc;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
  outline: none;
}

.headline {
  padding: 30px 30px;
  text-align: center;
  margin-top: 20px;
}

.headline__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 3px;
  position: relative;
  color: #3e3e3e;
}

.headline__title:before {
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 2px;
  content: '';
  background: #000;
}

.headline__subtitle {
  margin-top: 40px;
  font-size: 22px;
  color: #3e3e3e;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 40px;
}

.headline p {
  font-size: 15px;
  margin-top: -8px;
  color: #656565;
}

.cards {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.card {
  margin: 3px;
  width: calc((100% / 4) - 6px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 991px) {
  .card {
    width: calc((100% / 2) - 30px);
  }
}

@media screen and (max-width: 767px) {
  .card {
    width: 100%;
  }
}

.card .card__inner {
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
}

.card .card__inner:hover {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.card__inner {
  width: 100%;
  position: relative;
  cursor: pointer;
  color: #fcfcfc;
  font-size: 1em;
  text-align: left;
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 56.25%;
  background-size: cover;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  position: relative;
}

.card__inner .work-number {
  display: block;
  padding-top: 10px;
  padding-left: 15px;
  font-size: 13px;
}

.card__inner .fa {
  width: 100%;
  padding-top: 5px;
  padding-left: 15px;
}

.card__inner .work-title {
  display: block;
  padding-left: 15px;
  padding-bottom: 5px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
}

.card__expander {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #4D4D4D;
  width: 100%;
  position: relative;
  color: #fcfcfc;
  font-size: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card__expander video {
  padding: 30px;
  width: 100%;
  max-width: 640px;
}

.card__expander .fa {
  font-size: 0.75em;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.card__expander .fa:hover {
  opacity: 0.9;
}

.card__expander_txt {
  padding: 35px 35px;
}

.card__expander_txt table {
  border-collapse: collapse;
  width: 100%;
}

.card__expander_txt table th {
  padding: 5px 5px;
  font-size: 13px;
  color: #b0b0b0;
  font-weight: 400;
}

.card__expander_txt table td {
  padding: 5px 5px;
  font-size: 13px;
  color: white;
}

.card.is-collapsed .card__inner:after {
  content: "";
  opacity: 0;
}

.card.is-collapsed .card__expander {
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
}

.card.is-expanded .card__inner:after {
  content: "";
  opacity: 1;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 15px);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #333a45;
}

.card.is-expanded .card__inner .fa:before {
  content: "\f115";
}

.card.is-expanded .card__expander {
  min-height: 200px;
  overflow: visible;
  margin-top: 30px;
  opacity: 1;
}

.card.is-expanded:hover .card__inner {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.card.is-inactive .card__inner {
  pointer-events: auto;
}

.card.is-inactive:hover .card__inner {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (min-width: 992px) {
  .card:nth-of-type(4n+2) .card__expander {
    margin-left: calc(-100% - 6px);
  }
  .card:nth-of-type(4n+3) .card__expander {
    margin-left: calc(-200% - 12px);
  }
  .card:nth-of-type(4n+4) .card__expander {
    margin-left: calc(-300% - 18px);
  }
  .card:nth-of-type(4n+5) {
    clear: left;
  }
  .card__expander {
    width: calc(400% + 18px);
  }
}

@media screen and (min-width: 1200px) {
  .card__expander {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .card:nth-of-type(2n+2) .card__expander {
    margin-left: calc(-100% - 6px);
  }
  .card:nth-of-type(2n+3) {
    clear: left;
  }
  .card__expander {
    width: calc(200% + 6px);
  }
}

.pagination {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

.pagination li {
  margin: 5px;
  margin-bottom: 60px;
  border: 1px solid #333;
  max-width: 60px;
}

.pagination li:hover {
  background-color: #333;
  color: aliceblue;
}

.pagination a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  padding: 20px;
  font-size: 12px;
}

.pagination a:hover {
  color: aliceblue;
}

.active {
  background-color: #FBEF58;
}

.contact-form {
  max-width: 1600px;
  margin: 30px auto;
}

.contact-form h3 {
  padding: 20px;
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  position: relative;
}

.contact-form h3:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 30px);
  width: 60px;
  height: 2px;
  content: '';
  background: #000;
}

.contact-form .comment_area {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.contact-form p {
  font-size: 14px;
  margin-top: -8px;
}

.contact-form form {
  max-width: 800px;
  margin: 0 auto;
  padding: 35px;
  background-color: #acbcc7;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
}

.contact-form .form-group {
  margin-top: 15px;
}

.contact-form .form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #292929;
}

.contact-form .form-group input {
  font-size: 16px;
  width: 100%;
  max-width: 500px;
  background-color: #f0eee9;
  border: 1px solid #6d6d6d;
}

.contact-form .form-group textarea {
  width: 100%;
  height: 30px;
  font-size: 16px;
  height: calc( 1.3em * 10);
  line-height: 1.3;
  background-color: #f0eee9;
  border: 1px solid #6d6d6d;
}

.contact-form .form-group button {
  border: none;
  display: block;
  width: 200px;
  padding: 10px;
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-form .form-group button:hover {
  background-color: #fbef58;
  color: #333;
}

.movie-price {
  background-color: #303030;
  margin-top: 80px;
  padding-bottom: 80px;
  padding-top: 40px;
}

.movie-price h3 {
  padding: 20px;
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  position: relative;
  color: white;
}

.movie-price h3:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 30px);
  width: 60px;
  height: 2px;
  content: '';
  background: white;
}

.movie-price p.movie-price_caution {
  text-align: left;
  font-size: 13px;
  line-height: 200%;
  color: #bababa;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

table.movie-price-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

table.movie-price-table th, table.movie-price-table td {
  padding: 1rem 2rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

table.movie-price-table th {
  font-weight: normal;
  font-size: .875rem;
  color: #949494;
  font-weight: 700;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

table.movie-price-table td {
  color: #dadada;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 768px) {
  header img {
    width: 120px;
  }
  header .header-inner p {
    font-size: 12px;
    margin-left: 20px;
  }
  .video {
    margin: 10px auto;
  }
  .headline {
    padding: 10px 30px;
  }
  .headline__title {
    font-size: 24px;
  }
  .headline__subtitle {
    font-size: 18px;
  }
  .headline p {
    font-size: 13px;
  }
  .cards {
    padding: 15px;
  }
  table.movie-price-table th, table.movie-price-table td {
    padding: 10px 5px;
    font-size: 12px;
    width: 25%;
  }
}

.videobunner {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.videobunner-text {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* background-color: black; */
  text-align: center;
}

.videobunner-text .headline {
  font-family: 'Century Gothic';
  font-size: 18px;
  letter-spacing: 5px;
  color: white;
}

.videobunner-text .mainline {
  font-family: 'Century Gothic';
  font-size: 40px;
  letter-spacing: 10px;
  color: white;
}

a.videobunner-button {
  border: 1px solid #fff;
  border-radius: 20px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 50px;
  display: inline-block;
  margin-top: 30px;
}

a.videobunner-button:hover {
  color: #000;
  background: #FBEF58;
}

.video-pattern {
  width: 100%;
  height: 100%;
  background: url(http://www.webcreatorbox.com/sample/images/yokojima.png);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -99;
}

.videobunner-inner video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: -100;
  position: relative;
}

.videobunner-outer {
  background: trasparent;
}

.videobunner-bottomspace {
  width: 100%;
  height: 60px;
  background-color: #F2F0F4;
}

.videobunner-title {
  color: #000;
  font-size: 20px;
  text-align: center;
  background-color: #F2F0F4;
  height: 80px;
  line-height: 80px;
}
/*# sourceMappingURL=video.css.map */