/*
Theme Name: olijin themes
Theme URI: 
Author: m.takaha
Author URI: https://mikataka.work/
Templlate: html5_blank
Version: 1.0
*/
/**
 * modules/variables
 * ---
 */
/**
 * Typography
 */
/**
 * Colors
 */
/**
 * Grid
 */
/**
 * modules/mixins
 * ---
 */
/**
 * modules/fonts
 * ---
 * Declare fonts here
 */
/*
@font-face {
  font-family: "Font-Name";
  src: url("fonts/font-name.eot");
  src: url("fonts/font-name.eot?#iefix") format("embedded-opentype"),
    url("fonts/font-name.woff") format("woff"),
    url("fonts/font-name.ttf") format("truetype"),
    url("fonts/font-name.svg#font-name") format("svg");
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * partials/reset
 * ---
 * Reset file
 * NOTE: also `normalize.css` is used
 */
/**
 * modules/variables
 * ---
 */
/**
 * Typography
 */
/**
 * Colors
 */
/**
 * Grid
 */
*,
*:after,
*:before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #444;
  background-color: #fff;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: #444;
  text-decoration: none;
}

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

input[type="text"],
input[type="search"] {
  font-size: inherit;
  line-height: inherit;
}

::selection {
  background-color: #04A4CC;
  color: #fff;
  text-shadow: none;
}

ul, ol, li {
  list-style: none;
}

/**
 * partials/wordpress
 * ---
 * Wordpess core classes
 */
/**
 * Alignment
 */
.alignnone {
  margin: 5px 15px 15px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 15px 15px;
}

.alignleft {
  float: left;
  margin: 5px 15px 15px 0;
}

/**
 * Gallery & images
 */
.wp-caption {
  background: #fff;
  border: thin solid #F0F0F0;
  max-width: 95%;
  padding: 5px 5px;
  text-align: center;
}

.wp-caption img {
  width: auto;
  max-width: 98.5%;
  height: auto;
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0 5px 5px;
  font-size: 100%;
  line-height: 1.5;
}

/**
 * partials/utils
 * ---
 * Utils classes
 */
.clear:before, .clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.reset-box {
  padding: 0;
  margin: 0;
}

/**
 * partials/wrapper
 * ---
 */
.wrapper {
  max-width: 1280px;
  padding: 100px 15px 0;
  margin: 0 auto;
  position: relative;
}

/**
 * partials/header
 * ---
 */
.header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: #2b2b2b;
  font-size: 2.4rem;
  z-index: 1;
}

.header a {
  color: #f2f2f2;
}

.header #site-title {
  padding: 0 0 0 50px;
  width: 200px;
  font-family: 'Norican', cursive;
  font-size: 4rem;
  font-style: italic;
  font-weight: normal;
}

.header #site-title::before {
  content: "";
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #2b2b2b;
  position: absolute;
  z-index: -1;
  top: -50px;
  left: -50px;
}

.header #global-nav {
  width: calc(100% - 200px);
  height: 100%;
}

.header #global-nav #menu-button {
  display: none;
}

.header #global-nav ul {
  display: table;
  height: 100%;
  text-align: center;
}

.header #global-nav ul li {
  display: table-cell;
}

.header #global-nav ul li a {
  display: block;
  color: #f2f2f2;
  padding: 32px 25px;
}

/**
 * partials/sidebar
 * ---
 */
/**
 * partials/footer
 * ---
 */
.footer {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.footer .wrap {
  width: 100%;
  max-width: 1280px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .wrap .copy-container {
  text-align: right;
  padding: 50px;
}

.footer p, .footer a {
  color: #f2f2f2;
}

.footer p {
  font-size: 14px;
}

.footer p .myname {
  font-size: 24px;
}

.footer p.caution, .footer p.copyright {
  font-size: 14px;
}

.footer .footer-sns {
  display: flex;
  justify-content: center;
  padding: 0 25px;
}

.footer .footer-sns li {
  margin: 0 25px;
}

.footer .footer-sns li a {
  display: block;
  width: 60px;
  height: 60px;
  background: rgba(242, 242, 242, 0.7);
  border-radius: 5px;
  color: #000;
  font-size: 45px;
  position: relative;
  text-align: center;
}

.footer .footer-sns li a .icon-facebook {
  position: absolute;
  bottom: 0;
  right: 3px;
}

/**
 * partials/print
 * ---
 * Print version
 * (from https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css)
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
