@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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1.5;
  letter-spacing: .1em;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

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

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

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

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

.l-wrapper {
  width: 85%;
  margin: 0 auto;
  overflow: hidden;
}

/*Header*/

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1em 0;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
  background-image: url(../image/home.jpg);
  background-size: cover;
  background-position: 50% 50%;
}

.l-header::before {
  content: '';
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.l-header-wrapper {
  width: 95%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-header-title {
  font-size: 1em;
  font-weight: bold;
  color: white;
  letter-spacing: 0.05em;
  z-index: 1;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (min-width: 360px) {
  .l-header-title {
    font-size: 1.125em;
  }
}

@media screen and (min-width: 768px) {
  .l-header {
    padding: 1.938em 0;
  }
  .l-header-title {
    font-size: 1.5em;
  }
  .is-active-drawer .l-global-nav {
    padding-top: 6em;
  }
}

@media screen and (min-width: 992px) {
  .l-header-title {
    font-size: 1.25em;
  }
}

@media screen and (min-width: 1200px) {
  .l-header-title {
    font-size: 1.5em;
  }
}

.l-header-logo  {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: .5em;
  z-index: 1;
}

.l-header-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

/*Global Nav*/
.l-global-nav {
  white-space: nowrap;
  font-size: 1em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4em 0;
  width: 100%;
  height: 120%;
  background-color: #263238;
  -webkit-transition: trasnform .3s ease-in-out;
  -o-transition: trasnform .3s ease-in-out;
  transition: trasnform .3s ease-in-out;
  -webkit-trasnform: translateX(100%);
  -ms-trasnform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.is-active-drawer .l-global-nav {
  -webkit-trasnform: translateX(0);
  -ms-trasnform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/* .is-active-drawer .l-global-nav {
  display: none;
} */

.is-active-drawer .l-footer {
  display: none;
}

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

.l-global-nav li a:hover {
  color: rgba(225,225,225,0.7);
}

@media screen and (min-width: 992px) {
  .l-global-nav {
    position: static;
    padding: 0;
    background-color: transparent;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .l-global-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

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

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

/*Main*/
/*Section*/
.l-section {
  padding-top: 6em;
  font-size: .875em;
}

@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 10em;
    font-size: 1em;
  }
}

/*Footer*/
.l-footer {
  position: relative;
  background-image: url(../image/home.jpg);
  background-size: cover;
  background-position: 50% 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  color: white;
}

@media screen and (min-width: 992px) {
  .l-footer {
    flex-flow: none;
    flex-flow: row;
    justify-content: space-between;
    padding: 2em 3em;
  }

}

.l-footer::before {
  content: '';
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.l-footer-nav li {
  width: 50%;
  border-bottom: 1px solid #C4C4C4;
  padding: 8px 0;
  z-index: 1;
}

.l-footer-nav li:last-child {
  border-bottom: none;
}

.l-footer-nav li:nth-child(odd) {
  border-right: 1px solid #c4c4c4;
}

.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #c4c4c4;
  text-align: center;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .l-footer-nav {
    border: none;
  }

  .l-footer-nav li {
    border: none;
  }

  .l-footer-nav li:nth-child(odd) {
    border: none;
  }
}

.l-footer-nav li a {
  display: block;
  color: white;
  text-decoration: none;
}

.l-footer-primary {
  font-weight: bold;
  padding: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  justify-content: center;
  }

.l-footer-primary h1 {
  order: 1;
}

.l-footer-primary picture {
  padding-right: .5em;
}

.l-footer-img {
  margin-right: 1em;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}


/*
Module
-----------------------------------------------------*/
/*Button*/
.button-hamburger {
  position: absolute;
  top: 0;
  right: 2.5%;
  bottom: 0;
  width: 32px;
  height: 32px;
  margin: auto 0;
  border: 0;
  z-index: 1;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

.hamburger:before,
.hamburger:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: inherit;
  content: '';
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

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

.hamburger:after {
  top: 8px;
}

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

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

.is-active-drawer .hamburger:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.is-active-drawer .hamburger:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

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