@charset "UTF-8";

@font-face {
    font-family: "Seravek Medium";
    src: url("../fonts/Seravek-Medium.ttf") format("TrueType"),
    url("../fonts/Seravek-Medium.eot") format('embedded-opentype');
}
@font-face {
    font-family: "Gotham Medium";
    src: url("../fonts/GothamMedium.otf") format("opentype"),
    url("../fonts/GothamMedium.eot") format('embedded-opentype');
}
@font-face {
    font-family: "source-han-sans-traditional";
    font-weight: normal;
    src: url("../fonts/SourceHanSansTC-Normal.otf") format("opentype");
}
@font-face {
    font-family: "source-han-sans-traditional";
    font-weight: 600;
    src: url("../fonts/SourceHanSansTC-Medium.otf") format("opentype");
}

body {
  font-family: "Segoe UI", "source-han-sans-traditional", "Meiryo", "Noto_Sans_TC", sans-serif;
  font-size: 16px;
  line-height: 1.42857;
  color: #fff;
  background-color: #222;
  margin: 0;
}

a {
  color: #0066bd;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1; /*For IE 6&7 only*/
}


/*index_page*/
body.index_body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.ani_container {
  position: fixed;
  z-index: 100;
}
.ani_container .shutter {
  width: 100%;
  height: 100%;
  position: absolute;
}
.ani_container .shutter_1 {
  background: #111; /* For browsers that do not support gradients */
  background: -webkit-radial-gradient(farthest-corner at 60% 55%, #2f2f2f, #111 70%); /* Safari */
  background: -o-radial-gradient(farthest-corner at 60% 55%, #2f2f2f, #111 70%); /* Opera 11.6 to 12.0 */
  background: -moz-radial-gradient(farthest-corner at 60% 55%, #2f2f2f, #111 70%); /* Firefox 3.6 to 15 */
  background: radial-gradient(farthest-corner at 60% 55%, #2f2f2f, #111 70%); /* Standard syntax */
  opacity: 1;
  z-index: 1;
  animation: shutter_1 1.8s ease 1 alternate;
  -webkit-animation: shutter_1 1.8s ease 1 alternate; /* Safari 和 Chrome */
}
@keyframes shutter_1 {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ani_container .shutter_2 {
  background: #111; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(-90deg, #111, #111); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(-90deg, #111, #111); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(-90deg, #111, #111); /* For Firefox 3.6 to 15 */
  background: linear-gradient(-90deg, #111, #111); /* Standard syntax */

  border-top: 2px solid #be9740;
  /*border-bottom: 2px solid #be9740;*/
  box-shadow: 0 -10px 50px rgba(0,0,0,.5);
  top: 65%;
  z-index: 3;
  transform: skewY(-8deg);
  -ms-transform: skewY(-8deg);	/* IE 9 */
  -webkit-transform: skewY(-8deg);	/* Safari 和 Chrome */
  -o-transform: skewY(-8deg);	/* Opera */
  -moz-transform: skewY(-8deg);	/* Firefox */
  animation: shutter_2 1.8s ease 1 alternate;
  -webkit-animation: shutter_2 1.8s ease 1 alternate; /* Safari 和 Chrome */
}
@keyframes shutter_2 {
  0% {
    top: 100%;
  }
  60% {
    top: 65%;
  }
  100% {
    top: -120%;
  }
}
.ani_container .shutter_3 {
  background: #222; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(-90deg, #222, #222); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(-90deg, #222, #222); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(-90deg, #222, #222); /* For Firefox 3.6 to 15 */
  background: linear-gradient(-90deg, #222, #222); /* Standard syntax */

  /*border-top: 2px solid #be9740;*/
  border-bottom: 2px solid #be9740;
  top: -65%;
  z-index: 4;
  transform: skewY(8deg);
  -ms-transform: skewY(8deg);	/* IE 9 */
  -webkit-transform: skewY(8deg);	/* Safari 和 Chrome */
  -o-transform: skewY(8deg);	/* Opera */
  -moz-transform: skewY(8deg);	/* Firefox */
  animation: shutter_3 1.8s ease 1 alternate;
  -webkit-animation: shutter_3 1.8s ease 1 alternate; /* Safari 和 Chrome */
}
@keyframes shutter_3 {
  0% {
    top: -100%;
  }
  60% {
    top: -65%;
  }
  100% {
    top: 110%;
  }
}
.ani_container .logo_ilc {
  width: 98%;
  display: block;
  margin: 0 auto;
  opacity: 1;
  position: relative;
  top: 50%;
  -ms-transform: translate(0%, -50%) scale(1, 1);	/* IE 9 */
  -webkit-transform: translate(0%, -50%) scale(1, 1);	/* Safari 和 Chrome */
  -o-transform: translate(0%, -50%) scale(1, 1); /* Opera */
  -moz-transform: translate(0%, -50%) scale(1, 1); /* Firefox */
  transform: translate(0%, -50%) scale(1, 1);
  /*left: 46%;*/
  z-index: 2;
  animation: logo 3s ease 1 alternate;
  -webkit-animation: logo 3s ease 1 alternate; /* Safari 和 Chrome */
}

@keyframes logo {
  0% {
    -webkit-filter: blur(3px); /* Safari */
    filter: blur(3px);
    opacity: 1;
    -ms-transform: translate(0%, -50%) scale(2, 2);	/* IE 9 */
    -webkit-transform: translate(0%, -50%) scale(2, 2);	/* Safari 和 Chrome */
    -o-transform: translate(0%, -50%) scale(2, 2); /* Opera */
    -moz-transform: translate(0%, -50%) scale(2, 2); /* Firefox */
    transform: translate(0%, -50%) scale(2, 2);
  }
  60% {
    -webkit-filter: blur(0px); /* Safari */
    filter: blur(0px);
    opacity: 1;
    -ms-transform: translate(0%, -50%) scale(1, 1);	/* IE 9 */
    -webkit-transform: translate(0%, -50%) scale(1, 1);	/* Safari 和 Chrome */
    -o-transform: translate(0%, -50%) scale(1, 1); /* Opera */
    -moz-transform: translate(0%, -50%) scale(1, 1); /* Firefox */
    transform: translate(0%, -50%) scale(1, 1);
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px); /* Safari */
    filter: blur(0px);
    opacity: 0;
    -ms-transform: translate(0%, -50%) scale(1, 1);	/* IE 9 */
    -webkit-transform: translate(0%, -50%) scale(1, 1);	/* Safari 和 Chrome */
    -o-transform: translate(0%, -50%) scale(1, 1); /* Opera */
    -moz-transform: translate(0%, -50%) scale(1, 1); /* Firefox */
    transform: translate(0%, -50%) scale(1, 1);
  }
}
.ani_nav_li {
  opacity: 0;
  transition-property: opacity;
  transition-duration: .5s;
  transition-timing-function: ease;
}
.ani_nav_li_1 {
  transition-delay: 0;
}
.ani_nav_li_2 {
  transition-delay: .1s;
}
.ani_nav_li_3 {
  transition-delay: .3s;
}
.ani_nav_li_4 {
  transition-delay: .5s;
}
.ani_nav_li_5 {
  transition-delay: .8s;
}

.ani_nav_li.in {
  opacity: 1;
}

.index_container {
  position: relative;
}
.index_container, .ani_container {
  width: 100%;
  height: 100vh;
}
.carousel_sys {
  width: 100%;
  height: 100vh;
  position: absolute;
}
/*.carousel_sys .cover {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.7);
  position: absolute;
  display: none;
  top: 0;
  z-index: 2;
}*/
.bg_3D {
  width: 100%;
  height: 100vh;
  background-color: #333;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.bg_3D .bg {
  width: 100.8%; /*To fix rotate*/
  height: 100.8vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  opacity: 0;
  transform: scale(1.1, 1.1) rotate(0deg);
  -ms-transform: scale(1.1, 1.1) rotate(0deg);	/* IE 9 */
  -webkit-transform: scale(1.1, 1.1) rotate(0deg);	/* Safari 和 Chrome */
  -o-transform: scale(1.1, 1.1) rotate(0deg);	/* Opera */
  -moz-transform: scale(1.1, 1.1) rotate(0deg);	/* Firefox */
  transition: transform 3s ease, opacity .5s ease;
  -moz-transition: transform 3s ease, opacity .5s ease; /* Firefox 4 */
  -webkit-transition: transform 3s ease, opacity .5s ease; /* Safari 和 Chrome */
  -o-transition: transform 3s ease, opacity .5s ease; /* Opera */
  position: relative;
  left: -0.4%; /*To fix rotate*/
  top: -0.4%;
}
.bg_3D .bg.active {
  opacity: 1;
  transform: scale(1, 1) rotate(0.2deg); /*to fix IE browser shaking when transition*/
  -ms-transform: scale(1, 1) rotate(0.2deg);	/* IE 9 */
  -webkit-transform: scale(1, 1) rotate(0.2deg);	/* Safari 和 Chrome */
  -o-transform: scale(1, 1) rotate(0.2deg);	/* Opera */
  -moz-transform: scale(1, 1) rotate(0.2deg);	/* Firefox */
}
.bg_3D .bg.bg_01 {
  background-image: url(../images/bg_index_01.jpg);
  background-position: 85% center;
}
.bg_3D .bg.bg_02 {
  background-image: url(../images/bg_index_02.jpg);
  background-position: 70% center;
}
.bg_3D .bg.bg_03 {
  background-image: url(../images/bg_index_03.jpg);
  background-position: 75% center;
}
.bg_3D .bg.bg_04 {
  background-image: url(../images/bg_index_04.jpg);
  background-position: 75% center;
}
header {
  background: rgba(0,0,0,.75);
  padding: 20px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width:820px) {
  header {
    padding: 20px 10px;
  }
}
header.subpage {
  width: 100%;
  background: #131313;
  position: fixed;
  z-index: 999;
}
header .custom_nav {
  width: calc(100% - 120px);
  float: left;
  position: relative;
  z-index: 1;
}
header .custom_nav .nav_ul {
  width: calc( 100% - 122px);
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 4px;
  padding-bottom: 3px;
  text-align: center;
  position: relative;
}
@media screen and (max-width:820px) {
  header .custom_nav .nav_ul {
    width: calc( 100% - 114px);
  }
}
header .custom_nav .nav_ul li {
  display: inline-block;
  margin: 0 5px;
  text-align: center;
  vertical-align: middle
}
header .custom_nav .nav_ul li.promo a {
  background-color: #9f7515;
}
header .custom_nav .nav_ul li.active a {
  /*border: 2px solid #be9740;*/
  color: #d5a53c;
  position: relative;
}
header .custom_nav .nav_ul li.active a:before,
header .custom_nav .nav_ul li.active a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
  position: absolute;
}
header .custom_nav .nav_ul li.active a:before {
  border-width: 0 7px 7px 0;
  border-color: transparent #be9740 transparent transparent;
  top: 0;
  right: 0;
}
header .custom_nav .nav_ul li.active a:after {
  border-width: 7px 0 0 7px;
  border-color: transparent transparent transparent #be9740;
  bottom: 0;
  left: 0;
}
header .custom_nav .nav_ul li a {
  border-radius: 2px;
  color: #eee;
  display: block;
  font-size: 18px;
  padding: 0 1.3em;
  position: relative;
  text-decoration: none;
}
header.subpage .custom_nav .nav_ul li a {
  font-size: 17px;
}
@media screen and (max-width:820px) {
  header.subpage .custom_nav .nav_ul li a {
    font-size: 16px;
  }
}
header .custom_nav .nav_ul li a .corner {
  position: absolute;
}
header .custom_nav .nav_ul li a .corner:before,
header .custom_nav .nav_ul li a .corner:after  {
  content: "";
  background-color: #ddd;
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: all .25s ease-out;
  -moz-transition: all .25s ease-out; /* Firefox 4 */
  -webkit-transition: all .25s ease-out; /* Safari 和 Chrome */
  -o-transition: all .25s ease-out; /* Opera */
}
header .custom_nav .nav_ul li a .corner:before {
  width: 15px;
  height: 1px;
}
header .custom_nav .nav_ul li a .corner:after {
  width: 1px;
  height: 6px;
}
header .custom_nav .nav_ul li a .corner.tl {
  top: 0;
  left: 0;
}
header .custom_nav .nav_ul li a .corner.tr {
  top: 0;
  right: 0;
}
header .custom_nav .nav_ul li a .corner.bl {
  bottom: 0;
  left: 0;
}
header .custom_nav .nav_ul li a .corner.br {
  bottom: 0;
  right: 0;
}

header .custom_nav .nav_ul li a .corner.tl:before,
header .custom_nav .nav_ul li a .corner.tr:before {
  top: 0;
  transition-delay: .1s;
}
header .custom_nav .nav_ul li a .corner.bl:before,
header .custom_nav .nav_ul li a .corner.br:before {
  bottom: 0;
  transition-delay: .2s;
}
header .custom_nav .nav_ul li a .corner.tl:after,
header .custom_nav .nav_ul li a .corner.bl:after {
  left: 0;
  transition-delay: .3s;
}
header .custom_nav .nav_ul li a .corner.tr:after,
header .custom_nav .nav_ul li a .corner.br:after {
  right: 0;
  transition-delay: .4s;
}

header .custom_nav .nav_ul li a .corner.tl:before,
header .custom_nav .nav_ul li a .corner.bl:before {
  left: 30px;
}
header .custom_nav .nav_ul li a .corner.tr:before,
header .custom_nav .nav_ul li a .corner.br:before {
  right: 30px;
}
header .custom_nav .nav_ul li a .corner.tl:after,
header .custom_nav .nav_ul li a .corner.tr:after {
  top: 10px;
}
header .custom_nav .nav_ul li a .corner.bl:after,
header .custom_nav .nav_ul li a .corner.br:after {
  bottom: 10px;
}

header .custom_nav .nav_ul li a:hover .corner:before,
header .custom_nav .nav_ul li a:hover .corner:after  {
  background-color: #be9740;
  opacity: 1;
  visibility: visible;
}
header .custom_nav .nav_ul li a:hover .corner:before {
  width: 6px;
}
header .custom_nav .nav_ul li a:hover .corner:after {
  height: 6px;
}

header .custom_nav .nav_ul li a:hover .corner.tl:before,
header .custom_nav .nav_ul li a:hover .corner.bl:before {
  left: 0;
}
header .custom_nav .nav_ul li a:hover .corner.tr:before,
header .custom_nav .nav_ul li a:hover .corner.br:before {
  right: 0;
}
header .custom_nav .nav_ul li a:hover .corner.tl:after,
header .custom_nav .nav_ul li a:hover .corner.tr:after {
  top: 0;
}
header .custom_nav .nav_ul li a:hover .corner.bl:after,
header .custom_nav .nav_ul li a:hover .corner.br:after {
  bottom: 0;
}
header .hamburger {
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  display: none;
  float: right;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 9px;
  outline: none;
  padding: 9px 11px;
  position: relative;
  z-index: 2;
}
header .hamburger .icon-bar {
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform .5s ease;
  -moz-transition: transform .5s ease; /* Firefox 4 */
  -webkit-transition: transform .5s ease; /* Safari 和 Chrome */
  -o-transition: transform .5s ease; /* Opera */
}
header .hamburger .icon-bar:nth-child(2) {
  top: 8px;
}
header .hamburger .icon-bar:nth-child(3) {
  top: 16px;
}
@media screen and (max-width: 1140px) {
  header .custom_nav .nav_ul li {
    margin: 0 4px;
  }
  header .custom_nav .nav_ul li a {
    font-size: 17px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 992px) {

  header .custom_nav .nav_ul {
    width: auto;
    float: none;
    position: relative;
    z-index: 2;
  }
  /*mobile_active*/
  header .custom_nav {
    width: auto;
    background-color: rgba(0,0,0,0);
    display: none;
    float: none;
    line-height: normal;
    overflow-y: scroll;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    /*overflow-y: scroll;*/
    transition: background-color .25s ease, opacity .25s ease;
    -moz-transition: background-color .25s ease, opacity .25s ease; /* Firefox 4 */
    -webkit-transition: background-color .25s ease, opacity .25s ease; /* Safari 和 Chrome */
    -o-transition: background-color .25s ease, opacity .25s ease; /* Opera */
  }
  header.mobile_active .custom_nav {
    background-color: rgba(0,0,0,1);
  }
  header .custom_nav ul {
    margin-top: 10px;
    top: auto;
    -ms-transform: none;	/* IE 9 */
    -webkit-transform: none;	/* Safari 和 Chrome */
    -o-transform: none;	/* Opera */
    -moz-transform: none;	/* Firefox */
    transform: none;
  }
  header .custom_nav .ggg {
    padding-top: 4vh;
    padding-bottom: 12px;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);	/* IE 9 */
    -webkit-transform: translateY(-50%);	/* Safari 和 Chrome */
    -o-transform: translateY(-50%);	/* Opera */
    -moz-transform: translateY(-50%);	/* Firefox */
    transform: translateY(-50%);
    z-index: 2
  }
  header .custom_nav .nav_ul li {
    width: 100%;
    max-width: none;
    margin: 2vh auto;
  }
  header .custom_nav .nav_ul li.active a:before {
    border-width: 0 15px 15px 0;
  }
  header .custom_nav .nav_ul li.active a:after {
    border-width:  15px 0 0 15px;
  }
  header .custom_nav .nav_ul li a, header.subpage .custom_nav .nav_ul li a {
    color: #ffffff;
    display: inline-block;
    font-size: 28px;
    padding: 0 0.5em;
  }
  header .custom_nav .nav_ul li a .corner:before {
    height: 3px;
  }
  header .custom_nav .nav_ul li a .corner:after {
    width: 3px;
  }
  header .custom_nav .nav_ul li a:hover .corner:before {
    width: 12px;
  }
  header .custom_nav .nav_ul li a:hover .corner:after {
    height: 12px;
  }
  header .hamburger {
    display: block;
  }
  header.subpage .custom_nav .nav_ul {
    width: auto;
  }
  /*mobile_active*/
  header.mobile_active .hamburger .icon-bar:nth-child(1) {
    transform: translateY(8px) rotateZ(-45deg);
  }
  header.mobile_active .hamburger .icon-bar:nth-child(2) {
    visibility: hidden;
    opacity: 0;
  }
  header.mobile_active .hamburger .icon-bar:nth-child(3) {
    transform: translateY(-8px) rotateZ(45deg);
  }
  /*mobile_active*/
  .dropdown_custom {
    width: 100%;
    background-color: #131313;
    border: 0;
    border-radius: 0;
    float: none;
    padding: 0;
    position: relative;
  }
  .dropdown_custom > li > a {
    color: #ddd;
    font-size: 20px;
    padding: 5px 0;
    text-align: center;
  }
  .dropdown_custom > li > a:focus, .dropdown_custom > li > a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #af8a38;
  }
}
@media screen and (max-width: 480px) {
  header .custom_nav .nav_ul li {
    margin: 2.5% auto;
  }
}
@media screen and (max-width: 320px) {
  header .custom_nav .nav_ul li {
    /*width: 100%;*/
    margin: 2% auto;
  }
  header .custom_nav .nav_ul li a {
    font-size: 28px;
  }
}

#cl-logo {
  width: 120px;
  float: left;
}
#cl-logo a  {
  display: block;
}
#back_home {
  width: 40px;
  height: 24px;
  text-align: left;
}
#back_home:before {
  /* content: "";
  height: 100%;
  display: inline-block;
  position: relative;
  vertical-align: middle; */
}
#back_home a {
  width: 30px;
  /* height: 30px; */
  display: inline-block;
  padding: 0;
  position: relative;
}
#back_home a:before {
  /* content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0; */
}
#back_home a img.gold {
  display: none;
}
#back_home a:hover img.white {
  display: none;
}
#back_home a:hover img.gold {
  display: block;
}
#back_home a .inner {
  width: 16px;
  height: 16px;
  margin: 5px auto;
  margin-bottom: 0;
}

