@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;
}

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-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  }


.l-mian-img {
  background-size: cover;
}

.l-header {
  position: fixed;
  padding: 1em 0;
  width: 100%;
  z-index: 1;
}

.l-header::before {
  content: '';
  background-color: rgba(0,0,0,.5);
  position: absolute;
  width: 100%;
  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;
}

/* @media screen and (min-width: 330px) {
  .l-header-logo {
    padding-right: 0.25em;
  }
} */

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

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

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

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

/*Global Nav*/
.l-global-nav {
  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);
}

.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: 1200px) {
  .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 li +li {
    margin-left: 1em;
  }

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

/*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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: none;
            flex-flow: none;
    -ms-flex-flow: row;
        flex-flow: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  }

.l-footer-primary h1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          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;
}

@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 {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2em 3em;
  }
  .l-footer-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-footer nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-footer-title {
    width: 350px;
  }
}

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




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

.hero {
  position: relative;
}

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

.hero-copy {
  width: 100%;
  color: white;
  font-size: 0.75em;
  font-weight: bold;
  border-bottom: 1px solid white;
  text-shadow: 0 0 3px rgba(0,0,0, 0.3);
  white-space: nowrap;
}

.hero-home .hero-body {
  top: 70%;
}

@media screen and (min-width: 460px) {
  .hero-copy {
    font-size: 1em;
  }
}

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

@media screen and (min-width: 992px) {
  .hero-copy {
    font-size: 1.5em;
  }
  .hero-home .hero-body {
    top: 75%;
  }
}

@media screen and (min-width: 1200px) {
  .hero-copy {
    font-size: 2em;
  } 
}

/*Top-nav*/
.l-top-nav {
  padding: 2.5em 0;
}

.l-top-items {
  font-weight: bold;
  /* padding: 1em 0; */
  text-align: center;
  border: 1px solid #B0D9FF;
  margin: 3em auto;
  width: 280px;
}

@media screen and (min-width: 360px) {
  .l-top-items {
    width: 300px;
  }
}
@media screen and (min-width: 576px) {
  .l-top-items {
    width: 400px;
  }
}

@media screen and (min-width: 992px) {
  .l-top-items {
    display: none;
  }
}

.l-top-items a {
  display: block;
  color: #212121;
  padding: 1em 0;
  text-decoration: none;;
}

.l-top-items a:hover {
  color: rgba(33,33,33,0.7);
}

.l-top-items a:visited {
  color: inherit;
}

.l-copy-right {
  display: none;
}

@media screen and (min-width: 992px) {
  .l-copy-right {
    display: inline;
  }
}


@media screen and (min-width: 768px) {
  .l-copy-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 30em;
    padding-bottom: 2em;
  }
}

/*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: 1200px) {/*-------------------------------------------------------------------------------------*/
  .button-hamburger {
    display: none;
  }
}

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

.l-main-img {
    width:100%;
    max-width: 100%;
    height: auto;
    background-position: 50% 70%;
}
