@charset 'UTF-8';

/*
  Base
-----------------------------------------------------*/

/* Reset */
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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}


/* Default Style */
html {
  box-sizing: border-box;
  height: 100%;
  font: medium/1.5 '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Meiryo UI', 'メイリオ', Meiryo, sans-serif;
}

html *,
html *:before,
html *:after {
  box-sizing: inherit;
}

body {
  height: 100%;
  color: #263238;
}

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

*[lang='en'] {
  text-transform: uppercase;
  font-family: 'Open Sans Condensed', sans-serif;
}

/*
  Layout
-----------------------------------------------------*/

/* Centering */
.l-wrapper {
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
  width: 95%;
}

/* Header */
.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  padding: .75em 0;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

.l-header-title {
  float: left;
}

.l-header-nav {
  float: right;
}

@media screen and (min-width: 768px) {
  .l-header {
    padding: 1.5em 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-header {
    padding: 1.75em 0;
  }
}

/* Global Nav */
.l-global-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3em 0;
  width: 100%;
  height: 120%;
  background-color: #263238;
  transition: transform .3s ease-in-out;
  -webkit-transform: translateX(100%); /* Android, Brackberry  */
      -ms-transform: translateX(100%); /* IE9 */
          transform: translateX(100%);
}

.l-global-nav li a {
  display: block;
  padding: 1em;
  color: #90a4ae;
  text-decoration: none;
  font-weight: 700;
}

.l-global-nav li a:hover {
  background-color: #212121;
  color: #fff;
}

.is-active-drower .l-global-nav {
  -webkit-transform: translateX(0); /* Android, Brackberry  */
      -ms-transform: translateX(0); /* IE9 */
          transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .l-global-nav {
    position: static;
    padding: 0;
    background-color: transparent;
    -webkit-transform: translateX(0); /* Android, Brackberry  */
        -ms-transform: translateX(0); /* IE9 */
            transform: translateX(0);
  }

  .l-global-nav li {
    float: left;
  }

  .l-global-nav li + li {
    margin-left: 1em;
  }

  .l-global-nav li a {
    padding: .2em .5em;
    color: #263238;
  }
}

/* Main */
.l-main {
  clear: both;
  padding-top: 3em;
  background-color: #fafafa;
}

@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 4.5em;
  }
}

@media screen and (min-width: 1024px) {
  .l-main {
    padding-top: 5em;
  }
}

/* Section */
.l-section {
  padding: 1.5em 0;
}

.l-section-button {
  clear: both;
  margin: 1.5em auto 0;
  max-width: 360px;
}

@media screen and (min-width: 768px) {
  .l-section {
    padding: 2em 0;
  }

  .l-section-button {
    margin-top: 2em;
  }
}

@media screen and (min-width: 1024px) {
  .l-section {
    padding: 2.5em 0;
  }

  .l-section-button {
    margin-top: 2.5em;
  }
}

/* Grid */
.l-grid {
  overflow: hidden;
  margin: -4px;
  width: auto;
}

.l-grid-item {
  float: left;
  width: 50%;
  border: 4px solid transparent;
}

@media screen and (min-width: 768px) {
  .l-grid {
    margin: -8px;
  }
  .l-grid-item {
    width: 33.33333%;
    border-width: 8px;
  }
}

@media screen and (min-width: 1024px) {
  .l-grid-item {
    width: 25%;
  }
}

/* Footer */
.l-footer {
  padding: 1.5em;
  background-color: #263238;
  color: #90a4ae;
  text-align: center;
}

.l-footer-address {
  font-style: normal;
  font-size: .8em;
  line-height: 1.3;
}

.l-footer-copyright {
  margin-top: 1em;
  font-size: .8em;
}

.l-footer-copyright a {
  color: #90a4ae;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .l-footer {
    text-align: left;
  }

  .l-footer-address {
    float: left;
  }

  .l-footer-copyright {
    float: right;
    margin-top: 4em;
    text-align: right;
  }
}

/*
  Module
-----------------------------------------------------*/

