/*
Theme Name: Polo
Theme URI: http://themewagon.com/demo/polo-responsive-app-landing-page-template
Author: ThemeWagon
Author URI: http://themewagon.com/
Description: One page app landing HTML5 CSS3 template powered by Bootstrap 3.
Version: 2.0
License: MPL v2.0
License URI: https://www.mozilla.org/MPL/2.0/
Tags: green, white, responsive-layout, one page, full-width-template
Text Domain: polo
*/

/**
* Table of Contents:
*
* 01.0 - Custom Fonts
* 02.0 - Global
* 03.0 - Side Menu
* 04.0 - Preloader
* 05.0 - Header
* 06.0 - Banner
* 07.0 - Features
* 08.0 - Gallery
* 09.0 - Team Member
* 10.0 - Testimonial
* 11.0 - Subscribe
* 12.0 - Contact us
* 13.0 - Footer
* 14.0 - Responsive Fixes
* -----------------------------------------------------------------------------
*/


/* /////////////////////////////////////////////////////////////////////
//  01 - Custom Fonts
/////////////////////////////////////////////////////////////////////*/


@font-face {
    font-family: 'caviar_dreams';
    src: url('../../fonts/CaviarDreams-webfont.woff2') format('woff2'),
         url('../../fonts/CaviarDreams-webfont.woff') format('woff'),
         url('../../fonts/CaviarDreams-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

/* /////////////////////////////////////////////////////////////////////
//  02 - Global
/////////////////////////////////////////////////////////////////////*/

* {
    outline: none !important;
}

body {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    color: #222;

}
h1, h2, h3, h4, h5, h6{
    font-family: 'Roboto', sans-serif;
}
p, a, li{
    font-family: 'Oxygen', sans-serif;
}
a {
    transition: all 0.3s ease-out;
    position: relative;
    padding: .5em;
    margin: -.5em;
}

a:focus,
a:hover {
    text-decoration: none;
    color: #00ceb8;
}

.img_res{
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}
.block-title {
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5em;
    padding: 0 40px;
    margin: 0;
    line-height: 1.6;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
}

.block {
    padding: 10px 0 0 0;
    overflow: hidden;
}
.title-box{
    text-align: center;
    margin-bottom: 20px;
}
.bb-top-left {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
}
.bb-bottom-left {
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
}
.bb-top-right {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    right: 0;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.bb-bottom-right {
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}
.polo-btn {
    display: block;
    color: #fff;
    border: 1px solid;
    text-align: center;
    font-size: 26px;
    font-weight: 100;
    padding: 15px 0px;
    margin: 0px 0px 20px 0px;
    transition: 0.4s ease all;
}

/* /////////////////////////////////////////////////////////////////////
//  03 - to Top
/////////////////////////////////////////////////////////////////////*/
/*トップへ戻るボタン*/
.topBtn {
  position:fixed; /*固定*/
  bottom:40px; /*場所を右下に移動*/
  right:20px; /*場所を右下に移動*/
  display:block; /*aタグをblock要素に変更*/

  width:60px;
  height:60px;
  text-align:center;
  padding-top:30px;
  box-sizing:border-box;
  z-index: 999999;
}
.topBtn:hover {
  opacity:0.7;
}

/* /////////////////////////////////////////////////////////////////////
//  03 - Side Menu
/////////////////////////////////////////////////////////////////////*/

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    right: 0;
    width: 260px;
    height: 100%;
    margin-right: -260px;
    overflow-y: auto;
    background: #001135;
    z-index: 99999999;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    top: 20px;
    height: 85vh;
}

.sidebar-nav {
    position: absolute;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.27);
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
    padding: 15px 15px;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #81F89D;
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 55px;
    font-size: 18px;
    line-height: 55px;
}

.sidebar-nav > .sidebar-brand a {
    color: #999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}
#sidebar-wrapper h2{
  color: #fff;
  text-align: center;
  font-family: 'Teko', sans-serif !important;
  font-weight: normal !important;
  letter-spacing: 3px;
}
#sidebar-wrapper.active {
    right: 260px;
    width: 260px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
#sidebar-wrapper ul.slideMenu{
  list-style: none;
  padding: 0;
  padding-top: 15px;
  border: 1px solid #001135;
}
#sidebar-wrapper ul.slideMenu li{
  background: #0085ce;
  width: calc( 100% / 3 );
  float: left;
  text-align: center;
  border: 1px solid #001135;
}
#sidebar-wrapper ul.slideMenu li a{
  display: block;
  color: #fff;
  font-weight: normal;
  font-size: 13px;
  padding-bottom: 24px;
  padding-top: 22px;
}
#sidebar-wrapper ul.slideMenu li a img{
  margin-bottom: 5px;
}
#sidebar-wrapper ul.btnMenu{
  list-style: none;
  margin: 20px 0;
  padding:0 20px;

}
#sidebar-wrapper ul.btnMenu li{
  display: block;
  float: left;
}
#sidebar-wrapper ul.btnMenu li a{
  display: block;
  text-align: center;
  border-radius: 50px;
  margin: 0;
  padding: 10px 0;
  font-weight: bold;
}
#sidebar-wrapper ul.btnMenu li.newRegist{
  width: 40%
}
#sidebar-wrapper ul.btnMenu li.newRegist a{
  margin-right:10px;
  padding-left: 15px;
  background: #d4c57f;
  color: #001135;
}
#sidebar-wrapper ul.btnMenu li.newRegist a::before{
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  background-image: url(/img/fanclub/2020/icon_headerbtn01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#sidebar-wrapper ul.btnMenu li.myLogin{
  width: 60%
}
#sidebar-wrapper ul.btnMenu li.myLogin a{
  margin-left:10px;
  padding-left: 15px;
  background: #0085ce;
  color: #fff;
}
#sidebar-wrapper ul.btnMenu li.myLogin a::before{
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  background-image: url(/img/fanclub/2020/icon_headerbtn03.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.toggle {
    margin: 5px 5px 0 0;
}
.close-btn {
  display: block;
  color: #0085ce;
  font-size: 4em;
  margin: 0;
  padding: 0;
  text-align: right;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  padding-right: 25px;
  position: absolute;
  top: 10px;
  right: 20px;
  background: #fff;
}
.close-btn:hover {
    color: #84FFB0;
}
.close-btn i{
  position: absolute;
  left: 14px;
  top: -16px;
}


table.memberTbl{
  border: 2px solid #001135;
  width: 100%;
}
table.memberTbl thead tr th{
  border-bottom: 2px solid #001135;
  text-align: center;
  border-right: 2px solid #001135;
  vertical-align: top;
  padding-top: 15px;
}
table.memberTbl thead tr th.crew-member.crew-p{
  background: #d5e4f0;
  color: #001135;
}
table.memberTbl thead tr th.crew-member.crew-g{
  background: #d0b86a;
  color: #001135;
}
table.memberTbl thead tr th.crew-member.crew-r{
  background: #0062b2;
  color: #fff;
}
table.memberTbl thead tr th.crew-member.crew-k{
  background: #bf0122;
  color: #fff;
}
table.memberTbl thead tr th.crew-member.crew-l{
  background: #00a051;
  color: #fff;
}
table.memberTbl thead tr th.crew-member p.name{
  font-size: 16px;
  margin-bottom: 0
}
table.memberTbl thead tr th.crew-member p.name span{
  font-family: 'Teko', sans-serif !important;
  display: block;
  font-weight: normal !important;
  font-size: 16px;
  letter-spacing: 1.5px;
}
table.memberTbl thead tr th.crew-member p.price{
  font-size: 36px;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 0;
  padding-top:0;
}
table.memberTbl thead tr th.crew-member p.price span.yen{
  font-size: 18px;
  font-weight: normal !important;
}
table.memberTbl thead tr th.crew-member p.price span.year{
  font-size: 12px;
  font-weight: normal !important;
}
table.memberTbl thead tr th.crew-member p.notice{
  font-size: 10px;
  font-weight: normal !important;
}

@media screen and (max-width: 420px) {
  table.memberTbl thead tr th.crew-member{
    width: 120px
  }
}

table.memberTbl thead tr th:first-child{
  width: 18%;
  background: linear-gradient(to left bottom, rgba(0,17,53,1) 50%, rgba(0,133,206,1) 50%);
  position: relative;
}
table.memberTbl thead tr th:first-child p{
  color: #fff;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  position: absolute;
}
table.memberTbl thead tr th:first-child p.nenkaihi{
  top: 1em;
  right: 2em;
}
table.memberTbl thead tr th:first-child p.tokuten{
  bottom: 1em;
  left: 2em;
}
p.conceptTxt{
  color: #0B284D;
  font-weight: bold;
  text-align: center;
  line-height: 2.3;
  font-size: 1em;
}

@media screen and (max-width: 420px) {
  p.conceptTxt{
    font-size: 1.2em;
  }
}

p.conceptTxt u{
  text-decoration: none;
  border-bottom: 2px solid #E4002D;
}
.crewUniMember{
  color: #fff;
  padding: 1em;
  font-size: 1.05em;
  position: relative;
  background-color: #0B284D;
}

@media screen and (max-width: 420px) {
.crewUniMember{
    font-size: 1.2em;
  }
}


.crewUniMember::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: 0 auto;
  border-top: 15px solid #0B284D;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
.crewUniMember p{
  margin-bottom: 0;
}
.memberBox{
  border: 2px solid #001135;
  background-color: #ccc;
  padding: 20px 0px 20px;
  height: 240px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .memberBox{
  height: 280px;
  }
}
.memberBox.memG{
  background: #D0B86A;
}
.memberBox.memR{
  background: #0062B2;
}
.memberBox.memK{
  background: #BF0122;
}
.memberBox .jpn{
  font-weight: bold;
  margin-bottom: 0;
  font-weight: bold;
  color: #fff;
}
.memberBox .eng{
  font-family: 'Teko', sans-serif !important;
  margin-bottom: 0;
  color: #fff;
}
.memberBox .price{
  font-weight: bold;
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 0;
}
.memberBox .price .yen{
  font-size: 0.8em;
  color: #fff;
}
.memberBox .price .term{
  font-size: 0.5em;
  font-weight: normal;
  color: #fff;
}
@media screen and (max-width: 420px) {
.memberBox .jpn{
    font-size: 1.2em;
  }
.memberBox .eng{
    font-size: 1.2em;
  }
  .memberBox .price{
    font-size: 1.8em;
  }
  .memberBox .price .yen{
    font-size: 1em;
  }
  .memberBox .price .term{
    font-size: 0.8em;
  }
}
.memberBox .notice{
  font-size: 0.5em;
  color: #fff;
}
.memberBox.memG .jpn,
.memberBox.memG .eng,
.memberBox.memG .price,
.memberBox.memG .price .yen,
.memberBox.memG .price .term{
  color: #001135;
}
.memberBtnArea{
  margin: 0 30px;
  position: absolute;
  bottom: 22px;
}
.memberBoxBtnArea{
  margin-top: 15px;
  text-align: center;
  width: 100%;
}
.memberBoxBtnArea a{
  margin: 2px;
  display: block;
  background: #ccc;
  color: #fff;
  border-radius: 4px;
  font-size: 0.7em;
  padding: 10px 0;
}
@media screen and (max-width: 420px) {
  .memberBoxBtnArea a{
    font-size: 1.2em;
  }
  .memberBoxBtnArea .sp-leftArea{
    padding-right: 2px !important;
  }
  .memberBoxBtnArea .sp-rightArea{
    padding-left: 2px !important;
  }
}


.memG .memberBoxBtnArea a.detail{background: #001135;}
.memG .memberBoxBtnArea a.newReg{background: #1A83CE;}
.memG .memberBoxBtnArea a.cont{background: #BB0022;}

.memR .memberBoxBtnArea a.detail{background: #001135;}
.memR .memberBoxBtnArea a.newReg{background: #CFB96A;}
.memR .memberBoxBtnArea a.cont{background: #BB0022;}

.memK .memberBoxBtnArea a.detail{background: #001135;}
.memK .memberBoxBtnArea a.newReg{background: #1A83CE;}
.memK .memberBoxBtnArea a.cont{background: #CFB96A;}

/* w420px 以下 SP */
@media screen and (max-width: 420px) {
table.memberTbl thead tr th:first-child p{
font-size: 12px;
}
table.memberTbl thead tr th:first-child p.nenkaihi{
  top: 1em;
  right: 1em;
}
table.memberTbl thead tr th:first-child p.tokuten{
  bottom: 1em;
  left: 1em;
}
}

table.memberTbl tbody th{
  border-right: 2px solid #001135;
  border-bottom: 1px solid #35454e;
  background: #0185ce;
  color: #fff;
  text-align: center;
  font-weight: normal;
  padding:10px 5px;
}
table.memberTbl tbody th.row{
  border-right: 1px solid #35454e;
}
table.memberTbl tbody th p{
  font-size: 12px;
  margin:0;
}
table.memberTbl tbody th p span{
  font-size: 10px;
}
table.memberTbl tbody td{
  text-align: center;
  vertical-align: middle;
  border-right: 2px solid #001135;
  border-bottom: 1px solid #ccc;
  padding-top: 10px;
}
table.memberTbl tbody td p{
  color: #0185ce;
  font-weight: bold;
}
table.memberTbl tbody td p span{
  font-size: 11px;
  font-weight: normal;
}
table.memberTbl thead th.img{
  padding: 0;
}
table.memberTbl tbody th.detailTh{
  background: #fff;
}
table.memberTbl tbody td.detail{
  padding-bottom: 20px;
  padding-top: 15px;
}
table.memberTbl tbody td.detail a{
  background: #001135;
  font-size: 12px;
  padding: 7px 20px;
  border-radius: 4px;
  color: #fff;
}

.service .item{
  padding: 0 40px 0 40px;
}
.service .serviceTitle{
  background: #0085ce;
  color : #fff;
  font-weight: bold;
  font-size: 15px;
  margin-top: 10px;
  padding: 5px;
  border-radius: 25px;
}
.service .discri{
  width: 75%;
  margin:auto;
  font-size: 12px;
  color: #0085ce;
}

.service .serviceArea{
  display:-webkit-box;
  display:-moz-box;
  display:-ms-box;
  display:-webkit-flexbox;
  display:-moz-flexbox;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:-ms-flex;
  display:flex;
  -webkit-box-lines:multiple;
  -moz-box-lines:multiple;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
margin-bottom: 60px;
}
.service .serviceArea .serviceBox{
  padding-bottom: 40px;
  position: relative;
}
.service .serviceArea .serviceBox{

}

.service .serviceBox div.btnBox{
  text-align:center;
 padding:0;
 display: block;
 position: absolute;
 bottom: -20px;
 width:100%;
 font-size: 12px;
}
.service .serviceBox div.btnBox a,
.service .serviceBox div.btnBox span.comingsoon{
  background: #7f889a;
  font-size: 12px;
  padding: 7px 20px;
  border-radius: 4px;
  color: #fff;
}
.service .serviceBox div.btnBox a{
  background: #001135;
}
#swaleage{
  padding: 37px 0 50px;;
  background: #001135;
}
#swaleage .logo{
  margin-bottom: 33px;
}
#swaleage .swaleageInst{
  color: #fff;
  font-size: 18px;
  margin-bottom: 33px;
}
#swaleage .toSwaleage{
  background: #d0b86a;
  font-size: 18px;
  color: #001135;
  padding: 16px 32px;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 50px;
}
.swaleageBtn{
  border: 5px solid #001135;
  margin: 40px 10px;
  padding: 15px 0px;
  border-radius: 20px;
}
.swaleageBtn .item{
  padding-left: 38px;
  padding-right: 38px;
}
.swaleageBtn .link{
  text-align : center;
}
.swaleageBtn .link a{
  font-size: 1.4em;
  font-weight: bold;
  color: #001135;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

#banners{
  background: #fff;
  padding: 80px 0;
}
#banners .registArea{
  background: #0085ce;
}
#banners .calenderArea{
  background: #001135;
}
#banners .honorArea{
  background: #d0b86a;
}
/*
#banners .registArea,
#banners .calenderArea,
#banners .honorArea{
  display:-webkit-box;
  display:-moz-box;
  display:-ms-box;
  display:-webkit-flexbox;
  display:-moz-flexbox;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:-ms-flex;
  display:flex;
  -webkit-box-lines:multiple;
  -moz-box-lines:multiple;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
*/

#banners .registArea .item,
#banners .calenderArea .item,
#banners .honorArea .item{
  padding-top: 15px;
  width: 70%;
  margin: auto;
}
#banners .registArea .title,
#banners .calenderArea .title,
#banners .honorArea .title{
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
#banners .text{
  color: #fff;
  text-align: center;
}
#renew{
  padding: 58px 0;
}
@media screen and (max-width: 420px) {
  #renew{
    padding: 30px 0;
  }
}

