/*
Theme Name: Daily
Theme URI: http://www.robertbrodziak.com/daily
Author: Robert Brodziak
Author URI: http://www.robertbrodziak.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Daily is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
13.0 - General
14.0 - Blog
15.0 - Single
16.0 - Intro
17.0 - Nav
18.0 - Media Queries

--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 - Reset

元々のfont-family: inherit; を変更
  font-style: inherit;
  font-weight: inherit;
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: 'Amiri',"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝",serif;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */ }

*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box; }

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

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

ol, ul {
  list-style: none; }

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0; }

caption, th, td {
  font-weight: normal;
  text-align: left; }

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

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

div.entry-content a,
div.index_info a,
div.index_books a,
div.index_about a {
color:#bea364;
}

div.entry-content a:hover,
div.index_info a:hover,
div.index_books a:hover,
div.index_about a:hover {
color:#d7b35e;
}

a:focus {
  outline: thin dotted; }

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

a img {
  border: 0; }

a.img:hover  {
  opacity: 0.7;
  filter: alpha(opacity=70);  }

test {
  color: #3a3a3a; }

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #3a3a3a;
  font-family: 'Amiri',serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  clear: both; }

p {
  margin-bottom: 1.5em; }

b, strong {
  font-weight: bold; }

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

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  font-family: 'Amiri',serif;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

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

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

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

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

sup {
  bottom: 1ex; }

sub {
  top: .5ex; }

small {
  font-size: 75%; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
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 {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

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

figure {
  margin: 0; }

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

th {
  font-weight: bold; }

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */ }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button;
  /* Corrects inability to style clickable 'input' types in iOS */
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02); }

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15); }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */ }

input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  -webkit-box-sizing: content-box;
  /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 0px; }

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

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

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 100%; }

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: #3a3a3a;
  text-decoration: none; }

a:visited {
  color: #3a3a3a; }

a:hover,
a:focus,
a:active {
  color: #3a3a3a; }

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
  display: block;
  float: left; }

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

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

.main-navigation a {
  display: block;
  text-decoration: none; }

.main-navigation ul ul {
  /*	box-shadow: 0 2px 0px rgba(0, 0, 0, 0.2); */
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
  background: #fff;
  padding-top: 35px;
  margin-left: -20px; }

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

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

.main-navigation ul ul li {
  padding-top: 8px;
  padding-bottom: 8px; }

.main-navigation ul ul li:last-child {
  padding-bottom: 20px; }

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

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

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

@media screen and (max-width: 767px) {
  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block; }

  .main-navigation ul {
    display: none; } }
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

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

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

/*--------------------------------------------------------------
6.0 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;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  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 */ }

/*--------------------------------------------------------------
7.0 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: 0 auto; }

/*--------------------------------------------------------------
8.0 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;
}
*/
/*--------------------------------------------------------------
9.0 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 {
  display: none; }

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.hentry {
  margin: 0 0 1.5em; }

.byline,
.updated {
  display: none; }

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

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

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

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

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

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.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%; }

/*--------------------------------------------------------------
12.1 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; }

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-columns-3 .gallery-item {
  max-width: 33.33%; }

.gallery-columns-4 .gallery-item {
  max-width: 25%; }

.gallery-columns-5 .gallery-item {
  max-width: 20%; }

.gallery-columns-6 .gallery-item {
  max-width: 16.66%; }

.gallery-columns-7 .gallery-item {
  max-width: 14.28%; }

.gallery-columns-8 .gallery-item {
  max-width: 12.5%; }

.gallery-columns-9 .gallery-item {
  max-width: 11.11%; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

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

.mfp-close {
  background: transparent;
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: 'Open sans', Arial, Baskerville, monospace;
  font-weight: 100; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #585858;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
  display: none; }

.mfp-arrow {
  position: absolute;
  opacity: 0.5;
  filter: alpha(opacity=100);
  margin: 0;
  top: 50%;
  margin-top: -8px;
  padding: 0px;
  width: 40px;
  height: 40px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:hover {
  opacity: 1; }

.mfp-arrow-left {
  left: 30px;
  background: url("img/arrow-left.svg") no-repeat center center; }

.mfp-arrow-right {
  right: 30px;
  background: url("img/arrow-right.svg") no-repeat center center; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  /*   box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); */
  background: #444444; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/*--------------------------------------------------------------
Grid
--------------------------------------------------------------*/
.row {
  width: 100%;
  display: block; }

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

