@charset "UTF-8";
/* header
---------------------------------------- */
#header> .header_area {
  width: 100%;
  height: 60px;
  background: #000;
}

#header> .header_area> .gnav_list {
  display: flex;
  justify-content: space-between;
}


/* 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  font-size: 62.5%;
}

/* HTML5 display-role reset for older browsers */
article, aside, detail, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

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

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

a {
  text-decoration: none;
  color: #2a4209;
}

a:hover {
  opacity: 0.85;
}

/* border-box */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* Reset input */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* clearfix
---------------------------------------- */
.clear {
  position: relative;
  margin: 0 auto;
  zoom: 1;
}
.clear:before, .clear:after {
  content: "";
  display: table;
}
.clear:after {
  clear: both;
}

/* bxslier reset
---------------------------------------- */
.bx-wrapper {
  margin: 0 auto;
}
.bx-wrapper .bx-viewport {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  left: 0 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}

/* cmn
---------------------------------------- */
.pc-block {
  display: inline-block !important;
}

.sp-block {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .pc-block {
    display: none !important;
  }

  .sp-block {
    display: inline-block !important;
  }
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.weight-bold {
  font-weight: bold;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.inner {
  position: relative;
  margin: 0 auto;
  zoom: 1;
}
.inner:before, .inner:after {
  content: "";
  display: table;
}
.inner:after {
  clear: both;
}


