/*
Theme Name: Re:Complex v.2.0
Template: recomplex
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
# Plugins
# Skeleton
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family:YuGothic/*Mac*/,'Yu Gothic'/*Win*/, sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small,
.small{
	font-size: 80%;
	line-height: 1.4;
	margin-top:.5em;
	font-weight:bold;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	-webkit-appearance:none;
	appearance:none;
	border-radius: 0;
}

input:-webkit-autofill{
	-webkit-box-shadow: 0 0 0px 1000px white inset!important;
	box-shadow: 0 0 0px 1000px white inset!important;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"], 
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	padding:3px 0 3px;
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

input[type="checkbox"]{
 -webkit-appearance: checkbox;
	appearance: checkbox;
 width: 15px;
 height: 15px;
 vertical-align: text-bottom;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	font-family: YuGothic,'Yu Gothic',Helvetica Neue, arial, sans-serif;
	color: #404040;
	font-size: 14px;
	line-height: 1.8;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Helvetica Neue, 'Helvetica Neue', arial, YuGothic,'Yu Gothic'sans-serif;
	font-weight: normal; 
	margin-top: 0;
	margin-bottom: 0.5em;
	clear: both;
}

h1 { font-size: 36px; line-height: 46px; }
h2 { font-size: 32px; line-height: 42px; }
h3 { font-size: 28px; line-height: 38px; }
h4 { font-size: 24px; line-height: 34px; }
h5 { font-size: 20px; line-height: 30px; }
h6 { font-size: 16px; line-height: 26px; }

h1 span { font-style: italic; }
h2 span { font-style: italic; }
h3 span { font-style: italic; }
h4 span { font-style: italic; }
h5 span { font-style: italic; }
h6 span { font-style: italic; }

p {
	margin-top: 0; 
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

* { 
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
    outline: medium none;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {}
dd {margin: 0 1.5em 1.5em;}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

.anm,
.insta-photo-wrap:after{
	-o-transition: ease-in-out 0.2s;
 -ms-transition: ease-in-out 0.2s;
 -moz-transition: ease-in-out 0.2s;
 -webkit-transition: ease-in-out 0.2s;
 transition: ease-in-out 0.2s;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
a#sidr-menu,
.recomplex-button,
button:not(.modal-close),
input[type="button"],
input[type="reset"],
input[type="submit"] {
	font-family: Helvetica Neue, 'Helvetica Neue', Helvetica, arial, sans-serif;
	border: 1px solid;
	border-color: #000000;
	background: #000000;
	box-shadow: none;
	color: #ffffff;  
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
	padding: 1.25em 2.5em;
	text-shadow: none;
	-o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s;
	
}

a#sidr-menu {
	 position: relative;
	 display: block;
		width:40px;height:40px;
	 padding:0;
	 color:#404040;
		border-color:#404040;
	 background: transparent;
}

.sidr-menu-bdr {
	 position: absolute;
	 top:50%;left:50%;
	 display: block;
	 width:20px;
	 height:2px;
 	background: #404040;
	 -o-transform: translate(-50%,-50%);
	 -moz-transform: translate(-50%,-50%);
	 -ms-transform: translate(-50%,-50%);
	 -weblit-transform: translate(-50%,-50%);
	 transform: translate(-50%,-50%);
}
.sidr-menu-bdr:before,
.sidr-menu-bdr:after{
	 position: absolute;
	 display: block;
	 content:"";
	 width:20px;
	 height:2px;
 	background: #404040;	
	 left:0;
}

.sidr-menu-bdr:before{top:-5px}
.sidr-menu-bdr:after{bottom:-5px}


.recomplex-button:hover,
button:not(.modal-close):hover, 
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #0000ff/*#0000ff*/;
	background: #0000ff; 
	-o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s; 
}

.recomplex-button:focus,
button:not(.modal-close):focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:not(.modal-close):active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {  
	border-color: #0000ff;
	background: #0000ff; 
	-o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s;
}

input[type="text"], 
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666666;
	border: 1px solid #cccccc; 
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111111; 
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #000000;
	outline: 0;
	-o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s;
}

a,a:focus,
a.all-news:hover{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	-o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	font-family: Helvetica Neue, 'Helvetica Neue', arial,YuGothic,'Yu Gothic',sans-serif;
	color: #404040;
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	text-transform: uppercase;
}

.main-navigation a:hover{
	color: #0000ff;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	background: #212121;
	float: left;
	position: absolute;
	top: 2.75em;
	left: -999em;
	z-index: 99999; 
}

.main-navigation ul ul ul {
	background: #212121;
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}

/* Small menu. */
.menu-toggle, .classic-menu {
	display: none;
}

.toggle-menu {
	padding: 10px;
	font-size: 16px;
}

@media screen and (max-width: 767px) {	
	.tp-caption.tp-resizeme,
	.tp-caption.tp-resizeme img{
		width:260px!important;
		height:54px!important;
	}
	
	.menu-toggle,
	.main-navigation.toggled .nav-menu,
	.classic-menu {
		display: block;
	}
	
	.classic-menu {
		width: 100%;
	}

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
	font-family: Helvetica Neue, 'Helvetica Neue', Helvetica, arial, sans-serif;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 49.5%;
}

.comment-navigation .nav-previous a, 
.posts-navigation .nav-previous a, 
.post-navigation .nav-previous a {
    background: #222222;
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px;
    text-align: center;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 49.5%;
}

.comment-navigation .nav-next a, 
.posts-navigation .nav-next a, 
.post-navigation .nav-next a {
    background: #222222;
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px;
    text-align: center;
}

.nav-links a:hover{background: #0000ff;text-decoration: none;}

.classic-navigation {
	width: auto;
	position: absolute;
	top: 20px;
	right: 40px;
}

.sidr{background: #0000ff!important;}
.sidr ul{margin:15px 0;}
.sidr ul li a:hover{
	color: #ffffff!important;
 background: #000000;}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/* Search widget. */
.widget_search .search-submit, 
.widget_product_search input[type="submit"] {
    display: none;
}

.widget-area input[type="search"] {
    width: 97%;
}

#secondary {
    margin-top: 1.8em;
}


.widget-title,
.sidr ul li a{
	display: inline-block;
	font-family: 'Fjalla One', sans-serif;
	position: relative;
	text-transform: uppercase;
}

.sidr ul li a{
	font-size:22px;
	display: block;
	width:100%;
	padding:0 20px;
	-webkit-tap-highlight-color:#000000;}

.widget-title{
	font-size: 18px;
 line-height: 22px;
}

.widget-subtitle{
	font-size: 18px;
	line-height: 1.3;
	font-weight:bold;
}

.home-widget .widget-title{
	font-size: 24px;
 line-height: 28px;
	margin-bottom: 20px;
}

.widget-area ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.widget-area ul li {
    margin-bottom: 8px;
}

.widget-title:before,
.news-info h3:before,
.page-entry-header .entry-title:before,
#archive-content-container article a .entry-title:before,
.sidr ul li a:before{
	display: inline;
	content:": ";}

#archive-content-container article a:hover,
#archive-content-container article a:focus,
#archive-content-container article a:hover .entry-title:before{
	color:#0000ff;
}

.widget-title:after,
.page-entry-header .entry-title:after,
#archive-content-container article a .entry-title:after{
	position: absolute;
	display:block;
	content:"";
	width:100%;
		-o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s;
}

.widget-title:after{bottom:-5px;height:3px;background:rgba(0,0,255,.3);}
/*.page-entry-header .entry-title:after{height:10px;background: #ffffff;}
#archive-content-container article a .entry-title:after{height:7px;background: #000000;}*/
#archive-content-container article a:hover .entry-title:after{background: #0000ff;}

#archive-content-container article a .entry-title:before,
#archive-content-container article a .entry-title:after{
 	-o-transition: all ease-in-out 0.2s;
  	-ms-transition: all ease-in-out 0.2s;
  	-moz-transition: all ease-in-out 0.2s;
  	-webkit-transition: all ease-in-out 0.2s;
  	transition: all ease-in-out 0.2s;}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.site-header {
/*	position: absolute;
	top: 0;*/
	width: 100%;
	z-index: 9;
	padding: 0 40px;
}

.site-branding {
	width: auto;
	max-width: 300px;
	float: left;
}

.site-title a, .site-title {
	font-style: italic;
	color: #fff;
	line-height: 80px; 
	margin: 0;
}

.site-footer .site-title a,
.site-footer .site-title{
	line-height: 70px; 
	padding-top:10px;
}

.site-branding img {
	max-height: 90px;
}

.navigation-container {
	opacity:1;
	width: auto;
	float: right;
	margin-top: 13px;
}

.hero-content{background:#000000;}

.hero-content h2 { 
	font-size: 90px;
	line-height: 100px;
	margin: 0.25em 0;
}

.hero-content h1 span {
	font-style: italic;
}

.home-widget {
  clear: both;
  padding: 40px 0 0;
  text-align: center;
}


.news-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #efefef;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	  border:1px solid #cccccc;
}
.news-box:before {
    content: "";
    display: block;
    padding-top: 37%;
}
.news-content {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: #252525;
}
.news-content > div {
   display: table;
   width: 100%;
   height: 100%;
}
.news-content span {
    display: table-cell;
    vertical-align: middle;
}

.news-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 75%;
	height: 100%;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
}