[class*='col-'] {
  float: left; }

.col-1 {
  padding-right: 15px;
  padding-left: 15px; }

.col-1-2 {
  width: 50%;
  padding-right: 15px;
  padding-left: 15px; }

.col-1-3 {
  width: 33.33333333%;
  padding-right: 15px;
  padding-right: 15px;
  padding-left: 15px; }

.clear {
  clear: both !important; }

/*--------------------------------------------------------------
13. General
--------------------------------------------------------------*/
body, html {
  height: 100%; }

.container {
  max-width: 920px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px; }

.content-area {
  padding-top: 50px; }

.page .content-area,
.error404 .content-area {
  padding-top: 120px; }

.page .entry-content,
.error404 .entry-content {
  margin-bottom: 70px; }

.intro-is .content-area {
  padding-top: 0; }

.inside-wrapper {
  max-width: 920px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px; }

.footer-widgets .inside-wrapper {
  padding-left: 35px;
  padding-right: 35px; }

h1, h2, h3, h4 {
  font-family: 'Amiri', serif;
  text-transform: uppercase;
  letter-spacing: 0.2em; }

h1 {
  font-size: 1.250em; }

h2 {
  font-size: 1.125em; }

h3 {
  font-size: 1em; }

h4 {
  font-size: 0.875em; }

.entry-content h1 {
  margin-bottom: 20px; }

.entry-content h2 {
  margin-bottom: 20px; }

.entry-content h3 {
  margin-bottom: 20px; }

.entry-content h4 {
  margin-bottom: 20px; }