#back_home object {
  width: 16px;
  height: 16px;
  display: block;
}
#home_language {
  float: left;
  padding-top: 4px;
  padding-bottom: 3px;
}
#home_language:focus {
  outline: none;
}
#home_language img {
  width: 24px;
  height: 24px;
  display: inline-block;
}
#home_language span {
  line-height: 28px;
  vertical-align: middle;
}
#home_language button {
  background-color: transparent;
  border-color: transparent;
  border: 0;
  color: white;
  padding: 0;
  position: relative;
}
#home_language button:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
@media screen and (max-width: 992px) {
  #home_language span {
    line-height: 36px;
  }
}
.section_logo {
  width: 100%;
  height: 100%;
  /* border-bottom: 2px solid #be9740; */
  /* box-sizing: border-box; */
  display: table;
  position: absolute;
  top: 0;
  z-index: 5;
}
.section_logo.mobile_active {
  z-index: 9;
}
.section_logo .inner {
  display: table-cell;
  vertical-align: middle;
  padding-left: 120px;
}
.section_logo .title {
  color: #fff;
  font-family: "Gotham Medium", "source-han-sans-traditional", "Meiryo", "Noto_Sans_TC", sans-serif;
  font-size: 42px;
  font-weight: lighter;
  line-height: 1;
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
  text-transform: uppercase;
}
.section_logo .title > span {
  display: inline-block;
}
.section_logo .title span {
  vertical-align: middle;
}
.section_logo .title .asia {
  font-weight: 600;
}
.section_logo .subtitle {
  color: #fff;
  font-family: "Seravek Medium", "source-han-sans-traditional", "Meiryo", "Noto_Sans_TC", sans-serif;
  font-size: 100px;
  font-weight: normal;
  letter-spacing: 0;
  margin: 0;
  margin-left: 35px;
}
.section_logo a.btn_join {
  border-radius: 3px;
  background-color: #ffcf00;
  color: #1e1e1e;
  display: inline-block;
  font-family: "Gotham Book", "source-han-sans-traditional", "Meiryo", "Noto_Sans_TC", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 20px;
  margin-left: 35px;
  padding: 6px 50px;;
  text-align: center;
  text-decoration: none;
  /* transition: background-color .25s ease; */
}
.section_logo a.btn_join:hover {
  animation: ani_join 1.5s ease infinite alternate;
}
@keyframes ani_join {
  0% {
    background-color: #ffcf00;
  }
  50% {
    background-color: #ffee7c;
  }
  60% {
    background-color: #ffee7c;
  }
  100% {
    background-color: #ffcf00;
  }
}
.section_logo a.btn_join .word_group {
  display: inline-block;
  vertical-align: middle;
  transition: transform .3s ease 0s;
}
.section_logo a.btn_join .word {
  opacity: 1;
  /* transition: opacity .3s ease; */
}
.section_logo p.notice {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  margin-left: 35px;
  margin-top: 5px;
  padding: 6px 10px;
  text-align: center;
}
.section_logo a.btn_join .glyphicon-play {
  display: inline-block;
  font-size: 8px;
  opacity: 1;
  padding-bottom: 4px;
  vertical-align: middle;
  transition: opacity .3s ease, transform .3s ease;
}
.section_logo a.btn_join:hover .glyphicon-play {
  opacity: 0;
  transform: translateX(10px);
}
.section_logo a.btn_join:hover .word_group {
  transform: translateX(10px);
  transition: transform .3s ease .2s;
}
.section_logo a.btn_join:hover .word {
  animation: ani_word 1s ease .2s 1 alternate;
}
.section_logo a.btn_join:hover .word_02 {
  animation: ani_word 1s ease .4s 1 alternate;
}
@keyframes ani_word {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section_logo a.btn_join .glyphicon-play {
    font-size: 12px;
  }
}

