/*
Theme Name: kokoromikuji
Description: Used to style the TinyMCE editor.

/**
 * Table of Contents:
 *
 * 1.0 - Reset stylesheet
 * 2.0 - Typography
 * 3.0 - Elements
 * 4.0 - Forms
 * 5.0 - Navigations
 * 6.0 - Clearfix
 */

/*----------------------------*/
/* 1.0 - Reset Stylesheet
/*----------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
 margin: 0;
 padding: 0;
 border: 0;
 outline: 0;
 font-size: 100%;
 vertical-align: baseline;
 background: transparent;
}

html {
 font-size: 62.5%;
 overflow-y: scroll;
}

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

ol,
ul {
 list-style: none;
}

blockquote,
q {
 quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
 content: '';
 content: none;
}

a {
 margin: 0;
 padding: 0;
 font-size: 100%;
 vertical-align: baseline;
 background: transparent;
}

/* Change colours to suit your needs */
address,
cite {
 font-style: italic;
}

em {
 font-weight: bold;
}

code,
kbd,
var,
pre {
 font-family: monospace, serif;
}

code {
 padding: 2px 8px;
 border: solid 1px #e2e5e8;
 border-radius: 4px;
}

kbd {
 padding: 2px 8px;
 background-color: #000c15;
 border-radius: 4px;
 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
 color: #fff;
}

pre {
 margin-bottom: 40px;
 padding: 24px;
 border: solid 1px #e2e5e8;
 background-color: #f4f6fa;
 white-space: pre-wrap;
}

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

sup {
 top: -0.5em;
}

sub {
 bottom: -0.25em;
}

mark {
 font-style: italic;
 font-weight: bold;
 color: #000;
 background-color: #ff9;
}

del {
 text-decoration: line-through;
}

abbr[title],
dfn[title] {
 border-bottom: dotted 1px;
 cursor: help;
}

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

hr {
 height: 1px;
 margin: 0;
 padding: 0;
 border: 0;
 background-color: #e2e5e8;
}

embed,
iframe,
img,
object {
 max-width: 100%;
}

.wp-embedded-content {
 width: 100%;
}

img {
 width: 100%;
 height: auto;
 border: none;
 vertical-align: bottom;
}

:focus {
 outline: 0px;
}

*,
*:after,
*:before {
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 -o-box-sizing: border-box;
 -ms-box-sizing: border-box;
 box-sizing: border-box;
}

/*----------------------------*/
/* 2.0 - Typography
/*----------------------------*/
body {
 line-height: 1.8;
 font-size: 16px;
 font-size: 1.6rem;
 word-wrap: break-word;
}

blockquote {
 display: block;
 margin-bottom: 40px;
 padding: 16px;
 border: solid 2px #e2e5e8;
 quotes: "\201C""\2018";
 font-size: 16px;
 font-size: 1.6rem;
 background-color: #f4f6fa;
}

blockquote:before {
 line-height: 0.1;
 content: open-quote;
 vertical-align: -32px;
 font-size: 60px;
 font-size: 6.0rem;
 color: #e2e5e8;
}

blockquote p:last-child {
 margin-bottom: 0;
}

blockquote ul:last-child,
blockquote ol:last-child {
 margin-bottom: 0;
}

small {
 font-size: 12px;
 font-size: 1.2rem;
}


/*----------------------------*/
/* 3.0 - Elements
/*----------------------------*/
table {
 width: 100%;
 font-size: 13px;
 font-size: 1.3rem;
}

table caption {
 margin-bottom: 8px;
 letter-spacing: 1px;
 font-size: 12px;
 font-size: 1.2rem;
}

table th {
 padding: 8px;
 border: solid 1px #e2e5e8;
 vertical-align: middle;
}

table td {
 padding: 8px 16px;
 border: solid 1px #e2e5e8;
}


/*----------------------------*/
/* 4.0 - Forms
/*----------------------------*/
input {
 vertical-align: middle;
 font-size: 16px;
 font-size: 1.6rem;
}

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 {
 padding: 8px;
 width: 100%;
 border-radius: 1px;
 border: solid 1px #e2e5e8;
 background-color: #fff;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
}

