@charset "UTF-8";



/* ----------------------------
  Lauout
---------------------------- */

/* Fixed Background
---------------------------- */
body:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: top center, bottom center;
  background-image: url(../img/index/bg-01-pc.png), url(../img/index/bg-02-pc.png);
  background-size: 100% auto, 100% auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 812px) {
  body:before {
    background-image: url(../img/index/bg-01-sp.png), url(../img/index/bg-02-sp.png);
  }
}


/* Footer - Action
---------------------------- */
.action {
  background-color: #41b1d2;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-image: url(../img/index/bg-invitaion-pc.png);
  background-size: 100% auto;
}
.action-official a {
  border-color: #fff;
}

@media screen and (max-width: 812px) {
  .action {
    background-image: url(../img/index/bg-invitaion-sp.png);
  }
}




/* ----------------------------
  Top
---------------------------- */
.top {
  padding-bottom: 60px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 812px) {
  .top {
    padding-bottom: 45px;
  }
}



/* ----------------------------
  Header
---------------------------- */

/* Header Title
---------------------------- */
.header-title {
  width: 391px;
  height: 162px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  margin-top: -81px;
  margin-left: -195px;
  -webkit-transition: opacity 0.6s, visibility 0.6s, width 0.6s, height 0.6s;
  transition: opacity 0.6s, visibility 0.6s, width 0.6s, height 0.6s;
  -webkit-transition-delay: 0.4s, 0.4s, 0s, 0s;
  transition-delay: 0.4s, 0.4s, 0s, 0s;
}
.panel-active .header-title {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

@media screen and (max-width: 812px) {
  .header-title {
    width: 256px;
    height: 104px;
    margin-top: 0;
    margin-left: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -20px;
  }
  .loaded .header-title {
    width: 142px;
    height: 57px;
  }
}


/* Header WWD
---------------------------- */
.header-wwd {
  z-index: 2;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.loaded .header-wwd {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 812px) {
  .header-wwd {
    width: 62px;
    top: 12px;
    right: 3.3333333%;
  }
  .header-wwd svg {
    display: block;
    width: 100%;
    height: auto;
    fill: #231815;
  }
}



/* ----------------------------
  Bar
---------------------------- */
.bar {
  height: 60px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 812px) {
  .bar {
    height: 45px;
  }
}


/* Bar Label
---------------------------- */
.bar-label {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-orient: horizontal; /* Less than android 4.3 */
  -webkit-box-direction: reverse; /* Less than android 4.3 */
  -webkit-flex-direction: row-reverse; /* Less than iOS8 */
  flex-direction: row-reverse;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
}
.bar-label dt {
  line-height: 1;
}
.bar-label dd {
  margin-right: 36px;
  letter-spacing: 0.1em;
  font-family: "Chronicle Display Roman", serif;
  font-size: 26px;
}

@media screen and (max-width: 812px) {
  .bar-label {
    display: none;
  }
}


/* Bar Down
---------------------------- */
.bar-down {
  width: 35px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bar-down img {
  display: block;
  -webkit-animation: arrow 1.8s 1.2s infinite;
  animation: arrow 1.8s 1.2s infinite;
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
    opacity: 0;
  }
}
@keyframes arrow {
  0% {
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
    opacity: 0;
  }
}

@media screen and (max-width: 812px) {
  .bar-down {
    width: 25px;
    top: 50%;
    left: auto;
    right: 6.1333333%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}


/* Triggers
---------------------------- */
.triggers {
  position: absolute;
  -webkit-transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s;
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s;
}
.triggers-fixed {
  position: fixed;
}
.triggers-fixed.triggers-hidden {
  opacity: 1;
}



/* ----------------------------
  Panels
---------------------------- */
.panels {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 812px) {
  .panels {
    -webkit-box-orient: vertical; /* Less than android 4.3 */
    -webkit-flex-direction: column; /* Less than iOS8 */
    flex-direction: column;
  }
}



/* Panels Back
---------------------------- */
.panels-back {
  line-height: 1;
  width: auto;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 20px;
  position: absolute;
  left: 20px;
  top: 23px;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  visibility: hidden;
}
.panel-active .panels-back {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.panels-back span {
  display: block;
  padding-left: 76px;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.panels-back span:hover {
  opacity: 0.4;
}
.panels-back img {
  position: absolute;
  left: 0;
  bottom: 4px;
}

@media screen and (max-width: 812px) {
  .panels-back {
    font-size: 17px;
    left: 3.2%;
    top: 17px;
  }
  .panels-back span {
    padding-left: 38px;
  }
  .panels-back img {
    width: 22.5px;
    bottom: 4px;
  }
}


/* Panels Label
---------------------------- */
.panels-label {
  line-height: 1;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 15px;
  position: absolute;
  left: 0.5em;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%) rotate(-90deg);
  transform: translateX(-50%) rotate(-90deg);
  margin-top: -0.5em;
  margin-left: 15px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  visibility: hidden;
}
.panel-active .panels-label {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

@media screen and (max-width: 812px) {
  .panels-label {
    font-size: 10px;
    left: 0.5em;
    margin-left: 1.3333333%;
  }
}



/* ----------------------------
  Panel
---------------------------- */
.panel {
  width: 25%;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.panel-hidden {
  width: 0;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.panel-visible {
  width: 100%;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.panel-active .panel {
  cursor: default;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 812px) {
  .panel {
    width: 100%;
    height: 25%;
  }
  .panel-hidden {
    width: 100%;
    height: 0;
  }
  .panel-visible {
    width: 100%;
    height: 100%;
  }
  .panel-01 {
    -webkit-box-ordinal-group: 4; /* Less than android 4.3 */
    -webkit-order: 4; /* Less than iOS8 */
    order: 4;
  }
  .panel-02 {
    -webkit-box-ordinal-group: 2; /* Less than android 4.3 */
    -webkit-order: 2; /* Less than iOS8 */
    order: 2;
  }
  .panel-03 {
    -webkit-box-ordinal-group: 1; /* Less than android 4.3 */
    -webkit-order: 1; /* Less than iOS8 */
    order: 1;
  }
  .panel-04 {
    -webkit-box-ordinal-group: 3; /* Less than android 4.3 */
    -webkit-order: 3; /* Less than iOS8 */
    order: 3;
  }
}


/* Panel Background
---------------------------- */
.panel-bg,
.panel-bg:before,
.panel-bg:after {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.panel-bg:before {
  content: "";
  display: block;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.panel-visible .panel-bg:before {
  opacity: 1;
}
.panel-bg:after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 0;
}
.panel:hover .panel-bg:after {
  background: rgba(0, 0, 0, 0.2);
}
.panel-active .panel:hover .panel-bg:after {
  background: rgba(0, 0, 0, 0.3);
}
.loaded .panel-bg:after {
  opacity: 1;
}

/* Each Background */
.panel-01 .panel-bg {
  background-image: url(../img/index/olkiller.jpg);
}
.panel-01 .panel-bg:before {
  background-image: url(../img/index/olkiller-active.jpg);
}
.panel-02 .panel-bg {
  background-image: url(../img/index/lounge.jpg);
}
.panel-02 .panel-bg:before {
  background-image: url(../img/index/lounge-active.jpg);
}
.panel-03 .panel-bg {
  background-image: url(../img/index/shiho.jpg);
}
.panel-03 .panel-bg:before {
  background-image: url(../img/index/shiho-active.jpg);
}
.panel-04 .panel-bg {
  background-image: url(../img/index/cocktail.jpg);
}
.panel-04 .panel-bg:before {
  background-image: url(../img/index/cocktail-active.jpg);
}

@media screen and (max-width: 812px) {
  .panel-01 .panel-bg {
    background-image: url(../img/index/olkiller-sp.jpg);
  }
  .panel-01 .panel-bg:before {
    background-image: url(../img/index/olkiller-sp-active.jpg);
  }
  .panel-02 .panel-bg {
    background-image: url(../img/index/lounge-sp.jpg);
  }
  .panel-02 .panel-bg:before {
    background-image: url(../img/index/lounge-sp-active.jpg);
  }
  .panel-03 .panel-bg {
    background-image: url(../img/index/shiho-sp.jpg);
  }
  .panel-03 .panel-bg:before {
    background-image: url(../img/index/shiho-sp-active.jpg);
  }
  .panel-04 .panel-bg {
    background-image: url(../img/index/cocktail-sp.jpg);
  }
  .panel-04 .panel-bg:before {
    background-image: url(../img/index/cocktail-sp-active.jpg);
  }
}


/* Panel Title
---------------------------- */
.panel-title {
  text-align: center;
  line-height: 1;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 30px;
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 12px);
  transform: translate(0, 12px);
}
.loaded .panel-title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.panel-active .panel-title {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 12px);
  transform: translate(0, 12px);
}
.panel-title span {
  display: block;
}
.panel-title img {
  display: block;
  margin: 14px auto 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.panel:hover .panel-title img {
  opacity: 0;
  -webkit-animation: arrow-horizontal 1.2s 0.4s infinite;
  animation: arrow-horizontal 1.2s 0.4s infinite;
}

@-webkit-keyframes arrow-horizontal {
  0% {
    -webkit-transform: translate(-8px, 0);
    transform: translate(-8px, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(8px, 0px);
    transform: translate(8px, 0);
    opacity: 0;
  }
}
@keyframes arrow-horizontal {
  0% {
    -webkit-transform: translate(-8px, 0);
    transform: translate(-8px, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(8px, 0);
    transform: translate(8px, 0);
    opacity: 0;
  }
}

@media screen and (max-width: 812px) {
  .panel-title {
    padding-left: 3.2%;
    text-align: left;
    font-size: 12.5px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-12px, -50%);
    transform: translate(-12px, -50%);
  }
  .loaded .panel-title {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .panel-active .panel-title {
    -webkit-transform: translate(-12px, -50%);
    transform: translate(-12px, -50%);
  }
  .panel-title img {
    margin: 12px 0 0;
    width: 22.5px;
  }
  .panel:hover .panel-title img {
    opacity: 1;
    -webkit-animation: none;
    animation: none;
  }
}


/* Panel Body
---------------------------- */
.panel-body {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  -webkit-box-pack: end; /* Less than android 4.3 */
  -webkit-justify-content: flex-end; /* Less than iOS8 */
  justify-content: flex-end;
  margin: 0 auto;
  padding: 0 25px;
  max-width: 980px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 12px);
  transform: translate(0, 12px);
}
.panel-02 .panel-body {
  padding: 0 90px;
}
.panel-visible .panel-body {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.panel-body-inner {
  text-align: center;
}

@media screen and (max-width: 812px) {
  .panel-body {
    -webkit-box-align: end; /* Less than android 4.3 */
    -webkit-align-items: flex-end; /* Less than iOS8 */
    align-items: flex-end;
    -webkit-box-pack: center; /* Less than android 4.3 */
    -webkit-justify-content: center; /* Less than iOS8 */
    justify-content: center;
    padding: 0 0 50px;
  }
  .panel-02 .panel-body {
    padding: 0 0 65px;
  }
}


/* Panel Logo
---------------------------- */
@media screen and (max-width: 812px) {
  .panel-logo img {
    width: 177.5px;
  }
}


/* Panel Lead
---------------------------- */
.panel-lead {
  margin-top: 23px;
}
.panel-lead em {
  display: block;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 36px;
}

@media screen and (max-width: 812px) {
  .panel-lead {
    margin-top: 32px;
  }
  .panel-lead em {
    letter-spacing: 0.05em;
    font-size: 25px;
  }
}


/* Panel Info
---------------------------- */
.panel-info {
  margin-top: 25px;
  line-height: 1.5;
}
.panel-info dt {
  letter-spacing: 0.05em;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 24px;
}
.panel-info dd {
  letter-spacing: 0.1em;
  font-family: "Chronicle Display Roman", serif;
  font-size: 22px;
}

@media screen and (max-width: 812px) {
  .panel-info {
    margin-top: -7px;
  }
  .panel-info dt {
    font-size: 13.5px;
  }
  .panel-info dd {
    margin-top: 10px;
    font-size: 15px;
  }
}


/* Panel Date
---------------------------- */
.panel-date {
  margin-top: 55px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Chronicle Display Roman", serif;
  font-size: 22px;
}

@media screen and (max-width: 812px) {
  .panel-date {
    margin-top: 25px;
    font-size: 15px;
  }
}


/* Panel Button
---------------------------- */
.panel-button {
  margin: 28px auto 0;
  width: 300px;
}
.panel-button a {
  display: block;
  padding: 7px 8px 5px;
  border: 1px solid #fff;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.panel-button a:hover {
  background: #fff;
  color: #8d7b39;
}

@media screen and (max-width: 812px) {
  .panel-button {
    margin: 6px auto 0;
    width: 190px;
  }
  .panel-button a {
    padding: 5px 8px 3px;
    font-size: 12px;
  }
}



/* ----------------------------
  About
---------------------------- */
.about {
  padding-top: 168px;
  margin: 0 auto 112px;
  max-width: 690px;
  color: #303131;
}

@media screen and (max-width: 812px) {
  .about {
    margin-bottom: 0;
    padding: 106px 5.3333333% 0;
  }
}


/* About Head
---------------------------- */
.about-head {
  text-align: center;
  line-height: 1.192982456;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 40px;
}

@media screen and (max-width: 812px) {
  .about-head {
    font-size: 28.5px;
  }
}


/* About Body
---------------------------- */
.about-body {
  margin-top: 16px;
  text-align: justify;
}

@media screen and (max-width: 812px) {
  .about-body {
    letter-spacing: 0.05em;
  }
}


/* About Button
---------------------------- */
.about-button {
  margin: 54px auto 0;
  max-width: 325px;
}
.about-button a {
  display: block;
  padding: 7px;
  border: 1px solid;
  text-align: center;
  font-size: 15px;
  color: #8d7b39;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.about-button a:hover {
  opacity: 0.6;
}
.about-button img {
  margin-left: 10px;
  vertical-align: baseline;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 812px) {
  .about-button {
    margin-top: 120px;
    max-width: 250px;
  }
  .about-button a {
    padding: 6px;
    text-indent: 6px;
    font-size: 13px;
  }
  .about-button img {
    margin-left: 8px;
    width: 12px;
    top: 1px;
  }
}



/* ----------------------------
  List
---------------------------- */
.list {
  margin-top: 62px;
}

@media screen and (max-width: 812px) {
  .list {
    margin-top: 70px;
  }
}


/* List Head
---------------------------- */
.list-head {
  line-height: 1;
  text-align: center;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 34px;
  position: relative;
}
.list-head:after {
  content: "";
  display: block;
  margin: 7px auto 0;
  width: 160px;
  height: 3px;
  background: #525354;
}

@media screen and (max-width: 812px) {
  .list-head {
    font-size: 26px;
  }
  .list-head:after {
    margin-top: 6px;
    width: 80px;
    height: 2px;
  }
}


/* List Lead
---------------------------- */
.list-lead {
  margin-top: 10px;
  line-height: 1.384615385;
  text-align: center;
}

@media screen and (max-width: 812px) {
  .list-lead {
    font-size: 13px;
  }
}


/* List Body
---------------------------- */
.list-body {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
  margin-top: 21px;
}
.list-body li {
  width: 33.1632653%;
}
.list-body a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.list-body a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .list-body {
    display: block;
    margin-top: 20px;
  }
  .list-body li {
    margin-top: 28px;
    width: 100%;
  }
  .list-body li:first-child {
    margin-top: 0;
  }
}


/* List Image
---------------------------- */
.list-image {
  max-width: none;
  width: 100%;
}


/* List Text
---------------------------- */
.list-text {
  margin-top: 5px;
}
.list-text dt {
  margin-bottom: 6px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0;
  font-family: "Neutraface 2 Text", sans-serif;
}
.list-text dt:after {
  content: "";
  display: block;
  margin: 2px auto 0;
  max-width: 290px;
  width: 100%;
  height: 1px;
  background: #747474;
}
.list-text dt em {
  display: block;
  font-size: 19px;
}
.list-text dt span {
  display: block;
  margin-top: -2px;
  margin-bottom: 4px;
  font-size: 11px;
}
.list-text dd {
  margin: 0 7px;
  text-align: justify;
  line-height: 1.636363636;
  font-size: 11px;
}

@media screen and (max-width: 812px) {
  .list-text {
    margin-top: 8px;
  }
  .list-text dt {
    margin-bottom: 5px;
  }
  .list-text dt em {
    font-size: 20px;
  }
  .list-text dt span {
    font-size: 14px;
  }
  .list-text dd {
    margin: 0;
    line-height: 1.583333333;
    font-size: 12px;
  }
}




/* ----------------------------
  Movie
---------------------------- */
.movie {
  margin-top: 52px;
  max-width: 560px;
}

@media screen and (max-width: 812px) {
  .movie {
    margin-top: 70px;
  }
}


/* Movie Head
---------------------------- */
.movie-head {
  line-height: 1;
  text-align: center;
  font-family: "Neutraface 2 Text", sans-serif;
  position: relative;
}
.movie-head em {
  display: block;
  font-size: 34px;
}
.movie-head span {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}
.movie-head:after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: 160px;
  height: 3px;
  background: #525354;
}

@media screen and (max-width: 812px) {
  .movie-head em {
    font-size: 26px;
  }
  .movie-head span {
    font-size: 16px;
  }
  .movie-head:after {
    margin-top: 7px;
    width: 80px;
    height: 2px;
  }
}


/* Movie Body
---------------------------- */
.movie-body {
  margin-top: 20px;
  width: 100%;
  position: relative;
}
.movie-body:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.movie-body > div,
.movie-body > iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 812px) {
  .movie {
    max-width: 100%;
  }
  .movie-body {
    margin-top: 22px;
  }
  .movie-body .movie_area{
    width: 89vw;
    height: 50.4vw;
  }
}



/* ----------------------------
  List SNS
---------------------------- */
.list + .list-sns,
.movie + .list-sns {
  margin-top: 32px;
  margin-bottom: 48px;
}

@media screen and (max-width: 812px) {
  .list + .list-sns,
  .movie + .list-sns {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