.logo_ilc {
  max-width: 540px;
  display: inline-block;
}
.logo_eye {
  max-width: 80px;
  display: inline-block;
  margin-top: 5px;
  vertical-align: middle;
}
@media screen and (max-width: 1100px) {
  .section_logo .inner {
    padding-left: calc(100vw/12);
  }
  .section_logo .title {
    font-size: calc(100vw/24);
  }
  .section_logo .subtitle {
    font-size: calc(100vw/11);
  }
  .logo_eye {
    max-width: calc(100vw/14);
  }
}
@media screen and (max-width: 992px) {
  #cl-logo {
    position: relative;
    z-index: 2;
  }
  header #cl-logo {
    z-index: 1;
  }
  #home_language {
    position: absolute;
    top: 8px;
    right: 0;
    z-index: 2;
  }
  header #home_language {
    width: 100%;
    border-top: 1px solid #be9740;
    display: block;
    font-size: 26px;
    padding-top: 10px;
    position: relative;
    text-align: center;
  }
  header #back_home {
    width: auto;
    height: auto;
    float: none;
    text-align: center;
  }
  header #back_home a {
    width: auto;
    height: auto;
  }
  header #back_home a .inner {
    width: 40px;
    height: 40px;
    margin: 0;
  }
  .logo_ilc {
    max-width: 392px;
  }
}
@media screen and (max-width: 768px) {
  .section_logo .title {
    font-size: calc(100vw/22);
  }
  .section_logo .title .others {
    font-size: calc(100vw/20);
  }
  .section_logo .subtitle {
    font-size: calc(100vw/8);
  }
  .section_logo .inner {
    background-color: rgba(0,0,0,.25);
  }
  .logo_eye {
    max-width: calc(100vw/12);
  }
}

@media screen and (max-width: 640px) {
  .section_logo:before {
    content: "";
    background-color: rgba(0,0,0,.25);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .section_logo .inner {
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 480px) {
  .section_logo .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section_logo .title {
    font-size: calc(100vw/21);
    line-height: 1.2;
  }
  .section_logo .title .others {
    font-size: calc(100vw/18);
    vertical-align: top;
  }
  .section_logo .subtitle {
    font-size: calc(100vw/6);
  }
  .logo_eye {
    max-width: calc(100vw/10);
  }
  .section_logo a.btn_join {
    font-size: 18px;
    padding: 6px 20px;
  }
}
@media screen and (max-width: 340px) {
  .section_logo .title {
    display: table;
    font-size: calc(100vw/15);
  }
  .logo_eye {
    max-width: calc(100vw/7);
  }
  .section_logo .title > span, .logo_eye {
    display: table-cell;
    vertical-align: text-top;
  }
  .section_logo .title > span {
    padding-left: 5px;
  }
  .section_logo a.btn_join {
    font-size: 17px;
  }
}

body.index_body footer {
  position: absolute;
  bottom: 0;
  z-index: 8;
}
footer {
  width: 100%;
  background-color: #000;
  color: #ddd;
  font-size: 14px;
  padding: 5px 0;
  text-align: center;
}
footer .copyright {
  display: inline-block;
  margin: 3px 0;
  vertical-align: middle;
}
footer ul.sponsor {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 20px;
  vertical-align: middle;
}
footer ul.sponsor li {
  display: inline-block;
  margin: 3px 0;
  margin-right: 10px;
  vertical-align: middle;
}
footer ul.sponsor li a {
  width: 100%;
  display: block;
}
footer ul.sponsor li.intel {
  width: 45px;
}
footer ul.sponsor li.newegg {
  width: 61px;
}
footer ul.sponsor li.digitalphoto {
  width: 82px;
}
footer ul.sponsor li.medion {
  width: 92px;
}
footer ul.sponsor li.bon_plan_photo {
  width: 41px;
}
footer ul.sponsor li.lense {
  width: 64px;
}
footer ul.sponsor li.adata {
  width: 56px;
}
footer ul.sponsor li.asus {
  width: 95px;
}
footer ul.sponsor li.capa {
  width: 86px;
}
footer ul.sponsor li.dji {
  width: 52px;
}
footer ul.sponsor li.iodata {
  width: 87px;
}
footer ul.sponsor li.nikon {
  width: 30px;
}
footer ul.sponsor li.ricoh {
  width: 69px;
}
footer ul.sponsor li.feiyu {
  width: 92px;
}
footer ul.sponsor li.sentra {
  width: 93px;
}
footer ul.sponsor li.weblink {
  width: 67px;
}

@media screen and (max-width:767px) {
  /* footer ul.sponsor {
    display: none;
  } */
}


#content > section {
  height: auto;
  min-height: 45vh;
  padding: 100px 20%;
  padding-bottom: 10px;
  /*background-color: white;*/
  text-align: center;
}
  @media (max-width: 1200px) {
    #content > section {
      padding: 100px 10%;
      padding-bottom: 10px;
    }
  }
  @media (max-width: 991px) {
    #content > section {
      padding: 100px 20px;
      padding-bottom: 10px;
      min-height: calc(30vw);
    }
  }
  @media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
    #content > section {
      /* min-height: calc(35vw); */
    }
  }

#photo_main .tag, #photo_main .tag2, #photo_main .tag3 {
  color: white;
  float: left;
  margin: 0.5% 1%;
  padding: 0.5% 1%;
  float: left; }
  @media (max-width: 767px) {
    #photo_main .tag, #photo_main .tag2, #photo_main .tag3 {
      margin-top: 20px;
      font-size: 14px;
      display: none; } }

#form, #prizes, #tips, .winners {
  padding-top:0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed; }
  @media screen and (max-width: 1599px) and (min-width: 1350px) {
    #form, #prizes, #tips, .winners {
      padding-left: 12% !important;
      padding-right: 12% !important; } }
  @media screen and (max-width: 1349px) and (min-width: 768px) {
    #prizes, #tips {
      padding-left: 12% !important;
      padding-right: 12% !important;
      padding-top:0; } }
  @media (max-width: 991px) and (min-width: 480px) {
    #form, #prizes, #tips, .winners {
      padding-top:0;
      background-position: right top !important;
      /* background-size: 150% !important;  */
    }
  }
  @media (max-width: 767px) {
    #form, #prizes, #tips, .winners {
      padding-top:0;
      padding-left: 25px !important;
      padding-right: 25px !important;
      background-position: right 1% !important;
      /* background-size: 150% !important;  */
    }
  }
  #form h1, #prizes h1, #tips h1, .winners h1 {
    color: #b6800a;
    font-size: 40px;
    margin-bottom: 2%; }

#prize_img, #prize_img_jpn, #prize_img_cht, #prize_img_enu {
  width: 98%;
  height: 70vh;
  margin: 0 auto 0 auto;
  margin-bottom: 5%;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  /*device width*/ }
  @media screen and (max-width: 1349px) and (min-width: 768px) {
    #prize_img, #prize_img_jpn, #prize_img_cht, #prize_img_enu {
      height: 70vh; } }
  @media screen and (max-width: 991px) and (min-width: 480px) {
    #prize_img, #prize_img_jpn, #prize_img_cht, #prize_img_enu {
      height: 45vh; } }
  @media screen and (max-width: 767px) {
    #prize_img, #prize_img_jpn, #prize_img_cht, #prize_img_enu {
      background-image: url(../images/prizes_m.jpg);
      width: 90%;
      height: calc(160vw); } }
  @media screen and (max-device-width: 991px) and (min-device-width: 480px) {
    #prize_img, #prize_img_jpn, #prize_img_cht, #prize_img_enu {
      height: calc(45vw); } }
  @media screen and (max-device-width: 767px) {
    #prize_img, #prize_img_jpn, #prize_img_cht, #prize_img_enu {
      background-image: url(../images/prizes_m.jpg);
      width: 90%;
      height: calc(160vw); } }

@media (max-width: 767px) and (min-width: 321px) {
  h1 {
    font-size: 36px; } }

@media (max-width: 320px) {
  h1 {
    font-size: 30px; } }

img {
  border: 0;
  outline: none; }

.block {
  display: inline-block; }

@media (max-width: 991px) {
  .btn {
    margin-bottom: 3%; } }

.vertical_middle {
  vertical-align: middle; }

.clearboth {
  clear: both; }

.center-text {
  text-align: center !important; }

@media (max-width: 767px) {
  .mobile_small_text {
    font-size: 14px;
    padding-bottom: 10px; } }

.no_float {
  float: none !important; }

.no_display {
  display: none !important; }

.underline {
  text-decoration: underline; }

.position_relative {
  position: relative !important; }

mark {
  color: #7777cf;
  background-color: transparent;
  font-weight: bold; }


#nav_top {
  /*background-color: rgba(255, 255, 255, 0.6);
	border-radius: 0;
	border-style: none;*/
  padding-left: 0 !important;
  padding-right: 0 !important; }
  @media (max-width: 1599px) and (min-width: 1350px) {
    #nav_top {
      width: 60%;
      float: right; } }
  @media (max-width: 1349px) and (min-width: 768px) {
    #nav_top {
      width: 65%;
      float: right; } }
  @media (max-width: 991px) {
    #nav_top {
      background-color: white;
      border-bottom: solid thin #CCC; } }
  @media (max-width: 991px) {
    #nav_top li {
      text-align: center;
      padding: 0; } }
  @media (max-width: 991px) {
    #nav_top li > a {
      color: black; } }

.navbar-brand > img {
  width: 65%; }

.container-fluid {
  padding-left: 0 !important; }

#photo_logo {
  position: absolute;
  padding-left: 2%;
  padding-top: 6%; }
  @media (max-device-width: 991px) {
    #photo_logo {
      display: none; } }
  @media (max-width: 767px) {
    #photo_logo {
      display: none; } }

.dropdown_language {
  right: 0 !important;
  left: auto; }

#content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background-color: #222; }
  #content h2 {
    font-weight: bold;
    margin-bottom: 25px; }
    @media (max-width: 991px) {
      #content h2 {
        font-size: 28px; } }
  #content h4 {
    margin-bottom: 20px;
    line-height: calc(19px*1.2); }
  #content p {
    line-height: calc(16px*2); }
  #content .section_logo_out {
    margin-top: -30px;
    position: absolute;
    width: 100%;
    text-align: center; }
  #content .section_logo {
    text-align: center; }
  #content #event {
    background-image: url("../images/section3_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    /* Landscape */
  }

.contest_cate {
  width: 100%;
  display: table;
}
.contest_cate .space {
  width: 2%;
}
.contest_cate .cate_align {
  width: 32%;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  display: table-cell;
  padding: 20px 10px;
}
.contest_cate .cate_align h3 {
  font-weight: bold;
  font-size: 24px;
  margin-top: 0;
}
.contest_cate .cate_align p {
  color: #333;
  font-size: 16px;
  line-height: 22px !important;
}
.contest_cate .cate_align .link_lb {
  min-height: 55px;
}
.contest_cate .cate_align .via {
  margin: 2px 0;
}
.contest_cate .cate_align .via a {
  font-size: 14px;
  text-decoration: underline;
  /* white-space: nowrap; */
}
.contest_cate .cate_align .join {
  margin-top: 10px;
}
.contest_cate .cate_align .btn {
  border-radius: 5px;
  color: #fff;
  float: none;
  font-size: 18px;
  margin-top: 10px;
  padding: 3px 25px;
  transition: background-color .25s ease;
}
.contest_cate .cate_align .btn.pr {
  background-color: rgba(48, 48, 139, 1);
}
.contest_cate .cate_align .btn.lp {
  background-color: rgba(110, 21, 93, 1);
}
.contest_cate .cate_align .btn.ms {
  background-color: rgba(34, 139, 215, 1);
}
.contest_cate .cate_align .btn.pr:hover {
  background-color: rgba(48, 48, 139, .9);
}
.contest_cate .cate_align .btn.lp:hover {
  background-color: rgba(110, 21, 93, .9);
}
.contest_cate .cate_align .btn.ms:hover {
  background-color: rgba(34, 139, 215, .9);
}

@media screen and (max-width: 992px) {
  .contest_cate {
    display: block;
  }
  .contest_cate .space {
    width: 0;
    height: 20px;
    display: block;
  }
  .contest_cate .cate_align {
    width: 85%;
    display: block;
    margin: 0 auto;
    padding: 20px 5%;
  }
  .contest_cate .cate_align p span.br {
    display: none;
  }
  .contest_cate .cate_align .link_lb {
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .contest_cate .cate_align {
    width: 100%;
    display: block;
  }
}

.contest_cate #perfect_retouching {
  border-color: #30308b;
  background-color: #f9f9fe;
}
.contest_cate #perfect_retouching h3 {
  color: #30308b;
}
.contest_cate #perfect_retouching p {
}
.contest_cate #perfect_retouching .btn-primary {
  background-color: #7776cf;
  border-color: #5f5dc6;
}
.contest_cate #perfect_retouching .btn-primary:hover {
  background-color: #5f5dc6;
}