input[type="submit"] {
 padding: 4px 32px;
 border: none;
 border-radius: 4px;
 border-bottom: 3px solid rgba(0, 0, 0, 0.2);
 background-color: #9b8d77;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 color: #fff;
 -webkit-transition: 0.3s ease-in-out;
 transition: 0.3s ease-in-out;
 cursor: pointer;
}

input[type="submit"]:hover {
 background-color: rgba(0, 0, 0, 0.2);
 -webkit-transform: translate(0, 3px);
 transform: translate(0, 3px);
}

textarea {
 font-size: 16px;
 font-size: 1.6rem;
 overflow: auto;
 vertical-align: top;
}

select {
 padding: 8px;
 width: 100%;
 background-color: #fff;
 background-image: url(lib/images/select-arrow.png);
 background-repeat: no-repeat;
 background-position: 98% center;
 border: solid 1px #e2e5e8;
 border-radius: 1px;
 font-size: 16px;
 font-size: 1.6rem;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
}

select::-ms-expand {
 display: none;
}

button {
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 background-color: transparent;
 border: none;
 cursor: pointer;
 outline: none;
 padding: 0;
}

/* Plug in contact form 7 */
.wpcf7-list-item {
 display: inline-block;
}

.wpcf7-submit {
 display: block;
 margin: 16px auto;
}

span.wpcf7-not-valid-tip {
 margin: 8px 0;
}

div.wpcf7-response-output {
 margin: 16px 0;
 padding: 16px;
}

/*----------------------------*/
/* 5.0 - Navigations
/*----------------------------*/
a {
 text-decoration: none;
 color: #303030;
 -webkit-transition: 0.1s ease-in-out;
 transition: 0.1s ease-in-out;
}

.screen-reader-text {
 display: none;
}

.pagination {
 margin-bottom: 32px;
 text-align: center;
}

.pagination a {
 color: #b5b5b5;
}

.pagination a:hover {
 background-color: #b5b5b5;
 color: #fff;
}

.pagination .current {
 background-color: #b5b5b5;
 color: #fff;
}

.page-numbers {
 display: inline-block;
 margin-right: 8px;
 min-width: 32px;
 padding: 4px;
 background-color: #fff;
 border-radius: 4px;
 border: solid 1px #ebedf0;
 text-align: center;
 font-size: 12px;
 font-size: 1.2rem;
}

/* Paginated Posts <!--nextpage--> */
.next-page {
 padding-bottom: 32px;
 text-align: center;
}

.next-page span {
 border-radius: 4px;
 -webkit-transition: 0.4s ease-in-out;
 transition: 0.4s ease-in-out;
}

/* Post Navigation */
.post-navigation {
 margin: 32px 0;
 border: solid 1px #ebedf0;
}

.nav-links {
 display: table;
 table-layout: fixed;
 width: 100%;
}

.nav-previous,
.nav-next {
 padding: 16px;
 background-color: #fff;
 border-radius: 0 0 4px 4px;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}

.nav-previous a,
.nav-next a {
 display: block;
}

.post-nav {
 display: block;
 padding-bottom: 8px;
 font-size: 12px;
 font-weight: bold;
 color: #666;
}

.post-nav .fa {
 color: #b5b5b5;
}

.nav-previous .fa {
 margin: 0 4px 0 0;
}

.nav-next .fa {
 margin: 0 0 0 4px
}

.nav-title {
 font-size: 14px;
 font-size: 1.4rem;
}

.nav-previous img {
 float: left;
 margin-right: 8px;
 width: 90px;
 height: 90px;
}

.nav-next img {
 float: right;
 margin-left: 8px;
 width: 90px;
 height: 90px;
}


/*----------------------------*/
/* 6.0 - Clearfix
/*----------------------------*/
.clearfix:after {
 display: block;
 clear: both;
 content: "";
}
