@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright c THE ONE All Rights Reserved.

HTML CSS Selectors style

$Revision: 2025 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
:root {
  --min-width:1280px;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-M: '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; /* フォントサイズ自動調整 */
}

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: #fff;
  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 30px;
  font-family: var(--font-M);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  position: relative;
}
.header-past {
  /*width: 140px;*/
  width: fit-content;
  text-align: center;
  margin-right: 130px;
}
.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:"＞";
}

#custom_trans_bar {
  display: flex;
  flex-direction: column;
  width: 110px;
  position: absolute;
  top: 30px;
  left: 50%;
  margin-left: 350px;
  overflow:hidden;
}
#custom_trans_bar a {
  display: none;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 30px;
  background-color: #fff;
  color: #000;
  position: relative;
}
#custom_trans_bar a:nth-of-type(1) {
  order:2;
}
#custom_trans_bar a:nth-of-type(2) {
  order:3;
}
#custom_trans_bar a:nth-of-type(3) {
  order:4;
}
#custom_trans_bar a:nth-of-type(4) {
  order:5;
}
#custom_trans_bar a[data-stt-active] {
  display: flex;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  order: 1!important;
}
#custom_trans_bar a[data-stt-active]::before {
  width: 12px;
  height: 12px;
  background: url("../img/icon_lang.svg") no-repeat center;
  background-size: 100% auto;
  content:"";
  margin-right: 5px;
}
#custom_trans_bar a[data-stt-active]::after {
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  content:"";
}

#custom_trans_bar.lang_open a {
  display: flex;
}
#custom_trans_bar a:hover {
  opacity: 1;
  background-color: #DEDEDE;
}

.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-family: var(--font-M);
  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;
  font-family: var(--font-M);
  line-height: 1;
  font-weight: 700;
  /*color: #fff;*/
  color: #fff;
}

.btn-entry .txt1 {
  font-size: 14px;
  line-height: 1.375;
  letter-spacing: 0.06em;
  padding-bottom: 3px;
}
.btn-entry .txt1 em {
  font-size: 22px;
}
.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;
}

.btn-nominate {
  width: 100%;
  height: 90px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 19;
}
.btn-nominate a {
  display: flex;
  justify-content: center;
/*  align-items: center;
  align-content: center;*/
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  background-color: #000;
  font-family: var(--font-M);
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.btn-nominate span {
  width: 208px;
  margin: 0 auto;
}
.btn-nominate .txt1 {
  font-size: 20px;
  line-height: 1.375;
  letter-spacing: 0.06em;
  padding-bottom: 3px;
  white-space: nowrap;
}
.btn-nominate .en {
  padding-top: 8px;
  background: url("../img/entry_pc_arrow-long.svg") no-repeat;
  margin-top: 5px;
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1.44;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.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;
    position: relative;
    z-index: 30;
  }
  .nav-header a {
    margin: 0 6px;
    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%;
    margin: 0 6px;
    font-size: 11px;
  }
  .menuSub {
    top: 26px;
    left: -30px;
    width: 100px;
    background-color: #fff;
  }
  .menuSub li a {
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
  }
  
  .header-is {
    /*width: 38%;
    width: 100%;
    width: 47px;*/
    /*width: calc(100% - 140px);*/
    width: 140px;
    height: 80px;
    position: fixed;
    top: auto;
    /*right: 140px;*/
    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;
    /*text-indent: 200%;*/
    white-space: nowrap;
    overflow: hidden;
  }
  .header-is img {
    /*display: none;*/
    width: 24px;
    margin-right: 10px;
  }
  
  .btn-entry {
    display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
    /*width: 62%;
    width: calc(100% - 187px);
    width: calc(100% - 140px);*/
    width: 140px;
    height: 80px;
    /*border-top: 1px solid #fff;*/
    border-top: 1px solid #A70045;
    border-right: none;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 20;
  }
  .btn-entry a {
    /*justify-content: center;*/
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-direction: row;
    /*padding: 0;
    background-color: #A70045;*/
    background-color: #fff;
    /*padding-left: calc(50% - 81px);*/
    padding-left: 12px;
  }

  .btn-entry .txt1 {
    font-size: 14px;
    line-height: 1;
  }
  .btn-entry .txt1 em {
    font-size: 18px;
  }
  .btn-entry .txt2 {
    width: auto;
    /*padding-left: 5px;*/
    padding-bottom: 3px;
    font-size: 14px;
    line-height: 1;
    text-align: left;
  }
  .btn-entry .en {
    width: 100%;
    padding-top: 8px;
    background: url("../img/entry_sp_arrow2.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;
  }

  .btn-nominate {
    width: calc(100% - 140px);
    height: 80px;
  }
  .btn-nominate a {
  }
  .btn-nominate span {
    width: 170px;
    margin: 0 auto;
  }
  .btn-nominate .txt1 {
    font-size: 16px;
  }
  .btn-nominate .en {
    padding-top: 8px;
    background: url("../img/entry_pc_arrow-long.svg") no-repeat;
    background-position: right top;
    margin-top: 5px;
    font-size: 9px;
  }
  
  #custom_trans_bar {
    width: 62px;
    position: absolute;
    top: 60px;
    left: auto;
    right: 23px;
    margin-left: 0;
    overflow:hidden;
    font-size: 12px;
  }
  #custom_trans_bar a {
    display: none;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 25px;
    background-color: #fff;
    color: #000;
    position: relative;
  }
  #custom_trans_bar a:nth-of-type(1) {
    order:2;
  }
  #custom_trans_bar a:nth-of-type(2) {
    order:3;
  }
  #custom_trans_bar a:nth-of-type(3) {
    order:4;
  }
  #custom_trans_bar a:nth-of-type(4) {
    order:5;
  }
  #custom_trans_bar a[data-stt-active] {
    display: flex;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    order: 1!important;
  }
  #custom_trans_bar a[data-stt-active]::before {
    background: url("../img/icon_lang_b.svg") no-repeat center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    margin: auto;
  }
  #custom_trans_bar a[data-stt-active]::after {
    width: 5px;
    height: 5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
  }

  #custom_trans_bar.lang_open a {
    display: flex;
  }
  #custom_trans_bar a:hover {
    opacity: 1;
    background-color: #DEDEDE;
  }
  
  .sp-banner-pictrico {
    width: 140px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 31;
  }
}