.contest_cate #little_planet {
  border-color: #882075;
  background-color: #fffbfe;
}
.contest_cate #little_planet h3 {
  color: #6e155d;
}
.contest_cate #little_planet p {
}
.contest_cate #little_planet .btn-primary {
  background-color: #67d9bd;
  border-color: #4cd2b1;
}
.contest_cate #little_planet .btn-primary:hover {
  background-color: #4cd2b1;
}

.contest_cate #motion_stills {
  border-color: #228bd7;
  background-color: #f6fcff;
}
.contest_cate #motion_stills h3 {
  color: #228bd7;
}
.contest_cate #motion_stills p {
}
.contest_cate #motion_stills .btn-primary {
  background-color: #67d9bd;
  border-color: #4cd2b1;
}
.contest_cate #motion_stills .btn-primary:hover {
  background-color: #4cd2b1;
}

    #content #event #download_app {
      width: 100%;
      margin: 3% auto;
      padding: 0.5% 3%;
      border-style: solid;
      border-width: thin;
      border-color: transparent;
      background-color: transparent; }
      #content #event #download_app h4, #content #event #download_app p {
        color: transparent; }
      #content #event #download_app .btn-primary {
        background-color: transparent;
        border-color: transparent; }
      #content #event #download_app .btn-primary:hover {
        background-color: transparent; }
      @media (min-width: 1600px) {
        #content #event #download_app {
          width: 70%; } }
      #content #event #download_app h2 {
        vertical-align: middle; }
        @media (max-width: 767px) {
          #content #event #download_app h2 img {
            margin-bottom: 5%; } }
      #content #event #download_app img {
        width: 65px;
        height: 57px;
        margin: auto; }
      @media (max-width: 991px) {
        #content #event #download_app .pc {
          display: none; } }
      #content #event #download_app .mobile {
        display: none; }
        @media (max-width: 991px) {
          #content #event #download_app .mobile {
            display: block;
            width: 100%; }
            #content #event #download_app .mobile img {
              width: 100%; } }
      #content #event #download_app .btn {
        background-color: #1f1f1f;
        border-radius: 5px;
        color: #ffde00;
        float: none;
        font-size: 18px;
        margin: 0 15px;
        padding: 6px 25px 6px 20px;
        transition: background-color .25s ease;
      }
      #content #event #download_app .btn:hover {
        background-color: #131313;
      }
        @media (max-width: 767px) {
          #content #event #download_app .btn {
            margin-bottom: 5%; } }
      #content #event #download_app ul {
        -webkit-padding-start: 0 !important; }
        #content #event #download_app ul > li {
          display: inline-block;
          margin: 0 2.5%; }
          @media (max-width: 767px) {
            #content #event #download_app ul > li {
              margin: 2%; } }
          @media (max-width: 767px) {
            #content #event #download_app ul > li img {
              margin-bottom: 5%; } }
      #content #event #download_app .download_title_min {
        min-width: 345px;
        text-align: left; }
        @media (max-width: 991px) and (min-width: 480px) {
          #content #event #download_app .download_title_min {
            min-width: 300px; } }
        @media (max-width: 767px) {
          #content #event #download_app .download_title_min {
            min-width: auto;
            text-align: center;
            display: block; } }
  #content #categories_photo {
    background-image: url("../images/section2_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    /* Landscape */
    background-size: 110% auto;
    background-position: center;
    /* Landscape */ }
    @media (max-width: 991px) {
      #content #categories_photo {
        background-attachment: scroll; } }
    @media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
      #content #categories_photo {
        background-attachment: scroll; } }
    @media (max-width: 991px) {
      #content #categories_photo {
        background-size: cover; } }
    @media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
      #content #categories_photo {
        background-size: cover; } }
  #content #categories {
    /* background-image: url("../images/section3_bg.jpg"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    /* Landscape */
    background-size: 100% auto; }
    @media (max-width: 991px) {

      #content #categories {
        background-attachment: scroll; } }
    @media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
      #content #categories {
        background-attachment: scroll; } }

#content #submit_guildlines > div {
  width: 100%;
  margin: 3% auto;
  padding: 20px 3%;
  border-style: solid;
  border-width: thin;
  border-color: #9bdbed;
  background-color: #edfbff;
  width: 70%;
}
#content #submit_guildlines > div h4, #content #submit_guildlines > div p {
  color: #9bdbed;
}
#content #submit_guildlines > div h4 {
  margin-top: 0;
}
#content #submit_guildlines > div h4.note {
  max-width: 600px;
  display: table;
  margin: 0 auto;
  text-align: left;
}
#content #submit_guildlines > div h4.note span {
  display: table-cell;
  padding-right: 10px;
}
#content #submit_guildlines > div h4.note span:first-child {
  white-space: nowrap;
}
#content #submit_guildlines > div .btn-primary {
  background-color: #9bdbed;
  border-color: #7fd1e8;
}
#content #submit_guildlines > div .btn-primary:hover {
  background-color: #7fd1e8;
}

@media (min-width: 1600px) {
  #content #submit_guildlines > div {
    width: 70%;
  }
}
@media (max-width: 991px) {
      #content #submit_guildlines > div {
        width: 100%; } }
    #content #submit_guildlines > div h4 {
      color: #3e3a39; }
    #content #submit_guildlines > div mark {
      color: #1474ad;
      background-color: transparent; }
  #content #submit_guildlines .pc_lightbox {
    display: inline-block; }
    @media (max-width: 991px) {
      #content #submit_guildlines .pc_lightbox {
        display: none; } }
  #content #submit_guildlines .mobile_lightbox {
    display: none; }
    @media (max-width: 991px) {
      #content #submit_guildlines .mobile_lightbox {
        display: inline-block; } }
  #judge .judge_rate {
    max-width: 920px;
    /* min-height: 220px; */
    background-color: #1f1f1f;
    display: table;
    margin: 20px auto;
  }
  #judge .judge_rate .txt, #judge .judge_rate .pic {
    display: table-cell;
    vertical-align: middle;
  }
  #judge .judge_rate .txt {
    color: #d5a53c;
    font-size: 17px;
    font-weight: 600;
    line-height: 34px;
    padding: 20px;
    position: relative;
    text-align: left;
  }
  #judge .judge_rate .txt ul {
    padding-left: 25px;
  }
  #judge .judge_rate .txt:before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #1f1f1f;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    vertical-align: middle;
  }
  #judge .judge_rate .pic {
    width: 60%;
    background-image: url("../images/pic_judge_rate.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    padding: 10px;
  }
  @media screen and (max-width: 640px) {
    #judge .judge_rate {
      max-width: auto;
      width: 90%;
    }
    #judge .judge_rate .txt, #judge .judge_rate .pic {
      display: block;
      width: 100%;;
    }
    #judge .judge_rate .txt:before {
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      border-top: 20px solid #1f1f1f;
      border-bottom: 0;
      top: auto;
      bottom: -20px;
      right: auto;
      left: 50%;
      transform: translateX(-50%);
    }
    #judge .judge_rate .pic {
      height: 220px;
    }
  }
  #content #FAQ_photo {
    background-image: url("../images/section4_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    /* Landscape */
    background-size: 100% auto;
  }
    @media (max-width: 991px) {
      #content #FAQ_photo {
        background-attachment: scroll; } }
    @media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
      #content #FAQ_photo {
        background-attachment: scroll; } }
    @media (max-width: 991px) {
      #content #FAQ_photo {
        background-size: cover;
        background-position: 0 75%; } }
  #content #disclaimer_photo {
    background-image: url("../images/section5_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    /* Landscape */
    background-size: 100% auto;
  }
    @media (max-width: 991px) {
      #content #disclaimer_photo {
        background-attachment: scroll; } }
    @media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
      #content #disclaimer_photo {
        background-attachment: scroll; } }
    @media (max-width: 991px) {
      #content #disclaimer_photo {
        background-size: cover;
        background-position: 70% 50%; } }
  #content #disclaimer {
    font-size: 15px;
  }
    #content #disclaimer li {
      margin-bottom: 2.5%; }
  @media (max-width: 991px) {
    #content {
      /* margin-bottom: 5vh;  */
    }
  }

.wrap_nav {
  text-align: center; }
  @media (max-width: 767px) {
    .wrap_nav li {
      display: block !important; }
      .wrap_nav li > a:hover, .wrap_nav li .active {
        background-color: #be9740 !important;
        color: white !important; } }

#main_nav {

  position: absolute;
  width: 100%;
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-bottom-color: #CCC; }
  #main_nav ul {
    margin: auto;
    float: none; }
  #main_nav li {
    color: black;
    display: inline-block;
    float: none;
    color: black; }
    #main_nav li a {
      color: inherit;
      background-color: transparent;
      font-weight: bold; }
    #main_nav li a:hover, #main_nav li .active {
      color: #0f557e;
      border-bottom-style: solid;
      border-bottom-color: #be9740;
      border-bottom-width: bold; }
  #main_nav .dropdown .dropdown-menu {
    font-weight: normal; }
  #main_nav .dropdown a:hover {
    color: #be9740;
    color: #0f557e;
    border-bottom-style: none !important; }
  @media (max-width: 768px) {
    #main_nav .navbar-header > button {
      margin-top: 10px; } }
  @media (max-width: 767px) {
    #main_nav .navbar-header {
      height: 55px !important; } }
  @media (max-width: 991px) {
    #main_nav {
      background-color: white; } }

/*
#main_nav{
	position: absolute;
	width: 100%;
	//z-index: 10;
	//top: 0;
	//background-color: blue;

	ul{
		margin: auto;
		float: none;
	}
	li{
		color: black;
		display: inline-block;
		float: none;
		color: black;
		a{
			color: inherit;
			background-color: transparent;
			font-weight: bold;
		}
		a:hover, .active{
			color: #0f557e;
			border-bottom-style: solid;
			border-bottom-color: #be9740;
			border-bottom-width: bold;
		}
	}

	.dropdown{
		.dropdown-menu{
			font-weight: normal;
		}
		a:hover{
			color: #be9740;
			color: #0f557e;
			border-bottom-style: none !important;
		}
	}
	border-bottom-style: solid;
	border-bottom-width: thin;
	border-bottom-color: #CCC;

	.navbar-header{
		background-color: purple;
		>button{
			@media (max-width: $grid-float-breakpoint){
			    margin-top: 20px;
			}
		}
		@media (max-width: $grid-float-breakpoint){
		    height: 80px !important;
		}
	}

	@media (max-width: $screen-sm-max){
		background-color: white;
	}
}
*/
.main_nav_fixed {
  position: fixed !important;
  background-color: white !important;
  display: block !important; }

#photo_logo2 {
  text-align: center;
  padding: 16px 0 10px 0;
  padding: 1% 0 0.5% 0; }
  #photo_logo2 img {
    width: 162px;
    width: 8%; }
    @media screen and (max-width: 1599px) and (min-width: 1350px) {
      #photo_logo2 img {
        width: 10%; } }
    @media screen and (max-width: 1349px) and (min-width: 768px) {
      #photo_logo2 img {
        width: 10%; } }
    @media (max-width: 991px) and (min-width: 480px) {
      #photo_logo2 img {
        width: 15%;
        height: auto; } }
    @media (max-width: 767px) {
      #photo_logo2 img {
        width: 100px;
        height: auto; } }
  @media (max-width: 991px) and (min-width: 480px) {
    #photo_logo2 {
      padding: 2.5% 0 0.5% 0; } }
  @media (max-width: 767px) {
    #photo_logo2 {
      padding: 3.5% 0 0.5% 0;
      position: fixed;
      position: absolute;
      text-align: center;
      width: 100%; } }

.rules_list {
  text-align: left;
  list-style-image: url("../images/list_dot.png");
  width: 94%;
  margin: auto; }
  .rules_list li {
    margin-bottom: 2%; }
  .rules_list li:nth-child(even) {
    list-style-type: none;
    list-style-image: none;
    margin-bottom: 4%; }

  @media (max-width: 767px) {
    .rules_list {
      -webkit-padding-start: 0; } }