.news-info {
	position: absolute;
	top: 0;
	right: 0;
	width: 25%;
	height: 100%;  
}

.news-info > div {
	padding: 40px;
	text-align: left;
}

.news-info h3 {
	font-family: 'Fjalla One', sans-serif;
	font-size: 22px;
	line-height: 30px;
}

.news-info h6 {
	color: #636363;
	font-size: 13px;
}

.news-info button{
	background:transparent;
	color:#000000;
}
.news-info button:hover,
.news-info button:focus,
.news-info button:active,
.news-info button:visited{color:#ffffff;}

.home-widget-three {
	text-align: center;
	background: #efefef;
}

.home-widget-four {
	background: url(../../uploads/2017/12/bg_particle.jpg);
}

.home-widget-five {
	text-align: center;
	background: #f5f5f3;
	padding: 80px 0;
}

.testimonial-carousel {
	max-width: 700px;
	margin: 0 auto;
}

.home-widget-five p {
	font-family: 'Fjalla One', sans-serif; 
	font-size: 46px;
	line-height: 52px;
	font-style: italic;
	max-width: 700px;
	margin: 0 auto; 
}

.footer-cta {
  border-top: 1px solid #ededed;
  padding: 20px 0;
  text-align: center;
}

.site-footer {
	text-align: center;
	background: #040404;
	padding-top: 20px;
	color: #ccc;
}

.site-footer .widget-title {
	font-size: 16px;
	line-height: 20px;
}

.site-footer section, .footer-cta section { 
	padding-bottom: 15px; 
}
.site-footer section button, .footer-cta section button {
	margin: 1em auto 0; 
	display:block; 
} 

.site-footer p { margin-bottom:3em; }

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer ul li {
	margin-bottom: 8px;
}

.site-footer-catch{line-height:18px;}

.site-info a, .site-footer a {
 color: #fff;
 text-transform: uppercase;
 font-size: 10px;
}

.site-info {
	border-top: 1px solid #636363; 
	padding: 20px 0 10px; 
	font-weight: 600;
	font-size: 12px;
}
ul.social-media-icons {
  padding: 0 0 15px;
}
.social-media-icons li {
  display: inline-block;   
  list-style: none outside none;
  line-height: 0px !important;
} 
.social-media-icons li .fa {
	color:#ffffff;
    font-size: 20px;  
    padding: 0 12px; 
    -o-transition:.5s; 
  	-ms-transition:.5s; 
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition:.5s;
}

.social-media-icons li .fa:hover {
	color: #0000ff!important; 
}

.mt-socials{
	margin-bottom:60px;
	overflow:hidden;
}

	#home-youtubes .mt-socials:first-child{
		margin-bottom:30px;
	}


