/*!
Theme Name: minori
Theme URI: https://global-s-h.com/minori/en/
Author: Kazuki Yanamoto
Description: "minori" is a simple WordPress theme using Bootstrap. It`s a responsive design that is adaptable to smartphone, tablet, and PC.  
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minori
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

minori is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
--------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
	font-style: oblique;
}

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;
}

body {
	background: #000;
 /* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1rem 0;
	padding-left: 1.5rem;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

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: 1em 0;
 /* Extra wide images within figure tags don't overflow the content area. */
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #007bff;
}
a:visited {
	color: #007bff;
}
a:hover,
a:focus,
a:active {
	color: #a6a6a6;
	text-decoration: none;
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.menu-icon {
	font-size: 32px;
	color: #fff;
	cursor: pointed;
}

.main-navigation {
	clear: both;
	display: inline-block;
	width: 100%;
	font-size: 0.8rem;
	line-height: 1.5;
	background-color: #000;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
@media (min-width: 768px) {
	.main-navigation ul ul {
		float: left;
		position: absolute;
		top: 100%;
		left: -999em;
		z-index: 99999;
	}
}
@media (min-width: 768px) {
	.main-navigation ul ul ul {
		left: -999em;
		top: 0;
	}
}
@media (min-width: 768px) {
	.main-navigation ul ul li {
		background: #000;
	}
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}
@media (min-width: 768px) {
	.main-navigation ul ul a {
		width: 150px;
	}
}
@media (min-width: 768px) {
	.main-navigation ul ul a:hover,
	.main-navigation ul ul a.focus {
		background: #2a2a2a;
	}
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
@media (max-width: 767px) {
	.main-navigation li {
		padding: 0 .9rem;
		width: 100%;
	}
}
.main-navigation a {
	color: #fff;
	display: block;
	text-decoration: none;
	padding: .5rem .8rem;
}
@media (max-width: 767px) {
	.main-navigation a {
		padding: .5rem 0;
		border-bottom: 1px solid #424241;
	}
}
.main-navigation a:hover {
	color: #b5b5b5;
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-previous a::before,
.posts-navigation .nav-previous a::before,
.post-navigation .nav-previous a::before {
	content: "\003C";
	margin-right: .25rem;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
.comment-navigation .nav-next a::after,
.posts-navigation .nav-next a::after,
.post-navigation .nav-next a::after {
	content: "\003E";
	margin-left: .25rem;
}

/*--------------------------------------------------------------
# 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;
	word-wrap: normal !important;
 /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.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-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. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 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-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;
	table-layout: fixed;
}

.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%;
}
.widget a {
	color: #212529;
}
.widget a:hover {
	color: #a6a6a6;
}
.widget ul {
	padding-left: 0;
}
.widget li {
	list-style: none;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

pre {
	line-height: 1;
}

h1.entry-title,
.entry-content h1 {
	border-left: 4px solid #000;
	padding: 0 .5rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

h2 {
	border-bottom: 1px solid #c2c1c1;
	padding-bottom: .4rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

h2.entry-title a {
	color: black;
}
h2.entry-title a:hover {
	color: #a6a6a6;
}

h3 {
	border-bottom: 1px solid #c2c1c1;
	padding-bottom: .4rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

h4 {
	border-bottom: 1px solid #c2c1c1;
	padding-bottom: .4rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

h5 {
	margin-bottom: 1rem;
	line-height: 1.4;
}

h6 {
	margin-bottom: 1rem;
	line-height: 1.4;
}

.entry-meta {
	font-size: 0.9rem;
	color: #000;
}
.entry-meta a {
	color: #000;
}
.entry-meta a:hover {
	color: #a6a6a6;
}
.entry-meta span {
	margin-right: 0.27rem;
}

.entry-footer {
	font-size: 0.9rem;
	color: #000;
}
.entry-footer a {
	color: #000;
}
.entry-footer a:hover {
	color: #a6a6a6;
}
.entry-footer span {
	margin-right: .27rem;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-image,
.header-image:after {
	height: 930px;
	height: 120vh;
	position: fixed;
	z-index: -1000;
	right: 0;
	left: 0;
}

.header-image {
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.header-image:after {
	content: "";
	display: block;
	z-index: 2;
	background: -moz-linear-gradient(top, rgba(44, 44, 44, 0) 72%, #2c2c2c 78%, #2c2c2c 84%, #2c2c2c 87%);
	background: -webkit-linear-gradient(top, rgba(44, 44, 44, 0) 72%, #2c2c2c 78%, #2c2c2c 84%, #2c2c2c 87%);
	background: -o-linear-gradient(top, rgba(44, 44, 44, 0) 72%, #2c2c2c 78%, #2c2c2c 84%, #2c2c2c 87%);
	background: -ms-linear-gradient(top, rgba(44, 44, 44, 0) 72%, #2c2c2c 78%, #2c2c2c 84%, #2c2c2c 87%);
	background: linear-gradient(to bottom, rgba(44, 44, 44, 0) 72%, #2c2c2c 78%, #2c2c2c 84%, #2c2c2c 87%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002c2c2c', endColorstr='#2c2c2c',GradientType=0 );
}

.site-header {
	clear: both;
}

.site-branding {
	margin: 0 auto;
	margin-top: 70px;
	max-width: 1180px;
}
.site-branding img {
	width: 130px;
	height: auto;
	margin-left: 20px;
	margin-bottom: 10px;
}
@media (min-width: 768px) {
	.site-branding img {
		width: 150px;
	}
}
@media (min-width: 992px) {
	.site-branding img {
		width: 160px;
	}
}
@media (min-width: 1200px) {
	.site-branding img {
		width: 190px;
	}
}

.container {
	background-color: #fff;
	margin-top: 70px;
	padding: 30px;
}

.site-title a {
	margin: 0;
	padding: 0;
	display: inline-block;
	color: #fff;
	margin-left: 20px;
	font-size: 1.7rem;
}
@media (min-width: 576px) {
	.site-title a {
		font-size: 2.2rem;
	}
}

.site-title a:hover {
	color: #adb5bd;
	text-decoration: none;
}

.site-description {
	color: #fff;
	margin: 0;
	margin-left: 20px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	padding-bottom: 1rem;
	color: #fff;
}
.site-footer a {
	color: #fff;
}
.site-footer a:hover {
	color: #a6a6a6;
}
.site-footer .container {
	background-color: #000;
}

.site-info {
	font-size: 0.75rem;
	text-align: center;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-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;
}

/*--------------------------------------------------------------
# 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%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## 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%;
}

.gallery-caption {
	display: block;
}