.list_bold > li:nth-child(odd) {
  font-weight: bold; }

.list_none > li:nth-child(even) {
  margin-bottom: 0; }

/*content via photodirector lightbox*/
.via_perfect {
  color: white; }
  @media (max-width: 991px) {
    .via_perfect {
      text-align: center; } }
  .via_perfect .download {
    color: #ffd200; }
    .via_perfect .download > img {
      width: 65px;
      height: 65px; }
      @media (max-width: 991px) {
        .via_perfect .download > img {
          clear: both;
          float: none;
          display: block;
          margin: 2% auto; } }
  .via_perfect .btn-white, .via_perfect .btn-back {
    background-color: #e87000;
    border: 1px solid #c86100;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    margin: 0 15px;
    padding: 6px 25px 6px 20px;
  }
  .via_perfect .btn-white:hover {
    background-color: #ff8200;
    border: 1px solid #e46e00;
  }
  .via_perfect .btn-white span {
    color: #fff;
  }
  .via_perfect .btn-back {
    background-color: #666;
    border: 1px solid #333;
    font-size: 20px;
  }
  .via_perfect .btn-back:hover {
    background-color: #555;
  }
  .via_perfect .download_button {
    margin: 20px auto;
  }
  .via_perfect .download_button > span, .via_perfect .download_button a.btn-white {
    display: inline-block;
    vertical-align: middle;
  }
    @media (max-width: 991px) {
      .via_perfect .btn-white {
        margin: 15px auto;
        clear: both;
        float: none;
        display: inline-block; } }
  .via_perfect .back_btn {
    text-align: center;
    margin: 5% auto; }
    .via_perfect .back_btn .btn-lg, .via_perfect .back_btn .btn-group-lg > .btn {
      padding: 2% 5%; }
  .via_perfect .purple {
    color: #3d96ff;
    text-decoration: underline;
  }
  .via_perfect .green {
    color: #56c4a7; }
  .via_perfect .circle, .via_perfect .circle_green {
    width: 50px;
    height: 50px;
    background-color: #0055c8;
    border-radius: 50px;
    line-height: 50px;
    vertical-align: middle;
    font-size: 30px;
    text-align: center;
    float: left;
    margin-right: 1%; }
    @media (max-width: 991px) {
      .via_perfect .circle, .via_perfect .circle_green {
        float: none;
        clear: both;
        margin: 30px auto 10px auto;
      }
    }
  .via_perfect .circle_green {
    background-color: #28856c; }
  .via_perfect .circle_text {
    font-size: 19px;
    margin-top: 15px; }
  .via_perfect span {
    color: #ffd200;
    display: inline-block; }
    .via_perfect span > a {
      color: #ffd200;
      text-decoration: underline; }
  .via_perfect .img {
    margin: 1.5% auto;
    width: 97%; }
  .via_perfect .img2 {
    width: 48%;
    margin: 1%;
    float: left; }

.photo_content_bottom {
  margin-bottom: 0 !important; }

#gallery_sort {
  min-height: auto !important;
}

@media screen and (max-width: 992px) and (min-width: 768px) {

}
@media screen and (max-width: 767px) {
  #content #gallery_sort {
    padding: 74px 0;
    padding-bottom: 20px;
  }
}

.block_tab {
  background: #eee;
  border-radius: 4px;
  position: relative;
  margin-bottom: 20px;
}
.block_tab .btn_custom, .block_tab .btn_custom:focus {
  color: #333;
  outline: none;
  transition: all .5s ease;
}
.block_tab .btn_custom {
  width: 1%;
  background-color: transparent;
  border-color: #ccc;
  border-width: 1px;
  border-style: solid;
  border-right: 0;
  cursor: pointer;
  display: table-cell;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  word-break: keep-all;
  /*white-space: nowrap;*/
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.block_tab .wow {
  width: calc(25% + 1px);
  height: 100%;
  display: block;
  border: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  position: absolute;
  top: 0;
  transition: all .4s ease;
}
.block_tab .btn-group > .btn_custom:first-child {

}

/*mobile*/
.block_tab.mobile {
  background: transparent;
  border-top: 1px solid #666;
  border-radius: 0;
  display: none;
}
.block_tab.mobile .btn_custom {
  border: 0;
  font-size: 16px;
  padding: 15px 5px;
}
.block_tab.mobile .btn-group:nth-child(2) {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.block_tab.mobile .btn-group > .btn_custom:last-child {

}

.block_tab.mobile .dropdown-content {
  width: 100%;
  top: calc(100% - 1px);
}

.block_tab.mobile .dropdown-content > li {
  text-align: center;
}

.block_tab.mobile .btn_custom {
  background: #eee;
}

.block_tab.mobile .btn_drop {
  background: #fff;
  border-top: 1px solid #ddd !important;
  border-bottom: 1px solid #ddd !important;
  font-size: 16px !important;
}
/*mobile end*/

.block_tab .tab_01.active,
.block_tab .tab_02.active,
.block_tab .tab_03.active,
.block_tab .tab_01:hover,
.block_tab .tab_02:hover,
.block_tab .tab_03:hover
{
  color: #fff;
}

.block_tab .tab_01.active, .block_tab .tab_01:hover {
  background: #30308b;
  border-color: #30308b;
  transition: background-color .2s ease, border-color .2s ease .1s;
}
.block_tab .tab_02.active, .block_tab .tab_02:hover {
  background: #882075;
  border-color: #882075;
  transition: background-color .2s ease, border-color .2s ease .1s;
}
.block_tab .tab_03.active, .block_tab .tab_03:hover {
  background: #228bd7;
  border-color: #228bd7;
  transition: background-color .2s ease, border-color .2s ease .1s;
}
.block_tab.mobile .tab_01:hover {
  transition: border-color .2s ease .0s;
}
.block_tab.mobile .tab_02:hover {
  transition: border-color .2s ease .0s;
}
.block_tab.mobile .tab_03:hover {
  transition: border-color .2s ease .0s;
}

/* Dropdown Button */
.block_tab .btn_drop, .block_tab .btn_drop:focus {
  background-color: #fff;
  color: #333;
  border: #ccc solid 1px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 12px;
}
.block_tab .btn_drop > strong, .block_tab .btn_drop > span {
  font-size: 14px;
  white-space: nowrap;
}

.block_tab.mobile .btn_drop, .block_tab.mobile .btn_drop:focus {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}


/* Dropdown Content (Hidden by Default) */
.block_tab .dropdown-content {
  width: 25%;
  min-width: 160px;
  display: none;
  background-color: #fff;
  border: #ccc 1px solid;
  border-radius: 4px;
  font-size: 14px;
  list-style: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  transition: all .3s ease;
  z-index: 1000;
}

.block_tab .dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.block_tab .dropdown-content a:hover
{
  background-color: #f1f1f1;
}

.block_tab .dropdown-content.active {
  display:block;
}

@media screen and (max-width: 767px) {
  .block_tab.desktop {
    display: none;
  }
  .block_tab.mobile {
    display: table;
  }
}

.gallery-col-3 {
  width: 65%;
  margin: auto;
  margin-bottom: 10vh;
  min-height: 100vh;
  text-align: center;
  -webkit-padding-start: 0 !important;
  list-style: none; }
  .gallery-col-3 > li {
    overflow: hidden;
    width: calc(99%/3);
    display: inline-block;
    vertical-align: top; }
    .gallery-col-3 > li .work {
      width: 96%;
      margin: 2%;
      vertical-align: top;
      display: inline-block;
      position: relative; }
      .gallery-col-3 > li .work img {
        width: 100%; }
      @media (max-width: 1199px) {
        .gallery-col-3 > li .work {
          width: 94%;
          margin: 2% 3%; } }
    .gallery-col-3 > li .state {
      top: 0;
      right: 0;
      position: absolute;
      padding-right: 10px; }
      .gallery-col-3 > li .state img {
        width: 18px;
        height: 18px;
        vertical-align: top;
        margin-top: 1px; }
      .gallery-col-3 > li .state li {
        display: inline-block;
        margin: 12px 2px;
        padding: 2px 6px;
        border-radius: 3px;
        background-color: rgba(255, 255, 255, 0.6);
        font-size: 16px;
        font-weight: bold; }
        .gallery-col-3 > li .state li > a {
          display: block;
          text-decoration: none;
          color: #333333; }
        .gallery-col-3 > li .state li > a:hover {
          color: #333333; }
    .gallery-col-3 > li .title {
      position: absolute;
      color: white;
      font-size: 14px;
      text-align: left;
      background-color: rgba(0, 0, 0, 0.5);
      bottom: 0;
      width: 100%;
      padding: 20px 20px 20px 20px; }

  .gallery-col-3 .hover_effect {
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    display: none; }
    .gallery-col-3 .hover_effect > a {
      display: block;
      overflow: hidden;
      width: 100%;
      height: 100%; }
  .gallery-col-3 .work:hover > .hover_effect {
    display: block; }
  @media (max-width: 1599px) and (min-width: 1350px) {
    .gallery-col-3 {
      width: 70%; } }

.gallery-col-2 {
  width: 88%;
  margin: auto;
  margin-bottom: 10vh;
  min-height: 100vh;
  text-align: center;
  -webkit-padding-start: 0 !important;
  list-style: none; }
  .gallery-col-2 > li {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    width: calc(98%/2); }
    .gallery-col-2 > li .work {
      width: 94%;
      margin: 2% 3%;
      vertical-align: top;
      display: inline-block;
      position: relative;
      cursor: pointer; }
      .gallery-col-2 > li .work img {
        width: 100%; }
    .gallery-col-2 > li .state {
      top: 0;
      right: 0;
      padding-right: 10px;
      display: block !important;
      position: relative;
      text-align: left;
      -webkit-padding-start: 0px !important; }
      .gallery-col-2 > li .state img {
        width: 18px;
        height: 18px; }
      .gallery-col-2 > li .state li {
        display: inline-block;
        margin: 10px 2px 3px 2px;
        padding: 0;
        border-radius: 3px;
        font-size: 16px;
        font-weight: bold; }
        @media (max-width: 767px) {
          .gallery-col-2 > li .state li {
            font-size: 10px;
            margin: 10px 0px 3px 0px;
            padding-right: 0px; } }
        .gallery-col-2 > li .state li > a {
          display: block;
          text-decoration: none;
          color: #333333; }
        .gallery-col-2 > li .state li > a:hover {
          color: #333333; }
      @media (max-width: 767px) {
        .gallery-col-2 > li .state {
          -webkit-padding-start: 0px !important; } }
    .gallery-col-2 > li .title {
      font-size: 14px;
      text-align: left;
      bottom: 0;
      width: 100%;
      position: relative;
      color: grey;
      padding: 0px;
      display: block !important; }
      @media (max-width: 767px) {
        .gallery-col-2 > li .title {
          padding: 0;
          font-size: 10px; } }
      .gallery-col-2 > li .title > div:nth-child(2) {
        display: none; }
  .gallery-col-2 .hover_effect {
    overflow: hidden;
    position: relative;
    top: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    display: block; }
    .gallery-col-2 .hover_effect > a {
      display: block;
      overflow: hidden;
      width: 100%;
      height: 100%; }
  .gallery-col-2 .work:hover > .hover_effect {
    display: block; }
  @media (max-width: 767px) {
    .gallery-col-2 {
      width: 96%; } }

/*.hover_link{
	display: block;
	overflow: hidden;
	//background-color: red;
	position: absolute;
    z-index: 199;
    width: 100%;
    height: 100%;
}
.hover_effect{
	//display: block;
	overflow: hidden;
	//background-color: rgba(255,255,0,0.5);
	position: absolute;
	top: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    display: none;

	@media (max-width: $screen-sm-max){
		display: block;
		//overflow: scroll;
		position: relative;
		//background-color: rgba(255,255,0,0.5);
		//position: relative;
	}

    >a{
		display: block;
		overflow: hidden;
		//background-color: red;
		//position: absolute;
	    //z-index: 199;
	    width: 100%;
	    height: 100%;
	    //background-color: rgba(255,0,0,0.5);
	    @media (max-width: $screen-sm-max){
			display: block;
			//overflow: scroll;

			background-color: rgba(255,0,0,0.5);
			//position: relative;
		}
	}
}
.work:hover{
	>.hover_effect{
		display: block;
	}
}

*/
#back_gallery {
  margin-top: 80px;
  height: 6vh;
  line-height: 6vh;
  vertical-align: middle;
  overflow: hidden;
  color: black;
  padding-left: 16vw;
  font-weight: bold; }
#back_gallery a.btn_back {
  color: #b38115;
  font-size: 17px;
}
#back_gallery a.btn_back:hover {
  color: #9f710c;
	text-decoration: none;
}

  #back_gallery a.btn_back .icon_back {
    width: 30px;
    height: 30px;
    background-image: url(../images/gallery_icon.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 3px;
    vertical-align: middle;
  }
  #back_gallery a.btn_back:hover .icon_back {
    background-position: -30px 0;
  }
  @media (max-width: 991px) and (min-width: 480px) {
    #back_gallery {
      padding-left: 3%;
      height: auto; } }
  @media (max-width: 767px) {
    #back_gallery {
      padding-left: 10px;
      height: auto; } }

#photo_main {
  width: 100% !important;
  padding: 1vh 0 5vh 0 !important;
  /*height: 77vh !important;*/
  /*background-color: #DDD;*/
  overflow: hidden;
  text-align: left !important; }
  #photo_main > div {
    display: inline-block;
    height: 76vh;
    vertical-align: top; }
    #photo_main .pic > div:nth-child(1), #photo_main .pic > div:nth-child(2) {
      width: auto;
      max-width: calc(49% - 40px);
      margin: 20px;
      overflow: hidden;
      display: inline-block;
      position: relative;
      height: auto;
      max-height: 36vh;
      text-align: center; }
      @media (max-width: 991px) and (min-width: 480px) {
        #photo_main .pic > div:nth-child(1), #photo_main .pic > div:nth-child(2) {
          width: 60%;
          max-height: none;
          margin: 20px auto;
          clear: both;
          float: none;
          display: block; } }
      @media (max-width: 767px) {
        #photo_main .pic > div:nth-child(1), #photo_main .pic > div:nth-child(2) {
          width: 86%;
          max-width: none;
          max-height: none;
          margin: 20px auto;
          clear: both;
          float: none;
          display: block; } }
      #photo_main .pic > div:nth-child(1) > img, #photo_main .pic > div:nth-child(2) > img {
        width: 100%;
        width: auto;
        height: auto;
        max-height: 36vh;
        max-width: 100%; }
        @media (max-width: 991px) {
          #photo_main .pic > div:nth-child(1) > img, #photo_main .pic > div:nth-child(2) > img {
            width: 100%;
            height: auto;
            max-height: none; } }
    #photo_main .pic > div:nth-child(1) {
     }
    #photo_main .pic > div:nth-child(2) {
     }
    @media (max-width: 991px) {
      #photo_main > div {
        height: auto; } }
  #photo_main > div:nth-child(1) {
    width: 15vw;
    text-align: right; }
    @media (max-width: 991px) and (min-width: 480px) {
      #photo_main > div:nth-child(1) {
        position: absolute;
        left: 0;
        top: 35%; } }
    @media (max-width: 767px) {
      #photo_main > div:nth-child(1) {
        display: none; } }
    #photo_main > div:nth-child(1) a.arrow_left {
      width: 50px;
      height: 70px;
      background-image: url(../images/arrow_left.png);
      background-position: 0 0;
      background-repeat: no-repeat;
      display: none;
      margin: 60% 10% 0 0;
      text-indent: 9999999px;
    }
    #photo_main > div:nth-child(1) a.arrow_left:hover {
      background-position: -50px 0;
    }
  #photo_main > div:nth-child(3) {
    width: 15vw; }
    @media (max-width: 991px) and (min-width: 480px) {
      #photo_main > div:nth-child(3) {
        position: absolute;
        right: 0;
        top: 35%; } }
    @media (max-width: 767px) {
      #photo_main > div:nth-child(3) {
        display: none; } }
    #photo_main > div:nth-child(3) a.arrow_right {
      width: 50px;
      height: 70px;
      background-image: url(../images/arrow_right.png);
      background-position: 0 0;
      background-repeat: no-repeat;
      display: none;
      margin: 60% 0 0 10%;
      text-indent: -9999999px;
    }
    #photo_main > div:nth-child(3) a.arrow_right:hover {
      background-position: -50px 0;
    }
  #photo_main > div:nth-child(2) {
    width: 70vw;
    padding: 1%;
    /*background-color: #f7f7f7;*/ }
    @media (max-width: 991px) and (min-width: 480px) {
      #photo_main > div:nth-child(2) {
        padding: 2% 1%; } }
    @media (max-width: 480px) {
      #photo_main > div:nth-child(2) {
        height: auto !important; } }
  #photo_main .pic > div > span {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 5px 10px;
    margin: 2%;
    color: white;
    position: absolute;
    max-height: 32px;
    overflow: hidden; }
    #photo_main .pic > div > span a {
      color: white;
      text-decoration: none; }
    #photo_main .pic > div > span img {
      width: auto;
      height: auto;
      max-height: 22px; }
    @media (max-width: 767px) {
      #photo_main .pic > div > span {
        font-size: 14px; } }
  #photo_main .pic > div > span:nth-child(2) {
    right: 0;
    font-weight: bold;
    cursor: pointer; }
    @media (max-width: 991px) and (min-width: 480px) {
      #photo_main .pic > div > span:nth-child(2) {
        margin-left: 16%; } }
    @media (max-width: 767px) and (min-width: 321px) {
      #photo_main .pic > div > span:nth-child(2) {
        margin-left: 20%; } }
    @media (max-width: 320px) {
      #photo_main .pic > div > span:nth-child(2) {
        margin-left: 25%; } }
  #photo_main h4 {
    text-align: left; }
  #photo_main .tag {
    background-color: #30308b; }
  #photo_main .tag2 {
    background-color: #6e155d; }
  #photo_main .tag3 {
    background-color: #228bd7; }
  #photo_main .text {
    font-size: 20px; }
    @media (max-width: 767px) {
      #photo_main .text {
        font-size: 14px; } }
  #photo_main .left {
    padding: 0% 1%; }
    @media (max-width: 767px) {
      #photo_main .left {
        margin-bottom: 1%;
        padding: 0% 15px; } }
  #photo_main .break {
    width: 100%;
    float: left;
    clear: both;
	font-size: 14px;}
  #photo_main .btn-fb, #photo_main .btn-vote {
    float: right; }
    #photo_main .btn-fb img, #photo_main .btn-vote img {
      width: 25px;
      height: 25px;
      vertical-align: middle; }
    @media (max-width: 767px) {
      #photo_main .btn-fb, #photo_main .btn-vote {
        float: none;
        clear: both;
        display: block;
        font-size: 14px; } }
  #photo_main .btn-vote {
    margin-right: 0.5%; }
  #photo_main .btn-fb-pc {
    display: block;
    outline: none;
  }
  #photo_main .btn-fb-pc span {
    display: inline-block;
    padding-left: 3px;
    vertical-align: middle;
  }
    @media (max-width: 767px) {
      #photo_main .btn-fb-pc {
        display: none; } }
  #photo_main .btn-fb-m {
    display: none; }
    @media (max-width: 767px) {
      #photo_main .btn-fb-m {
        display: block;
        margin-top: 5%; } }
  #photo_main hr {
    margin: 10px 1%;
    border: 0;
    /*border-top: 1px solid black;*/ }
    @media (max-width: 991px) and (min-width: 480px) {
      #photo_main hr {
        margin-top: 25px;
        margin-bottom: 15px; } }
    @media (max-width: 767px) {
      #photo_main hr {
        margin: 10px 15px; } }
  #photo_main .container_custom {
    padding: 0 10px;
  }
  #photo_main .vote_bar {
    display: none;
    margin-bottom: 5px;
    margin: 0 6px 5px 6px; }
    #photo_main .vote_bar li {
      display: inline-block;
      margin-right: 10px;
      width: 30px;
      height: 30px;
      cursor: pointer; }

    #photo_main .vote_bar .alert-dismissible {
      margin-bottom: 10px; }
    #photo_main .vote_bar .alert strong {
      float: left;
    }
    #photo_main .vote_bar .close {
      background-color: #0f557e;
      top: 0;
      right: 0;
      color: white;
      opacity: 0.6;
      padding-bottom: 3px;
      padding-right: 3px;
      padding-left: 3px;
      border-radius: 4px; }
      #photo_main .vote_bar .close span {
        border-radius: 4px; }
    #photo_main .vote_bar .alert {
      padding: 10px 10px; }
    #photo_main .vote_bar .alert-info {
      color: #0f557e; }
    @media (max-width: 767px) {
      #photo_main .vote_bar {
        display: block;
        -webkit-padding-start: 0px !important;
        margin-bottom: 0;
      }
      #photo_main .vote_bar .btn-fb-pc {
        display: inline-block;
      }
    }
  #photo_main .state {
    top: 0;
    right: 0;
    float: right;
    padding-right: 10px;
  }
    #photo_main .state img {
      width: 18px;
      height: 18px; }
    #photo_main .state li {
      display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
      border: solid 1px #fff;
      font-size: 16px;
      color: #fff;
      font-weight: bold; }
      @media (max-width: 991px) and (min-width: 480px) {
        #photo_main .state li {
        } }
      @media (max-width: 767px) {
        #photo_main .state li {
          font-size: 14px;
          border-style: none;
          padding: 2px 6px 2px 0px; } }
    #photo_main .state .no_style {
      border-style: none; }
      #photo_main .state .no_style > a.btn_dz {
        text-decoration: underline;
      }
      @media (max-width: 991px) {
        #photo_main .state .no_style {
          display: none; } }
    @media (max-width: 991px) and (min-width: 480px) {
      #photo_main .state {
        position: relative;
        text-align: left;
        -webkit-padding-start: 10px !important; } }
    @media (max-width: 767px) {
      #photo_main .state {
        -webkit-padding-start: 0px !important;
        float: left;
        clear: both;
        margin: 5px 15px; } }
  @media (min-width: 480px) {
    #photo_main .photo_control_next {
      display: none; } }
  #photo_main .photo_control_next li > a {
    background-color: #0f557e;
    color: white;
    min-width: 107px; }
  @media (max-width: 991px) {
    #photo_main {
      height: auto !important; }
      #photo_main > div:nth-child(2) {
        width: 100vw; } }

  #photo_main .pic {
    text-align: center;
  }
  #photo_main .pic > div.photo_after.only {
    width:auto;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
  }
  #photo_main .pic > div.photo_before.none {
    display: none;
  }