.mt-socials iframe{
	width: 100%!important;
	padding: 20px!important;
	background: #ffffff;
}

.video{
  position:relative;
  width:100%;
  padding-top:56.25%;
}
.video iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}

/*Top - Structure*/
.metaslider .flexslider{margin-bottom:20px!important;}

.home .widget-title{
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
}

/*Top - Banner & Youtube*/
.banner-area img{margin-bottom:15px;}
.banner-area .widget-subtitle{margin:0;}
.banner-area p{margin-bottom:.5em;}
img.banner.top-banner.anm{width:100%;}

/*Top - News*/
.news-group{
	list-style:none;
	margin:0;padding:0;
}
.news-group-title{
	font-size:12px;
	line-height: 1.4;
	font-weight: bold;
}

.news-group-item{
	border-top:1px solid #ededed;
	padding-top:.5em;
	margin-bottom:.5em;
}

.post-newmark,
.home .post-category.post-category-news{
 display: inline-block;
 font-size: 10px;
 padding: 0px 15px;
	text-transform: uppercase;
}
.post-newmark{
 border: 1px solid #0000ff;
	margin:10px 10px 0 0;
	color:#ffffff;
	background:#0000ff;
}

#event-list .post-newmark{
	border-color:#ffa500;
	background:#ffa500;
}

.home .post-category.post-category-news{
 border-left: 1px solid #000000;
	margin:10px 0 0 10px;
}


/*Top - Discography*/
.disco-area > article{margin-bottom:30px}
.disco-area img{margin-bottom:15px;}
.disco-desc-title{
	font-size: 18px;
 line-height: 1.3;
 font-weight: bold;
}
.disco-desc-txt{
	font-size:11px;
	line-height:1.5;
	color:#666666;
}

.disco-desc span{
 display: inline-block;
 font-size: 10px;
 border: 1px solid #000;
 padding: 0px 30px;
	margin-bottom:10px;
}

/*Top - Twitter*/



/*Top - Instagram*/
.insta-section > article{
	margin-bottom:15px;
}
.insta-photo-wrap{
	position: relative;
	width: 100%;
	overflow:hidden;
}
.insta-photo-wrap:before{
 content:"";
 display: block;
 padding-top: 100%;
}
.insta-photo-wrap img{
	display: block;
	position: absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
}
.insta-profile{
	padding-bottom:5px;
	text-align:center;
	background: #000000;
}
.insta-name-en{
	font-family: 'Fjalla One', sans-serif;
	font-size:12px;
	line-height: 1.3;
	padding: 10px 0 0;
	margin: 0;
}
.insta-name-jp{
	font-size:10px;
}
.insta-name-en,
.insta-name-jp{color:#ffffff;}

.insta-photo-wrap:after{
	display: inline-block;
 font: normal normal normal 14px/1 FontAwesome;
 font-size: inherit;
 text-rendering: auto;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
	position:absolute;
	font-size:30px;
	content:'\f16d';
	top:50%;left:50%;
	-o-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	color:#0000ff;
	opacity:0;
}


/*Top - Hover Effect*/
.disco-desc-title:hover a,
.recent-post-title.news-group-title:hover a{color:#0000ff;}

.banner-area a:hover img,
.disco-area a:hover img,
.insta-section a:hover .insta-photo-wrap img{opacity:.7;}

.insta-section a:hover .insta-photo-wrap:after{
	opacity:1;
}

.insta-section a:hover .insta-profile{background:#0000ff;}
.home .post-category.post-category-news:hover{
	color:#ffffff;
	background:#cccccc;
	border-color:#cccccc;
}

.menu-footer-menu-container{margin-bottom:15px;}
.menu-footer-menu-container ul li{
	display:inline-block;
	padding:0 15px;
	border-right:1px solid #ffffff;
 line-height: 1;}
.menu-footer-menu-container ul li:first-of-type{
	border-left:1px solid #ffffff;}
.menu-footer-menu-container ul li a:hover{text-decoration: underline;}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}
.single .byline{display: none!important;}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.single-post .entry-content a{
	color:#0000ff;
	text-decoration: underline;
	font-weight:bold;
}

.single-post .entry-content a:hover{
	color:#000000;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

#page-content-container {
	padding-bottom: 30px;
}

.page-entry-header {
 padding: 140px 0 120px;
 position: relative;
 text-align: center;
	color: #fff;
	z-index:1;
}
.archive .page-entry-header{background: rgba(0,0,0,1);}
.blog .page-entry-header{background:#000000;}

.page-entry-header div.grid {
    position: relative;
}

.page-entry-header .entry-title {
	display: inline-block;
	font-family: 'Fjalla One', YuGothic,'Yu Gothic', sans-serif;
	letter-spacing: -0.035em;
 font-size: 64px;
 line-height: 76px;
	margin: 0.25em 0;
	position: relative;
}
.single-post .page-entry-header .entry-title{
	font-size: 32px;
 line-height: 48px;
}

.page-bg-image {
	background: transparent;
    background-position: center top;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.entry-header .single-post-title{
	font-family: Helvetica Neue, 'Helvetica Neue', Helvetica, arial, YuGothic,'Yu Gothic', sans-serif;
 font-size: 28px;
	line-height: 34px;
	margin-top:10px;
}

#archive-content-container article {
    border-top: 1px solid #ededed;
    margin-bottom: 0;
    padding: 20px 0 40px;
	-o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s;
	text-align: center;
}

#archive-content-container article:hover {
	background: #f9f9f9;
    -o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s;
}

#archive-content-container article:last-child {
    border-bottom: 0px;
}

#archive-content-container article a .entry-title{
	display: inline-block;
	position: relative;
	font-family: 'Fjalla One', YuGothic,'Yu Gothic', sans-serif;
 font-size: 22px;
 line-height: 30px;
	margin: 0;
}

#archive-content-container article .entry-title a:hover{
	text-decoration: none;
}