blockquote p {
  font-size: 1.250em;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 0.95; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

/*--------------------------------------------------------------
14. Blog
--------------------------------------------------------------*/
.post {
  padding-top: 70px;
  padding-bottom: 70px; }

.attachment-post-thumbnail {
  margin: 0 auto 35px;
  transition: opacity 0.7s;
  display: block; }

.attachment-post-thumbnail:hover {
  opacity: 0.7; }

.entry-title {
  font-family: 'Amiri', serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #000;
  text-align: center;
  margin-bottom: 27px;
  font-size: 1.25em; }

.entry-title a {
  color: #000;
  text-decoration: none; }

.entry-title:after {
  content: "";
  height: 2px;
  width: 50px;
  background: black;
  display: block;
  margin: 0 auto;
  margin-top: 20px; }

.entry-content {
  font-family: 'Amiri',serif; }

.odd {
  background: #f5f5f5;
  position: relative;
  z-index: 10; }

.even {
  background: white;
  position: relative;
  z-index: 10; }

.entry-meta {
  text-align: center; }

.posted-on {
  font-size: 0.688em;
  text-transform: uppercase;
  letter-spacing: 0.2em; }

.home .entry-content {
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 20px; }

.home .entry-content p {
  text-align: center; }

.hentry {
  margin-bottom: 0; }

.read-more {
  padding: 20px;
  border: 1px solid black;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 200px;
  transition: all 0.5s ease; }

a.read-more {
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.750em; }

a.read-more:hover {
  background: #cdcdcd;
  border: 1px solid #cdcdcd;
  color: #565656; }

.post .entry-footer {
  text-align: center;
  font-family: 'Amiri',serif;
  font-size: 0.875em;
  font-style: italic;
  margin-bottom: 30px; }

.cat-links, .tag-links {
  padding-left: 10px;
  padding-right: 10px; }

.site-main .paging-navigation {
  padding-top: 20px; }

.search .entry-summary {
  font-family: 'Amiri',serif; }

/*--------------------------------------------------------------
15. Single
--------------------------------------------------------------*/
.nav-previous {
  text-align: left;
  padding-right: 40px; }

.paging-navigation .nav-next {
  text-align: right;
  padding-left: 40px; }

.paging-navigation a {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Amiri',serif;
  font-size: 0.750em; }

.nav-links a {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Amiri',serif;
  font-size: 0.750em; }

.nav-links span {
  transition: opacity 0.5s ease; }

.nav-links:hover span {
  opacity: 0.8; }

.nav-previous span {
  width: 10px;
  height: 17px;
  background: url("img/arrow-left.svg") no-repeat;
  display: inline-block;
  margin-bottom: -4px;
  margin-right: 5px;
  opacity: 0.3; }

.nav-next span {
  width: 10px;
  height: 17px;
  background: url("img/arrow-right.svg") no-repeat;
  display: inline-block;
  margin-bottom: -4px;
  margin-left: 5px;
  opacity: 0.3; }





.single .nav-links .nav-previous {
  position: fixed;
  bottom: 20px;
  left: 50px;
  z-index: 29; }

.single .nav-links .nav-next {
  position: fixed;
  bottom: 20px;
  right: 50px;
  z-index: 29; }

.single .nav-links-stop .nav-previous,
.single .nav-links-stop .nav-next {
  position: absolute; }

.single .nav-links {
  position: relative;
  height: 1px; }

.single .site-main .post-navigation {
  margin: 0;
  overflow: visible; }

.single .content-area img {
  margin-bottom: 20px; }

.site-content {
  z-index: 10;
  clear: both; }

.site {
  z-index: 2;
  height: 100%;
  width: 100%;
  background: #fff; }

.footer-widgets {
  font-size: 0.750em;
  z-index: 2;
  position: relative;
  background: #fff;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding-top: 50px;
  padding-bottom: 40px;
  text-align: center; }

.widget-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-align: center; }

.site-info {
  text-align: center;
  font-size: 0.750em;
  padding-bottom: 20px;
  padding: 20px 10px 10px 10px;
  opacity: 0.4; }

.footer-widgets li {
  list-style: none;
  padding-bottom: 0.7em;
  margin-bottom: 0.7em;
  text-align: center; }

.footer-widgets ul {
  margin-left: 0; }

/********** comments ***********/
.comment-reply-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.750em; }

.comment-notes {
  font-size: 0.750em; }

.comments-area label {
  display: block;
  font-size: 0.750em;
  opacity: 0.7; }

.comments-area .form-submit input[type="submit"] {
  border: none;
  border-radius: 0;
  background: #e1e1e1;
  box-shadow: none;
  text-shadow: none;
  color: #9a9a9a;
  padding: 15px 20px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.750em; }

.comments-title {
  margin-bottom: 30px;
  font-size: 0.875em;
  text-align: center; }

.avatar {
  display: none; }

.comments-area .odd {
  background: #fff; }

.comments-area .comment-metadata {
  font-size: 0.750em;
  margin-bottom: 20px; }

.comment-content p {
  font-family: 'Amiri',serif; }

.comments-area .reply {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-size: 0.875em; }

.says {
  display: none; }

.comments-area .children {
  border-left: 1px solid #dcdcdc;
  padding-left: 20px; }

.comments-area ul {
  list-style: none; }

.comments-area .comment-list {
  margin-left: 0; }

.comments-area {
  border-top: 1px solid #dcdcdc;
  padding-top: 40px; }

/********** /comments ***********/
.page .site-main .container {
  padding: 0; }

.error-404 .page-header,
.error-404 .page-content {
  text-align: center; }

.error-404 .page-title {
  font-family: 'Amiri',serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #000;
  text-align: center;
  margin-bottom: 27px;
  font-size: 1.25em; }

.error-404 .widgettitle {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1em;
  text-align: center;
  margin-bottom: 20px; }

.error-404 .widget ul {
  list-style: none;
  margin-left: 0;
  font-family: 'Amiri',serif; }

.error404 .page-content {
  margin-bottom: 70px; }

.archive .page-header {
  text-align: center;
  margin-top: 80px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1em; }

.page-header .page-title {
  font-size: 1em; }

.archive.paged .page-header {
  display: none; }

.archive .entry-content {
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 20px; }

.archive .entry-content p {
  text-align: center; }

/*--------------------------------------------------------------
16. Intro
--------------------------------------------------------------*/
.home-intro {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: table; }

.home-intro-inside {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.home-intro h1 {
  z-index: -1;
  text-align: center;
  color: white;
  font-size: 2.4em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-left: 20%;
  padding-right: 20%;
  font-family: 'Amiri',serif;
  margin-bottom: 50px;
  font-weight: normal; }

.scroll-down {
  padding: 20px 30px;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  background: #d8a522;
  opacity: 1;
  transition: background 0.2s; }

a.scroll-down {
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.750em;
  cursor: pointer; }

.scroll-down:hover {
  background: #cdcdcd !important;
  color: #565656; }

a.scroll-down.light-text,
h1.light-text {
  color: #fff; }

a.scroll-down.dark-text,
h1.dark-text {
  color: #000; }

.home .space {
  z-index: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  display: block;
  position: relative;
  clear: both; }

.home.paged .space {
  display: none !important; }

/*--------------------------------------------------------------
17. Nav
--------------------------------------------------------------*/
.main-navigation {
  display: block;
  float: right;
  text-transform: none;
  letter-spacing: 0.2em;
  font-size: 0.688em;
  padding-top: 27px; }

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

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

.main-navigation li a:hover {
  opacity: 0.7; }

.main-navigation a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease; }

.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid white;
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 50px;
  padding-right: 50px;
  height: 100px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.page .site-header,
.home.paged .site-header,
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  z-index: 30;
  /*	padding-top: 15px;
  	padding-bottom: 15px; */
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 20px;
  padding-right: 20px;
  height: 70px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.intro-is .site-header {
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  height: 100px;
  border-bottom: 1px solid #fff; }

.intro-is .fixme {
  position: fixed !important;
  top: 0px !important;
  height: 70px !important;
  transition: border-bottom 2s ease;
  border-bottom: 1px solid #dcdcdc; }

.intro-is .site-header .main-navigation {
  padding-top: 41px; }

.intro-is .site-header.fixme .main-navigation {
  padding-top: 27px; }

.home.paged .site-header {
  position: fixed;
  top: 0 !important;
  bottom: auto !important; }

.point-1 {
  width: 100%;
  height: 1px;
  z-index: 200;
  display: inline-block;
  position: absolute;
  bottom: 85px;
  left: 0;
  opacity: 0; }

.logo {
  /*	float: left;   */
  display: block; }

.logo h1 {
  clear: none;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.2em;
  font-size: 0.875em; }

.logo h1 a {
  text-decoration: none; }

.logo a {
  clear: both; }

.logo img {
  max-height: 50px;
  clear: both;
  padding-top: 7px; }

.site-description {
  font-family: 'Amiri',serif;
  font-size: 0.750em;
  text-transform: none;
  letter-spacing: 0.05em; }

.header-inside {
  display: table;
  height: 100%;
  width: 100%; }

.logo {
  display: table-cell;
  vertical-align: middle; }

.header-inside:after {
  clear: both;
  content: "";
  display: block; }

.menu-item-has-children {
  padding-bottom: 0 !important; }

.home .comments-link {
  display: none; }

.form-allowed-tags {
  display: none; }

.single .entry-footer {
  display: none; }

/*--------------------------------------------------------------
18. Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 1140px) {
  .single .nav-links {
    position: relative;
    height: 40px;
    max-width: 920px;
    margin: 50px auto 30px;
    padding-left: 50px;
    padding-right: 50px; }

  .index_info div{ margin-left: 20px;  margin-right: 20px; }

  .single .nav-links .nav-previous,
  .single .nav-links .nav-next {
    position: absolute; }

  .home-intro h1 {
    padding-left: 15%;
    padding-right: 15%; } }
@media screen and (max-width: 767px) {
  .row {
    width: 100%;
    min-width: 0;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px; }

  .index_info div{ margin-left: 20px;  margin-right: 20px; }

  [class*='col-'] {
    width: auto;
    float: none;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px; }

  .footer-widgets .widget {
    margin-bottom: 50px; }

  .home-intro h1 {
    font-size: 1.8em;
    padding-left: 10%;
    padding-right: 10%; }

  .intro-is .site-header .main-navigation {
    padding-top: 26px; }

  .menu-toggle {
    float: right;
    width: 20px;
    height: 20px;
    background: url("img/menu.svg") center no-repeat;
    text-indent: -99999px;
    overflow: hidden;
    border: none;
    box-shadow: none;
    outline: none;
    opacity: 0.25; }

  .menu-toggle:hover {
    box-shadow: none; }

  .intro-is .site-header {
    position: relative !important;
    left: 0;
    bottom: 0;
    height: 70px !important;
    top: 0 !important;
    border-bottom: 1px solid #dcdcdc; }

  .site-header {
    position: relative !important; }

  .home-intro {
    position: relative;
    display: table !important; }

  .home .space {
    display: none; }

  .point-1 {
    bottom: -1px; }

  .toggled li {
    float: none;
    width: 100%;
    display: block; }

  .main-navigation li {
    position: relative;
    margin-left: 20px; }

  .main-navigation.toggled {
    width: 100%; }

  .main-navigation.toggled .nav-menu {
    position: absolute;
    left: 0px;
    top: 70px;
    background: white;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    border-bottom: 1px solid #dcdcdc; }

  .main-navigation.toggled .nav-menu li {
    padding-top: 8px;
    padding-bottom: 8px; }

  .toggled .sub-menu {
    display: block;
    float: none;
    margin-left: 10px;
    position: relative;
    left: auto;
    top: auto;
    box-shadow: none;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 8px; }

  .page .content-area, .error404 .content-area {
    padding-top: 50px; }

  .post {
    padding-top: 50px;
    padding-bottom: 50px; }

  .footer-widgets {
    padding-bottom: 10px;
    padding-top: 40px; }

  .single .post {
    padding-top: 0; }

  .archive .page-header {
    margin-top: 0; }

  .home .entry-content,
  .archive .entry-content {
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 20px; } }
@media screen and (max-width: 480px) {
  .home-intro h1 {
    font-size: 1em;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px; }

  .index_info div{ margin-left: 20px;  margin-right: 20px; }

  .home .entry-content,
  .archive .entry-content {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 20px; }

  .entry-title {
    font-size: 1em; }

  .scroll-down {
    padding: 17px 17px; }

  .page .content-area, .error404 .content-area {
    padding-top: 30px; } }
@media screen and (max-width: 320px) {
  .container {
    padding-left: 20px;
    padding-right: 20px; }

  .index_info div{ margin-left: 20px;  margin-right: 20px; }

  .site-header,
  .page .site-header,
  .home.paged .site-header {
    padding-left: 20px;
    padding-right: 20px; }

  .footer-widgets .inside-wrapper {
    padding-left: 5px;
    padding-right: 5px; }

  .paging-navigation .nav-links a {
    font-size: 0.563em;
    letter-spacing: 0.05; }

  .nav-next span {
    margin-left: 0; }

  .single .content-area img {
    margin-bottom: 15px; }

  .single .nav-links {
    padding-left: 20px;
    padding-right: 20px; }

  .single .nav-links .nav-previous {
    left: 20px; }

  .single .nav-links .nav-next {
    right: 20px; }

  .main-navigation.toggled .nav-menu {
    padding-left: 0; }
}

/*--------------------------------------------------------------
 HOME CONTENTS
--------------------------------------------------------------*/
	.index_cont				{ max-width:920px; margin:0 auto; padding:40px 40px 50px 40px;}
	.index_cont h3			{ position:relative; padding:0 0 40px 0; font-size:23px; text-align:center; letter-spacing:2px;}

	.index_info h3:after	{ position:absolute; content:''; display:block; width:50px; bottom:0; left:50%; margin:0 0 0 -25px; border-bottom:solid 2px #000000;}
	.index_info>p			{ padding:30px 0 10px 0; text-align:center;}

	.index_books h3:after	{ position:absolute; content:''; display:block; width:50px; bottom:0; left:50%; margin:0 0 0 -25px; border-bottom:solid 2px #000000;}
	.index_books>p			{ padding:30px 0 10px 0; text-align:center;}
	.index_books>div		{ text-align:center;}
	.index_books>div img	{ margin: 0 5px 10px 5px;}
	.index_books>div p		{ display:inline-block; padding:20px; text-align:left;}

	.index_works ul			{ margin:0; padding:0 0 30px 0; list-style:none;}
	.index_works ul:after	{ content:''; display:block; clear:both;}
	.index_works li			{ width:33.3%; padding:15px; float:left;}
	.index_works li img		{ vertical-align:bottom;}

	.index_about>p			{ text-align:center; font-size:20px;}
	.index_about>div		{ padding:0 0 30px 0; text-align:center;}
	.index_about>div p		{ display:inline-block; padding:20px; text-align:left;}

	.index_contact			{ max-width:100%; padding:60px 40px 50px 40px; border-top:solid 1px #dbdbdb;}
	.index_contact h3 a		{ font-weight:normal;}


@media screen and (max-width: 1140px){

}
@media screen and (max-width: 767px){
	.index_books>div>p:nth-of-type(1)
							{ padding:20px 20px 0 20px;}
	.index_works li			{ padding:10px;}
}
@media screen and (max-width: 480px){
	.index_cont				{ padding:40px 10px;}
	.index_works li			{ width:50%; padding:10px;}
	.index_about>div p:first-child
							{ padding:20px 20px 0 20px;}
}
@media screen and (max-width: 320px){
	.index_works li			{ padding:5px;}
}