#form {
  background-image: url(../images/section1_bg.jpg);
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-attachment: fixed;
  background-position: top center !important;
}
#form.submit_end {
  min-height: 615px;
}
#form.submit_end h1 {
  margin-top: 60px;
}
#form.submit_end .wrapper {
  max-width: 770px;
  margin: 60px auto;
}
#form.submit_end .title {
  color: #b6800a;
  font-size: 40px;
}
#form.submit_end p {
  font-size: 20px;
  line-height: 30px !important;
  margin-bottom: 30px;
}
#form.submit_end p:first-child {
  font-size: 20px;
}
@media screen and (max-width: 991px) {
  #form {
    height: 100% !important;
  }
}
@media screen and (max-width: 600px) {
  #form.submit_end .title {
    font-size: 36px;
  }
}
#form form {
  width: 90%;
  margin: auto;
  text-align: left;
}
#form form .control-label {
  font-size: 18px;
  padding-right: 0;
}
.terms_check {
  display: table;
  margin-bottom: 10px;
}
.terms_check a {
  text-decoration:underline;
}
.phd_form .terms_check {
  margin-bottom: 0;
}
.terms_check input, .terms_check .txt {
  display: table-cell;
  vertical-align: top;
}
.terms_check input[type=checkbox] {
  margin: 6px 0 0;
}
.terms_check .txt {
  padding-left: 5px;
}
.terms_check, #form form .terms_check > label {
  font-weight: normal;
}
#specific .notice_area {
  background-color: rgba(254, 0, 0, .1);
  padding: 5px 8px;
  margin-left: -8px;
}
#form form .form-group.first {
  margin-bottom: 0;
}
#form p {
  line-height: 22px !important;
}
#form .alert_message {
  color: #b4040c;
 }
  #form .alert_message span {

  }
