@charset "UTF-8";
/*!
* Theme Name:   White Snow
* Description:  Just a sample theme aiming to learn how to create wordpress theme
* Theme URI:    http://thewppress.com/theme/how-to-create-the-basic-wordpress-theme/
* Author:       Naotoshi Fujita
* Author URI:   thewppress.com
* Version:      1.1
* License:      GNU General Public License v3 or later
* License URI:  https://www.gnu.org/licenses/gpl-3.0.html
*/
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

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

a img {
  border: none;
}

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

/* ----------------------------------------------------------
 *  General tags
 * ---------------------------------------------------------- */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Roboto", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  line-height: 2;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #999;
}
a:hover img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

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

.heading-big {
  font-size: 28px;
  font-size: 2.8rem;
  margin-bottom: .5em;
  line-height: 1.5;
}

.heading-medium {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: .5em;
  line-height: 1.5;
}

.heading-small {
  font-size: 22px;
  font-size: 2.2rem;
}

.small-text {
  font-size: .9em;
}

.tiny-text {
  font-size: .8em;
}

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

/* ----------------------------------------------------------
 *  Media size
 * ---------------------------------------------------------- */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
.post img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------
 *  Button
 * ---------------------------------------------------------- */
.btn {
  padding: .5em 2em;
  border: 1px solid #333;
}
.btn:hover {
  cursor: pointer;
  background: #333;
  color: white;
}

.btn-primary {
  width: 10em;
}

.btn-square {
  width: 2em;
  height: 2em;
}

/* ----------------------------------------------------------
 *  Layouts
 * ---------------------------------------------------------- */
.l-center {
  width: 1100px;
  margin: 0 auto;
}

.l-main {
  width: 64%;
  float: left;
}

.l-side {
  width: 30%;
  float: right;
}

/* ----------------------------------------------------------
 *  Main header
 * ---------------------------------------------------------- */
.site-header {
  margin-bottom: 4em;
}

.site-branding {
  padding: 3.5em 0 3em;
  text-align: center;
}
.site-branding img {
  width: 200px;
  height: auto;
}

/* ----------------------------------------------------------
 *  Main navigation
 * ---------------------------------------------------------- */
.main-nav {
  text-align: center;
  background: #f6f6f6;
}

.menu-item {
  display: inline-block;
  padding: 0 1em;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.menu-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.current-menu-item {
  border-top-color: #333;
}

/* ----------------------------------------------------------
 *  Post/Page
 * ---------------------------------------------------------- */
.post {
  margin-bottom: 4em;
  padding-bottom: 4em;
  border-bottom: 1px solid #ccc;
}
.post:last-child {
  margin-bottom: 0em;
}

.single .post {
  margin-bottom: 0em;
}

.entry-thumbnail {
  margin: 2em 0;
}

.more-link {
  display: inline-block;
  margin-top: 2em;
}

.entry-content h2, .page-content h2 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-top: 2em;
  margin-bottom: .5em;
  position: relative;
  border-bottom: 1px dotted #999;
}
.entry-content h3, .page-content h3 {
  font-size: 20px;
  font-size: 2rem;
  margin-top: 1em;
}
.entry-content p, .page-content p {
  margin-bottom: 1em;
}
.entry-content a:not(.more-link), .page-content a:not(.more-link) {
  border-bottom: 1px dashed #333;
  padding-bottom: .2em;
}

/* ----------------------------------------------------------
 *  Page
 * ---------------------------------------------------------- */
.page-header {
  background: #f6f6f6;
  padding: 1em;
  margin-bottom: 3em;
}

.not-found .page-header {
  background: transparent;
  padding: 0;
}

.page-description {
  font-size: .9em;
  margin-left: .8em;
}

/* ----------------------------------------------------------
 *  Category / Tag
 * ---------------------------------------------------------- */
.category-tag-links {
  font-size: 0.9em;
}

.category-label, .tag-label {
  background: #666;
  color: white;
  font-size: 0.6em;
  margin-right: .5em;
  padding: .2em .5em;
  vertical-align: middle;
}

/* ----------------------------------------------------------
 *  Post navigation
 * ---------------------------------------------------------- */
.post-navigation {
  margin-top: 1em;
}

.nav-links {
  padding: .5em 0;
}

.nav-links:after {
  content: "";
  display: block;
  clear: both;
}

.nav-previous {
  float: left;
}

.nav-next {
  float: right;
}

.pagination .nav-links {
  text-align: center;
  padding-top: 1em;
}

.page-numbers {
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #999;
}
.page-numbers.current {
  color: white;
  background: #999;
}

a.page-numbers:hover {
  color: white;
  border: 1px solid #333;
  background: #333;
}

.next, .prev {
  display: none;
}

/* ----------------------------------------------------------
 *  Widget
 * ---------------------------------------------------------- */
.widget {
  margin-bottom: 4em;
  font-size: .9em;
}
.widget ul > li {
  margin-bottom: .5em;
}
.widget ul > li:before {
  content: "- ";
}

.widget-title {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}

/* ----------------------------------------------------------
 *  Input
 * ---------------------------------------------------------- */
input, select {
  height: 2em;
  outline: none;
}

input[type="submit"] {
  background: #333;
  color: white;
  border: none;
}
input[type="submit"]:hover {
  cursor: pointer;
  background: #666;
}

/* ----------------------------------------------------------
 *  Footer
 * ---------------------------------------------------------- */
.site-footer {
  text-align: center;
  font-size: .9em;
  border-top: 1px solid #ccc;
  padding: 1em 0;
  margin-top: 8em;
}

/* ----------------------------------------------------------
 *  404
 * ---------------------------------------------------------- */
.error-404 {
  text-align: center;
}

/* ----------------------------------------------------------
 *  Screen Reader Text
 * ---------------------------------------------------------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