#renew .titleWrap{
  background: #d0b86a;
  padding: 10px;
}
#renew .titleWrap .title{
  border: 4px solid #001135;
  padding: 15px;
  text-align: center;
}
#renew .titleWrap .title .titleEng{
  font-family: 'Teko', sans-serif !important;
  font-size: 38px;
  letter-spacing: 2.5px;
  margin: 5px 0 0;
  padding: 0;
  line-height: 0.8;
}
#renew .titleWrap .title .titleJpn{
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
#renew #renewArea{
  margin-top: 45px;
  margin-bottom: 110px;
}
#renew #renewArea .renewBox{
  background: #001135;
  margin: 0 5%;
  width: 40%;
  float: left;
}
#renew #renewArea .renewBox .title{
  background: #d0b86a;
  text-align: center;
  padding: 11px 0;
}
#renew #renewArea .renewBox .instArea{
  background: #001135;
  padding :20px 40px;
}
#renew #renewArea .renewBox .instArea .item{
  margin-bottom: 18px;
}
#renew #renewArea .renewBox .instArea p{
  color: #fff;
  font-size: 20px;
}
#renew #renewArea .renewBox .instArea p.notice{
  font-size:12px;
}
.renewWrap{
  width:100%;
  margin:0;
  padding:0;
  display:-webkit-box;
  display:-moz-box;
  display:-ms-box;
  display:-webkit-flexbox;
  display:-moz-flexbox;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:-ms-flex;
  display:flex;
  -webkit-box-lines:multiple;
  -moz-box-lines:multiple;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
.renewWrap > div{
  background: #001135;
/*  margin: 0px 40px;*/
/*  padding: 0px;*/
}
.renewBox .whiteArea{
  background: #fff;
  position: absolute;
  border: 1px solid;
  width: 40%;text-align: center;
  display: block;
  bottom: -60px;
  padding: 10px 0 0;
  font-weight: bold;
  color: #102042;
}
.renewBox .whiteArea .icon{
  background: #ccc;
  padding: 2px 8px;
  width: 1em;
  font-weight: bold;
  color: #fff;
}
.renewBox .whiteArea .icon.icon-p{background: #006792;}
.renewBox .whiteArea .icon.icon-g{background: #947616;}
.renewBox .whiteArea .icon.icon-r{background: #003974;}
.renewBox .whiteArea .icon.icon-k{background: #c30013;}
.renewBox .whiteArea .icon.icon-l{background: #1e6f51;}

.otherWrap{
  background: #fff;
  margin: 0 20px;
  border: 3px solid #001135;
}
.otherWrap .title{
  color: #fff;
  background: #001135;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.3px;
  padding: 8px 0;
}
.otherList{
  display:table;
  width: 96%;
  margin: auto;
  padding:0;
}
.otherList li{
  width: 50%;
  float: left;
  list-style: none;
  padding: 15px 0;

  display:table-cell;
  list-style:none;
  padding-left: 10%;
  position: relative;
  margin-bottom: 10px;
  color: #001135;
  font-size: 14px;
}
.otherList li span{
  color: #c00;
  font-weight: bold;
}
.otherList li .notice{
  font-size: 9px;
  font-weight: normal;
  color: #001135;
}
@media screen and (max-width: 420px) {
.otherList li .notice{
  font-size: 10px;
}
}
.otherList li::before{
  content: '';
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  left: 15px;
}
.otherList li.list01::before{
  background: url(/img/fanclub/2020/icon_other01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.otherList li.list02::before{
  background: url(/img/fanclub/2020/icon_other02.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.otherList li.list03::before{
  background: url(/img/fanclub/2020/icon_other03.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.otherList li.list04::before{
  background: url(/img/fanclub/2020/icon_other04.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.otherList li.list05::before{
  background: url(/img/fanclub/2020/icon_other05.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.otherList li.list05{
  top: -20px !important;
}
/* /////////////////////////////////////////////////////////////////////
//  04 - Preloader
/////////////////////////////////////////////////////////////////////*/

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url('/img/event/special/2019/template01/preloader.gif')
    no-repeat center center;
    background-repeat: none;
}

/* /////////////////////////////////////////////////////////////////////
//  05 - Header
/////////////////////////////////////////////////////////////////////*/
header{
}
.sticky{
    position: fixed;
    width: 100%;
    background: url(/img/fanclub/2020/bg_header.png) #0085ce;
    background-size: 670px;
    background-repeat: no-repeat;
    background-position: bottom right;
    padding: 0px;
    transition: all 0.5s;
    z-index: 50;
    top:0;
    left:0;
    background-repeat: none;
}
.logo {
    font-family: 'caviar_dreams';
    color: #fff;
    font-size: 1.5em;
    line-height: 1.6;
}
#logo_menu {
    padding: 5px 0px;
}
#menu-toggle {
    z-index: 1;
    font-size: 35px;
    float: right;
/*    border: 1px solid #fff;*/
    color: #001443;
    margin: 5px 0px;
    padding: 2px 10px;
    line-height: 0;
    background: #fff;
}
.store-btn-container {
    padding-top: 15px;
}
.store-btn:hover,#menu-toggle:hover {
    background: #00ceb8;
    border-color: #00ceb8;
    color: #fff;
}

/* /////////////////////////////////////////////////////////////////////
//  06 - Banner
/////////////////////////////////////////////////////////////////////*/

#banner {
    background: url(/img/event/special/2019/template01/bg.jpg);
    background-size: cover;
    padding-top: 80px;
    background-attachment: fixed;
    position: relative;
}

.headings {
    padding: 25% 0 30% 0;
    color: #fff;
}
.headings h1 {
    font-size: 40px;
    font-weight: 300;
    padding-bottom: 20px;
}
.headings p {
    font-size: 18px;
    font-weight: 300;
    padding-bottom: 20px;
}
.hand-container {
    max-height: 630px;
    overflow: hidden;
}
.iphone-hand {
    padding: 20px 30px 0px 30px;
}
.store:hover{
    background: #00ceb8;
    border-color: #00ceb8;
    color: #fff;
}
.polo-btn i {
    padding-right: 6px;
}
.slidedown {
    font-size: 50px;
    color: #fff;
    position: absolute;
    bottom: 0%;
    left: 50%;
    z-index: 99;
    cursor: pointer;
}

/* /////////////////////////////////////////////////////////////////////
//  07 - Features
/////////////////////////////////////////////////////////////////////*/

.feature-box {
    padding: 30px 0px;
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
}
.feature-box i {
    font-size: 7em;
    line-height: 0 !important;
    margin: 0;
    padding: 0;
}
.feature-box p {
    padding: 0px 20px;
    text-align: left;
}
.feature-box h2 {
    margin: 0;
    padding: 15px 0px 10px;
    font-weight: 300;
    font-size: 1.5em;

}


/* /////////////////////////////////////////////////////////////////////
//  08 - Gallery
/////////////////////////////////////////////////////////////////////*/


#gallery{
    background: url(/img/event/special/2019/crewday2019/title_bg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#gallery01{
    background: url(/img/event/special/2019/crewday2019/title_bg01.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#gallery02{
    background: url(/img/event/special/2019/crewday2019/title_bg02.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#screenshots .item{
  padding: 0px 0px;
  margin: 10px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.customNavigation{
  text-align: center;
  margin-top:20px;
}
/*use styles below to disable ugly selection*/
.customNavigation a{
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.gallery-nav {
    color: #6ecba9;
    font-size: 2em;
    margin: 0 1em;
    padding: 10px 19px;
    line-height: 0;
    border: 1px solid #6ecba9;
    border-radius: 50%;
}

.gallery-nav:hover,.gallery-nav:focus,.gallery-nav:active {
    color: #fff;
    background:#6ecba9;
}



/* /////////////////////////////////////////////////////////////////////
//  09 - Team Member
/////////////////////////////////////////////////////////////////////*/

.team-social {
    margin: 0;
    padding: 8px 0px;
    list-style: none;
    text-align: center;
}
.team-social li {
    display: inline-block;
    font-size: 24px;
    padding: 0px 3px;
    color: #fff;
}
.team-social li a {
    display: inline-block;
}
.team-member {
    text-align: center;
    margin-bottom: 40px;
    max-width: 360px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.team-member p {
    padding: 10px 10px 15px 10px;
}
.team-member h2 {
    font-size: 25px;
}
.team-social li a i {
    border: 1px solid;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 1.6;
    border-radius: 50%;
    transition: 0.5s ease all;
}
.facebook a i {
    color: #3B5998;
    border-color: #3B5998;
}
.facebook a i:hover {
    color: #fff;
    background-color: #3B5998;
}
.linkedin a i {
    color: #007bb6;
    border-color: #007bb6;
}
.linkedin a i:hover {
    color: #fff;
    background-color: #007bb6;
}
.googleplus a i {
    color: #dd4b39;
    border-color: #dd4b39;
}
.googleplus a i:hover {
    color: #fff;
    background-color: #dd4b39;
}
.github a i {
    color: #444;
    border-color: #444;
}
.github a i:hover {
    color: #fff;
    background-color: #444;
}


/* /////////////////////////////////////////////////////////////////////
//  10 - Testimonial
/////////////////////////////////////////////////////////////////////*/


#testimonial {
    background: url(/img/event/special/2019/template01/testi-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.review-star {
    text-align: center;
    color: rgb(255, 214, 0);
    font-size: 30px;
    padding-top: 20px;
}
.client-pic {
    padding: 0em 2em;
    max-width: 360px;
    margin: 0 auto;
}
.client-pic img {
    border-radius: 50%;
}

.review-desc {
    font-size: 24px;
    line-height: 1.8;
    font-weight: 100;
    font-style: italic;
    padding-top: 20px;
    color: #fff;
}
#testimonial .block-title {
    color: #fff;
}
#testimonial .block-title span {
    border-color: #fff;
}
p.client-name {
    float: right;
    font-size: 30px;
    color: #fff;
    display: inline-block;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}


/* /////////////////////////////////////////////////////////////////////
//  11 - Subscribe Section
/////////////////////////////////////////////////////////////////////*/



#subscribe {
    background: url(/img/event/special/2019/template01/subs-bg.jpg);
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}
.susbcribe-text {
/*    text-align: center;*/
    font-size: 18px;
    font-weight: 300;
/*    padding-bottom: 30px;*/
    line-height: 1.8;
}
.container.subscribe-wrap {
    max-width: 600px;
}
.container{
  padding-right: 0;
  padding-left: 0;
}
#exampleInputEmail1 {
    font-size: 20px;
    padding: 15px 30px;
    height: auto;
    border: 2px solid #01bc85;
    border-radius: 0px;
    box-shadow: none;
}
.btn-custom {
    width: 100%;
    padding: 5px 15px;
    font-size: 34px;
    margin-top: 0px;
    background: #01bc85;
    box-shadow: none;
    border: 2px solid #01bc85;
    margin-left: -16px;
    color: #fff;
}
.subscribe-wrap .form-group {
    margin-right: -16px;
}


/* /////////////////////////////////////////////////////////////////////
//  12 - Contact us Section
/////////////////////////////////////////////////////////////////////*/


.address {
    width: 30%;
    float: left;
    background: url(/img/event/special/2019/template01/gmap-bg.jpg);
    height: 640px;
}
.mailbox {
    width: 70%;
    float: left;
    background-image: url(/img/event/special/2019/template01/map-image.png);
    background-color: #222;
    padding-bottom: 111px;
    height: 640px;
}
.address .container {
    max-width: 100%;
}
.mailbox .container {
    max-width: 90%;
}
.address-list {
    list-style: none;
    padding: 160px 0px 70px 0px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: table;
}
.address-list li {
    font-size: 22px;
    padding: 0.5em 0;
    color: #fff;
    font-weight: 100;
}
.address-list li i {
    display: table-cell;
    background-color: blue;
    line-height: 1.8;
    width: 81px;
    height: 70px;
    text-align: center;
    font-size: 45px;
    border-radius: 50%;
    margin: 0;
    vertical-align: middle;
}
.address-list li span {
    padding: 0px 0px 0px 20px;
    display: table-cell;
    vertical-align: middle;
}
.mailbox .container {
    margin-top: 225px;
    margin-bottom: 0px;
}
#contactForm input,#contactForm textarea {
    border-radius: 0px;
    box-shadow: none;
    border: 2px solid #C2C2C2;
    font-size: 18px;
}
#contactForm input:active,#contactForm textarea:active,#contactForm input:hover,#contactForm textarea:hover {
    border: 2px solid #00ceb8;
}

#contactForm #name, #contactForm #email, #contactForm #phone {
    padding: 20px;
    height: auto;
}
#contactForm .form-group {
    margin-bottom: 25px;
}
#contactForm #message {
    height: 258px;
    padding-bottom: 40px;
}
.contact-submit {
    margin: 0 auto;
    margin-top: -38px;
    width: 160px;
    background: #fff;
    color: #00ceb8;
    border: 2px solid #00ceb8;
    font-size: 46px;
    padding: 0;
    margin: 0 auto;
    margin-top: -46px;
}
.contact-submit:hover {
    background: #00ceb8;
    color: #fff;
}
#contact {
    position: relative;
}
.contact-wrap {
    position: absolute;
    z-index: 9999;
    color: #fff;
    width: 100%;
    top: 50px;
}

#contact .block-title span {
    border-color: #fff;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #6ecba9;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #6ecba9;
}


/* /////////////////////////////////////////////////////////////////////
//  13 - Footer Section
/////////////////////////////////////////////////////////////////////*/


#footer {
    background: #00967f;
    padding: 20px 0px 22px 0px;
}
.footer-logo {
    font-size: 45px;
    color: #fff;
    font-weight: 300;
}
.copyright {
    color: #fff;
    text-align: right;
    font-size: 18px;
    margin-top: 40px;
}
#footer span{
    color: #e9e9e9;
    display: block;
    margin-bottom: -24px;
}


/* /////////////////////////////////////////////////////////////////////
//  14 - Responsive Fixes
/////////////////////////////////////////////////////////////////////*/


/*1340px - 1170px*/

@media all and (max-width: 1340px) and (min-width: 1170px;) {
    .address-list li {
        font-size: 18px;
    }
    .address-list li i {
        width: 60px;
        height: 60px;
        font-size: 34px;

    }
}

/*1170px - 992px*/

@media all and (max-width: 1170px) and (min-width: 992px) {
}

/*1170px*/

@media all and (max-width: 1170px) {
}

/*992px*/

@media all and (max-width: 992px) {
}

/*768px*/

@media all and (max-width: 768px) {
}


/*480px*/

@media all and (max-width: 480px) {
}