#form .terms_align {
  text-align: center;
}
#form #helpBlock {
  color: #333;
  margin: 5px 0;
}
#form .btn_submit {
  background-color: #1f1f1f;
  color: #ffde00;
  outline: none;
  transition: background-color .25s ease;
}
#form .btn_submit:hover {
  background-color: #131313;
}
@media screen and (max-width: 768px) {
  #form form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #form .terms_align {
    text-align: left;
  }
}

@media (max-width: 991px) {
  #retouching_pc {
    display: none; } }

#retouching_mobile > div label {
  float: left;
  text-align: left; }

#retouching_mobile > div input {
  float: left; }

.control_categories {
  /* overflow: hidden;
  background-color: #EEE;
  width: 100%;
  margin: 2% auto;
  margin-bottom: 30px;
  padding: 4%;
  border-radius: 4px;  */
}
  @media (max-width: 991px) {
    .control_categories {
      width: 100%; } }

#news_from .col-sm-9 {
  float: right; }
  @media (max-width: 767px) {
    #news_from .col-sm-9 {
      float: none; } }

.modal {
  z-index: 10000 !important; }
  .modal h4 {
    margin-bottom: 0; }

.choose_cate span {
  font-weight: normal;
  display: block;
}
.choose_cate label {
  font-weight: bold;
  margin: 5px 0;
}
.choose_cate .perfect {
  color: #30308b;
}
.choose_cate .little_planet {
  color: #6e155d;
}
.choose_cate .motion_stills {
  color: #228bd7;
}

.lightbox-fixed {
  width: 100vw;
  min-height: 100%;
  height: auto;
  z-index: 10000;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.85);
  overflow: scroll;
  overflow-x: hidden; }

.fancy {
  /* Point 1: animation 0.3秒 */
  transition: all 0.5s ease-in-out;
  /* Point 2: 出現之前的長相 */
  border-color: transparent;
  top: -100%; }

.fancy:target {
  /* Point 3: 出現之後的長相 */
  border-color: #CCC;
  top: 0; }

#pending {
  display: block;
  height: 0;
  position: absolute; }

.lightbox-target {
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  position: absolute;
  z-index: 10001;
  margin-left: 0 !important;
  margin-right: 0 !important; }
  .lightbox-target .lightbox-content {
    width: 60%;
    margin: 10vh auto 5vh auto;
    padding: 0 5%;
    height: auto;
    float: none; }
    .lightbox-target .lightbox-content > img {
      width: 100%;
      height: auto; }
    .lightbox-target .lightbox-content > div {
      overflow: hidden; }
    @media screen and (max-width: 1599px) and (min-width: 1350px) {
      .lightbox-target .lightbox-content {
        padding: 0; } }
    @media screen and (max-width: 1349px) and (min-width: 768px) {
      .lightbox-target .lightbox-content {
        width: 78%;
        padding: 0; } }
    @media (max-width: 991px) {
      .lightbox-target .lightbox-content {
        width: 90%; } }
  .lightbox-target .close {
    font-size: 50px;
    color: white;
    top: 2%;
    right: 5%;
    position: absolute;
    opacity: 0.5; }

.dismiss {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block; }

/*#pure_lightbox, #via_phd, #via_phd2, #via_phd_m, #via_phd_express{
    //opacity: 0;
    //transition: all 0.5s ease-in-out ;
    //transition: opacity .8s ease;
    display: none;
}
#pure_lightbox:target, #via_phd:target, #via_phd2:target, #via_phd_m:target, #via_phd_express:target{
    //opacity: 1;
    display: block;
}*/
#prizes h2 {
  font-size: 32px;
  line-height: normal;
}
#prizes .prize_area {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}
#prizes .prize_area:last-child {
  margin-bottom: 0;
}
#prizes .prize_area .inner {
  /* max-width: 50%; */
  display: inline-block;
}
#prizes .prize_area .item {
  /* width: 40%; */
  max-width: 200px;
  display: inline-block;
  margin: 0 15px;
  margin-bottom: 30px;
  text-align: center;
  vertical-align: top;
}
#prizes .prize_area .item.w430 {
  max-width: 430px
}
/* #prizes .prize_area .item:first-child {
  margin-left: 0;
}
#prizes .prize_area .item:last-child {
  margin-right: 0;
} */
#prizes .prize_area .item img {
  margin-bottom: 10px;
}
#prizes .prize_area .item p {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
#prizes .prize_area .item p.smaller {
  font-size: 15px;
}
#prizes.winners {
  padding: 60px 20%;
}

@media screen and (max-width: 992px) {
  #prizes h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 510px) {
  #prizes .prize_area .item {
    width: 42%;
    margin: 0 10px;
    margin-bottom: 20px;
  }
  #prizes .prize_area .item p {
    font-size: 14px;
  }
  #prizes .prize_area .item.w430 {
    width: 84%;
  }
}

.reward_list {
  width: 100%;
  margin-bottom: 80px;
}
.reward_list .table {
  width: 80%;
  border-bottom: 1px solid #ddd;
  display: table;
  margin: 0 auto;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.reward_list .table_cell {
  display: table-cell;
  vertical-align: middle;
  line-height: normal;
  padding-left: 15px;
  text-align: left;
}
.reward_list .title {
  width: 40%;
}
.reward_list .title p, .reward_list .title img {
  vertical-align: middle;
}
.reward_list .title p {
  font-weight: bold;
  display: inline-block;
  font-size: 24px;
  margin: 0;
}
.reward_list .product {
  font-size: 20px;
}
@media screen and (max-width: 1024px){
  .reward_list .table {
    width: 100%;
  }
}
@media screen and (max-width: 992px){
  .reward_list .title p {
    font-size: 22px;
  }
  .reward_list .product {
    font-size: 16px;
  }
  .reward_list .table_cell {
    display: block;
    text-align: center;
  }
  .reward_list .title {
    width: 100%;
  }
}
#note_line {
  background-color: rgba(255, 255, 255, 0);
  height: auto;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #96ddeb; }
  #note_line font {
    font-size: 13px;
    color: #ea5959;
    font-weight: bold; }
  @media screen and (max-width: 767px) {
    #note_line {
      width: 100%; } }

#list_prize {
  width: 80%;
  margin: auto;

  text-align: left;
  float: none;
  margin-top: 5%; }
  @media screen and (max-width: 991px) {
    #list_prize {
      font-size: 15px;
      line-height: 18px;
      width: 90%; } }
  #list_prize > div:nth-child(3n+1) {
    width: 52%;
    float: left;
    font-weight: bold;
    margin-right: 5%;
    margin-bottom: 2%; }
    @media screen and (max-width: 767px) {
      #list_prize > div:nth-child(3n+1) {
        font-size: 15px;
        line-height: 18px;
        width: 100%;
        float: none; } }
  #list_prize > div:nth-child(3n+2) {
    width: 40%;
    float: left;
    margin-bottom: 2%; }
    @media screen and (max-width: 767px) {
      #list_prize > div:nth-child(3n+2) {
        width: 100%;
        float: none; } }
  #list_prize > div:nth-child(3n) {
    clear: both;
    background-color: #96ddeb;
    height: 1px;
    margin-bottom: 5%; }
    @media screen and (max-width: 767px) {
      #list_prize > div:nth-child(3n) {
        margin-bottom: 10%; } }

#list_prize2 {
  width: 70%;
  margin: auto;
  text-align: center;
  float: none;
  margin-top: 5%; }
  @media screen and (max-width: 767px) {
    #list_prize2 {
      font-size: 15px;
      line-height: 18px;
      width: 90%; } }
  #list_prize2 > div:nth-child(odd) {
    width: 90%;
    float: none;
    margin: auto;
    margin-bottom: 2%; }
  #list_prize2 > div:nth-child(even) {
    clear: both;
    background-color: #96ddeb;
    height: 1px;
    margin-bottom: 5%; }
    @media screen and (max-width: 767px) {
      #list_prize2 > div:nth-child(even) {
        margin-bottom: 10%; } }


#tips {
  background-image: url(../images/section7_bg.jpg);
  background-position: right top;
}
#tips h3 {
  color: #222;
}
#tips h4 {
  font-size: 22px;
  text-align: center;
}
#tips .border {
  width: 75%;
  height: 1px;
  background-color: #ccc;
  margin: 0 auto;
}
#tips .phd_subtitle {
  color: #ac7600;
  font-family: "Gotham Medium", "source-han-sans-traditional", "Meiryo", "Noto_Sans_TC", sans-serif;
  font-size: 18px;
}
#tips .block {
  border-radius: 4px;
  padding: 1%;
  margin: 0 auto 4% auto;
  display: block;
}

#tips .tips-btn a, #tips .tips-btn button {
  background-color: #1f1f1f;
  border-radius: 5px;
  color: #ffde00;
  float: none;
  font-size: 18px;
  margin: 0;
  padding: 6px 30px 6px 26px;
  transition: background-color .25s ease;
}
#tips .tips-btn button {
  outline: none;
  padding: 6px 80px;
}
#tips .tips-btn a:hover, #tips .tips-btn button:hover {
  background-color: #131313;
}

#tips.free_end .tips > div:nth-child(2) {
  width: 50%;
}
@media screen and (max-width: 991px) {
  #tips .block {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #tips .block {
    width: 100%;
  }
}
  #tips .block p {
    font-size: 16px;
    line-height: 24px;
  }
  #tips .grey_bg_single {
    background-color: #fefefe;
    border: solid 1px #ccc;
    border-radius: 4px;
    margin: 1% !important;
    margin-bottom: 3% !important; }
    @media screen and (max-width: 991px) {
      #tips .grey_bg_single {
        margin: auto !important;
        display: block; } }
  #tips .grey_bg {
    background-color: #fefefe;
    padding: 20px;
    min-height: 400px;
  }
  #tips .grey_bg a {
    max-width: 470px;
    display: inline-block;
  }
  @media screen and (max-width: 991px) {
    #tips .grey_bg {
      min-height: 0;
    }
  }
  #tips .grey_border_left {
    border: solid 1px #ccc;
    border-right: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }
    @media screen and (max-width: 991px) {
      #tips .grey_border_left {
        border-right: solid 1px #ccc;
        border-radius: 4px;
      }
    }
  #tips .grey_border_center {
    border: solid 1px #ccc;
    border-right: 0;
    border-left: 0;
  }
  @media screen and (max-width: 991px) {
    #tips .grey_border_center {
      border-right: solid 1px #ccc;
      border-left: solid 1px #ccc;
      border-radius: 4px;
    }
  }
  #tips .grey_border_right {
    border: solid 1px #ccc;
    border-left: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px; }
    @media screen and (max-width: 991px) {
      #tips .grey_border_right {
        border-left: solid 1px #ccc;
        border-radius: 4px;
      }
    }
  #tips .tips-3 > div {
    width: calc(99.9%/3);
    display: inline-block;
    vertical-align: bottom;
  }
    @media screen and (max-width: 991px) {
      #tips .tips-3 > div {
        display: block;
        width: 100%; } }
  #tips .tips-3 img {
    width: 100%;
    margin-bottom: 10px; }
  #tips .tips-3 .tips-wrap {
    overflow: hidden;
    height: 150px; }
    @media screen and (max-width: 1200px) {
      #tips .tips-3 .tips-wrap {
        height: 175px; } }
    @media screen and (max-width: 991px) {
      #tips .tips-3 .tips-wrap {
        height: auto; } }
  #tips .tips {
    display: table;
    overflow: hidden;
    width: 96%;
    margin: auto;
    padding: 12px 0;
  }
  #tips .tips .intro {
    margin-bottom: 25px;
  }
  #tips .steps {
    width: 96%;
    margin: auto;
    padding: 20px 0;
  }
  #tips .steps .table {
    width: 100%;
    display: table;
  }
  #tips .steps .table_cell {
    width: 33.33%;
    color: #131313;
    display: table-cell;
    background-image: url(../images/step_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 10px;
    padding-left: 20px;
    vertical-align: top;
  }
  @media screen and (max-width:991px) {
    #tips .steps .table_cell {
      width: 220px;
      display: block;
      /* background-image: url(../images/step_arrow_2.png); */
      margin: 0 auto;
    }
  }
  #tips .steps .table_cell .number {
    color: #265fae;
    font-family: "Gotham Medium", "source-han-sans-traditional", "Meiryo", "Noto_Sans_TC", sans-serif;
    font-size: 44px;
    font-weight: lighter;
  }
  #tips .steps .table_cell .info {
    font-size: 16px;
  }
  #tips .steps h4 {
    font-size: 20px;
    margin-top: 0;
  }
  #tips .phd_form {
    /* border-radius: 15px;
    border: 2px solid #d5a53c; */
    padding: 30px;
    padding-top: 20px;
    text-align: left;
  }
  #tips .phd_form h3 {
    margin-top: 0;
  }
  #tips .phd_form h4 {
    margin-bottom: 10px;
    line-height: normal;
  }
  #tips .phd_form > p {
    margin-bottom: 20px;
    text-align: center;
  }
  #tips .phd_form form {
    width: 85%;
    margin: 0 auto;
  }
  #tips .phd_form form .form-group {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  #tips .phd_form form .left, #tips .phd_form form .right {
    display: inline-block;
    vertical-align: top;
  }
  #tips .phd_form form .left {
    min-width: 70px;
    padding-right: 15px;
    text-align: right;
  }
  #tips .phd_form form .right {
    width: 75%;
    text-align: left;
  }
  #tips .phd_form form #specific .notice_area {
    margin-left: 0;
  }

  #tips .phd_form form .alert_message {
    color: #b4040c;
  }

  #tips .phd_form .tips-btn {
    text-align: center;
  }

  @media screen and (max-width: 992px) {
    #tips .phd_form {
      padding: 20px 15px;
    }
    #tips .phd_form form {
      width: 100%;
    }
  }
  @media screen and (max-width: 991px) {
    #tips p.tips-btn {
      text-align: center;
    }
  }
  @media screen and (max-width: 768px) {
    #tips .phd_form form {
      width: 90%;
    }
    #tips .phd_form form .left, #tips .phd_form form .right {
      width: auto;
      display: block;
    }
    #tips .phd_form form .left {
      text-align: left;
    }
    #tips .tips-btn button {
      padding: 6px 10vw;
    }
  }