/*---------------------------------------------------------------------------------
fv
--------------------------------------------------------------------------------- */
.fv-area {

  width: 100%;
  min-width: 1200px;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  background-color: #000;
  background-size: cover;
}
.fv-area-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
.fv-area-inner::before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;z-index: -1;
  backdrop-filter: blur(0px);
  --webkit-backdrop-filter: blur(0px);
  background-color: rgba(0, 0, 0, 0.8);
  /* (plus shape's fill blended on top as a separate layer with 19.71% opacity) */
  content:"";
}
.fv-area__read {
  margin: 0 auto;
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.fv-area-thanx {
  margin-bottom: 85px;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.fv-ttl {
  width: 472px;
  line-height: 1;
  margin: 0 auto 42px;
  transition-delay:800ms;
}
.fv-year {
  margin-bottom: 40px;
  font-family: var(--font-en);
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.fv-desc {
  margin-bottom: 300px;
  font-size: 12px;
  line-height: 1.88;
  text-align: center;
  color: #000;
  letter-spacing: 0.1em;
  transition-delay:1800ms;
}

.loaded .fv-area__read {
  transition : all 1000ms 800ms ease-out;
}
.loaded .fv-ttl {
  transition : all 1000ms 1200ms ease-out;
}
.loaded .fv-year {
  transition : all 1000ms 1400ms ease-out;
}
.loaded .fv-desc,
.loaded .fv-area-thanx {
  transition : all 1000ms 1600ms ease-out;
}
.loaded .fv-banner {
  transition : all 1000ms 2000ms ease-out;
}

.banner-under25 {
  width: 160px;
  position: fixed;
  right: 30px;
  bottom: 300px;
  /*bottom: 68px;*/
  z-index: 20;
}
.banner-under25 .banner-close {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 11px;
  right: 12px;
  cursor: pointer;
}
.fv-area-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fv-area-bg div {
  height: 100%;
}
.fv-area-bg img {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .fv-area {
    width: 100%;
    min-width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: relative;
    overflow:hidden;
  }
  .fv-area-inner {
    width: 100%;
    height: 100%;
    padding-top: 170px;
    padding-bottom: 100px;
  }

  .fv-ttl {
    width: 84.5%;
    max-width: 316px;
    margin-bottom: 35px;
    z-index: 2;
  }
  .fv-year {
    font-size: 23px;
    margin-bottom: 52px;
  }
  .fv-desc {
    margin-bottom: 100px;
    font-size: 12px;
    line-height: 1.84;
  }
  .fv-area-thanx {
    margin-bottom: 85px;
    font-size: 18px;
    line-height: 1.44;
  }

  .fv-banner {
    width: 88%;
    max-width: 330px;
  }
  .fv-banner a {
    display: block;
    width: 100%;
    height: 140px;
    padding: 23px 13px 10px;
    background-color: #000;
    border-radius: 10px;
    font-family: var(--font-M);
    font-size: 12px;
    line-height: 1;
  }
  .fv-banner img,.fv-banner span {
    display: block;
  }
  .fv-banner img {
    width: 168px;
    margin: 0 auto 11px;
  }
  .fv-banner .txt1 {
    padding-bottom: 5px;
    text-align: center;
  }
  .fv-banner .txt2 {
    font-weight: 500;
    text-align: right;
  }
  
  .banner-under25 {
    width: 169px;
    top: 60px;
    left: 23px;
    right: auto;
    bottom: auto;
    z-index: 20;
  }
  .banner-under25 .banner-close {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 11px;
    right: 12px;
    cursor: pointer;
  }
}

/*---------------------------------------------------------------------------------
受賞者
--------------------------------------------------------------------------------- */
.winner {
  padding: 160px 0 0px;
  background-color: #fff;
  position: relative;
  color: #000;
  z-index: 12;
}
.winner::before {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.winner::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #ffffff transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}

.winner-ttl {
  margin-bottom: 82px;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
.winner-sub-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  height: 78px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 80px;
  font-family: var(--font-en);
  font-size: 40px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
}
.winner-sub-ttl.pro {
  background-color: #A70045;
  border-color: #D6006C;
}
.winner-sub-ttl.stu {
  background-color: #4098D5;
  border-color: #7DBAE5;
}
.winner-gp {
  width: 800px;
  padding: 40px 105px 65px;
  margin: 0 auto 92px;
  border: 1px solid #5B4A1C;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.winner-gp.semi {
  border-color: #595757;
}
.winner-gp.stu {
  border-color: #4098D5;
}
.winner-gp__ttl {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 1;
  color: #5B4A1C;
  text-align: center;
}
.winner-gp.semi .winner-gp__ttl {
  color: #595757;
}
.winner-gp.stu .winner-gp__ttl {
  color: #4098D5;
}
.winner-gp__ttl .en {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-size: 52px;
  font-weight:200;
}
.winner-gp__img {
  width: 312px;
  margin: 0 auto 25px;
}
.winner-gp__name {
  margin-bottom: 50px;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}
.winner-gp__comment dt {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}
.winner-gp__comment dd {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.7;
  text-indent: 1em;
}
.winner-gp__comment dd:last-child {
  margin-bottom: 0;
}
.winner-awards {
  width: 800px;
  margin: 227px auto 90px;
}
.winner-awards-category {
  padding-bottom: 90px;
  position: relative;
}
.winner-awards-category::after {
  width: 804px;
  height: 1px;
  background-color: #B4B4B4;
  position: absolute;
  bottom: -10px;
  left: -2px;
  transform: rotate(-4deg);
  transform-origin: center;
  content:"";
}
.winner-awards-category:last-child::after {
  content:none;
} 
.winner-awards-category___ttl {
  padding: 118px 0 70px;
  font-size: 30px;
  line-height: 1;
  text-align: center;
}
.winner-awards-category___ttl span {
  display: block;
  width: 61px;
  margin: 0 auto 40px;
}
.winner-awards-category-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}
.winner-awards-category-list.noneflex {
  display: block;
}
.winner-awards-category-list li {
  width: 50%;
}
.winner-awards-category-list.noneflex li {
  width: 100%;
}
.winner-awards-category-list.noneflex li.mb70 {
  margin-bottom: 70px;
}
.winner-awards-category-list__ttl {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}
.winner-awards-category-list__img {
  width: 312px;
  margin: 0 auto 30px;
}
.winner-awards-category-list__img.column3,
.winner-awards-category-list__img.column5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 948px;
  position: relative;
  left: -74px;
}
.winner-awards-category-list__img.column3 a {
  width: 300px;
}
.winner-awards-category-list__img.column5 a {
  width: 180px;
}
.winner-awards-category-list__name {
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.winner-awards-category__comment {
  width: 590px;
  margin: 50px auto 0;
}
.winner-awards-category__comment.mb94 {
  margin-bottom: 94px;
}
.winner-awards-category__comment dt {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}
.winner-awards-category__comment dd {
  font-size: 14px;
  line-height: 1.7;
  text-indent: 1em;
}

.winner-awards-link {
  margin: 150px 0 312px;
  text-align: center;
}
.winner-awards-link a {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
}

.winner-u25 {
  padding: 250px 0 200px;
  background-color: #000;
  position: relative;
  color: #fff;
}
.winner-u25::before,
.winner-u25::after {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.winner-u25::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #000000 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.winner-u25::after {
  border-width: 6.4vw 100vw 0 0;
  border-color: #000 transparent transparent transparent;
  bottom: calc(calc(6.4vw - 1px) * -1);
  left: 0;
}
.winner-u25__logo {
  width: 326px;
  margin: 0 auto 168px;
}
.winner-u25__logo img {
  width: 100%;
}
.winner-u25__link {
  font-size: 16px;
  line-height: 1;
  position: absolute;
  top: 105px;
  left: 50%;
  margin-left: -500px;
}

.winner-u25-awards {
  width: 900px;
  margin: 0 auto 125px;
}
.winner-u25-awards__ttl {
  margin-bottom: 90px;
  font-size: 30px;
  line-height: 1;
  text-align: center;
}
.winner-u25-awards__ttl.first {
  font-size: 34px;
  margin-bottom: 70px;
}
.winner-u25-awards-list {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  font-size: 18px;
  text-align: center;
}
.winner-u25-awards-list__img {
  margin: 0 auto 30px;
}
.winner-u25-awards-list__comment dt {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}
.winner-u25-awards-list__comment {
  width: 590px;
  margin: 0 auto;
}
.winner-u25-awards-list__comment dd {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.7;
  text-indent: 1em;
}

.winner-u25-awards-list.column1 .winner-u25-awards-list__img {
  width: 350px;
}

.winner-u25-awards-list.column2 li {
  width: 50%;
}
.winner-u25-awards-list.column2 .winner-u25-awards-list__img {
  width: 282px;
}

.winner-u25-awards-list.column3 li {
  width: calc(100% / 3);
}
.winner-u25-awards-list.column3 .winner-u25-awards-list__img {
  width: 240px;
}

.winner-u25 .winner-awards-link {
  margin: 120px 0 0;
}

.winner-juges {
  width: 800px;
  padding: 340px 0 0;
  margin: 0 auto;
}
.winner-juges-ttl {
  margin-bottom: 160px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.winner-juges-list {
  margin-bottom: 120px;
}
.winner-juges-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.winner-juges-list__img {
  width: 160px;
  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: 160px;
  height: 160px;
  margin: 0 auto 15px;
}
.winner-juges-list__img .salon,
.winner-juges-list__img .job {
  font-size: 11px;
  white-space: nowrap;
}
.winner-juges-list__img .name {
  display: block;
  padding-top: 5px;
  font-size: 16px;
}
.winner-juges-list__comment {
  width: 545px;
  font-size: 14px;
  line-height: 1.7;
}

.winner-juges .winner-awards-link {
  margin: 200px 0 0;
}

@media only screen and (max-width: 768px) {
  .winner {
    padding: 95px 0 0px;
  }
  .winner::before {
    content:none;
  }

  .winner-ttl {
    margin-bottom: 80px;
    font-size: 28px;
  }
  .winner-sub-ttl {
    height: 60px;
    margin-bottom: 98px;
    font-size: 30px;
  }
  .winner-gp {
    width: 86%;
    padding: 0 0 0;
    margin: 0 auto 140px;
    border: none;
    background-color: #fff;
    box-shadow: none;
  }
  .winner-gp.stu {
    border-color: #4098D5;
  }
  .winner-gp__ttl {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1;
    color: #5B4A1C;
    text-align: center;
  }
  .winner-gp.stu .winner-gp__ttl {
    color: #4098D5;
  }
  .winner-gp__ttl .en {
    display: block;
    margin-bottom: 15px;
    font-size: 36px;
  }
  .winner-gp__img {
    width: 58vw;
    margin: 0 auto 25px;
  }
  .winner-gp__name {
    margin-bottom: 50px;
    font-size: 18px;
  }
  .winner-awards {
    width: 86%;
    margin: 0 auto;
  }
  .winner-awards-category {
    padding-bottom: 145px;
    position: relative;
  }
  .winner-awards-category::after {
    width: 100%;
    bottom: 82px;
    left: 0;
  }
  .winner-awards-category:last-child::after {
    content:none;
  } 
  .winner-awards-category___ttl {
    padding: 0 0 70px;
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
  }
  .winner-awards-category___ttl span {
    display: block;
    width: 61px;
    margin: 0 auto 40px;
  }
  .winner-awards-category-list {
  display: block;
  }
  .winner-awards-category-list li {
    width: 100%;
    margin-bottom: 50px;
  }
  .winner-awards-category-list__ttl {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .winner-awards-category-list__img {
    width: 58vw;
  }
  .winner-awards-category-list__img.column3 {
    display: block;
    width: 58vw;
    left: 0;
  }
  .winner-awards-category-list__img.column3 a {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .winner-awards-category-list__img.column3 a:last-child {
    margin-bottom: 0;
  }
  .winner-awards-category-list__img.column5 {
    justify-content:center;
    width: 100%;
    left: 0;
  }
  .winner-awards-category-list__img.column5 a {
    width: 30vw;
    margin: 0 5.5vw 12px;
  }
  .winner-awards-category-list__img.column5 a:last-child {
    margin-bottom: 0;
  }

  .winner-awards-category__comment {
    width: 100%;
    margin: 0 auto;
  }

  .winner-awards-link {
    margin: 0 0 210px;
    text-align: center;
  }
  .winner-awards-link a {
    font-size: 16px;
  }

  .winner-u25 {
    padding: 170px 0 150px;
  }

  .winner-u25__logo {
    width: 290px;
    margin: 0 auto 150px;
  }
  .winner-u25__link {
    font-size: 16px;
    line-height: 1;
    position: absolute;
    top: 85px;
    left: 8vw;
    margin-left: 0px;
  }

  .winner-u25-awards {
    width: 86%;
    margin: 0 auto 125px;
  }
  .winner-u25-awards__ttl {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .winner-u25-awards__ttl.first {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .winner-u25-awards-list {
    display: block;
    margin-bottom: 0px;
    font-size: 18px;
  }
  .winner-u25-awards-list li {
    margin-bottom: 60px;
  }
  .winner-u25-awards-list__img {
    width: 66vw;
    margin: 0 auto 30px;
  }
  .winner-u25-awards-list__comment {
    width: 100%;
    margin: 0 auto;
  }

  .winner-u25-awards-list.column1 .winner-u25-awards-list__img {
    width: 66vw;
  }

  .winner-u25-awards-list.column2 li {
    width: 100%;
  }
  .winner-u25-awards-list.column2 .winner-u25-awards-list__img {
    width: 66vw;
  }

  .winner-u25-awards-list.column3 li {
    width: 100%;
  }
  .winner-u25-awards-list.column3 .winner-u25-awards-list__img {
    width: 66vw;
  }

  .winner-u25 .winner-awards-link {
    margin: 0px 0 0;
  }

  .winner-juges {
    width: 82%;
    padding: 100px 0 0;
    margin: 0 auto;
  }
  .winner-juges-ttl {
    margin-bottom: 80px;
    font-size: 28px;
  }
  .winner-juges-list {
    margin-bottom: 50px;
  }
  .winner-juges-list li {
    display: block;
    margin-bottom: 80px;
  }
  .winner-juges-list__img {
    width: 42vw;
    font-size: 11px;
    margin: 0 auto 40px;
  }
  .winner-juges-list__img img {
    display: block;
    width: 42vw;
    height: 42vw;
    margin: 0 auto 10px;
  }
  .winner-juges-list__comment {
    width: 100%;
  }

  .winner-juges .winner-awards-link {
    margin: 0 0 0;
  }
}

/*---------------------------------------------------------------------------------
イベント概要
--------------------------------------------------------------------------------- */
.about {
  padding: 210px 0 200px;
  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: 755px;
  margin: 0 auto;
}
.about-inner__ttl {
  margin-bottom: 60px;
  font-size: 28px;
  line-height: 1.78;
  font-weight: 700;
  color: #7DBAE5;
}
.about-inner__txt {
  font-size: 16px;
  line-height: 1.875;
}


@media only screen and (max-width: 768px) {
  .about {
    padding: 84px 0 44px;
  }
  .about-inner {
    width: 85%;
  }
  .about-inner__ttl {
    margin-bottom: 50px;
    font-size: 22px;
    line-height: 1.81;
  }
  .about-inner__txt {
    font-size: 12px;
    line-height: 2;
  }
}

/*---------------------------------------------------------------------------------
ENTRY
--------------------------------------------------------------------------------- */
.entry {
  padding: 180px 0 250px;
  font-family: var(--font-M);
  font-weight: 500;
}
.entry-ttl {
  padding-bottom: 95px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #A70045;
}
.entry-ttl .en {
  display: block;
  font-family: var(--font-en);
  padding-bottom: 10px;
  font-size: 48px;
  font-weight: 300;
}
.entry-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  width: 683px;
  margin: 0 auto 60px;
}
.entry-list li {
  width: 290px;
  font-weight: 500;
}
.entry-list li:nth-of-type(2).effect-on {
  transition-delay:500ms;
}
.entry-list__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 60px;
  margin-bottom: 12px;
  background-color: #000;
  font-size: 18px;
  line-height: 1.33;
  color: #fff;
  text-align: center;
}
.entry-list__type {
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
}
.entry-list__type span {
  width: calc(50% - 5px);
  border: 1px solid #000;
  height: 40px;
  padding-top: 10px;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #000;
}
.entry-list-in {
  height: 200px;
  padding: 36px 16px 0;
  text-align: center;
  color: #fff;
  position: relative;
}
.entry-list-in::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 26px solid #000000;
  border-bottom: 0;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: auto;
  content:"";
}
.entry-list-in__ttl {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1;
}
.entry-list-in__ttl em {
  display: block;
  margin-bottom: 16px;
  font-size: 30px;
}
.entry-list-in__txt {
  padding-top: 13px;
  border-top: 1px solid #fff;
  font-size: 14px;
  line-height: 1.57;
}
.entry-list-in__txt em {
  font-size: 22px;
}

.entry-list li:nth-of-type(1) .entry-list-in {
  background: linear-gradient(#a70045 0%, #90013c 100%);
}
.entry-list li:nth-of-type(2) .entry-list-in {
  background: linear-gradient(#0088a7 0%, #007691 100%);
}

.entry-read {
  width: 800px;
  padding-left: 65px;
  margin: 0 auto 68px;
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77;
  color: #A70045;
}
.entry-read li {
  position: relative;
}
.entry-read li::before {
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  position: absolute;
  top: 7px;
  left: -39px;
  content:"";
}
.entry-read li::after {
  content: '';
  width: 20px;
  height: 8px;
  border-left: 2px solid #A70045;
  border-bottom: 2px solid #A70045;
  transform: rotate(-45deg);
  position: absolute;
  top: 6px;
  left: -36px;
}
.entry-data {
  width: 800px;
  margin: 0 auto;
  border-top: 1px solid #A70045;
  color: #A70045;
}
.entry-data div {
  padding: 30px 10px 34px;
  border-bottom: 1px solid #A70045;
}
.entry-data dt {
  padding-bottom: 15px;
  font-size: 20px;
  line-height: 1;
}
.entry-data dd {
  font-size: 16px;
  line-height: 1;
}
.entry-data dd a {
  display: inline-block;
  border-bottom: 1px solid #A70045;
}
.entry-data dd a.nolink {
  text-decoration: line-through;
}
.entry-data dd .small {
  padding-top: 10px;
  font-size: 14px;
  line-height: 1.28;
}


.entry-fee {
  width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1;
  color: #A70045;
}
.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 #A70045;
}
.entry-fee th span {
  font-size: 16px;
}
.entry-fee td {
  width: 325px;
  padding: 18px 10px;
  border: 1px solid #A70045;
  font-size: 18px;
  text-align: center;
}
.entry-fee td em {
  font-size: 22px;
}


@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 {
    display: block;
    width: 77.3%;
    padding-bottom: 2px;
    margin: 0 auto 20px;
  }
  .entry-list li {
    width: 100%;
    margin-bottom: 38px;
  }
  .entry-list li:nth-of-type(2).effect-on {
    transition-delay:300ms;
  }

  .entry-read {
    width: 90%;
    padding-left: 42px;
    margin: 0 auto 25px;
    font-size: 14px;
    line-height: 1.42;
  }
  .entry-read li {
    padding-bottom: 14px;
  }
  .entry-read li::before {
    top: 2px;
    left: -30px;
  }
  .entry-read li::after {
    top: 0px;
    left: -27px;
  }
  .entry-data {
    width: 90%;
  }
  .entry-data div {
    padding: 30px 0px 34px;
  }
  .entry-data dt {
    padding-bottom: 15px;
    font-size: 20px;
    line-height: 1;
  }
  .entry-data dd {
    font-size: 16px;
    line-height: 1.625;
  }
  .entry-data dd .small {
    padding-top: 5px;
    font-size: 14px;
    line-height: 1.28;
  }
  
  .entry-fee {
    width: 90%;
    line-height: 1;
  }
  .entry-fee caption {
    padding: 36px 0 26px;
  }
  .entry-fee tbody {
    display: block;
    border: 1px solid #A70045;
    border-bottom: none;
  }
  .entry-fee tr {
    display: block;
    border-top: none;
    border-bottom: 1px solid #A70045;
  }
  .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 25px;
    margin: 0 auto;
    border: none;
  }
}

/*---------------------------------------------------------------------------------
PRIZE
--------------------------------------------------------------------------------- */
.prize {}

.prize-ttl {
  margin-bottom: 60px;
  font-family: var(--font-M);
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.prize-ttl .en {
  display: block;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.prize-sub-ttl {
  width: 100%;
  padding-bottom: 18px;
  margin-bottom: 38px;
  border-bottom: 1px solid #fff;
  font-family: var(--font-M);
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
.prize-sub-ttl .en {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
}

.prize-professional {
  padding: 100px 0 215px;
  background-color: #A70045;
  position: relative;
}
.prize-professional::before{
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.prize-professional::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #A70045 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.prize-professional-in {
  width: 684px;
  margin: 0 auto;
}
.prize-professional-data {
  font-family: var(--font-M);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
.prize-professional-data.gp {
  margin-bottom: 85px;
  font-size: 18px;
}
.prize-professional-data li:first-child {
  margin-bottom: 15px;
}
.prize-professional-data em {
  display: inline-block;
  margin: 0 5px 0 10px;
  font-weight: 700;
}
.prize-professional-data em.prize01 {
  font-size: 32px;
}
.prize-professional-data.gp em.prize01 {
  font-size: 48px;
}
.prize-professional-data em.prize02 {
  font-size: 28px;
}
.prize-professional-data.gp em.prize02 {
  font-size: 36px;
}
.prize-professional-data span {
  font-size: 18px;
  font-weight: 700;
}
.prize-professional-data.gp span {
  font-size: 24px;
}
.prize-professional-type {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #fff;
}
.prize-professional-type li {
  width: 285px;
  margin-bottom: 50px;
}
.prize-professional-type li:nth-of-type(even).effect-on {
  transition-delay:500ms;
}
.prize-professional-type__ttl {
  padding: 7px 0 6px;
  background-color: #fff;
  border: 1px solid #fff;
  margin-bottom: 30px;
  font-family: var(--font-M);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  text-align: center;
}
.prize-professional-type__desc {
  height: 9em;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.5;
}
.prize-professional__fee {
  margin: 20px 0 50px;
  font-family: var(--font-M);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
.prize-professional__note {
  font-family: var(--font-M);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

.prize-student {
  padding: 110px 0 115px;
  background-color: #0088A7;
  position: relative;
  z-index: 2;
}
.prize-student::before,
.prize-student::after {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.prize-student::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #0088A7 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.prize-student::after {
  border-width: 6.4vw 100vw 0 0;
  border-color: #0088A7 transparent transparent transparent;
  bottom: calc(calc(6.4vw - 1px) * -1);
  left: 0;
}


.prize-student-in {
  width: 380px;
  margin: 0 auto;
  font-family: var(--font-M);
  text-align: center;
}
.prize-student-data {
  padding-bottom: 42px;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
.prize-student-data dt {
  padding-bottom: 4px;
  font-size: 18px;
}
.prize-student-data dd {
  font-size: 18px;
  line-height: 1.42;
  font-weight: 700;
}
.prize-student-data dd span {
  font-size: 14px;
}
.prize-student__fee {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.prize-student__note {
  font-size: 14px;
  font-weight: 500;
}


@media only screen and (max-width: 768px) {
  .prize-ttl {
    margin-bottom: 60px;
  }
  .prize-ttl .en {
    font-size: 22px;
  }
  .prize-sub-ttl {
    width: 100%;
    font-size: 20px;
  }
  .prize-sub-ttl .en {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .prize-professional {
    padding: 90px 0 125px;
  }
  .prize-professional-in {
    width: 88%;
  }
  .prize-professional-data {
    font-family: var(--font-M);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
  }
  .prize-professional-data.gp {
    margin-bottom: 85px;
    font-size: 18px;
  }
  .prize-professional-data li:first-child {
    margin-bottom: 15px;
  }
  .prize-professional-data.gp li:first-child {
    margin-bottom: 30px;
  }
  .prize-professional-data em {
    display: inline-block;
    margin: 0 5px 0 10px;
    font-weight: 700;
  }
  .prize-professional-data em.prize01 {
    font-size: 32px;
  }
  .prize-professional-data.gp em.prize01 {
    margin-top: 14px;
    font-size: 48px;
  }
  .prize-professional-data em.prize02 {
    font-size: 28px;
  }
  .prize-professional-data.gp em.prize02 {
    margin-top: 14px;
    font-size: 36px;
  }
  .prize-professional-data span {
    font-size: 18px;
    font-weight: 700;
  }
  .prize-professional-data.gp span {
    font-size: 24px;
  }
  .prize-professional-type {
    display: block;
    border-bottom: 1px solid #fff;
  }
  .prize-professional-type li {
    width: 85%;
    margin: 0 auto 50px;
  }
  .prize-professional-type li:nth-of-type(even).effect-on {
    transition-delay:300ms;
  }

  .prize-professional-type__desc {
    height: auto;
  }
  .prize-professional__fee {
    margin: 10px 0 20px;
    font-size: 14px;
  }
  .prize-professional__note {
    line-height: 1.28;
    text-align: left;
  }

  .prize-student {
    padding: 90px 0 95px;
  }

  .prize-student-in {
    width: 88%;
  }
  .prize-student-data {
    padding-bottom: 25px;
  }
  .prize-student-data dt {
    padding-bottom: 4px;
    font-size: 18px;
  }
  .prize-student-data dd {
    font-size: 18px;
    line-height: 1.42;
    font-weight: 700;
  }
  .prize-student-data dd span {
    font-size: 14px;
  }
  .prize-student__fee {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }
  .prize-student__note {
    font-size: 14px;
    font-weight: 500;
  }
}
/*---------------------------------------------------------------------------------
JUDGES
--------------------------------------------------------------------------------- */
.judges {
  padding: 200px 0 257px;
  background-color: #fff;
  color: #000;
}
.judges-ttl {
  padding-bottom: 40px;
  font-family: var(--font-M);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  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;
  width: 800px;
  margin: 0 auto;
}
.judges-list li {
  width: 200px;
  margin-bottom: 54px;
  font-family: 'Poppins', 'M PLUS 1p',  sans-serif;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.judges-list li:nth-of-type(4n+2).effect-on {
  transition-delay:400ms;
}
.judges-list li:nth-of-type(4n+3).effect-on {
  transition-delay:500ms;
}
.judges-list li:nth-of-type(4n).effect-on {
  transition-delay:600ms;
}

.judges-list li img {
  width: 160px;
  margin: 0 auto;
}
.judges-list__salon {
  height: 24px;
  font-size: 11px;
  padding-top: 13px;
}
.judges-list__salon2 {
  height: 24px;
  font-size: 12px;
  padding-top: 6px;
  transform: scale(0.6);
  transform-origin: center;
  white-space: nowrap;
  margin-left: -15px;
}

.judges-list__job {
  height: 37px;
  padding: 5px 0 10px;
  font-size: 11px;
}
.judges-list__name {
  font-size: 16px;
}
.judges-list__name span {
  display: block;
  padding-top: 7px;
  font-size: 8px;
  font-weight: 400;
}

@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: 80%;
    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;
    line-height: 1.3;
  }
  .judges-list__salon2 {
    margin-left: 0;
  }
}


/*---------------------------------------------------------------------------------
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-family: var(--font-M);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  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;
  }
}


/*---------------------------------------------------------------------------------
AWARD
--------------------------------------------------------------------------------- */
.award {
  padding: 140px 0 160px;
  background-color: #A70045;
  position: relative;
  z-index: 2;
  color: #fff;
}
.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 #A70045 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}
.award::after {
  border-width: 7.8vw 100vw 0 0;
  border-color: #A70045 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: #fff;
  border-radius: 5px;
  margin: 0 25px;
  font-size: 22px;
  line-height: 1;
  color: #A70045!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-family: var(--font-M);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  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: 0 0 100px;
  color: #000;
}
.nominee-wrap__sub-ttl {
  width: 350px;
  margin: 0 auto 110px;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
}
.nominee-wrap__sub-ttl em {
  display: block;
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.nominee-wrap__sub-ttl::before {
  display: block;
  width: 712px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  content:"";
}
.nominee-section {
  margin-bottom: 240px;
}
.nominee-section-ttl {
  margin: 0 auto 35px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
}
.nominee-section-ttl .en {
  display: block;
  padding-bottom: 10px;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 200;
}

.nominee-section-ttl-note {
  margin: 0 auto 90px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.nominee-section li {
  display: block;
  line-height: 1;
  text-align: center;
  /*counter-increment: number 1;*/
}
.nominee-section li .thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /*border: 1px solid #707070;*/
  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 .name::before {
  content: counter(number) " ";
}*/
.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;
}

.nominee-under25 {
  padding: 235px 0 350px;
  margin-bottom: 0;
  background-color: #000000;
  position: relative;
  z-index: 2;
  color: #fff;
}
.nominee-under25::before {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content:"";
}
.nominee-under25::before {
  border-width: 0 0 6.4vw 100vw;
  border-color: transparent transparent #000000 transparent;
  top: calc(calc(6.4vw - 1px) * -1);
  right: 0;
}

.nominee-under25__logo {
  width: 326px;
  margin: 0 auto 150px;
}
.nominee-under25__logo img {
  width: 100%;
}
.nominee-under25 .nominee-wrap__sub-ttl {
  color: #fff;
}
.nominee-under25 .nominee-wrap__sub-ttl em {
  background-color: #000;
}
.nominee-under25 .nominee-wrap__sub-ttl::before {
  background-color: #fff;
}
.nominee-under25__link {
  font-size: 16px;
  line-height: 1;
  position: absolute;
  top: 105px;
  left: 50%;
  margin-left: -500px;
}


@media only screen and (max-width: 768px) {
  .nominee-wrap {
    padding: 0 0 60px;
  }
  .nominee-wrap__sub-ttl {
    width: 250px;
    margin-bottom: 140px;
    font-size: 24px;
  }
  .nominee-wrap__sub-ttl em {
    display: block;
    padding-bottom: 5px;
  }
  .nominee-wrap__sub-ttl::before {
    width: 84vw;
  }
  .nominee-section {
    margin-bottom: 180px;
  }
  .nominee-section-ttl {
    width: 90%;
    font-size: 18px;
  }
  .nominee-section-ttl .en {
    font-size: 36px;
  }
  .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;
  }
  
  .nominee-under25 {
    padding: 178px 0 210px;
    margin-bottom: 0;
  }
  .nominee-under25__logo {
    width: 290px;
    margin: 0 auto 150px;
  }
  .nominee-under25__link {
    font-size: 16px;
    line-height: 1;
    position: absolute;
    top: 105px;
    left: 8vw;
    margin-left: 0px;
  }
}
/*---------------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------------- */
.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;
}

/* Slick */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-prev {
  background-position: left top;
}
.slick-next {
  background-position: right top;
}
.slick-prev:before, .slick-next:before {
  display: none !important;
}
.slick-prev:active, .slick-next:active {
  border: none;
}
.slick-disabled {
  display: none !important;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  opacity: 0.5;
}