/* hero */
.hero {
  position: relative;
}

.hero-body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Android, Brackberry  */
      -ms-transform: translate(-50%, -50%); /* IE9  */
          transform: translate(-50%, -50%);
}

.hero-home .hero-body {
  margin-left: 22%;
}

.hero-home .hero-copy {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, .3);
  font-weight: 700;
  font-size: 4vw; /* IE8以下非対応 */
}

.hero-home .hero-emphasis {
  display: block;
  font-size: 2.75em;
}

@media screen and (min-width: 768px) {
  .hero-home .hero-copy {
    font-size: 3vw;
  }
}

/* Heading */
.heading-primary {
  margin-bottom: 1em;
  padding-left: .5em;
  border-left: 4px solid #263238;
  font-weight: 700;
  font-size: 1.5em;
  line-height: .8;
}

.heading-caption {
  color: #90a4ae;
  font-weight: 500;
  font-size: .5em;
}

@media screen and (min-width: 768px) {
  .heading-primary {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 1024px) {
  .heading-primary {
    font-size: 2em;
  }
}

/* Logo */
.logo-secondary {
  display: inline-block;
  margin-bottom: 1em;
}

/* Card */
.card {
  display: block;
  background-color: #fff;
  text-decoration: none;
}

a.card:hover {
  background-color: #eee;
}

.card-thumbnail figcaption {
  padding: 1em;
  color: #263238;
  font-size: .8em;
}

.card-thumbnail img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .card-thumbnail figcaption {
    padding: 1.5em;
    font-size: 1em;
  }
}

/* Button */
.button {
  position: relative;
  display: block;
  padding: 1em;
  border-radius: .5em;
  text-align: center;
  text-decoration: none;
  transition: all .2s ease-in-out; /* IE9非対応 */
}

.button-primary {
  border: 1px solid #263238;
  color: #263238;
}

.button-primary:before,
.button-primary:after {
  position: absolute;
  top: 0;
  bottom: 0;
  display: inline-block;
  margin: auto 0;
  width: .5em;
  height: .5em;
  content: '';
  transition: all .2s ease-in-out; /* IE9非対応 */
  -webkit-transform: rotate(-45deg); /* Android, Brackberry  */
      -ms-transform: rotate(-45deg); /* IE9  */
          transform: rotate(-45deg);
}

.button-primary:before {
  right: 2em;
  background-color: #263238;
}

.button-primary:after {
  right: 2.1em;
  background-color: #fafafa;
}

.button-primary:hover {
  background-color: #263238;
  color: #fff;
}

.button-primary:hover:before {
  right: 1.5em;
  background-color: #fff;
}

.button-primary:hover:after {
  right: 1.6em;
  background-color: #263238;
}

.button-hamburger {
  position: absolute;
  top: 0;
  right: 2.5%;
  bottom: 0;
  z-index: 1;
  margin: auto 0;
  width: 24px;
  height: 24px;
  outline: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none; /* Chrome, Safari, Opera, Android */
     -moz-appearance: none; /* Firefox */
          appearance: none; /* IE非対応 */
}

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background-color: #263238;
}

.hamburger:before,
.hamburger:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: inherit;
  content: '';
  transition: transform .2s ease-in-out; /* IE9非対応 */
}

.hamburger:before {
  top: -5px;
}

.hamburger:after {
  top: 5px;
}

.is-active-drower .hamburger {
  background-color: transparent;
}

.is-active-drower .hamburger:before,
.is-active-drower .hamburger:after {
  top: 0;
  background-color: #90a4ae;
}

.is-active-drower .hamburger:before {
  -webkit-transform: rotate(-45deg); /* Android, Brackberry  */
      -ms-transform: rotate(-45deg); /* IE9  */
          transform: rotate(-45deg);
}

.is-active-drower .hamburger:after {
  -webkit-transform: rotate(45deg); /* Android, Brackberry  */
      -ms-transform: rotate(45deg); /* IE9  */
          transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .button-hamburger {
    display: none;
  }
}

/* Accesibility */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