.not-found {
	padding: 20px 30px 60px;
	text-align: center;
}

.not-found .page-title {
	font-size: 24px;
	line-height: 28px;
	margin-top: 30px;
}

.content-area nav.posts-navigation { 
	max-width: 1000px;
	margin: 0 auto !important;
	padding: 20px;
}

.entry-content > .profile{margin-bottom:30px;}

.profile-photo-box{
    width: 100%;
    Height:auto;
    position: relative;
    overflow:hidden;
	   background: #000000;
}

.profile-photo-box:before{
    display: block;
    content: '';
    padding-top: 100%;
}

.leader-crown{
	position:absolute;
	display:block;
	top:0;
	width:100%;
	padding:5px;
	font-size:10px;
	font-weight:bold;
	color:#ffffff;
	background:rgba(0,0,0,.3);
	text-align:center;
	z-index: 1;
	white-space: nowrap;
}

.profile-photo{
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.profile-content{
	padding:20px 20px 10px;
	color:#ffffff;
	text-align:center;
 background: #000000;}

.profile-link:hover .profile-content,
.profile-link:hover .leader-crown{
 -o-transition: ease-in-out 0.2s;
 -ms-transition: ease-in-out 0.2s;
 -moz-transition: ease-in-out 0.2s;
 -webkit-transition: ease-in-out 0.2s;
 transition: ease-in-out 0.2s;
	 background: #0000ff;
}

.profile-content dl,
.profile-content dt,
.profile-content dd{
	line-height:1;
	margin:0;}

.profile-content p{
	font-family: Helvetica Neue, arial, YuGothic,'Yu Gothic',sans-serif;
	margin:0 0 10px 0;
}

.profile-link{cursor:pointer;}
.profile-link:hover img{
 -webkit-opacity: 0.5;
	opacity: 0.5;
 -webkit-transform: scale3d(1.1, 1.1, 1);
	-moz-transform: scale3d(1.1, 1.1, 1);
	-o-transform: scale3d(1.1, 1.1, 1);
 transform: scale3d(1.1, 1.1, 1);
	-webkit-transition: opacity 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s, -moz-transform 0.5s ease 0s;
	-o-transition: opacity 0.5s ease 0s, -o-transform 0.5s ease 0s;
	transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;	
}
.profile span.d-md-inline{display:none;}



.foam-header{
	background: #000000;
	text-align: center;
}
.foam-title{
	font-family: YuGothic,'Yu Gothic', sans-serif;
	letter-spacing: -0.035em;
 font-size: 24px;
	color:#ffffff;
	margin: 0;
	padding:20px 0;
	font
}

.foam-container{
	background: #efefef;
	padding:30px!important;
	text-align: center;
	overflow: hidden;
}

.foam-area{text-align: left;}

.foam-area label{
	display:block;
 margin-bottom: 20px;
	overflow: hidden;
	text-align: left;

}

.foam-area .forgetmenot label:last-child:after{display:none;}
.foam-area .forgetmenot label input{
	-webkit-appearance:checkbox!important;
	appearance:checkbox!important;
}

.foam-area textarea{
	resize: vertical;
	overflow: auto;
	min-height: 100px;
}

.submit{margin-bottom:0;}
.submit:after{
	display:inline-block;
	content:"*必須項目";
	font-size:10px;
	margin-bottom: 1.5em;
}

div.wpcf7-mail-sent-ok{
	border:none;
	background:#0000ff;
 color:#ffffff;
 font-weight:bold;}
div.wpcf7-response-output{
	margin:0 0 20px;padding:30px;}

.foam-list{
	list-style: none;
	margin: 0;
	padding:0;
text-align: left;}

.foam-list a:hover{
	color: #0000ff;
	text-decoration: underline;
}

.foam-important{
	display:inline-block;
	padding: 10px;
	color:#ffffff;
	background: #0000ff!important;
	text-align: center;
}

#pass-strength-result{
	padding:10px;
	border: 5px solid #00cc99;
	color:#00cc99;
	font-weight:bold;
	text-align: center;
}
#pass-strength-result.short,
#pass-strength-result.bad,
#pass-strength-result.mismatch{
	color: #ffffff;
	border-color:#999999;
	background: #999999;
}
#pass-strength-result.good{
	color: #ffffff;
	border-color: #0000ff;
	background: #0000ff;
}
#pass-strength-result.strong{
	color: #ffffff;
	border-color: red;
	background: red;
}

