@charset "UTF-8";
/******************************************************************

Site Name: Manabinomori
Author: M.Tonomura

******************************************************************/
/*********************
IMPORTING PARTIALS/
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
@import url("https://www.kyokyo-u.ac.jp/museum/assets_c/css/normalize.min.css");
@import url("https://www.kyokyo-u.ac.jp/museum/assets_c/css/bootstrap.css");
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
   i imported this one in the functions file so bones would look sweet.
   don't forget to remove it for your site.
  */
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3; }

.tx_sm {
  font-size: 0.7em;
  line-height: 1 !important; }

.tx_super {
  vertical-align: super; }

.tx_xlarge {
  font-size: 2.6em; }

.tx_xlarger {
  font-size: 2.2em; }

.tx_xxlarger {
  font-size: 2.8em; }

.tx_large {
  font-size: 2em; }

.tx_larger {
  font-size: 1.5em; }

.tx_e_shadow {
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 #999; }

span, p, a, li {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
  letter-spacing: 0.01em; }

p {
  padding: 0 1em; }

.underline {
  position: relative;
  margin-bottom: 40px; }
  .underline::after {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    content: "";
    height: 2px;
    width: 50px;
    background-color: #a9a9a9; }

.t_bold {
  font-weight: 600; }

.t_smaller {
  font-size: 1.1rem; }

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }

/* Landscape to small desktop */
@media (min-width: 1024px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
.leaf_title {
  position: relative;
  height: 50px;
  width: 100%; }
  .leaf_title > div {
    position: relative;
    width: 100%;
    height: 100%; }
    .leaf_title > div img {
      position: absolute;
      top: 50%;
      -o-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 4px;
      z-index: 3; }
  .leaf_title::before {
    display: none;
    position: absolute;
    left: 15px;
    position: absolute;
    top: 50%;
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    width: 84px;
    height: 86px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 999; }
  .leaf_title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 15px;
    z-index: 1; }

.leaf_title.v1 > div {
  background-color: #82bc3f; }

.leaf_title.v1::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_leaf1.png"); }

.leaf_title.v1::after {
  background-color: #82bc3f; }

.leaf_title.v2 > div {
  background-color: #82bc3f; }

.leaf_title.v2::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_leaf2.png"); }

.leaf_title.v2::after {
  background-color: #82bc3f; }

.leaf_title.v3 > div {
  background-color: #59a4b5; }

.leaf_title.v3::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/riyou_leaf1.png"); }

.leaf_title.v3::after {
  background-color: #59a4b5; }

.leaf_title.v4 > div {
  background-color: #59a4b5; }

.leaf_title.v4::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/riyou_leaf2.png"); }

.leaf_title.v4::after {
  background-color: #59a4b5; }

.leaf_title.v5 > div {
  background-color: #59a4b5; }

.leaf_title.v5::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/riyou_leaf3.png"); }

.leaf_title.v5::after {
  background-color: #59a4b5; }

.leaf_title.v6 > div {
  background-color: #008545; }

.leaf_title.v6::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/syozou_leaf1.png"); }

.leaf_title.v6::after {
  background-color: #008545; }

.leaf_title.v7 > div {
  background-color: #008545; }

.leaf_title.v7::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/syozou_leaf2.png"); }

.leaf_title.v7::after {
  background-color: #008545; }

.leaf_title.v8 > div {
  background-color: #008545; }

.leaf_title.v8::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/syozou_leaf3.png"); }

.leaf_title.v8::after {
  background-color: #008545; }

.leaf_title.v9 > div {
  background-color: #603813; }

.leaf_title.v9::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/gaiyou_leaf1.png"); }

.leaf_title.v9::after {
  background-color: #603813; }

.leaf_title.v10 > div {
  background-color: #603813; }

.leaf_title.v10::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/gaiyou_leaf2.png"); }

.leaf_title.v10::after {
  background-color: #603813; }

.leaf_title.v11 > div {
  background-color: #603813; }

.leaf_title.v11::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/gaiyou_leaf3.png"); }

.leaf_title.v11::after {
  background-color: #603813; }

.leaf_title.v12 > div {
  background-color: #844880; }

.leaf_title.v12::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/link_leaf1.png"); }

.leaf_title.v12::after {
  background-color: #844880; }

.leaf_title.v13 > div {
  background-color: #008545; }

.leaf_title.v13::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/gaiyou_leaf2.png"); }

.leaf_title.v13::after {
  background-color: #008545; }

.leaf_title.v14 > div {
  background-color: #82bc3f; }

.leaf_title.v14::before {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_leaf3.png"); }

.leaf_title.v14::after {
  background-color: #82bc3f; }

.sub_title {
  position: relative;
  width: 100%;
  padding-left: 2em; }

.sub_title::before {
  position: absolute;
  top: 50%;
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  content: '';
  width: 8px;
  height: 36px; }

.sub_title.green::before {
  background-color: #82bc3f; }

.sub_title.blue::before {
  background-color: #59a4b5; }

.sub_title.library-green::before {
  background-color: #008545; }

.sub_title.brown::before {
  background-color: #603813; }

/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 62.5%;
  line-height: 1.5;
  color: #4d4d4d;
  background-color: #cecece;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a, a:visited {
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:link, a:visited:link {
    /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

p {
  padding: initial; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 2.5em; }

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em; }

h3, .h3 {
  font-size: 2em;
  font-weight: 600; }

h4, .h4 {
  position: relative;
  height: 1.7rem;
  font-weight: 700;
  color: #4d4d4d;
  margin-bottom: 0.7em;
  width: 100%;
  font-size: 1.2rem; }

h4::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #4d4d4d;
  position: absolute;
  bottom: -5px;
  left: 0; }

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px; }

a {
  cursor: pointer; }

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav li {
    /*
    so you really have to rethink your dropdowns for mobile.
    you don't want to have it expand too much because the
    screen is so small. How you manage your menu should
    depend on the project. Here's some great info on it:
    http://www.alistapart.com/articles/organizing-mobile/
    */ }
    .nav li a {
      display: block;
      color: #fff;
      text-decoration: none;
      padding: 0.75em;
      /*
      remember this is for mobile ONLY, so there's no need
      to even declare hover styles here, you can do it in
      the style.scss file where it's relevant. We want to
      keep this file as small as possible!
      */ }
    .nav li ul.sub-menu li a,
    .nav li ul.children li a {
      padding-left: 30px; }

ul {
  padding-left: 0; }

img {
  max-width: 100%; }

#container {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.8);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  -webkit-transition-duration: .5s;
  transition-duration: .5s; }

#container-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: hidden;
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/tile.png");
  background-repeat: repeat;
  background-size: auto;
  background-position: center; }

#header {
  width: 100%; }

#header-inner {
  position: relative; }

#header-bar {
  position: relative;
  width: 100%;
  height: 120px;
  background-color: #008545; }
  #header-bar #header-bar-inner {
    position: absolute;
    top: 50%;
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%; }
  #header-bar img {
    vertical-align: bottom; }
  #header-bar .left {
    text-align: center; }
    #header-bar .left > img:nth-child(3) {
      width: 275px; }
  #header-bar .right {
    display: none; }
  #header-bar .left {
    width: 100%; }

#header-content {
  width: 100%;
  position: relative;
  width: 100%;
  height: 500px;
  position: relative;
  background-size: cover;
  background-position: center; }

.footer_image {
  position: relative;
  height: 100px;
  width: 100%;
  margin-bottom: 10em; }
  .footer_image > div {
    position: absolute;
    left: 50%;
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    max-width: 1600px;
    width: 100vw;
    height: 100px;
    background-size: cover;
    background-position: center; }

#header-bg {
  position: relative; }

#header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 90%;
  width: 300px;
  height: 232px;
  opacity: 0;
  background-size: contain;
  background-position: center;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; }
  #header-title.move {
    top: 50%;
    opacity: 1; }

nav .col-sm-2 {
  padding: 0; }

body.home {
  background: #666; }
  body.home #header-content {
    background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/tpo_v.jpg"); }
  body.home #header-title {
    background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_top3.png"); }
  body.home #content {
    width: 100%; }
    body.home #content .guide {
      position: relative; }
    body.home #content .guide::before {
      position: absolute;
      top: -21px;
      left: -21px;
      content: '';
      width: 157px;
      height: 146px;
      background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/top_leaf1.png");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center; }
  body.home #news,
  body.home #latest-gem {
    width: 100%;
    margin-left: 1em;
    margin-right: 1em;
    position: relative;
    background-color: #e6eebb;
    -webkit-box-shadow: 8.2px 8.2px 9px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 8.2px 8.2px 9px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 8.2px 8.2px 9px 0px rgba(0, 0, 0, 0.2); }
  body.home #news::before {
    background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/top_leaf2.png");
    position: absolute;
    top: -7px;
    right: -51px;
    content: '';
    width: 157px;
    height: 146px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 3; }
  body.home #news .title-area,
  body.home #latest-gem .title-area {
    border-bottom: 1px solid #aeb64d; }
  body.home #news .title-area img,
  body.home #latest-gem .title-area img {
    margin-left: 1rem; }
  body.home #news .title-area::before,
  body.home #latest-gem .title-area::before {
    content: '';
    width: 6px;
    height: 29px;
    background-color: #42210b;
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
    z-index: 3; }
  body.home #content-inner > div.col-md-8 > div.row.mb-5 {
    margin-bottom: 1rem !important; }
  body.home #news .content-area {
    background-color: #fff; }
    body.home #news .content-area #newinfo {
      font-size: larger;
      color: #4d4d4d; }
      body.home #news .content-area #newinfo .col-lg-2 {
        text-decoration: underline; }
      body.home #news .content-area #newinfo .col-lg-10 {
        padding-right: 0; }
      body.home #news .content-area #newinfo a {
        color: #4d4d4d; }
        body.home #news .content-area #newinfo a:hover {
          color: #272727; }
  body.home #latest-gem {
    padding: 0;
    margin-bottom: 1rem; }
    body.home #latest-gem .title-area img {
      float: left; }
    body.home #latest-gem img:nth-child(3) {
      display: none; }
    body.home #latest-gem .content-area .thumbnail {
      padding-left: 0;
      margin-bottom: 15px;
      margin-bottom: 1.5rem;
      text-align: center; }
      body.home #latest-gem .content-area .thumbnail .white-blank {
        background-color: #fff; }
      body.home #latest-gem .content-area .thumbnail > div {
        padding: 0.5rem;
        background-color: #fff;
        max-width: 240px;
        margin: 0 auto; }
      body.home #latest-gem .content-area .thumbnail div[data-img-src] {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        height: 150px;
        width: 100%; }
    body.home #latest-gem .content-area .desc {
      position: relative;
      padding-right: 0;
      padding-left: 0; }
  body.home .logo {
    text-align: center; }
    body.home .logo img {
      margin-bottom: 15px;
      margin-bottom: 1.5rem; }
    body.home .logo p {
      text-align: center;
      font-size: 1.2em; }

#footer {
  position: relative; }

#footer-inner {
  background-color: #008545;
  text-align: center;
  height: 66px;
  position: relative; }

#footer-inner .go-top-link {
  position: absolute;
  top: -2rem;
  right: 2rem;
  content: '';
  width: 4rem;
  height: 2rem;
  background-color: #008545;
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/yajirushi.png");
  background-repeat: no-repeat;
  background-position: center; }

