@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright c THE ONE All Rights Reserved.

HTML CSS Selectors style

$Revision: 2024 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
:root {
  --min-width:1280px;
  --font-jp: 'M PLUS 1p', sans-serif;
  --font-en: 'Poppins', sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html,body {
  height: 100%;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 2.5;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  -webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6,
ul,ol,dl,
p,li,dt,dd,th,td,em,strong,blockquote {
  margin: 0px;
  padding: 0px;
  border: 0;
  vertical-align: baseline;
  font-weight: inherit;
}
em {
  font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  margin: 0px;
  padding: 0px;
}
p,dd,li {
  list-style: none;
}
em,strong {
  font-weight: bold;
}
table {
  border-collapse: collapse;
}

img {
  vertical-align:top;
  max-width: 100%;
  height: auto;
}
.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a img {
  border: none;
}
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a {
	transition: 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

.none {
  display: none!important;
}

.nolink {
  pointer-events: none;
}

.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.pc {
  display: block;
}
br.pc,
span.pc,
img.pc {
  display: inline;
}
.sp {
  display: none!important;
}
.anchor {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  top: -50px;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none!important;
  }
  .sp {
    display: block!important;
  }
  br.sp,
  span.sp,
  img.sp {
    display: inline!important;
  }
  a:hover {
    opacity: 1;
  }
  .anchor {
    top: -20px;
  }
}

.fv-effect {
  opacity: 0;
}
.loaded .fv-effect {
  opacity: 1;
  transform: translate(0,0);
  transition : all 500ms 300ms ease-out;
}
/* 画面外にいる状態 */
.effect,.fade-effect,.d-effect {
  opacity : 0;
}
.fade-drop {
  transform: translate(0,-50px);
}
.fade-rize {
  transform: translate(0,50px);
}
.fade-left-in {
  transform: translate(-50px,0);
}
.fade-right-in {
  transform: translate(50px,0);
}
.fade-in {
  transform: translate(0,0);
}

/* 画面内に入った状態 */
.effect-on {
  opacity: 1.0;
  transform: translate(0,0px)!important;
  transition : all 500ms 300ms ease-out;
}

.loaded .delay1 {
  transition-delay:500ms;
}
.loaded .delay2 {
  transition-delay:700ms;
}
.loaded .delay3 {
  transition-delay:900ms;
}
.loaded .delay4 {
  transition-delay:1100ms;
}


/*---------------------------------------------------------------------------------
背景　+　ヘッダー
--------------------------------------------------------------------------------- */
.bg-box {
  width: 100%;
  height: 100%;
  background-image: url("../img/main_bg.jpg");
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
#header-wrapper {
  width: 100%;
  min-width: var(--min-width);
  height: 80px;
  border-bottom: 1px solid #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
#header-wrapper::before {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content:"";
}
#header-wrapper::after {
  display: block;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content:"";
}
.header-logo {
  width: 62px;
  height: 70px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 74px;
  margin: auto;
}
.nav-header {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 890px;
  padding-top: 28px;
  margin: 0 auto;
  color: #fff;
}
.nav-header a,
.header-past {
  margin: 0 33px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  position: relative;
}
.header-past {
  width: 140px;
  text-align: center;
}
.nav-header a .en,
.header-past .en {
  display: block;
  padding-bottom: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
}
.menuSub {
  display: none;
  width: 140px;
  position: absolute;
  top: 51px;
  left: 0;
}
.menuSub li {
  width: 100%;
  border-top: 1px solid #fff;
}
.menuSub li a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 60px;
  background-color: rgba(0,0,0,0.25);
  margin: 0;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.menuSub li a::after {
  margin-left: 20px;
  content:"＞";
}

.header-is {
  width: 160px;
  height: 79px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
}
.header-is a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  border-left: 1px solid #fff;
  background: url("../img/bg_is.jpg");
  background-size: cover;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.header-is img {
  width: 24px;
  margin-right: 10px;
}

.btn-entry {
  width: 160px;
  height: 185px;
  position: fixed;
  right: 30px;
  bottom: 68px;
  z-index: 20;
}
.btn-entry a {
  display: flex;
  justify-content: center;
/*  align-items: center;
  align-content: center;*/
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-left: 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.btn-entry .txt1 {
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.06em;
  padding-bottom: 3px;
}
.btn-entry .txt1 em {
  font-size: 20px;
}
.btn-entry .txt2 {
  font-size: 14px;
}
.btn-entry .en {
  width: 92px;
  padding-top: 8px;
  background: url("../img/entry_pc_arrow.svg") no-repeat;
  margin-top: 5px;
  font-family: var(--font-en);
  font-size: 9px;
  line-height: 1.44;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.btn-entry__bg {
  width: 100%;
  height: 100%;
  background-image: url("../img/btn_enter_bg-pc.svg");
  position: absolute;
  top: 0;
  left: 0;
  animation: 21s linear infinite rotation;
  transform-origin: 50px center;
}
.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
.wrapper {
  position: relative;
  z-index: 2;
  overflow:hidden;
}

@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

.pc-banner-pictrico {
  width: 100%;
  height: 55px; 
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.pc-banner-pictrico a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 55px;
  padding-right: 350px;
  background: linear-gradient(rgba(255,252,252,0.9) 0%, rgba(229,229,229,0.9) 100%);
  border: 1px solid #d6006c;
  border-left: none;
  border-right: none;

  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000;
}

.pc-banner-pictrico span {
  display: block;
  width: 100px;
  height: 27px;
  border: 1px solid #B40019;
  padding-top: 4px;
  font-size: 16px;
  text-align: center;
  margin-right: 12px;
}
.pc-banner-pictrico img {}

.pc-banner-pictrico div {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 350px;
  height: 100%;
  background: linear-gradient(#d6006c 0%, #a70045 100%);
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
  color: #fff;
}


@media only screen and (max-width: 768px) {
  #header-wrapper {
    min-width: 100%;
    height: 50px;
  }
  .header-logo {
    width: 36px;
    height: 40px;
    left: 15px;
  }
  .nav-header {
    width: 100%;
    padding-top: 23px;
  }
  .nav-header a {
    margin: 0 12px;
    font-size: 11px;
  }
  .nav-header a .en {
    display: none;
  }
  .header-past {
    display: flex!important;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 100%;
  }
  .header-past a {
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
  }
  
  .header-is {
    width: 38%;
    /*width: 100%;*/
    /*width: 47px;*/
    height: 80px;
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    z-index: 30;
    border-top: 1px solid #fff;
  }
  .header-is.wide {
    width: 100%;
  }
  .header-is a {
    width: 100%;
    height: 100%;
    border-left: none;
    background: url("../img/btn_is-sp.png");
    background-size: cover;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
  }
  .header-is img {
    width: 24px;
    margin-right: 10px;
  }
  
  .btn-entry {
    width: 62%;
    /*width: calc(100% - 187px);*/
    height: 80px;
    border-top: 1px solid #fff;
    border-right: none;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 20;
  }
  .btn-entry a {
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-direction: row;

    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.5);
  }

  .btn-entry .txt1 {
    font-size: 16px;
    line-height: 1;
  }
  .btn-entry .txt2 {
    width: auto;
    padding-left: 5px;
    padding-bottom: 3px;
    font-size: 16px;
    line-height: 1;
    text-align: left;
  }
  .btn-entry .en {
    width: 100%;
    padding-top: 8px;
    background: url("../img/entry_sp_arrow.svg") no-repeat;
    margin-top: 5px;
    padding-left: 5px;
    font-family: var(--font-en);
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .btn-entry__bg {
    display: none;
  }
  
  .sp-banner-pictrico {
    width: 140px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 31;
  }
}

/*---------------------------------------------------------------------------------
fv
--------------------------------------------------------------------------------- */
.fv-area {
  width: 100%;
  min-width: 1200px;
  padding-top: 2106px;
  padding-bottom: 300px;
  margin: 0 auto;
  position: relative;
}

.fv__bg {
  width: 1244px;
  height: 1760px;
  background: url("../img/2024_bg.jpg") no-repeat;
  position: absolute;
  top: 64px;
  left: 50%;
  margin-left: -659px;
  z-index: 1;
}
.loaded .fv__bg {
  transition : all 1000ms 1000ms ease-out;
}

.fv-ttl {
  width: 581px;
  line-height: 1;
  position: absolute;
  top: 335px;
  left: 50%;
  margin-left: -65px;
  z-index: 2;
}
.loaded .fv-ttl {
  transition : all 1000ms 2300ms ease-out;
}
.fv-read {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 1;
  color: #000;
  transform: translate(0,0px)!important;
  transition : all 500ms 300ms ease-out;
}
.fade-txt {
  opacity: 1.0;
}
.fade-txt span {
  opacity: 0;
  transition : all 600ms 0s;
}
.effect-on.fade-txt span.show {
  opacity: 1;
}
.fv-desc {
  font-size: 18px;
  line-height: 1.94;
  text-align: center;
  color: #000;
  letter-spacing: 0.1em;
  transition-delay:1800ms;
}

@media only screen and (max-width: 768px) {
  .fv-area {
    width: 100%;
    min-width: 100%;;
    padding-top: 878px;
    padding-bottom: 100px;
    margin: 0 auto;
    position: relative;
    overflow:hidden;
  }

  .fv__bg {
    width: 522px;
    height: 739px;
    background-size: 100% auto;
    top: 0;
    margin-left: -220px;
  }

  .fv-ttl {
    width: 374px;
    top: 230px;
    left: 50%;
    margin-left: -187px;
    z-index: 2;
  }
  .fv-read {
    margin-bottom: 17px;
    font-size: 24px;
  }
  .effect-on.fade-txt span.show {
    opacity: 1;
  }
  .fv-desc {
    font-size: 12px;
    line-height: 1.66;
  }
}

/*---------------------------------------------------------------------------------
受賞者
--------------------------------------------------------------------------------- */
.winner {
  padding: 110px 0 145px;
  background-color: #000;
  position: relative;
}
.winner::before,
.winner::after {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.winner::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #000000 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.winner::after {
  border-width: 6.4vw 100vw 0 0;
  border-color: #000 transparent transparent transparent;
  bottom: calc(calc(6.4vw - 1px) * -1);
  left: 0;
}

.winner-ttl {
  margin-bottom: 82px;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}
.winner-category {
  width: 994px;
  margin: 0 auto;
  color: #fff;
  position: relative;
}

.winner-category-ttl .en {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-en);
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.winner-category-ttl {
  width: 380px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  margin: 0 auto 45px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}
.winner-category-ttl .small {
  font-size: 16px;
}
.winner-category-ttl .en {
  display: block;
  padding-top: 10px;
  font-size: 22px;
  font-weight: 900;
}
.winner-category-ttl .en span {
  font-size: 18px;
}

.winner-category-ttl .en.pro {
  color: #D6006C;
}
.winner-category-ttl .en.st {
  color: #4098D5;
}
.winner-category-ttl.spe {
  padding-bottom: 95px;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 200;
  border-bottom: none;
}

.winner-category-list {
  padding-bottom: 50px;
  margin-bottom: 100px;
  position: relative;
}
.winner-category-list::after {
  width: 800px;
  height: 1px;
  background-color: #D6006C;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  content:"";
}
.winner-category-list:last-of-type::after {
  content:none;
}
.winner-category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
  position: relative;
}
.winner-category-list-img {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 422px;
}
.winner-category-list-img img {
  width: auto;
  height: auto;
  max-height: 100%;
}
.winner-category-list-img.big-photo {
  padding: 0 55px;
}
.winner-category-list.make .winner-category-list-img.big-photo {
  padding: 0 72px;
}
.winner-category-list.movie .winner-category-list-img.big-photo {
  padding: 0 0px;
}
.winner-category-list.movie .winner-category-list-img{
  padding: 0 63px;
}
.winner-category-list-img.small-photo {
  padding: 0 106px;
}
.winner-category-list-img.small-photo2 {
  padding: 0 59px;
}
.winner-category-list-img.small-movie {
  padding: 0 63px;
}
.winner-category-list-inner {
  width: 50%;
}
.winner-category-list-inner__ttl {
  padding-bottom: 15px;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}
.winner-category-list-inner__ttl span.sub {
  display: block;
  font-size: 16px;
  padding-top: 10px;
}
.winner-category-list-inner__name {
  padding-bottom: 15px;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}
.winner-category-list-inner dt {
  padding: 15px 0 14px;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}
.winner-category-list-inner dt:nth-of-type(2) {
  padding-top: 65px;
}
.winner-category-list-inner dd {
  font-size: 14px;
  line-height: 1.42;
}

.winner-juges {
  width: 855px;
  padding: 100px 0 0;
  margin: 0 auto;
}
.winner-juges-ttl {
  margin-bottom: 112px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
}
.winner-juges-list {
  margin-bottom: 170px;
}
.winner-juges-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
.winner-juges-list__img {
  width: 210px;
  font-family:'M PLUS 1p', 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}
.winner-juges-list__img img {
  display: block;
  width: 174px;
  height: 174px;
  margin: 0 auto 10px;
}
.winner-juges-list__img .name {
  display: block;
  padding-top: 7px;
  font-size: 14px;
}
.winner-juges-list__comment {
  width: 600px;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
}
.winner-link {
  font-size: 28px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.winner-link a {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .winner {
    padding: 95px 0 145px;
  }
  .winner::before {
    content:none;
  }
  .winner-ttl {
    margin-bottom: 53px;
  }
  .winner-category {
    width: 100%;
  }
  .winner-category-ttl {
    width: 86%;
    margin-bottom: 60px;
    font-size: 18px;
  }
  .winner-category-ttl .small {
    font-size: 12px;
  }
  .winner-category-ttl .en {
    margin-bottom: 8px;
    font-size: 17px;
  }
  .winner-category-ttl .en span {
    font-size: 14px;
  }
  .winner-category-ttl.spe {
    font-size: 26px;
  }
  
  .winner-category-list {
    padding-bottom: 40px;
    margin-bottom: 80px;
    position: relative;
  }
  .winner-category-list::after {
    width: 80vw;
  }
  .winner-category-list li {
    display: block;
    padding-top: 66px;
  }
  .winner-category-list.pd li:first-child {
    padding-top: 96px;
  }
  .winner-category-list-img {
    width: 85.3%;
    margin: 0 auto 40px;
  }
  .winner-category-list-img.big-photo {
    width: 64%;
    padding: 0;
  }
  .winner-category-list.make .winner-category-list-img.big-photo {
    width: 56.8%;
    padding: 0;
  }
  .winner-category-list.movie li {
    padding-top: 0;
  }
  .winner-category-list.movie .winner-category-list-img.big-photo {
    width: 86%;
    padding: 0px;
  }
  .winner-category-list.movie .winner-category-list-img {
    width: 69%;
    padding: 0px;
    margin-bottom: 0;
  }
  .winner-category-list-img.small-photo {
    width: 49%;
    padding: 0;
  }
  .winner-category-list-img.small-photo2 {
    width: 69.6%;
    padding: 0;
  }
  .winner-category-list-img.small-movie {
    width: 69.3%;
    padding: 0;
  }
  .winner-category-list-inner {
    width: 79.2%;
    margin: 0 auto;
  }
  .winner-category-list-inner__ttl {
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .winner-category-list-inner__ttl span.sub {
    display: none;
    font-size: 16px;
    text-align: left;
  }
  .winner-category-list li:first-child .winner-category-list-inner__ttl .sub {
    display: block;
  }
  
  .winner-category-list-inner__name {
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }
  .winner-category-list.student .winner-category-list-inner__name {
    line-height: 1.7;
  }
  .winner-category-list-inner__name span {
    font-size: 14px;
  }
  .winner-category-list-inner dt {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
  }
  .winner-category-list-inner dd {
    padding-bottom: 40px;
  }
  .winner-category-list-inner dd.absence {
    text-align: center;
    font-weight: 400;
  }
  .winner-category-list-inner dd:last-of-type {
    padding-bottom: 0;
  }

  .winner-juges {
    width: 79.2%;
    padding: 0px 0 0;
    margin: 0 auto;
  }
  .winner-juges-ttl {
    margin-bottom: 75px;
    font-size: 32px;
  }
  .winner-juges-list {
    margin-bottom: 110px;
  }
  .winner-juges-list li {
    display: block;
    margin-bottom: 80px;
  }
  .winner-juges-list__img {
    width: 100%;
    font-size: 11px;
  }
  .winner-juges-list__img img {
    display: block;
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
  }
  .winner-juges-list__img .name {
    display: block;
    padding-top: 5px;
    font-size: 16px;
  }
  .winner-juges-list__comment {
    padding-top: 20px;
    width: 100%;
  }
  .winner-link {
    font-size: 20px;
  }
}

/*---------------------------------------------------------------------------------
イベント概要
--------------------------------------------------------------------------------- */
.about {
  padding: 134px 0 12px;
  position: relative;
  background-color: #000;
}
.about::before,
.about::after {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.about::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #000000 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.about::after {
  border-width: 6.4vw 100vw 0 0;
  border-color: #000 transparent transparent transparent;
  bottom: calc(calc(6.4vw - 1px) * -1);
  left: 0;
}

.about-inner {
  width: 380px;
  margin: 0 auto;
}
.about-inner-ttl {
  margin-bottom: 107px;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  text-align: center;
}

.about-ttl {
  margin-bottom: 102px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.about-category {
  margin-bottom: 100px;
}
.about-category-ttl {
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}
.about-category-ttl em {
  font-size: 24px;
}
.about-category-ttl .en {
  display: block;
  padding-top: 10px;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.about-category-ttl .en span {
  font-size: 18px;
}

.about-category-ttl .professional {
  color: #D6006C;
}
.about-category-ttl .student {
  color: #4098D5;
}
.about-category-detail {
  padding-bottom: 30px;
  margin-bottom: 5px;
  border-bottom: 1px solid #fff;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.about-category-detail .num {
  display: inline-block;
  padding-right: 12px;
  font-family: 'M PLUS 1p', 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.about-category-detail .price--1st {
  font-size: 48px;
}
.about-category-detail .price--2nd {
  font-size: 36px;
}
.about-category-detail .unite--1st {
  font-size: 24px;
}
.about-category-detail .unite--2nd {
  font-size: 18px;
}
.about-category-detail .st-txt {
  margin-bottom: 5px;
  font-size: 18px;
}
.about-category-detail .st-txt span {
  font-size: 14px;
}

.about-category__note {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
.about-category__note span {
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .about {
    padding: 84px 0 44px;
  }
  .about-inner {
    width: 90%;
    margin: 0 auto;
  }
  .about-ttl {
    margin-bottom: 80px;
    font-size: 32px;
  }
  .about-category {
    margin-bottom: 88px;
  }
  .about-category-ttl {
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .about-category-ttl em {
    font-size: 22px;
  }
  .about-category-ttl .en {
    padding-top: 8px;
    font-size: 18px;
  }
  .about-category-ttl .en span {
    font-size: 16px;
  }

  .about-category-detail {
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  .about-category-detail .num {
    padding-right: 6px;
  }
  .about-category-detail .price--1st {
    font-size: 40px;
  }
  .about-category-detail .price--2nd {
    font-size: 36px;
  }
  .about-category-detail .unite--1st {
    font-size: 18px;
  }
  .about-category-detail .unite--2nd {
    font-size: 14px;
  }
  .about-category-detail .st-txt {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .about-category-detail .st-txt span {
    font-size: 12px;
  }

  .about-category__note {
    font-size: 14px;
    line-height: 2;
    text-align: center;
  }
  .about-category__note span {
    font-size: 12px;
  }
}


/*---------------------------------------------------------------------------------
JUDGES
--------------------------------------------------------------------------------- */
.judges {
  padding: 200px 0 257px;
  background-color: #fff;
  color: #000;
}
.judges-ttl {
  padding-bottom: 40px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.judges-ttl .en {
  display: block;
  font-family: var(--font-en);
  padding-bottom: 10px;
  font-size: 48px;
  font-weight: 300;
  color: #4098D5;
}
.judges-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}
.judges-list li {
  width: 190px;
  font-family: 'Poppins', 'M PLUS 1p',  sans-serif;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.judges-list li:nth-of-type(6n+2).effect-on {
  transition-delay:400ms;
}
.judges-list li:nth-of-type(6n+3).effect-on {
  transition-delay:500ms;
}
.judges-list li:nth-of-type(6n+4).effect-on {
  transition-delay:600ms;
}
.judges-list li:nth-of-type(6n+5).effect-on {
  transition-delay:700ms;
}
.judges-list li:nth-of-type(6n).effect-on {
  transition-delay:700ms;
}
.judges-list li img {
  width: 160px;
  margin: 0 auto;
}
.judges-list__salon {
  height: 24px;
  font-size: 11px;
  padding-top: 13px;
}
.judges-list__job {
  height: 37px;
  padding: 5px 0 10px;
  font-size: 11px;
}
.judges-list__name {
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .judges {
    padding: 130px 0 75px;
  }
  .judges-ttl {
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
  }
  .judges-ttl .en {
    display: block;
    font-family: var(--font-en);
    padding-bottom: 10px;
    font-size: 36px;
    font-weight: 300;
  }
  .judges-list {
    display: block;
    width: 43%;
    margin: 0 auto;
  }
  .judges-list li {
    width: 100%;
    margin: 0 0 40px;
  }
  .judges-list li:nth-of-type(6n+2).effect-on,
  .judges-list li:nth-of-type(6n+3).effect-on,
  .judges-list li:nth-of-type(6n+4).effect-on,
  .judges-list li:nth-of-type(6n+5).effect-on,
  .judges-list li:nth-of-type(6n).effect-on {
    transition-delay:300ms;
  }
  .judges-list__job {
    height: auto;
  }
}


/*---------------------------------------------------------------------------------
GUIDELINE
--------------------------------------------------------------------------------- */
.guideline {
  padding: 80px 0 190px;
  background-color: #000000;
  position: relative;
}
.guideline::before,
.guideline::after {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.guideline::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #000000 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.guideline::after {
  border-width: 6.4vw 100vw 0 0;
  border-color: #000 transparent transparent transparent;
  bottom: calc(calc(6.4vw - 1px) * -1);
  left: 0;
}
.guideline-inner {
  width: 800px;
  margin: 0 auto;
}
.guideline-ttl {
  padding-bottom: 40px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #D6006C;
}
.guideline-ttl .en {
  display: block;
  font-family: var(--font-en);
  padding-bottom: 10px;
  font-size: 48px;
  font-weight: 300;
}
.guideline-list {
  border-top: 1px solid #DE8BA5;
}
.guideline-list > li {
  padding: 40px 10px;
  border-bottom: 1px solid #DE8BA5;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
}
.guideline-list__ttl {
  padding-bottom: 20px;
  font-size: 24px;
  line-height: 1;
}
.guideline-list__txt {
  padding-bottom: 60px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.guideline-list h4 {
  font-size: 18px;
}
.guideline-list ul {
  margin-bottom: 60px;
}
.guideline-list ul li::before {
  content:"●";
}
.guideline-list .txtBig {
  font-size: 18px;
  margin-bottom: 0;
}
.guideline-list .note {
  font-size: 12px;
  margin-bottom: 20px;
}
.guideline-screen dt {
  padding: 70px 0 20px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}
.guideline-screen dd {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.guideline-screen dd iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.btn-guide {
  width: 240px;
  margin: 0 auto;
}
.btn-guide a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 60px;
  background-color: #EB86A5;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
.btn-guide a img {
  width: 23px;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .guideline {
    padding: 110px 0 50px;
  }

  .guideline-inner {
    width: 90%;
    margin: 0 auto;
  }
  .guideline-ttl {
    padding-bottom: 40px;
    font-size: 14px;
  }
  .guideline-ttl .en {
    font-size: 36px;
  }
  .guideline-list__txt {
    padding-bottom: 50px;
  }
  .guideline-list ul {
    margin-bottom: 50px;
  }
  .guideline-screen dt {
    padding: 50px 0 20px;
    line-height: 1.44;
  }
}

/*---------------------------------------------------------------------------------
ENTRY
--------------------------------------------------------------------------------- */
.entry {
  padding: 200px 0 260px;
  background-color: #8D8D8D;
}
.entry-ttl {
  padding-bottom: 40px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.entry-ttl .en {
  display: block;
  font-family: var(--font-en);
  padding-bottom: 10px;
  font-size: 48px;
  font-weight: 300;
  color: #4098D5;
}
.entry-list {
  width: 800px;
  margin: 0 auto;
}
.entry-list li {
  width: 100%;
  padding: 30px 10px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  line-height: 1.5;
  font-weight: 500;
}
.entry-list li:first-child {
  width: 100%;
  border-bottom: none;
}
.entry-list h3 {
  padding-bottom: 10px;
  font-size: 20px;
}
.entry-list p {
  font-size: 16px;
}
.entry-list a {
  text-decoration: underline;
}
.entry-list .end {
  text-decoration: line-through;
}
.entry-list em {
  display: inline-block;
  padding-left: 1em;
  color: #B40019;
}
.entry-list .note {
  font-size: 12px;
}
.entry-fee {
  width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1;
}
.entry-fee caption {
  padding: 30px 0;
  font-size: 20px;
  line-height: 1;
  text-align: left;
}
.entry-fee th {
  width: 475px;
  padding: 18px 10px;
  font-size: 18px;
  border: 1px solid #fff;
}
.entry-fee th span {
  font-size: 16px;
}
.entry-fee td {
  width: 325px;
  padding: 18px 10px;
  border: 1px solid #fff;
  font-size: 18px;
  text-align: center;
}


@media only screen and (max-width: 768px) {
  .entry {
    padding: 110px 0 130px;
  }
  .entry-ttl {
    padding-bottom: 40px;
  }
  .entry-ttl .en {
    font-size: 36px;
  }
  .entry-list {
    width: 90%;
  }
  .entry-list li {
    width: 100%;
    padding: 40px 10px;
  }
  
  .entry-fee {
    width: 90%;
    line-height: 1;
  }
  .entry-fee caption {
    padding: 36px 0 26px;
  }
  .entry-fee tbody {
    display: block;
    border-top: 1px solid #fff;
  }
  .entry-fee tr {
    display: block;
    border: 1px solid #fff;
    border-top: none;
  }
  .entry-fee th {
    display: block;
    width: calc(100% - 56px);
    padding: 16px 10px 8px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    border: none;
    text-align: center;
    background-image : linear-gradient(to right, #D9D8D8 2px, transparent 4px);
    background-size: 4px 1px;
    background-repeat: repeat-x; 
    background-position: left bottom;
  }
  .entry-fee th span {
    display: block;
  }
  .entry-fee td {
    display: block;
    width: calc(100% - 56px);
    padding: 14px 10px;
    margin: 0 auto;
    border: none;
  }
}

/*---------------------------------------------------------------------------------
AWARD
--------------------------------------------------------------------------------- */
.award {
  padding: 140px 0 160px;
  background-color: #000;
  position: relative;
  z-index: 2;
}
.award::before,
.award::after {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.award::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #000000 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.award::after {
  border-width: 7.8vw 100vw 0 0;
  border-color: #000000 transparent transparent transparent;
  bottom: calc(calc(7.8vw - 1px) * -1);
  left: 0;
}
.award-ttl {
  padding-bottom: 60px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.award-ttl .en {
  display: block;
  font-family: var(--font-en);
  padding-bottom: 10px;
  font-size: 48px;
  font-weight: 300;
}
.award p {
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

.award .date {
  padding-bottom: 15px;
  font-size: 24px;
}
.award .place {
  padding-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
}
.award .place span {
  font-size: 12px;
  line-height: 1;
}
.award .map {
  font-size: 13px;
}
.award .map img {
  width: 24px;
  margin-bottom: 10px;
}
.award-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding-top: 150px;
}
.award-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  height: 60px;
  padding: 0 27px;
  background-color: #A70045;
  border-radius: 5px;
  margin: 0 25px;
  font-size: 22px;
  line-height: 1;
  color: #fff!important;
}

@media only screen and (max-width: 768px) {
  .award {
    padding: 115px 0 130px;
  }

  .award-ttl {
    padding-bottom: 40px;
  }
  .award-ttl .en {
    font-size: 36px;
  }
  .award .place {
    font-size: 16px;
  }
  .award-btn {
    padding-top: 57px;
  }
  .award-btn a {
    width: 82%;
    margin: 0 auto 20px;
    font-size: 18px;
  }
}

/*---------------------------------------------------------------------------------
SUPPORT
--------------------------------------------------------------------------------- */
.support {
  padding: 210px 0 117px;
  background-color: #fff;
  position: relative;
}
.support::before {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #fff transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.support-ttl {
  padding-bottom: 53px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #000;
}
.support-ttl .en {
  display: block;
  font-family: var(--font-en);
  padding-bottom: 10px;
  font-size: 48px;
  font-weight: 300;
}
.support-list {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 976px;
  margin: 0 auto;
}
.support-list li {
  width: 180px;
  margin: 0 32px 90px;
}
.support-list li:nth-of-type(4n+2) {
  transition-delay:500ms;
}
.support-list li:nth-of-type(4n+3) {
  transition-delay:700ms;
}
.support-list li:nth-of-type(4n) {
  transition-delay:900ms;
}
.support-special-ttl {
  margin-bottom: 45px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  color: #000;
}
.support-special-banner {
  width: 190px;
  margin: 0 auto 25px;
  transition-delay:700ms;
}


@media only screen and (max-width: 768px) {
  .support {
    padding: 140px 0 120px;
  }
  .support::after {
    bottom: -7.75vw;
  }
  .support-ttl {
    padding-bottom: 48px;
  }
  .support-ttl .en {
    font-size: 36px;
  }
  .support-list {
    width: 78%;
    justify-content: space-between;
  }
  .support-list li {
    width: 34vw;
    margin: 0 0 35px;
  }
  .support-list li:nth-of-type(odd) {
    transition-delay:300ms;
  }
  .support-list li:nth-of-type(2n) {
    transition-delay:500ms;
  }
  .support-special-ttl {
    padding-top: 100px;
    margin-bottom: 35px;
    font-size: 14px;
  }
  .support-special-banner {
    width: 150px;
  }
}

/*---------------------------------------------------------------------------------
最終ノミネート作品
--------------------------------------------------------------------------------- */
.nominee-wrap {
  padding: 116px 0 100px;
  margin-top: 80px;
  background-color: #000;
}
.nominee-wrap__logo {
  width: 581px;
  margin: 0 auto 135px;
}
.nominee-wrap__sub-ttl {
  margin-bottom: 95px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
.nominee-wrap__sub-ttl em {
  display: block;
  padding-bottom: 10px;
  font-family: var(--font-en);
  font-size: 32px;
  letter-spacing: 0;
  font-weight: 800;
}
.nominee-section {
  margin-bottom: 110px;
}
.nominee-section-ttl {
  width: 380px;
  padding-bottom: 14px;
  border-bottom: 1px solid #fff;
  margin: 0 auto 80px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
}
.nominee-section-ttl em {
  font-size: 24px;
}
.nominee-section-ttl .en {
  display: block;
  min-height: 18px;
  padding-top: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #D6006C;
}
.nominee-section-ttl .en em {
  font-size: 22px;
  font-weight: 800;
}
.nominee-section-ttl-note {
  margin: 0 auto 110px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.nominee-section li {
  display: block;
  line-height: 1;
  text-align: center;
}
.nominee-section li .thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  z-index: 2;
}
/*.nominee-section li .thumb::before {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #707070;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content:"";
}*/
.nominee-section li a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  /*border: 1px solid #fff;*/
  position: absolute;
  top: 0;
  left: 0;
}
.nominee-section li a img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.nominee-section li span {
  display: block;
}
.nominee-section li .name {
  padding: 14px 0 5px;
  font-size: 14px;
}
.nominee-section li .salon {
  font-size: 10px;
}

.nominee-photo-list {
  display: flex;
  flex-wrap: wrap;
  width: 1010px;
  margin: 0 auto;
}
.nominee-photo-list li {
  width: 194px;
  margin: 0 4px 56px;
}
.nominee-movie-list {
  display: flex;
  flex-wrap: wrap;
  width: 951px;
  margin: 0 auto;
}
.nominee-movie-list li {
  width: 285px;
  margin: 0 16px 26px;
}

@media only screen and (max-width: 768px) {
  .nominee-wrap {
    padding: 160px 0 60px;
    margin-top: 50px;
  }
  .nominee-wrap__logo {
    width: 316px;
    margin: 0 auto 155px;
  }
  .nominee-wrap__sub-ttl {
    margin-bottom: 75px;
    font-size: 9px;
  }
  .nominee-wrap__sub-ttl em {
    display: block;
    padding-bottom: 5px;
    font-size: 32px;
  }
  .nominee-section {
    margin-bottom: 72px;
  }
  .nominee-section-ttl {
    width: 90%;
    font-size: 12px;
  }
  .nominee-section-ttl em {
    font-size: 18px;
  }
  .nominee-section-ttl .en {
    min-height: 15px;
    padding-top: 8px;
    font-size: 14px;
  }
  .nominee-section-ttl .en em {
    font-size: 17px;
    font-weight: 800;
  }
  .nominee-section li .name {
    padding: 8px 0 4px;
    font-size: 14px;
  }
  .nominee-section li .salon {
    font-size: 10px;
  }

  .nominee-photo-list {
    justify-content: space-between;
    width: 92%;
    margin: 0 auto;
  }
  .nominee-photo-list li {
    width: 49%;
    margin: 0 0 20px;
  }
  .nominee-movie-list {
    display: block;
    width: 86%;
    margin: 0 auto;
  }
  .nominee-movie-list li {
    width: 100%;
    margin: 0 0 20px;
  }
  .nominee-wrap .award {
    padding-bottom: 60px;
  }
}
/*---------------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------------- */
.footer {
  padding: 0 0 45px;
  color: #000;
}
.copyright {
  font-size: 11px;
  line-height: 1;
  text-align: center;
  
}

@media only screen and (max-width: 768px) {
  .footer {
    padding: 0 0 140px;
  }
}

/*---------------------------------------------------------------------------------
審査員総評
--------------------------------------------------------------------------------- */
.judge-comment {
  width: 855px;
  margin: 0 auto 40px;
}
.judge-comment-ttl {
  margin-bottom: 110px;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}
.judge-comment-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}
.judge-comment-list dt {
  width: 174px;
  margin-bottom: 125px;
  text-align: center;
}
.judge-comment-list__img {
  width: 174px;
  height: 174px;
  border-radius: 50%;
  overflow:hidden;
  margin-bottom: 10px;
}
.judge-comment-list__salon {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.judge-comment-list__name {
  font-size: 17px;
}

.judge-comment-list dd {
  width: 600px;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .judge-comment {
    width: 80%;
    margin: 0 auto 100px;
  }
  .judge-comment-ttl {
    margin-bottom: 96px;
  }
  .judge-comment-list {
    display: block;
  }
  .judge-comment-list dt {
    width: 100%;
    margin: 0 auto 25px;
  }
  .judge-comment-list__img {
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    overflow:hidden;
    margin: 0 auto 10px;
    margin-bottom: 10px;
  }
  .judge-comment-list__salon {
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
  }
  .judge-comment-list__name {
    font-size: 16px;
    text-align: center;
  }

  .judge-comment-list dd {
    width: 100%;
    margin-bottom: 96px;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 500;
  }
}
/*---------------------------------------------------------------------------------
JS
--------------------------------------------------------------------------------- */
.fv-movie {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  background-color: rgba(60,60,60,0.69);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}
.fv-movie-in {
  width: 606px;
  position: relative;
}
.fv-movie-close {
  width: 46px;
  height: 46px;
  background-image: url("../img/btn_close.svg");
  position: absolute;
  top: -46px;
  right: 0;
  cursor: pointer;
}
.fv-movie-in .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.fv-movie-in iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (max-width: 768px) {
  .fv-movie-in {
    width: 90%;
  }
  .fv-movie-close {
    width: 26px;
    height: 26px;
    background-size: 100% auto;
    top: -26px;
  }
}

/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
          transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url(../img/loader.gif) no-repeat center center;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  -webkit-transition: 0.5s;
          transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%;
}

#swipebox-bottom-bar {
  bottom: -50px;
}
#swipebox-bottom-bar.visible-bars {
  -webkit-transform: translate3d(0, -50px, 0);
          transform: translate3d(0, -50px, 0);
}

#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
}

#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}

#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url(../img/icons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}

#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}

#swipebox-next {
  background-position: -78px 13px;
  float: right;
}

#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
          animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
          animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
          box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
          box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }

  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #000;
  opacity: 0.95;
}

#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}


/*modal-video*/

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}

.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}

.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}

@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}

.modal-video-close-btn:before {
  transform: rotate(45deg);
}

.modal-video-close-btn:after {
  transform: rotate(-45deg);
}

.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}