.fua_menu_list{
	list-style:none;
	padding:0;
	margin:0 0 3em 0;
 overflow:hidden;}
.fua_menu_list .col-1-2 a{
	display:block;
 width:100%;
 padding:15px;
	font-weight:bold;
 border:5px solid #000000;}

.fua_menu_list .col-1-2 a:hover{
	color: #ffffff;
	background: #0000ff;
	border-color:#0000ff;
}

.foam-container .submit input{width:100%;}

.foam-container .submit input.col-1-2{
	width:calc(50% - 30px);
	margin-right:30px;
}

.foam-container-confirm tr{border-top:1px solid #dfdfdf;}
.foam-container-confirm td,
.foam-container-confirm th{padding:10px 0;}
.foam-container-confirm .foam-area label{margin-bottom:0;}
.foam-container table td[class*=col-], table th[class*=col-]{
	display:block!important;
	float: inherit!important;
}


/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.comments-area ol {
    list-style: outside none none;
    margin: 0;
}
.comments-area ol.children {
    margin-left: 1.5em;
}
#comments input {
    width: 100%;
}
#comments {
    border-top: 1px dotted #999;
    padding-top: 20px;
}
#comments img.avatar {
    border-radius: 100px;
}
.comment-form-author, .comment-form-email, .comment-form-url {
	font-family: Helvetica Neue, 'Helvetica Neue', Helvetica, arial, sans-serif;
    float: left;
    font-size: 12px;
	letter-spacing: 0.05em;
    font-weight: 700;
    text-transform: uppercase;
    width: 33.2833%;
}
.comment-form-author, .comment-form-email { 
    padding-right: 0.5em;
}
.form-allowed-tags {
    display: none;
}
#reply-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
.comment-form-comment {
	font-family: Helvetica Neue, 'Helvetica Neue', Helvetica, arial, sans-serif;
    font-size: 12px;
	letter-spacing: 0.05em;
    font-weight: 700;
    text-transform: uppercase;
}
.comment-notes {
    font-size: 13px;
    font-style: italic;
}
#comments {
    border-top: 1px dotted #999;
    padding-top: 20px;
}
#commentform {
    margin-bottom: 40px;
}
h2.comments-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    padding-top: 5px;
}
ol.comment-list {
    border-bottom: 1px dotted #999;
    list-style: outside none none;
    margin: 0 0 30px;
    padding-bottom: 30px;
}
li.comment article {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #e6e7e8;
    margin-bottom: 8px;
    overflow: auto;
    padding: 15px;
}
footer.comment-meta {
    float: left;
    text-align: center;
    width: 30%;
}
div.comment-author {
    font-size: 16px;
}
div.comment-author img {
    display: block;
    margin: 0 auto;
}
div.comment-content {
    float: right;
    font-size: 16px;
    width: 70%;
}
.comment-metadata {
    font-size: 12px;
}
div.reply {
    display: block;
    font-size: 15px;
    overflow: auto;
    padding-left: 30%;
    width: 100%;
}
p.form-submit input.submit {
    padding: 15px;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

.home-widget, .footer-cta { margin-bottom:15px; }

.home-widget section { padding:15px 0; }

#mt-projects > .grid,
.footer-cta > .grid,
#home-news .grid,
#home-cta .grid
 {
	min-width: 0;
}

.home-widget #mt-projects > .grid {
	max-width: none;
}

#mt-projects > [class*="col-"] {
	padding: 0;
}

#mt-projects > .grid-pad,
.footer-cta > .grid-pad,
#home-news .grid-pad,
#home-cta .grid-pad,
#mt-projects > .grid > [class*="col-"],
.footer-cta > .grid-pad > [class*="col-"],
#mt-columns .grid [class*="col-"],
#home-news .grid [class*="col-"],
#home-cta .grid [class*="col-"],
.modal-inn-cnt .grid [class*="col-"]{
	padding: 0;
}

#secondary #mt-details .grid [class*="col-"] {
	display: block;
	width: 100%;
}

#mt-columns .column-box {
	padding: 0 15px;
}

#mt-projects{
	padding:0;
	margin:15px 0;
}

.project-box {
    position: relative;
    width: 100%;
    overflow: hidden;
		border:1px solid #cccccc;
	-webkit-transition: opacity 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s, -moz-transform 0.5s ease 0s;
	-o-transition: opacity 0.5s ease 0s, -o-transform 0.5s ease 0s;
	transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
}


.project-box:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.home-widget #mt-projects .project-box:before {
    content: "";
    display: block;
    padding-top: 60%;
}

.home-widget #mt-projects .widget-title{
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform: translate(-50%,-100%);
	transform: translate(-50%,-100%,);
	z-index:1;
}

.project-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  		background: #0000ff;
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	   background: url(../../uploads/2017/12/bg_particle.jpg);
	/*-webkit-background-size: cover;
	background-size: cover;*/
    -webkit-opacity: 1;
	opacity: 1;
	background-position: center center;
	-webkit-transition: opacity 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s, -moz-transform 0.5s ease 0s;
	-o-transition: opacity 0.5s ease 0s, -o-transform 0.5s ease 0s;
	transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
}