#footer-inner .go-top-link > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#footer-content {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

body.guide #calendar .left {
  display: none; }

body.guide .right {
  float: left; }

body.guide .footer_image > div {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/riyou_v2.png"); }

body.guide #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/riyou_v.jpg"); }

body.guide #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_riyouannai.png"); }

body.guide #calendar .inner {
  background-color: #e7f6f8; }

body.guide #access .inner {
  background-color: #f7f4f2; }
  body.guide #access .inner > div > div > .col-md-6 > img {
    height: auto; }

body.guide #contact .inner {
  background-color: #f7f4f2; }
  body.guide #contact .inner p {
    width: 100%; }
  body.guide #contact .inner a {
    color: #39a74a; }

body.guide .inner::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-color: #59a4b5; }

body.guide #heldDates {
  display: none; }

body.guide .calendars {
  text-align: center; }
  body.guide .calendars > div {
    margin-bottom: 5em;
    display: inline-block;
    padding: 0 1em; }

body.guide table.calendar-table {
  border: #cccccc 1px solid;
  margin: 0 auto; }
  body.guide table.calendar-table caption {
    background-color: #008083;
    color: #fff;
    text-align: center;
    caption-side: top;
    font-size: 1.5em; }
    body.guide table.calendar-table caption span, body.guide table.calendar-table caption p {
      font-size: 1em; }
  body.guide table.calendar-table td {
    width: 37px;
    height: 33px;
    line-height: 30px;
    text-align: center; }
  body.guide table.calendar-table thead {
    border-bottom: #cccccc 1px solid;
    background-color: #eeefef; }
  body.guide table.calendar-table thead > tr > th:last-child {
    color: #0071b1; }
  body.guide table.calendar-table thead > tr > th:first-child {
    color: #ff0000; }
  body.guide table.calendar-table th {
    text-align: center; }
  body.guide table.calendar-table tbody {
    background-color: #fff; }
  body.guide table.calendar-table tbody > tr > td {
    color: #2f201b; }
  body.guide table.calendar-table tbody > tr > td:last-child {
    color: #0071b1; }
  body.guide table.calendar-table tbody > tr > td:first-child {
    color: #ff0000; }
  body.guide table.calendar-table tbody > tr > td.is-open > span, body.guide table.calendar-table tbody > tr > td.is-open > p {
    display: inline-block;
    border-radius: 50%;
    background-color: #59a4b5;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center; }

body.event #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_v.jpg"); }

body.event #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_ivent.png"); }

body.event .footer_image > div {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_v2.png"); }

body.event .header {
  padding-left: 0;
  padding-right: 0;
  border-bottom: #b3b3b3 1px solid; }
  body.event .header > p {
    font-size: 1.7em;
    font-weight: 600; }

body.event .inner {
  background-color: #f7f4f2; }
  body.event .inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-color: #82bc3f; }
  body.event .inner .entry {
    padding-left: 2em;
    padding-right: 2em;
    border-bottom: #b3b3b3 1px solid;
    margin: 0;
    width: 100%; }
    body.event .inner .entry .thumbnail {
      vertical-align: top;
      padding: initial;
      display: inline-block;
      width: 100%; }
    body.event .inner .entry .entry_body {
      margin-top: initial !important;
      padding: initial;
      display: inline-block;
      width: 100%; }
      body.event .inner .entry .entry_body.no_image {
        margin-top: 3rem !important; }
  body.event .inner .details {
    padding-left: 2em;
    padding-right: 2em; }
    body.event .inner .details .col-md-1 {
      padding: 0; }
      body.event .inner .details .col-md-1 span, body.event .inner .details .col-md-1 p {
        text-decoration: underline; }
    body.event .inner .details .col-md-11 {
      position: relative; }
      body.event .inner .details .col-md-11 span::before, body.event .inner .details .col-md-11 p::before {
        display: none;
        position: absolute;
        left: 30px;
        top: -2px;
        content: ':'; }
    body.event .inner .details > div > div:nth-child(4) > span > p, body.event .inner .details > div > div:nth-child(4) > p > p {
      display: inline;
      padding-left: 0; }
    body.event .inner .details > .row > div {
      margin-bottom: 2em; }
  body.event .inner .links {
    margin-bottom: 7em; }
    body.event .inner .links a {
      display: inline-block;
      margin-right: 1em;
      color: #6f9c3f; }
  body.event .inner .past .row {
    margin: 0; }

body.library #database img {
  margin-right: 1rem; }

body.library a {
  color: #008b45; }

body.library .footer_image > div {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/syozou_v2.png"); }

body.library #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_syozou.png"); }

body.library #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/v_syozou.jpg"); }

body.library .inner {
  background-color: #f7f4f2; }
  body.library .inner .catalog > div.item {
    text-align: center; }
  body.library .inner p.desc {
    margin-top: 2.5rem; }
  body.library .inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-color: #008545; }

body.overview .gallery .col-md-6 {
  text-align: center; }

body.overview .gallery .img-container {
  border: #fff 4px solid;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.75);
  position: relative;
  max-width: 512px;
  margin: 0 auto; }
  body.overview .gallery .img-container::after {
    content: '';
    width: 52px;
    height: 52px;
    background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/mushimegane.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: -1px;
    bottom: -1px; }

body.overview .gallery span, body.overview .gallery p {
  width: 100%;
  display: inline-block;
  text-align: center; }

body.overview .left {
  float: none; }

body.overview .right {
  float: none; }

body.overview h2 {
  font-size: 2em; }

body.overview #building .desc img {
  margin-left: 1rem;
  margin-bottom: 1rem; }

body.overview .footer_image.v1 > div {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/gaiyou_v1.png"); }

body.overview .footer_image.v2 > div {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/gaiyou_v2.png"); }

body.overview .footer_image.v3 > div {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/gaiyou_v3.png"); }

body.overview #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_gaiyou.png"); }

body.overview #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/gaiyou_v.jpg"); }

body.overview .inner {
  background-color: #f3f0ee; }
  body.overview .inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-color: #603813; }

body.links .footer_image > div {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/link_v2i.png"); }

body.links #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_link.png"); }

body.links #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/link_v.jpg"); }

body.links .inner {
  background-color: #f7f4f2; }
  body.links .inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-color: #844880; }

body.links li {
  list-style: none;
  margin-bottom: 0.5em;
  margin-left: 0 !important; }

body.links .large_font_list li > a {
  color: #662d88;
  position: relative;
  margin-left: 30px;
  font-weight: 600; }
  body.links .large_font_list li > a:before {
    content: '';
    width: 26px;
    height: 26px;
    background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/link_yajirushi.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -30px; }

.yearly-archive {
  padding: 0; }
  .yearly-archive li {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5em;
    width: calc(950px / 5);
    height: 1.5em; }
    .yearly-archive li > a {
      display: inline-block;
      color: #4d4d4d;
      position: absolute;
      top: 50%;
      left: 50%;
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      left: 55%;
      text-align: center;
      width: 100%; }
      .yearly-archive li > a::before {
        position: absolute;
        left: 16px;
        content: '';
        width: 26px;
        height: 26px;
        background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_yajirushi.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; }

nav.container-fluid {
  display: none; }
  nav.container-fluid img {
    vertical-align: top; }

#menuEl {
  display: none; }

.mb-t {
  margin-bottom: 2em; }

.mb-c {
  margin-bottom: 6em; }

.pb-c {
  padding-bottom: 4em; }

.calendar-hide,
#prev-year {
  display: none; }

/*
#prev-year,
#next-year {
  text-decoration: underline;
}
*/
.note {
  margin-left: 1.3rem;
  margin-right: 1rem;
  width: 100%; }

.blue {
  color: #59a4b5; }

.left {
  float: left; }

.right {
  float: right; }

.inner {
  position: relative;
  padding: 4em 1em;
  margin: 0;
  width: 100%; }

.wrapper {
  margin-bottom: 9em; }

.w-100 {
  width: 100%; }

.bb-gray {
  border-bottom: #b3b3b3 1px solid; }

.green {
  color: #39a74a; }

/* Style the Image Used to Trigger the Modal */
.img-container {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s; }
  .img-container:hover {
    opacity: 0.7; }

a > img:hover {
  opacity: 0.7; }

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black w/ opacity */
  z-index: 99999; }

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 700px; }

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px; }

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s; }

@keyframes zoom {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s; }

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer; }

body.yearly-gem .gallery {
  text-align: center; }
  body.yearly-gem .gallery .gem-img-container {
    margin: 0 auto;
    max-width: 248px;
    background-color: white;
    padding: 1rem 0.5rem;
    margin-bottom: 0.5rem;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.75);
    text-align: center; }
    body.yearly-gem .gallery .gem-img-container div {
      display: inline-block;
      width: 230px;
      height: 150px; }
    body.yearly-gem .gallery .gem-img-container div[data-img-src] {
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover; }
  body.yearly-gem .gallery .gem-img-ym {
    margin-bottom: 2rem; }
    body.yearly-gem .gallery .gem-img-ym span, body.yearly-gem .gallery .gem-img-ym p {
      font-weight: 600; }

body.yearly-gem #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ippin_v.jpg"); }

body.yearly-gem #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_ippin.png"); }

body.yearly-gem .inner {
  background-color: #f7f4f2; }
  body.yearly-gem .inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-color: #008545; }

body.yearly-gem h2 {
  color: white;
  margin-bottom: 0;
  font-size: 3.5em;
  position: absolute;
  top: 50%;
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 4px;
  z-index: 2; }

body.yearly-exhibition h2 {
  color: white;
  margin-bottom: 0;
  font-size: 3.5em;
  position: absolute;
  left: 4px;
  z-index: 2; }

body.yearly-exhibition #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_v.jpg"); }

body.yearly-exhibition #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_kako.png"); }

body.yearly-exhibition .inner {
  background-color: #f7f4f2; }
  body.yearly-exhibition .inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-color: #82bc3f; }
  body.yearly-exhibition .inner h3 {
    color: #82bc3f;
    margin-bottom: 0;
    font-size: 2rem; }
  body.yearly-exhibition .inner .yearly-cards {
    padding: 1rem .15rem;
    background-color: white;
    border: #b3b3b3 1px solid;
    margin-bottom: 1rem; }
    body.yearly-exhibition .inner .yearly-cards .thumbnail {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      margin-bottom: 1em; }
    body.yearly-exhibition .inner .yearly-cards .date {
      margin-top: 1rem;
      margin-bottom: 1rem; }
      body.yearly-exhibition .inner .yearly-cards .date > span, body.yearly-exhibition .inner .yearly-cards .date > p {
        background-color: #ebebeb;
        padding: 0.4rem; }
    body.yearly-exhibition .inner .yearly-cards .title {
      margin-bottom: 1rem; }
    body.yearly-exhibition .inner .yearly-cards .links a {
      color: #82bc3f;
      text-decoration: underline;
      margin-right: 2rem; }

body.yearly-event h2 {
  color: white;
  margin-bottom: 0;
  font-size: 3.5em;
  position: absolute;
  left: 4px;
  z-index: 2; }

body.yearly-event #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_v.jpg"); }

body.yearly-event #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ivent_kako2.png"); }

body.yearly-event .inner {
  background-color: #f7f4f2; }
  body.yearly-event .inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-color: #82bc3f; }
  body.yearly-event .inner h3 {
    color: #82bc3f;
    margin-bottom: 0;
    font-size: 2rem; }
  body.yearly-event .inner .yearly-cards {
    padding: 1rem .15rem;
    background-color: white;
    border: #b3b3b3 1px solid;
    margin-bottom: 1rem; }
    body.yearly-event .inner .yearly-cards .thumbnail {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      margin-bottom: 1em; }
    body.yearly-event .inner .yearly-cards .date {
      margin-top: 1rem;
      margin-bottom: 1rem; }
      body.yearly-event .inner .yearly-cards .date > span, body.yearly-event .inner .yearly-cards .date > p {
        background-color: #ebebeb;
        padding: 0.4rem; }
    body.yearly-event .inner .yearly-cards .title {
      margin-bottom: 1rem; }
    body.yearly-event .inner .yearly-cards .links a {
      color: #82bc3f;
      text-decoration: underline;
      margin-right: 2rem; }

/*
 menu drawer
 */
/* drawer menu */
.drawer-menu {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  padding: 0;
  background: #82bc3f;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: perspective(500px) rotateY(-90deg);
  transform: perspective(500px) rotateY(-90deg);
  opacity: 0; }
  .drawer-menu ul li {
    list-style: none; }
    .drawer-menu ul li a {
      display: block;
      padding: 1.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      color: #fff;
      font-weight: 600; }

#menuEl {
  display: none;
  position: fixed;
  bottom: 1em;
  right: 1em;
  width: 55px;
  height: 55px;
  vertical-align: middle;
  border-radius: 7px;
  background-color: #82bc3f;
  -webkit-box-shadow: 2px 2px 2px 0px #7d7d7d;
  -moz-box-shadow: 2px 2px 2px 0px #7d7d7d;
  box-shadow: 2px 2px 2px 0px #7d7d7d;
  z-index: 9999;
  /* menu button - label tag */ }
  #menuEl .menu-btn {
    display: block;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 3;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 7px auto; }
    #menuEl .menu-btn .bar {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 40px;
      height: 1px;
      background: #fff;
      -webkit-transition: all .5s;
      transition: all .5s;
      -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
      transform-origin: left top; }
    #menuEl .menu-btn .bar.middle {
      top: 15px;
      opacity: 1; }
    #menuEl .menu-btn .bar.bottom {
      top: 30px;
      -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
      transform-origin: left bottom; }
    #menuEl .menu-btn .menu-btn__text {
      position: absolute;
      bottom: -9px;
      left: 0;
      right: 0;
      margin: auto;
      color: #fff;
      -webkit-transition: all .5s;
      transition: all .5s;
      display: block;
      visibility: visible;
      opacity: 1;
      text-align: center;
      font-size: 10px; }
  #menuEl .close-menu {
    position: fixed;
    top: 0;
    right: 300px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0; }

/* checked */
.check {
  display: none; }
  .check:checked ~ .drawer-menu {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 2; }
  .check:checked ~ #container {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px); }
  .check:checked ~ #menuEl {
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.3); }
    .check:checked ~ #menuEl > .menu-btn .menu-btn__text {
      visibility: hidden;
      opacity: 0; }
    .check:checked ~ #menuEl > .menu-btn .bar.top {
      width: 56px;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .check:checked ~ #menuEl > .menu-btn .bar.middle {
      opacity: 0; }
    .check:checked ~ #menuEl > .menu-btn .bar.bottom {
      width: 56px;
      top: 40px;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
  .check:checked ~ .close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
    opacity: 1;
    z-index: 3; }

body.blog .footer_image > div {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/riyou_v2.png"); }

body.blog #header-content {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/ippin_v.jpg"); }

body.blog #header-title {
  background-image: url("https://www.kyokyo-u.ac.jp/museum/uploads/title_top3.png"); }

body.blog .inner {
  background-color: #f7f4f2; }
  body.blog .inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-color: #008545; }

body.blog h2 {
  color: white;
  margin-bottom: 0;
  font-size: 3.5em;
  position: absolute;
  top: 50%;
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 4px;
  z-index: 2; }

body.blog h3 {
  margin-bottom: 0;
  font-size: 2.5em; }

body.blog .date {
  text-decoration: underline;
  font-size: 1.1rem;
  text-align: right; }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
  #header-title {
    width: 350px;
    height: 270px; }
  body.overview .left {
    float: left; }
  body.overview .right {
    float: right; }
  .footer_image {
    height: 150px;
    margin-bottom: 10em; }
    .footer_image > div {
      height: 150px; }
  body.guide .right {
    float: right; }
  body.library .inner .catalog > div.item {
    border-right: #008b45 1px solid; }
    body.library .inner .catalog > div.item.first-child {
      border-left: #008b45 1px solid; }
  body.home .currency,
  body.home .contact,
  body.home .access,
  body.home .calendar,
  body.home .guide {
    display: none; }
  body.links li {
    margin-left: 1.5rem !important; }
  nav.container-fluid {
    display: block; }
  body.yearly-gem .gallery .gem-img-container div {
    width: 100%; } }

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
  h3, .h3 {
    font-size: 3em; }
  #header-bar #header-bar-inner {
    padding-left: 15px;
    padding-right: 15px; }
  #header-bar .right {
    display: inline-block; }
  #header-bar .left {
    text-align: left;
    width: auto; }
    #header-bar .left > img:nth-child(3) {
      display: block; }
  #header-title {
    width: 400px;
    height: 310px;
    left: 100%;
    top: 50%; }
    #header-title.move {
      left: 70%;
      top: 50%; }
  body.event .header > p {
    font-size: 2em; }
  body.event .inner .entry .entry_body {
    margin-top: 3rem !important;
    padding: inherit; }
  body.event .inner .details .col-md-11 {
    padding-left: 4em; }
    body.event .inner .details .col-md-11 span::before, body.event .inner .details .col-md-11 p::before {
      display: inline; }
  body.event .inner .details .col-md-1 {
    white-space: nowrap; }
    body.event .inner .details .col-md-1 span, body.event .inner .details .col-md-1 p {
      text-decoration: none; }
  .modal-content {
    width: 80%; }
  body.overview h2 {
    font-size: 2.5em; }
  body.guide #access .inner > div > div > .col-md-6 > img {
    height: 430px; }
  body.guide .leaf_title > div {
    width: 90%; }
  body.guide .calendars > div {
    width: 33%; }
  .leaf_title {
    height: 64px; }
    .leaf_title > div {
      width: 55%; }
      .leaf_title > div img {
        left: 120px; }
    .leaf_title::before {
      display: block; }
  .yearly-archive li {
    border-right: #b3b3b3 1px solid; }
  body.yearly-event h2 {
    position: absolute;
    top: 50%;
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 120px; }
  body.yearly-event .inner .yearly-cards .date {
    margin-bottom: 2rem;
    margin-top: 0; }
  body.yearly-event .inner .yearly-cards .thumbnail {
    padding-left: 1rem;
    padding-right: 0;
    margin-bottom: 0; }
  body.yearly-exhibition h2 {
    position: absolute;
    top: 50%;
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 120px; }
  body.yearly-exhibition .inner .yearly-cards .date {
    margin-bottom: 2rem;
    margin-top: 0; }
  body.yearly-exhibition .inner .yearly-cards .thumbnail {
    padding-left: 1rem;
    padding-right: 0;
    margin-bottom: 0; }
  body.library .inner p.desc {
    margin-top: 0; }
  body.library .leaf_title.v8 > div {
    width: 70%; }
  .footer_image {
    height: 400px; }
    .footer_image > div {
      height: 400px; }
  body.home .currency,
  body.home .contact,
  body.home .access,
  body.home .calendar,
  body.home .guide {
    display: block; }
  body.home #latest-gem, body.home #news {
    margin-left: 0;
    margin-right: 0; }
  body.home .desc span, body.home .desc p {
    font-size: 18px; }
  body.home .desc > div {
    position: absolute;
    bottom: 0;
    width: 100%; }
  body.home #latest-gem .content-area .thumbnail {
    margin-bottom: 0; }
  body.home .logo p {
    font-size: 1.1em; }
  body.yearly-gem .gallery .gem-img-container div {
    height: 150px; }
  body.yearly-gem h2 {
    left: 120px; }
  body.blog h2 {
    left: 120px; }
  body.event .inner .entry .thumbnail {
    width: 48%; }
  body.event .inner .entry .entry_body {
    width: 50%; }
    body.event .inner .entry .entry_body.no_image {
      width: 100%; } }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1024px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
  h3, .h3 {
    font-size: 4em; }
  #container-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: hidden; }
  #header {
    width: 100%; }
  #header-inner {
    position: relative; }
  #header-bar {
    height: 100px; }
    #header-bar .left {
      text-align: center;
      padding-top: 1em; }
      #header-bar .left > img {
        margin-right: 1rem; }
      #header-bar .left > img:nth-child(3) {
        display: inline-block; }
  #header-content {
    height: 742px; }
    #header-content:not(.home) {
      height: 532px; }
  #header-title {
    width: 452px;
    height: 350px; }
    #header-title.move {
      left: 75%; }
  #content {
    width: 1024px !important; }
  body.home #news,
  body.home #latest-gem {
    margin-left: 0;
    margin-right: 0; }
  body.home #news .col-lg-10 > div {
    padding-left: 2rem; }
  body.home #news .content-area #newinfo .col-lg-2 {
    text-decoration: none; }
  body.home .desc span, body.home .desc p {
    font-size: 18px; }
  body.home #content-inner > div.col-md-4.px-4 {
    padding-right: 2.5rem !important;
    padding-left: 3rem !important; }
  body.home #latest-gem {
    margin-bottom: 0; }
    body.home #latest-gem img:nth-child(3) {
      display: inline-block; }
  #content-inner > div.col-md-8 > div.row.mb-5 {
    margin-bottom: 3rem !important; }
  .inner {
    padding: 5em; }
  .wrapper {
    margin-bottom: 15em; }
  body.event .leaf_title > div {
    width: 40%; }
  body.event .header {
    padding-left: 2em;
    padding-right: 2em; }
    body.event .header > p {
      font-size: 2.7em; }
  body.event .inner .details .col-md-11 {
    padding-left: 4em; }
  body.guide .leaf_title > div {
    width: 63%; }
  .leaf_title > div {
    width: 35%; }
  body.yearly-gem .leaf_title > div {
    width: 40%; }
  body.yearly-exhibition .leaf_title > div {
    width: 45%; }
  body.yearly-exhibition .inner .yearly-cards .thumbnail {
    padding-left: 1.5rem;
    padding-right: 1.5rem; }
  body.yearly-event .leaf_title > div {
    width: 45%; }
  body.yearly-event .inner .yearly-cards .thumbnail {
    padding-left: 1.5rem;
    padding-right: 1.5rem; }
  body.library .leaf_title > div {
    width: 40%; }
  body.library .leaf_title.v8 > div {
    width: 55%; }
  body.library .inner p.desc {
    margin-top: 2.5rem; }
  #container {
    background-color: #fafafa; }
  #container-inner {
    background-color: #fff;
    border-left: #c3c3c3 1px solid;
    border-right: #c3c3c3 1px solid; }
  #menuEl {
    display: none !important; } }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  #content {
    width: 1150px !important; }
  body.yearly-exhibition .inner .yearly-cards .date,
  body.yearly-event .inner .yearly-cards .date {
    margin-bottom: 4rem; } }

/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(/museum/img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(/museum/img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/ }

/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }

/*# sourceMappingURL=style.css.map */