#tips .tips > div:nth-child(odd) {
  border-radius: 10px;
  width: 37%;
  float: left;
  text-align: center;
  padding: 1%;
  margin: auto; }
  #tips .tips > div:nth-child(odd) > a > img {
    border-radius: 4px;
    width: 100%; }
#tips .tips > div:nth-child(even) {
  width: 61%;
  float: left;
  text-align: left;
  padding: 1%;
  border-radius: 10px;
  margin-left: 2%;
}
#tips .tips > div.table_cell {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  #tips .tips > div:nth-child(even), #tips.free_end .tips > div:nth-child(2) {
    width: 98%;
    padding: 20px 30px;
    float: none;
    margin: auto;
  }
  #tips .tips > div:nth-child(odd) {
    width: 86%;
    padding: 10px 30px;
    clear: both;
    margin: auto;
    float: none;
  }
  #tips .tips > div.table_cell {
    display: block;
  }

}
#tips .long_text {
  width: 100%;
}
#tips .btn_tips {
  background-color: #1f1f1f;
  color: #ffde00;
  font-size: 16px;
  outline: none;
  white-space: inherit;
  transition: background-color .25s ease;
}
#tips .btn_tips:hover {
  background-color: #131313;
}


#bottom_language {
  color: #9a9a9a;
  height: 36px;
  margin: 10px 0;
  text-align: left; }
  @media (max-device-width: 767px) {
    #bottom_language {
      height: auto; } }
  #bottom_language .form-control {
    width: auto;
    float: left;
    padding: 2px;
    height: 28px;
    font-size: 14px; }
  #bottom_language object {
    width: 24px;
    height: 24px;
    margin-top: 1px; }
  #bottom_language span {
    float: left;
    width: 25px;
    height: 25px;
    margin-right: 10px; }
  #bottom_language select {
    margin-right: 30px;
    margin-bottom: 10px; }
  #bottom_language .wrap_spnosor {
    float: left;
    display: inline-block;
    overflow: hidden; }
    @media (max-device-width: 767px) {
      #bottom_language .wrap_spnosor {
        display: block;
        float: none;
        clear: both; } }

#main_btn {
  -webkit-padding-start: 0;
  margin: auto; }
  #main_btn > li {
    display: inline-block;
    margin: 1%; }
    @media (max-width: 767px) {
      #main_btn > li {
        margin: 2% 1%; } }
    @media (max-device-width: 767px) {
      #main_btn > li {
        display: block;
        margin: 2% 1%; } }
  #main_btn .btn {
    padding: 8px 36px;
    font-size: 20px;
    min-width: 158px; }
    @media screen and (max-width: 1349px) and (min-width: 768px) {
      #main_btn .btn {
        padding: 5px 20px;
        min-width: 130px; } }
    @media (max-width: 991px) and (min-width: 480px) {
      #main_btn .btn {
        padding: 5px 20px;
        min-width: 140px; } }
    @media (max-width: 767px) {
      #main_btn .btn {
        font-size: 14px;
        margin: 0; } }
    @media (max-device-width: 767px) {
      #main_btn .btn {
        width: 50%;
        font-size: 14px;
        margin: 0; } }

#content.rules .info {
  padding-top: 30px;
}

@media screen and (width: 1024px) and (height: 1366px) {
  #content.rules section {
    min-height: 30vh;
    background-attachment: scroll !important;
    padding: 0;
  }
}
.btn-fb {
  color: #fff;
  background-color: #3b5997;
  outline: 0;
}
.btn-fb:hover {
  color: #fff;
  background-color: #2b4986;
}
.btn-vote {
  color: #fff;
  background-color: #eb4954;
  border-color: #e8323e;
  outline: 0;
}
.btn-vote:hover, .btn-vote:focus {
  color: #fff;
  background-color: #e61b29;
  border-color: #c71622;
}
.btn-vote.voted {
  background-color: #888;
  border-color: #888;
}

#tips.p_free_2 {
  height:100vh;
}

@media screen and (max-width: 991px) {
  #tips.p_free_2 {
    height:auto;
    padding-bottom: 40px;
  }
}


#loading {
  width: 100vw;
  height: 100vh;
  background-color: #131313;
  display: table;
  position: fixed;
  left: 0;
  top: 0;
  text-align: center;
  z-index: 999;
}

#loading:before {
  content:"";
  width: 0;
  height: 100%;
  display: table-cell;
  position: relative;
  vertical-align: middle;
}

#loading .inner {
  color: #fff;
  display: table-cell;
  font-size: 28px;
  position: relative;
  vertical-align: middle;
}

#loading .space {
  height: 15px;
}
#loading .logo_ilc {
  width: 98%;
  display: block;
  margin: 0 auto;
}

#loading .loader {
  width: 60px;
  height: 60px;
  border: 10px solid rgba(255,255,255,.3);
  border-top: 10px solid #d5a53c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;

}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (max-width: 480px) {
  #loading .loader {
    border: 8px solid rgba(255,255,255,.3);
    border-top: 8px solid #d5a53c;
    width: 50px;
    height: 50px;
  }
}


#winners-bg {
  background-attachment: fixed;
  background-image: url(../images/bg_winners.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  /* background-size: cover; */
  margin-top: 70px;
  padding: 160px 0;
  text-align: center;
}
#winners-bg h1 {
  color: #fff;
  display: inline-block;
  font-size: 64px;
  font-weight: 600;
  margin: 0;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  vertical-align: middle;
}
.win_list {
  overflow: hidden;
  width: 90%;
  margin: 20px auto;
}
.win_list .subject_title {
}
.win_list .separate_line {
  height: 1px;
  background-color: #ccc;
  margin: 50px 0;
}
.win_list .pic img {
  width: 40px;
  height: auto;
  display: inline-block;
}
.win_list .title {
  margin: 20px 10px;
}
.win_list .title strong, .win_list span {
  display: inline-block;
  line-height: normal;
  vertical-align: bottom;
}
.win_list span {
  font-size: 16px;
}
.win_list span.sub_text {
  margin-left: 5px;
  padding-top: 10px;
}
.win_list span.special_region {
  color: #333;
  display: block;
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
}
.win_list .title strong {
  font-size: 30px;
  line-height: 30px;
}
.winners_block {
  width: 90%;
  margin: 0 auto;
}
.winners_block .btn_pic {
  width: 100%;
  display: table;
}
.winners_block .btn_pic > div {
  width: 50%;
  display: table-cell;
  padding: 0 5px;
  position: relative;
  vertical-align: middle;
}
.winners_block .btn_pic > div > span, .winners_block .btn_pic > div > div > span {
  background-color: rgba(0,0,0,.5);
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  line-height: 16px;;
  padding: 6px;
  position: absolute;
  left: 12px;
  top: 7px;
}

.winners_block .btn_pic img {
  display: block;
  width: 100%;
  height: auto;
}
.winners_block .winners_txt {
  text-align: center;
}
.winners .brief {
  margin-bottom: 30px;
}
.winners {
  padding: 50px 10% !important;
}

.subject_title {
  font-size: 32px;
  line-height: normal;
}
.winners_txt h2 {
  color: #b6800a;
  font-size: 30px;
  font-weight: 600;
}
.winners .merit-list ul {
  width: 90%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.winners .merit-list ul li {
  border-bottom: 1px solid #ddd;
}
.winners .merit-list ul li a {
  width: 100%;
  background-color: transparent;
  color: #333;
  display: table;
  padding: 10px 15px;
  text-align: left;
  text-decoration: none;
  -webkit-transition: background-color ease .4s;
  -moz-transition: background-color ease .4s;
  transition: background-color ease .4s;
}
.winners .merit-list ul li a:hover {
  background-color: #dde9fe;
}
.winners .merit-list ul h2, .winners .merit-list ul h3 {
  display: table-cell;
  margin: 0;
  vertical-align: middle;
}
.winners .merit-list ul h2 {
  width: 70%;
  color: #333;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-right: 5px;
}
.winners .merit-list ul h3 {
  width: 30%;
  font-size: 18px;
  font-weight: normal;
  text-align: right;
}
.winners p {
  width: 90%;
  line-height: 22px;
  margin: 0 auto;
}
.winners_txt p {
  width: 100%;
  margin: 0;
}
.winners .statement {
  margin: 20px auto;
}
#content > #area_a_f {
  background: #f6f6f6;
  padding: 30px 10%;
}
@media screen and (max-width:992px) {
  .winners p {
    width: 100%;
  }
  .win_list span.sub_text {
    display: block;
    line-height: 16px;
  }
}
@media screen and (max-width:768px) {
  .winners {
    padding: 30px 5% !important;
  }
  .winners_block .btn_pic > div {
    width: 100% !important;
    display: block;
    padding: 5px;
  }
  .winners_block .btn_pic > div > span {
    top: 12px;
  }
  .winners_block .btn_pic > div > div > span {
    left: 7px;
  }
  .win_list {
    width: 100%;
  }
}
@media screen and (max-width:650px) {
  .winners {
    padding: 20px !important;
  }
  .winners .merit-list ul h2, .winners .merit-list ul h3 {
    width: 100%;
    display: block;
    text-align: center;
  }
  .winners .merit-list ul h2 {
    margin-bottom: 6px;
  }
}


/*ba slider*/
.imgpo {
    position: relative;
    margin-top: 10p;
    background: #000;
    padding: 10px;
    margin-bottom: 10px;
}
.b_before {
    position: absolute;
    right: 52%;
    color: #fff;
    top: 5px;
    font-size: 13px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7), 0px 0px 6px rgba(0, 0, 0, 0.7);
}
.b_after {
    position: absolute;
    top: 5px;
    left: 52%;
    font-size: 13px;
    color: #fff;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7), 0px 0px 6px rgba(0, 0, 0, 0.7);
}

.photo_control_next{display:none;}