.project-box:hover .widget-title{color:#ffffff;}
.project-box:hover .widget-title:after{background:#ffffff;}
.project-box:hover .project-bg {
 -webkit-opacity: 0;
	opacity: 0;
 -webkit-transform: scale3d(1.1, 1.1, 1);
	-moz-transform: scale3d(1.1, 1.1, 1);
	-o-transform: scale3d(1.1, 1.1, 1);
 transform: scale3d(1.1, 1.1, 1);
	-webkit-transition: opacity 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s, -moz-transform 0.5s ease 0s;
	-o-transition: opacity 0.5s ease 0s, -o-transform 0.5s ease 0s;
	transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
}

.project-content div {
   display: table;
   width: 100%;
   height: 100%;
}

.project-content div.project-title {
 display: table-cell;
 text-align: center;
 vertical-align: middle; 
 color: white;
	padding: 15px;
}

.project-content div.project-title h3 {  
 -webkit-opacity: 0;
	opacity: 0;
	margin: 1em 0;   
	font-size: 24px;
	line-height: 28px; 
 -webkit-transform: scale3d(1.25, 1.25, 1);
	-moz-transform: scale3d(1.25, 1.25, 1);
	-o-transform: scale3d(1.25, 1.25, 1);
  transform: scale3d(1.25, 1.25, 1);
	-webkit-transition: opacity 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s, -moz-transform 0.5s ease 0s;
	-o-transition: opacity 0.5s ease 0s, -o-transform 0.5s ease 0s;
	transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
}

.project-box:hover .project-content div.project-title h3 {
	-webkit-opacity: 1;
	opacity: 1;  
    -webkit-transform: scale3d(1, 1, 1);
	-moz-transform: scale3d(1, 1, 1);
	-o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
	-webkit-transition: opacity 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s, -moz-transform 0.5s ease 0s;
	-o-transition: opacity 0.5s ease 0s, -o-transform 0.5s ease 0s;
	transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
} 

h2.project-title{
	text-align: center;
	margin: 1em 0 1.5em;
	letter-spacing: -0.05em;
}

#secondary section {
	margin: 0 0 1.5em;
}

#secondary section button, {
    display: block;
    margin: 1em auto 0;
} 

a.recomplex-button { 
	margin: 1em auto 0;  
}

.progressBar div { background-color: #040404; }

.all-news button {
  display: block;
	width:100%;
  margin: 15px auto 0;
  text-align: center;
}


/* Calendar */

.mc-format, .mc-time, .mc-main .mc_bottomnav, .mc-main .time-block, .mc-main .view-full, .mc-main .details .mc-image{display:none!important;}
.mc-main td{height: 4em;}
.my-calendar-header{margin-bottom: 10px!important;}
.mc-main caption, .mc-main.list .my-calendar-month, .mc-main .heading{
	font-size:14px;
 text-align: left;
 margin-bottom: 10px;}
.current-day{background:#efefef!important;}
.mc-main .current-day .mc-date{
    background: transparent!important;
    color: inherit!important;
    box-shadow: none!important;
    font-style: normal!important;
}
.mc-main .my-calendar-header, .mc-main .mc_bottomnav{text-align: center;}
.mc-main .event-title{
	font-family: Helvetica Neue, 'Helvetica Neue', Helvetica, arial, YuGothic,'Yu Gothic', sans-serif;
 background: transparent!important;
 color: #404040!important;
 font-size: 28px;
 line-height: 34px;
 margin-bottom: 1.5em!important;
	padding:0!important;
}

.mc-main .my-calendar-header input,
.mc-main .my-calendar-header a,
.mc-main .mc_bottomnav a{
	background: #000000;
 color: #ffffff;}
.mc-main td .event-title{margin-bottom: 0!important;}
.mc-main .my-calendar-date-switcher input[type=submit]{padding: 4px 10px!important;border: none;}
.my-calendar-nav .my-calendar-prev a,
.my-calendar-nav .my-calendar-next a{border-radius:0!important;border:none!important;padding: 7px 10px;vertical-align: middle;margin:0 3px;}   
.mc-main .my-calendar-header span, .mc-main .my-calendar-header a, .mc-main .mc_bottomnav span, .mc-main .mc_bottomnav a, .mc-main .my-calendar-header select, .mc-main .my-calendar-header input{border-radius:0;}

.mc-main .my-calendar-header input:hover, .mc-main .my-calendar-header input:focus, .mc-main .my-calendar-header a:hover, .mc-main .mc_bottomnav a:hover, .mc-main .my-calendar-header a:focus, .mc-main .mc_bottomnav a:focus {
 background: #0000ff!important;
	text-decoration: none;
}
.mc-main .nextmonth .mc-date {opacity: .3;}

.mcat_live--event{background:#ffa500!important;}
.mcat_info--new{background:#0000ff!important;}

/*--------------------------------------------------------------
# Skeleton
--------------------------------------------------------------*/
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0px;
}

[class*='col-'] {
	float: left;
	padding-right: 30px; /* column-space */
}

.grid {
	width: 100%;
	max-width: 1140px;
	min-width: 755px;
	margin: 0 auto;
	overflow: hidden;
}

.grid:after {
	content: "";
	display: table;
	clear: both;
}

.grid-pad {
	padding-top: 20px;
	padding-left: 30px; /* grid-space to left */
	padding-right: 0px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.page-contain {
	max-width: 1000px;
	margin: 0 auto;
}

.page-contain-full {
	/*max-width: 900px;*/
	margin: 0 auto;
}

.overflow {
	overflow: visible;
}

.push-right {
	float: right;
}

/* Content Columns */

.col-1-1 {
	width: 100%;
}
.col-2-3, .col-8-12 {
	width: 66.66%;
}

.col-1-2, .col-6-12 {
	width: 50%;
}

.col-1-3, .col-4-12 {
	width: 33.33%;
}

.col-1-4, .col-3-12 {
	width: 25%;
}

.col-1-5 {
	width: 20%;
}

.col-1-6, .col-2-12 {
	width: 16.667%;
}

.col-1-7 {
	width: 14.28%;
}

.col-1-8 {
	width: 12.5%;
}

.col-1-9 {
	width: 11.1%;
}

.col-1-10 {
	width: 10%;
}

.col-1-11 {
	width: 9.09%;
}

.col-1-12 {
	width: 8.33%
}

/* Layout Columns */

.col-11-12 {
	width: 91.66%
}

.col-10-12 {
	width: 83.333%;
}

.col-9-12 {
	width: 75%;
}

.col-5-12 {
	width: 41.66%;
}

.col-7-12 {
	width: 58.33%
}

/* Pushing blocks */

.push-2-3, .push-8-12 {
	margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
	margin-left: 50%;
}

.push-1-3, .push-4-12 {
	margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
	margin-left: 25%;
}

.push-1-5 {
	margin-left: 20%;
}

.push-1-6, .push-2-12 {
	margin-left: 16.667%;
}

.push-1-7 {
	margin-left: 14.28%;
}

.push-1-8 {
	margin-left: 12.5%;
}

.push-1-9 {
	margin-left: 11.1%;
}

.push-1-10 {
	margin-left: 10%;
}

.push-1-11 {
	margin-left: 9.09%;
}

.push-1-12 {
	margin-left: 8.33%
}


/*--------------------------------------------------------------
# Responsive - max-width: 767px
--------------------------------------------------------------*/
@media handheld, only screen and (max-width: 767px) {
	.grid {
		width: 100%;
		min-width: 0;
		margin-left: 0px;
		margin-right: 0px;
		padding-left: 20px; /* grid-space to left */
		padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
	}
	
	[class*='col-'] {
		width: auto;
		float: none;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 10px;
		margin-bottom: 10px;
		padding-left: 0px;
		padding-right: 10px; /* column-space */
	}
	[class*='col-'].mt-socials:not(:first-child){
		margin-bottom:60px;
	}
	
	/* Mobile Layout */
	[class*='mobile-col-'] {
		float: left;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 0px;
		margin-bottom: 10px;
		padding-left: 0px;
		padding-right: 10px; /* column-space */
		padding-bottom: 0px;
	}
	
	.mobile-col-1-1 {
		width: 100%;
	}
	.mobile-col-2-3, .mobile-col-8-12 {
		width: 66.66%;
	}

	.mobile-col-1-2, .mobile-col-6-12 {
		width: 50%;
	}

	.mobile-col-1-3, .mobile-col-4-12 {
		width: 33.33%;
	}

	.mobile-col-1-4, .mobile-col-3-12 {
		width: 25%;
	}

	.mobile-col-1-5 {
		width: 20%;
	}

	.mobile-col-1-6, .mobile-col-2-12 {
		width: 16.667%;
	}

	.mobile-col-1-7 {
		width: 14.28%;
	}

	.mobile-col-1-8 {
		width: 12.5%;
	}

	.mobile-col-1-9 {
		width: 11.1%;
	}

	.mobile-col-1-10 {
		width: 10%;
	}

	.mobile-col-1-11 {
		width: 9.09%;
	}

	.mobile-col-1-12 {
		width: 8.33%
	}

	/* Layout Columns */

	.mobile-col-11-12 {
		width: 91.66%
	}

	.mobile-col-10-12 {
		width: 83.333%;
	}

	.mobile-col-9-12 {
		width: 75%;
	}

	.mobile-col-5-12 {
		width: 41.66%;
	}

	.mobile-col-7-12 { 
		width: 58.33%
	}
	
	.hide-on-mobile {
		display: none !important;
		width: 0;
		height: 0;
	}
	
	.site-header{padding: 0 20px;}
	.site-title a, .site-title{line-height:65px;}
	.site-branding img{width:150px;}

	.hero-content h2,
	.page-entry-header .entry-title {
		font-size: 26px;
		line-height: 30px;
	}
	
	.news-image, .news-info, .news-content {
		width: 100% !important;
		position: relative;
		background-position: center;
	}

	.news-info > div{text-align:center;}
	.news-info button{width:100%;}
	
	.news-image {
		height: 200px;
	}
	
	.news-box:before {
		padding-top: 0;
	}
	
	.page-entry-header {
		padding: 80px 0 60px;
		background:#000000;
	}
	
	#archive-content-container article a .entry-title{margin-bottom:30px;}
	#archive-content-container article a .entry-title:after{bottom:-15px;}
	
	.page-entry-header .entry-title:after{
		bottom:-10px;
		height:5px;
	}
	
	.page-bg-image{z-index:-1!important;}
	body.single .page-bg-image{opacity:.7!important;}
	body:not(.single) .page-bg-image{background:#000000!important;}


	.foam-container{margin-top:0;}
	.foam-container [class*='col-']{
		width:100%;
		margin-top:0;
 	margin-right:0;
	 padding-right:0;}

.foam-container .submit input.col-1-2{
	width:49%;
	margin-right:0;
	padding-left:0;
	padding-right:0;
}
	
	/*Top - Responsive*/
	.banner-area{text-align: center;}
	#twitter-widget-0{
		width:335px!important;
		height:520px!important;
	}
	
/*Modal Content - Responsive*/
	.modal-inn-cnt{text-align:center;}
	.modal-inn-cnt .modal-txt > [class*="col-"],
	.modal-col-prof{padding:15px 30px;}
	.modal-ph,.modal-txt,.modal-left-col,.modal-right-col{margin:0;}
	.modal-left-col ul,
	.modal-left-col dl:last-child{text-align:left;}

	
}/*# Responsive - max-width: 767px
********************************/

/* Portrait */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1280px) 
  and (orientation: portrait) { 
	  
	 #hero-background {
		-webkit-background-size: auto !important;
		-moz-background-size: auto !important;
		-o-background-size: auto !important; 
		background-size: auto !important;
		background-attachment: scroll !important; 
		background-position: center center;
	}
	
	#home-hero {
 		height: 500px;
	}
	
	.hero-content h2 {
  		font-size: 4rem;
  	} 
}


/* Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1280px) 
  and (orientation: landscape) {
	  
	  #hero-background {
		-webkit-background-size: auto !important;
		-moz-background-size: auto !important;
		-o-background-size: auto !important; 
		background-size: auto !important;
		background-attachment: scroll !important; 
		background-position: center center;
	}	
	
	#home-hero {
 		height: 500px;
	}
	
	.hero-content h2 {
  		font-size: 4rem;
  	} 

} 

/*Compornent*/
.tparrows{display:none!important;}
.border-collapse{margin-left: -2px;}
.parallax-mirror{background:rgba(0,0,0,1);}
.parallax-slider{opacity:.7;}
.page .parallax-slider,
.blog .parallax-slider{opacity:0;}

/* Text / Font*/
.ft-b{font-weight:bold;}

/*Modal*/
.modal{padding:0!important;}

.modal-close{
	position: absolute;
	top:30px;
	left:30px;
	display:block;
	width:40px;
	height:40px;
	background-color: transparent;
	border:none;
	overflow: hidden;
	text-indent:40px;
	white-space: nowrap;
}

.modal-close:before,
.modal-close:after{
	position: absolute;
	top:20px;
	left:-10px;
	display:block;
	content:"";
	width:60px;
	height:1px;
	background:#444444;
}
.modal-close:before{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.modal-close:after{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.modal-close:hover:before,
.modal-close:hover:after{
	background: #ffffff;
	-o-transition: ease-in-out 0.2s;
  	-ms-transition: ease-in-out 0.2s;
  	-moz-transition: ease-in-out 0.2s;
  	-webkit-transition: ease-in-out 0.2s;
  	transition: ease-in-out 0.2s; 
}

.modal-dialog{
width: auto!important;
max-width:none;
margin:0;
}
.modal-content{
display:table;
width:100%;
height:100vh;
height:100vh;
background-color:transparent;
-webkit-box-shadow:none;
box-shadow:none;
border:0;
border-radius:0;
}

.modal-body{
	display:table-cell;
	vertical-align: middle;
	padding:0;
	text-align: center;
}

.modal-inn-cnt{
	position: relative;
	display: inline-block;
	width: 90%;
	max-width: 840px;
	margin: 30px 0;
	background: #aaaaaa;
 text-align: left;
}

.modal-inn-cnt .modal-ph,
.modal-inn-cnt .modal-txt{
	padding:0!important;
	background: #ffffff;
	word-break: break-all;}
.modal-inn-cnt .modal-txt > [class*="col-"],
.modal-col-prof{padding:30px;}

.modal-col-prof{color:#ffffff;padding:30px;}

.modal-inn-cnt dl,
.modal-inn-cnt dt,
.modal-inn-cnt dd{
	line-height:1;
	margin:0;
	font-weight: normal;}

.modal-inn-cnt .other-prof{overflow:hidden;}
.modal-inn-cnt .other-prof dt,
.modal-inn-cnt .other-prof dd{
 display:block;
	float:left;
}
.modal-inn-cnt .other-prof dt{clear:both;}

.modal-inn-cnt .modal-title{
	font-size: 28px;
	margin:0 0 10px 0;
}

.modal-inn-cnt .modal-title-jp{
	line-height:initial;
	margin-bottom:.5em;
}

.modal-inn-cnt dd .modal-title-jp{margin-bottom:1.5em;}

.modal-inn-cnt .widget-title{
	font-size: 24px;
 line-height: 28px;
}

.modal-right-col [class*='col-']{text-align: center; margin-bottom:1em;}

.modal-right-col h2:not(:first-child){margin-top:15px;}

.modal-inn-cnt ul{
	list-style: none;
	padding:0;
	margin:1.5em 0;
}

.modal-inn-cnt ul.social-media-icons{margin-top:0;}

.modal-inn-cnt .leader-badge{
	display:inline-block;
	width:100%;
	font-weight:bold;
	border-bottom:5px solid;
	white-space: nowrap;
}
.modal-inn-cnt .leader-badge.leader-men{}
.modal-inn-cnt .leader-badge.leader-lady{}

.modal-inn-cnt .social-media-icons li .fa{
	font-size: 30px;
	color:#444444;
}

.modal-inn-cnt .social-media-icons li a:hover .fa{
	color:#999999;
}

@media (min-width:768px){
	.d-md-none{display:none!important}
}