@charset "UTF-8";

/* ================================================== *
 *
 *    RESET
 *
 * ================================================== */
section, nav, article, aside, hgroup, header, footer, figure, figcaption, details {
  display: block;
}

video, audio, canvas {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

p, blockquote, dl, dd, figure {
  margin: 0;
}

hr {
  color: inherit;
  height: auto;
  box-sizing: content-box;
}

pre {
  font-family: monospace, sans-serif;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
}

ol, ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

strong, b {
  font-weight: bold;
}

small {
  font-size: 0.83em;
}

q {
  quotes: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

code, samp, kbd {
  font-family: monospace, sans-serif;
}

mark {
  color: black;
  background-color: yellow;
}

sub, sup {
  font-size: 0.83em;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

br {
  *letter-spacing: 0;
}

img {
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

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

caption {
  padding: 0;
  text-align: left;
}

th, td {
  text-align: left;
  vertical-align: baseline;
  padding: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  margin: 0;
}

input, button {
  line-height: normal;
  vertical-align: inherit;
  *vertical-align: middle;
}

input::-moz-focus-inner, button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]:focus {
  outline-offset: -2px;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="submit"], input[type="reset"], input[type="button"], button {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}

select {
  line-height: normal;
}

textarea {
  vertical-align: top;
  overflow: auto;
  *font-family: sans-serif;
}

/* ================================================== *
 *
 *    BASE
 *
 * ================================================== */
html {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

body {
  width: 100%;
  text-align: left;
  line-height: 1.7;
  color: #000000;
}

a {
  outline: none;
  color: #000000;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* ================================================== *
 *
 *    LAYOUT
 *
 * ================================================== */

/* ================================================== *
 *
 *    COMPORNENT
 *
 * ================================================== */
/* --------------------------------------------------- *
 *    grid
 * --------------------------------------------------- */
.grid {
  box-sizing: border-box;
}

.grid .grid_unit {
  box-sizing: border-box;
}

.grid.is-2col {
  width: 100%;
}

.grid.is-2col > .grid_unit {
  float: right;
  width: 50%;
  padding: 0 0 0 20px;
}

@media only screen and (max-width: 767px) {
  .grid.is-2col > .grid_unit {
    float: none;
    width: 100%;
    padding: 0 0 0 0;
  }
}

.grid.is-2col > .grid_unit:first-child {
  float: left;
  padding: 0 20px 0 0;
}

@media only screen and (max-width: 767px) {
  .grid.is-2col > .grid_unit:first-child {
    float: none;
    padding: 0 0 0 0;
  }
}

.grid.is-2col > .grid_unit.is-type1 {
  width: 76%;
  padding: 0 0 0 0;
}

@media only screen and (max-width: 767px) {
  .grid.is-2col > .grid_unit.is-type1 {
    width: 100%;
  }
}

.grid.is-2col > .grid_unit.is-type2 {
  width: 24%;
}

@media only screen and (max-width: 767px) {
  .grid.is-2col > .grid_unit.is-type2 {
    width: 100%;
  }
}

.grid.is-3col {
  width: 100%;
}

.grid.is-3col > .grid_unit {
  float: left;
  width: 33.33%;
  padding: 0 0 0 20px;
}

.grid.is-3col > .grid_unit:first-child {
  padding: 0 0 0 0;
}

@media only screen and (max-width: 767px) {
  .grid.is-3col > .grid_unit {
    float: none;
    width: 100%;
    padding: 0 0 0 0;
  }
}

.grid.is-w1240 {
  width: auto;
  min-width: 960px;
  margin: 40px auto;
  padding: 0 40px;
}

@media only screen and (max-width: 767px) {
  .grid.is-w1240 {
    position: static;
    min-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/* --------------------------------------------------- *
 *    title
 * --------------------------------------------------- */
/* title1 */
.title1 {
  position: relative;
  vertical-align: middle;
}

.title1 a {
  text-decoration: none;
}

.title1 a:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .title1 a {
    position: relative;
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #dcdcdc;
  }
  .title1 a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    display: block;
    width: 11px;
    height: 16px;
    margin: auto;
    background: url("../svg/icon_arrow_right_01-3.svg") 0 0/11px 16px no-repeat;
  }
}

.title1_title {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}

.title1_title i {
  position: relative;
}

.title1_title i.is-announce {
  padding-right: 23px;
}

.title1_title i.is-announce:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 22px;
  margin: auto;
  background: url("../icon_announce_01.html") 0 0/14px 22px no-repeat;
}

@media only screen and (max-width: 767px) {
  .title1_title i.is-announce:before {
    width: 16px;
    height: 25px;
    background-size: 16px 25px;
  }
}

.title1_link {
  position: relative;
  top: -2px;
  display: inline-block;
  margin-left: 13px;
  font-size: 11px;
}

@media only screen and (max-width: 767px) {
  .title1_link {
    display: none;
  }
}

.title1_link:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 3px;
  border-style: solid;
  border-width: 4.5px 0 4.5px 6px;
  border-color: transparent transparent transparent #999999;
}

/* --------------------------------------------------- *
 *    main
 * --------------------------------------------------- */
.l-main {
  position: relative;
}

/* --------------------------------------------------- *
 *    kv
 * --------------------------------------------------- */
.l-kv {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 960px;
}

@media only screen and (max-width: 767px) {
  .l-kv {
    min-width: 100%;
  }
}

.l-kv.is-blur ul {
  pointer-events: none;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

.kv_slide {
  overflow: hidden;
  position: relative;
}

.kv_slide_li {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  text-align: center;
}

.kv_slide_li.is-active {
  display: block;
}

.kv_slide_li.is-loading {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .kv_slide_li.is-loading {
    opacity: 1;
  }
}

.kv_slide_li a {
  display: block;
}

.kv_slide_li a img,
.kv_slide_li a video {
  display: block;
  width: 100%;
  height: auto;
  max-width: initial;
  vertical-align: top;
}

.kv_slide_li a iframe {
  z-index: -1;
}


.kv_slide_li a img.is-mainimg {
  display: block;
}

.kv_slide_li a img.is-subimg {
  display: none;
}

@media (max-width: 767px) and (orientation: portrait) {
  .kv_slide_li a iframe {
    display: none;
  }
  
  .kv_slide_li a img.is-mainimg {
    display: none;
  }

  .kv_slide_li a img.is-subimg {
    display: block;
  }
}

.kv_slidepager {
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.kv_slidepager li {
  display: inline-block;
  margin: 0 3px;
}

.kv_slidepager li a,
.kv_slidepager li span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  text-indent: -9999px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}


@media only screen and (max-width: 767px) {
  .kv_slidepager li a,
  .kv_slidepager li span {
    display: none;
  }
}

.kv_slidepager li a:hover,
.kv_slidepager li span:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .kv_slidepager li a:hover,
  .kv_slidepager li span:hover {
    opacity: 1;
  }
}

.kv_slidepager li.is-active a,
.kv_slidepager li.is-active span {
  background-color: #ffffff;
}

.kv_slidecontrol li {
  position: absolute;
  top: 50%;
  margin: auto;
}

.kv_slidecontrol li.is-prev {
  left: 10px;
}

.kv_slidecontrol li.is-next {
  right: 10px;
}

.kv_slidecontrol li span {
  cursor: pointer;
}

.kv_slidecontrol li span:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .kv_slidecontrol li span:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .kv_slidecontrol li span img {
    width: 24px;
    height: auto;
    margin-top: -18px;
  }
}

/* --------------------------------------------------- *
 *    gnav
 * --------------------------------------------------- */
.l-gnav {
  width: 100%;
  min-width: 960px;
}

@media only screen and (max-width: 767px) {
  .l-gnav {
    position: relative;
    min-width: 100%;
  }
}

.gnav {
  position: relative;
  display: table;
  width: 100%;
  height: 60px;
}

.gnav > li {
  position: relative;
  display: table-cell;
  box-sizing: border-box;
  width: 25%;
  border-left: 1px solid #999999;
  border-left: 1px solid #999999;
  text-align: center;
  vertical-align: top;
}

.gnav > li:first-child {
  border-left: none;
}

.gnav > li a {
  display: block;
  width: 100%;
  padding: 16px 0 17px 0;
  background-color: #403d33;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .gnav > li a {
    position: relative;
    font-size: 10px;
    line-height: 12px;
    padding: 35px 0 12px 0;
    background-color: #403d33;
  }
}

.gnav > li a:hover {
  background-color: #000000;
}

@media only screen and (max-width: 767px) {
  .gnav > li a:hover {
    background-color: #403d33;
  }
}

.gnav > li a.is-arrow:before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 0 6.5px 6px 6.5px;
  border-color: transparent transparent #707070 transparent;
}

@media only screen and (max-width: 767px) {
  .gnav > li a.is-arrow:before {
    top: auto;
    bottom: 2px;
    border-width: 5px 4px 0 4px;
    border-color: #707070 transparent transparent transparent;
  }
}

.gnav > li.is-active a.is-arrow {
  background-color: #000000;
}

@media only screen and (max-width: 767px) {
  .gnav > li.is-active a.is-arrow {
    background-color: #000000;
  }
}

.gnav > li.is-active a.is-arrow:before {
  top: -6px;
  border-color: transparent transparent #000000 transparent;
}

@media only screen and (max-width: 767px) {
  .gnav > li.is-active a.is-arrow:before {
    top: auto;
    bottom: -4px;
    z-index: 999;
    border-color: #000000 transparent transparent transparent;
  }
}

@media only screen and (max-width: 767px) {
  .gnav > li.is-gnav_menu4 a {
    line-height: 24px;
  }
}

.gnav > li br {
  display: none;
}

@media only screen and (max-width: 767px) {
  .gnav > li br {
    display: inline;
  }
}

@media only screen and (max-width: 767px) {
  .gnav > li span {
    font-size: 8px;
  }
}

.gnav > li i {
  margin-right: 10px;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .gnav > li i {
    position: absolute;
    top: 8px;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.gnav > li i.is-gnav_menu1 {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../icon_dummy_01.html") 0 50% no-repeat;
}

@media only screen and (max-width: 767px) {
  .gnav > li i.is-gnav_menu1 {
    display: block;
    width: 20px;
    height: 20px;
    background-size: px;
  }
}

.gnav > li i.is-gnav_menu2 {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../icon_dummy_01.html") 0 50% no-repeat;
}

@media only screen and (max-width: 767px) {
  .gnav > li i.is-gnav_menu2 {
    display: block;
    width: 20px;
    height: 20px;
    background-size: px;
  }

}

.gnav > li i.is-gnav_menu3 {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../icon_dummy_01.html") 0 50% no-repeat;
}

@media only screen and (max-width: 767px) {
  .gnav > li i.is-gnav_menu3 {
    display: block;
    width: 20px;
    height: 20px;
    background-size: 20px 19px;
  }
}

.gnav > li i.is-gnav_menu4 {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../icon_dummy_01.html") 0 50% no-repeat;
}

@media only screen and (max-width: 767px) {
  .gnav > li i.is-gnav_menu4 {
    display: block;
    width: 20px;
    height: 20px;
    background-size: 19.5px 20.5px;
  }
}

.gnav_sub {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  display: none;
  width: 100%;
  min-width: 960px;
  padding: 40px 40px;
  background-color: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .gnav_sub {
    position: static;
    min-width: 100%;
    padding: 0 10px 10px;
    background-color: #f0f0f0;
  }
}

.gnav_sub_inner {
  position: absolute;
  right: 0;
  left: 0;
  width: 960px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_inner {
    position: static;
    width: 100%;
    min-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .gnavtitle {
    display: none;
  }
}

.gnavtitle_title {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
}

.gnavtitle_link {
  display: inline-block;
  margin-left: 13px;
  font-size: 12px;
  font-weight: bold;
}

.gnavtitle_link a {
  color: #ffffff;
  text-decoration: none;
}

.gnavtitle_link a:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .gnavtitle_link a:hover {
    opacity: 1;
  }
}

.gnavtitle_link a:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 3px;
  border-style: solid;
  border-width: 4.5px 0 4.5px 6px;
  border-color: transparent transparent transparent #ffffff;
}

.gnavtitle_close {
  float: right;
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.gnavtitle_close a {
  color: #ffffff;
  text-decoration: none;
}

.gnavtitle_close a i {
  margin-right: 7px;
  vertical-align: middle;
}

.gnavtitle_close a i.is-close {
  display: inline-block;
  width: 12px;
  height: 14px;
  background: url("../svg/icon_close_01-3.svg") 0 0/12px 12px no-repeat;
}

.gnavtitle_close a:hover {
  opacity: .5;
}

.gnav_grid {
  width: 100%;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .gnav_grid {
    margin-top: 0;
  }
}

.gnav_grid .gnav_grid_unit {
  float: left;
  box-sizing: border-box;
  width: 25%;
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .gnav_grid .gnav_grid_unit {
    float: none;
    width: 100%;
    padding-left: 0;
  }
}

.gnav_grid .gnav_grid_unit:first-child {
  padding-left: 0;
}

.gnav_sub_unit {
  position: relative;
  box-sizing: border-box;
  padding: 12px 20px 0 15px;
  background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit {
    margin-top: 10px;
    border: 1px solid #dcdcdc;
    padding: 0;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_1, .gnav_sub_unit.is-gnav_sub_menu1_2, .gnav_sub_unit.is-gnav_sub_menu1_4 {
  height: 179px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_1, .gnav_sub_unit.is-gnav_sub_menu1_2, .gnav_sub_unit.is-gnav_sub_menu1_4 {
    height: auto;
  }
}

.gnav_sub_unit.is-tel {
  height: 115px;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-tel {
    height: auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_3, .gnav_sub_unit.is-gnav_sub_menu1_10 {
  padding: 8px 51px 0 20px;
  height: 54px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_3, .gnav_sub_unit.is-gnav_sub_menu1_10 {
    height: auto;
    padding: 0;
  }
}

.gnav_sub_unit.is-gnav_sub_menu2_3 {
  height: 54px;
  padding: 16px 20px 0 15px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu2_3 {
    height: auto;
    padding: 0;
  }
}

.gnav_sub_unit.is-gnav_sub_menu2_5, .gnav_sub_unit.is-gnav_sub_menu2_7 {
  height: 54px;
  margin-top: 10px;
  padding: 16px 20px 0 15px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu2_5, .gnav_sub_unit.is-gnav_sub_menu2_7 {
    height: auto;
    padding: 0;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_5, .gnav_sub_unit.is-gnav_sub_menu1_6 {
  height: 321px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_5, .gnav_sub_unit.is-gnav_sub_menu1_6 {
    height: auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_7 {
  height: 154px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_7 {
    height: auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_8 {
  margin-top: 10px;
  height: 154px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_8 {
    height: auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu2_1, .gnav_sub_unit.is-gnav_sub_menu2_2 {
  height: 486px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu2_1, .gnav_sub_unit.is-gnav_sub_menu2_2 {
    height: auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu2_4 {
  height: 135px;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu2_4 {
    height: auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu2_6 {
  height: 149px;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu2_6 {
    height: auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_9 {
  display: none;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_9 {
    display: block;
  }
}

.gnav_sub_unit.is-btnetc {
  display: none;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-btnetc {
    display: block;
    background-color: #d8d8d8;
    border-color: #cccccc;
  }
}

.gnav_sub_unit:after {
  content: "";
  position: absolute;
  display: block;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit:after {
    padding-right: 38px;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_1:after {
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_1:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_2:after {
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_2:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_3:after {
  right: 10px;
  bottom: 5px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_3:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-tel:after {
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-tel:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_4:after {
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_4:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_5:after {
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_5:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_6:after {
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_6:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_7:after {
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_7:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_8:after {
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_8:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unit.is-gnav_sub_menu1_10:after {
  right: 10px;
  bottom: 5px;
  width: 40px;
  height: 40px;
  background: url("../img_gnav_dummy_01.html") no-repeat 0 0;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unit.is-gnav_sub_menu1_10:after {
    top: 15px;
    right: auto;
    bottom: auto;
    left: 13px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.gnav_sub_unittitle {
  font-size: 15px;
  font-weight: bold;
  line-height: 22px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unittitle {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .is-btnetc .gnav_sub_unittitle {
    text-align: center;
  }
}

.is-gnav_sub_menu1_3 .gnav_sub_unittitle,
.is-gnav_sub_menu1_10 .gnav_sub_unittitle {
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 767px) {
  .is-gnav_sub_menu1_3 .gnav_sub_unittitle,
  .is-gnav_sub_menu1_10 .gnav_sub_unittitle {
    font-size: 15px;
    line-height: 22px;
  }
}

.is-gnav_sub_menu2_6 .gnav_sub_unittitle {
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 767px) {
  .is-gnav_sub_menu2_6 .gnav_sub_unittitle {
    font-size: 15px;
    line-height: 22px;
  }
}

.gnav_sub_unittitle span {
  display: block;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unittitle span {
    position: relative;
    display: block;
    padding: 14px 20px 14px 45px;
  }

}

.is-gnav_menu2 .gnav_sub_unittitle span {
  padding-left: 0;
}

@media only screen and (max-width: 767px) {
  .is-btnetc .gnav_sub_unittitle span {
    padding: 0;
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unittitle span:after {
    content: "";
    position: absolute;
    top: 0;
    right: 9px;
    bottom: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    background: url("../icon_plus_01.html") no-repeat 0 0/20px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .is-btnetc .gnav_sub_unittitle span:after {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unittitle.is-open span:after {
    background-image: url("../icon_minus_01.html");
  }
}

.gnav_sub_unittitle a {
  position: relative;
  display: block;
  padding-left: 11px;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unittitle a {
    display: block;
    padding: 14px 20px 14px 45px;
  }
}

.is-gnav_menu2 .gnav_sub_unittitle a {
  padding-left: 10px;
}

@media only screen and (max-width: 767px) {
  .is-btnetc .gnav_sub_unittitle a {
    padding: 5px 20px 5px 20px;
  }
}

.gnav_sub_unittitle a:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unittitle a:hover {
    opacity: 1;
  }
}

.gnav_sub_unittitle a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #999999;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_unittitle a:before {
    top: 0;
    right: 15px;
    bottom: 0;
    left: auto;
    width: 11px;
    height: 16px;
    margin: auto;
    border: none;
    background: url("../svg/icon_arrow_right_01-3.svg") 0 0/11px 16px no-repeat;
  }
}

@media only screen and (max-width: 767px) {
  .is-gnav_sub_menu2_1 .gnav_sub_unittitle a:before,
  .is-gnav_sub_menu2_2 .gnav_sub_unittitle a:before,
  .is-gnav_sub_menu2_4 .gnav_sub_unittitle a:before,
  .is-gnav_sub_menu2_6 .gnav_sub_unittitle a:before {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .is-gnav_sub_menu2_1 .gnav_sub_unittitle a:after,
  .is-gnav_sub_menu2_2 .gnav_sub_unittitle a:after,
  .is-gnav_sub_menu2_4 .gnav_sub_unittitle a:after,
  .is-gnav_sub_menu2_6 .gnav_sub_unittitle a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 9px;
    bottom: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    background: url("../icon_plus_01.html") no-repeat 0 0/20px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .is-gnav_sub_menu2_1 .gnav_sub_unittitle.is-open a:after,
  .is-gnav_sub_menu2_2 .gnav_sub_unittitle.is-open a:after,
  .is-gnav_sub_menu2_4 .gnav_sub_unittitle.is-open a:after,
  .is-gnav_sub_menu2_6 .gnav_sub_unittitle.is-open a:after {
    background-image: url("../icon_minus_01.html");
  }
}

.is-btnetc .gnav_sub_unittitle a:before {
  right: auto;
  left: 10px;
  width: 6px;
  height: 7px;
  background: url("../icon_arrow_right_02.html") 0 0/6px 7px no-repeat;
}

.gnav_sub_menu {
  margin: 4px 0 0 10px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_menu {
    display: none;
    margin: 0;
    border-top: 1px solid #dcdcdc;
  }
}

.gnav_sub_menu_li {
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_menu_li {
    margin: 0 10px;
    border-top: 1px solid #dcdcdc;
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .gnav_sub_menu_li:first-child {
    border-top: none;
  }
}

.gnav_sub_menu_li.is-small {
  font-size: 11px;
}

.gnav_sub_menu_li a {
  position: relative;
  display: inline-block;
  margin-top: 2px;
  padding-left: 10px;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_menu_li a {
    display: block;
    margin-top: 0;
    padding: 12px 35px 12px 0;
  }
}

.gnav_sub_menu_li a:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_menu_li a:hover {
    opacity: 1;
  }
}

.gnav_sub_menu_li a:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #999999;
}

@media only screen and (max-width: 767px) {
  .gnav_sub_menu_li a:before {
    top: 0;
    right: 5px;
    bottom: 0;
    left: auto;
    width: 11px;
    height: 16px;
    margin: auto;
    border: none;
    background: url("../svg/icon_arrow_right_01-3.svg") 0 0/11px 16px no-repeat;
  }
}

/* --------------------------------------------------- *
 *    l-contents
 * --------------------------------------------------- */
/* --------------------------------------------------- *
 *    importantnews
 * --------------------------------------------------- */
.importantnews {
  width: 100%;
  min-width: 960px;
  background-color: #eeeddf;
}

@media only screen and (max-width: 767px) {
  .importantnews {
    min-width: 100%;
    border-bottom: 1px solid #dcdcdc;
  }
}

.importantnews a {
  box-sizing: border-box;
  display: block;
  padding: 0 40px;
  text-decoration: none;
}

.importantnews a:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .importantnews a {
    position: relative;
    min-width: 100%;
    padding: 15px 40px 15px 20px;
  }
  .importantnews a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    display: block;
    width: 11px;
    height: 16px;
    margin: auto;
    background: url("../svg/icon_arrow_right_01-3.svg") 0 0/11px 16px no-repeat;
  }
  .importantnews a:hover {
    opacity: 1;
  }
}

.importantnews_inner {
  display: table;
}

@media only screen and (max-width: 767px) {
  .importantnews_inner {
    display: block;
    width: 100%;
  }
}

.importantnews_title {
  display: table-cell;
  padding: 15px 30px 15px 0;
  color: #990000;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .importantnews_title {
    display: block;
    width: auto;
    padding: 0 0 0 0;
  }
}

.importantnews_title i {
  margin-right: 5px;
  vertical-align: middle;
}

.importantnews_title i.is-importantnews {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../icon_importantnews_01.html") 0 0 no-repeat;
}

.importantnews_text {
  display: table-cell;
  padding: 15px 0 15px 0;
}

@media only screen and (max-width: 767px) {
  .importantnews_text {
    display: block;
    padding: 10px 0 0 0;
  }
}

/* --------------------------------------------------- *
 *    datelist1
 * --------------------------------------------------- */
.datelist1 {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .datelist1 {
    margin: 0;
  }
}

.datelist1 a {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .datelist1 a {
    position: relative;
    display: block;
    padding: 12px 40px 12px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .datelist1 a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    display: block;
    width: 11px;
    height: 16px;
    margin: auto;
    background: url("../svg/icon_arrow_right_01-3.svg") 0 0/11px 16px no-repeat;
  }
}

.datelist1 a:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .datelist1 a:hover {
    opacity: 1;
  }
}

.datelist1_li {
  display: table;
  width: 100%;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .datelist1_li {
    display: block;
    margin-top: 0;
    border-bottom: 1px solid #dcdcdc;
  }
}

.datelist1_li_date {
  display: table-cell;
  width: 9.5em;
  color: #999999;
}

@media only screen and (max-width: 767px) {
  .datelist1_li_date {
    display: block;
    width: auto;
    padding: 12px 40px 0 20px;
    margin-bottom: -12px;
  }
}

.datelist1_li_text {
  display: table-cell;
}

@media only screen and (max-width: 767px) {
  .datelist1_li_text {
    display: block;
    width: auto;
  }
}

/* --------------------------------------------------- *
 *    linklist1
 * --------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .linklist1.is-border {
    overflow: hidden;
    border-bottom: 1px solid #dcdcdc;
  }
}

.linklist1.is-border li:last-child {
  margin-bottom: -1px;
}

.linklist1_li {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .linklist1_li {
    box-sizing: border-box;
    float: left;
    width: 50%;
    margin-top: 0;
    border-bottom: 1px solid #dcdcdc;
  }
}

.linklist1_li:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .linklist1_li:nth-child(odd) {
    border-right: 1px solid #dcdcdc;
  }
}

@media only screen and (max-width: 767px) {
  .is-borderleft .linklist1_li {
    border-right: none;
  }
  .is-borderleft .linklist1_li:nth-child(odd) {
    border-right: none;
  }
  .is-borderleft .linklist1_li:nth-child(even) {
    border-right: 1px solid #dcdcdc;
  }
}

.linklist1_li a {
  position: relative;
  display: inline-block;
  padding-left: 13px;
  vertical-align: middle;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .linklist1_li a {
    display: block;
    padding: 0 30px 0 20px;
    font-size: 11px;
    line-height: 15px;
  }
}

.linklist1_li a:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .linklist1_li a:hover {
    opacity: 1;
  }
}

.linklist1_li a:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #999999;
}

@media only screen and (max-width: 767px) {
  .linklist1_li a:before {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .linklist1_li a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    display: block;
    width: 11px;
    height: 16px;
    margin: auto;
    background: url("../svg/icon_arrow_right_01-3.svg") 0 0/11px 16px no-repeat;
  }
}

@media only screen and (max-width: 767px) {
  .linklist1_li a span {
    display: table-cell;
    height: 49px;
    vertical-align: middle;
  }
}

/* --------------------------------------------------- *
 *    bnrlist1
 * --------------------------------------------------- */
.bnrlist1 {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .bnrlist1 {
    clear: both;
    padding: 20px 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-gnav .bnrlist1 {
    padding: 0;
  }
}

.bnrlist1:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .l-gnav .bnrlist1:first-child {
    margin-top: 10px;
  }
}

.bnrlist1_li {
  margin-top: 10px;
  text-align: center;
}

.bnrlist1_li:first-child {
  margin-top: 0;
}

.bnrlist1_li a {
  display: block;
  text-decoration: none;
}

.bnrlist1_li a:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .bnrlist1_li a:hover {
    opacity: 1;
  }
}

.bnrlist1_li a.is-border1 {
  border: 1px solid #dcdcdc;
}

.bnrlist1_li a.is-border2 {
  border: 1px solid #666666;
}

.bnrlist1_li a.is-border3 {
  border: 1px solid #ffffff;
}

.bnrlist1_li a img {
  width: 100%;
  height: auto;
}

.bnrlist1_li.is-kumamoto a span {
  display: block;
  border-top: 1px dotted #dcdcdc;
}

.bnrlist1_li.is-announce a {
  padding: 9px;
  background-color: #f4f4f4;
}

.bnrlist1_li.is-announce a i {
  vertical-align: middle;
}

.bnrlist1_li.is-announce a i.is-announce {
  display: inline-block;
  width: 14px;
  height: 22px;
  margin-right: 11px;
  background: url("../icon_announce_01.html") 0 0/14px 22px no-repeat;
}

/* --------------------------------------------------- *
 *    info
 * --------------------------------------------------- */
.info {
  overflow: hidden;
  min-width: 960px;
}

@media only screen and (max-width: 767px) {
  .info {
    position: static;
    min-width: 100%;
  }
}

.info.is-loading {
  background: url("../icon_loading.html") 50% 0 no-repeat;
  text-align: center;
  padding-top: 40px;
}

.info_inner-pc {
  display: block;
}

@media only screen and (max-width: 767px) {
  .info_inner-pc {
    display: none;
  }
}

.info.is-loading .info_inner-pc {
  display: none;
}

.info_inner-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .info_inner-sp {
    display: block;
  }
}

.info.is-loading .info_inner-sp {
  display: none;
}

.info_unit {
  position: relative;
  float: left;
}

@media only screen and (max-width: 767px) {
  .info_unit {
    float: none;
  }
}

.info_unit a {
  display: block;
  text-decoration: none;
}

.info .info_unit {
  overflow: hidden;
}

.info_category {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
}

.info_unit.is-hover .info_category {
  display: block;
}

.info_category.is-newsrelease {
  background-color: #f37e2e;
}

.info_category.is-blog {
  background-color: #2fb2ee;
}

.info_category.is-report {
  background-color: #26b774;
}

.info_category.is-special {
  background-color: #aa59f5;
}

.info_category.is-cmlibrary {
  background-color: #00aeb4;
}

.info_category.is-gnav_sub_menu2_5 {
  background-color: #f559f4;
}

.info_category.is-worldtopics {
  background-color: #389413;
}

.info_category.is-gnav_sub_menu2_1 {
  background-color: #2e73dc;
}

.info_category.is-award {
  background-color: #d4b200;
}

.info_category.is-ecology {
  background-color: #8bc60d;
}

.info_category.is-investorrelations {
  background-color: #444455;
}

.info_category.is-announcement {
  background-color: #444455;
}

.info_category.is-csr {
  background-color: #339900;
}

.info_category.is-recruit {
  background-color: #ff9898;
}

.info_title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(64, 61, 51, 0.5);
  color: #ffffff;
  font-size: 13px;
  line-height: 18px;
}

@media only screen and (max-width: 767px) {
  .info_title {
    height: auto;
    padding: 5px 0;
  }
}

.info_unit.is-hover .info_title {
  display: table;
  vertical-align: middle;
}

.info_title_inner {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  box-sizing: border-box;
  height: 36px;
  margin: auto;
  padding: 0 9px;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .info_title_inner {
    position: static;
    height: 36px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.info_unit.is-hover .info_title_inner {
  position: static;
  display: table-cell;
  height: 100%;
}

.info_unit.is-hover .info_title_title {
  font-size: 16px;
  line-height: 24px;
}

.is-vlong {
  display: block;
}

.is-vlong + .info_image {
  display: none;
}

@media only screen and (max-width: 959px) {
  .is-vlong + .info_image {
    display: block;
  }
}

@media only screen and (max-width: 959px) {
  .info_image.is-vlong {
    display: none;
  }
}

.info_image img {
  width: 100%;
  height: auto;
}

.info_title_date {
  display: none;
}

.info_unit.is-hover .info_title_date {
  display: block;
}

.info_addition {
  display: none;
}

.info_unit.is-hover .info_addition {
  display: block;
  margin-top: 5px;
}

.info_unit.is-hover .info_addition:hover {
  opacity: .5;
}

.info_btn {
  clear: both;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.info_btn span {
  display: block;
  padding: 30px 0;
  background-color: #eeeddf;
  color: #a3a399;
  line-height: 17px;
  font-weight: bold;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .info_btn span {
    padding: 16px 0;
    font-size: 13px;
  }
}

.info_btn span:hover {
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .info_btn span:hover {
    opacity: 1;
  }
}

.info_btn span i {
  vertical-align: middle;
}

.info_btn span i.is-more {
  display: inline-block;
  margin-right: 7px;
  width: 20px;
  height: 17px;
  background: url("../icon_more_01.html") no-repeat 0 0;
}

/* ================================================== *
 *
 *    UTILITY
 *
 * ================================================== */
/* -------------------------------------------------- *
 *    clear
 * -------------------------------------------------- */
.u-clear_b {
  clear: both;
}

.u-clear_r {
  clear: right;
}

.u-clear_l {
  clear: left;
}

/* clearfix */
.u-clear:before {
  content: " ";
  display: table;
}

.u-clear:after {
  content: " ";
  display: table;
  clear: both;
}

/* --------------------------------------------------- *
 *    float
 * --------------------------------------------------- */
.u-float_r {
  display: block;
  float: right;
}

.u-float_l {
  display: block;
  float: left;
}

/* ================================================== *
 *
 *    UTILITY CLASS
 *
 * ================================================== */
/* -------------------------------------------------- *
 *    clear
 * -------------------------------------------------- */
.u-clear_b {
  clear: both;
}

.u-clear_r {
  clear: right;
}

.u-clear_l {
  clear: left;
}

/* clearfix */
.u-clear:before,
.u-clear:after {
  content: " ";
  display: table;
}

.u-clear:after {
  clear: both;
}

/* --------------------------------------------------- *
 *    float
 * --------------------------------------------------- */
.u-float_r {
  display: block;
  float: right;
}

.u-float_l {
  display: block;
  float: left;
}

/* --------------------------------------------------- *
 *    text align
 * --------------------------------------------------- */
.u-align_c {
  text-align: center !important;
}

.u-align_r {
  text-align: right !important;
}

.u-align_l {
  text-align: left !important;
}

/* --------------------------------------------------- *
 *    font weight
 * --------------------------------------------------- */
.u-bold {
  font-weight: bold !important;
}

/* --------------------------------------------------- *
 *    font family
 * --------------------------------------------------- */
.u-alphabet {
  font-family: Arial, sans-serif !important;
}

/* --------------------------------------------------- *
 *    font size
 * --------------------------------------------------- */
.u-size_11 {
  font-size: 11px !important;
}

.u-size_12 {
  font-size: 12px !important;
}

.u-size_13 {
  font-size: 13px !important;
}

.u-size_14 {
  font-size: 14px !important;
}

.u-size_15 {
  font-size: 15px !important;
}

.u-size_16 {
  font-size: 16px !important;
}

.u-size_17 {
  font-size: 17px !important;
}

.u-size_18 {
  font-size: 18px !important;
}

.u-size_19 {
  font-size: 19px !important;
}

.u-size_20 {
  font-size: 20px !important;
}

.u-size_21 {
  font-size: 21px !important;
}

.u-size_22 {
  font-size: 22px !important;
}

/* --------------------------------------------------- *
 *    footer
 * --------------------------------------------------- */



/* --------------------------------------------------- *
 *    margin
 * --------------------------------------------------- */
.u-mt_0 {
  margin-top: 0 !important;
}

.u-mt_5 {
  margin-top: 5px !important;
}


.u-mt_10 {
  margin-top: 10px !important;
}

.u-mt_15 {
  margin-top: 15px !important;
}

.u-mt_20 {
  margin-top: 20px !important;
}

.u-mt_25 {
  margin-top: 25px !important;
}

.u-mt_30 {
  margin-top: 30px !important;
}

.u-mt_35 {
  margin-top: 35px !important;
}

.u-mt_40 {
  margin-top: 40px !important;
}

.u-mt_45 {
  margin-top: 45px !important;
}

.u-mt_50 {
  margin-top: 50px !important;
}

.u-mr_0 {
  margin-right: 0 !important;
}

.u-mr_5 {
  margin-right: 5px !important;
}

.u-mr_9 {
  margin-right: 9px !important;
}

.u-mr_10 {
  margin-right: 10px !important;
}

.u-mr_15 {
  margin-right: 15px !important;
}

.u-mr_18 {
  margin-right: 18px !important;
}

.u-mr_20 {
  margin-right: 20px !important;
}

.u-mr_25 {
  margin-right: 25px !important;
}

.u-mr_30 {
  margin-right: 30px !important;
}

.u-mr_35 {
  margin-right: 35px !important;
}

.u-mr_40 {
  margin-right: 40px !important;
}

.u-mr_50 {
  margin-right: 50px !important;
}

.u-mb_0 {
  margin-bottom: 0 !important;
}

.u-mb_5 {
  margin-bottom: 5px !important;
}

.u-mb_10 {
  margin-bottom: 10px !important;
}

.u-mb_15 {
  margin-bottom: 15px !important;
}

.u-mb_20 {
  margin-bottom: 20px !important;
}

.u-mb_25 {
  margin-bottom: 25px !important;
}

.u-mb_30 {
  margin-bottom: 30px !important;
}

.u-mb_35 {
  margin-bottom: 35px !important;
}

.u-mb_40 {
  margin-bottom: 40px !important;
}

.u-mb_45 {
  margin-bottom: 45px !important;
}

.u-mb_50 {
  margin-bottom: 50px !important;
}

.u-ml_0 {
  margin-left: 0 !important;
}

.u-ml_5 {
  margin-left: 5px !important;
}

.u-ml_10 {
  margin-left: 10px !important;
}

.u-ml_15 {
  margin-left: 15px !important;
}

.u-ml_20 {
  margin-left: 20px !important;
}

.u-ml_25 {
  margin-left: 25px !important;
}

.u-ml_30 {
  margin-left: 30px !important;
}

.u-ml_35 {
  margin-left: 35px !important;
}

.u-ml_40 {
  margin-left: 40px !important;
}

.u-ml_45 {
  margin-left: 45px !important;
}

.u-ml_50 {
  margin-left: 50px !important;
}

/* --------------------------------------------------- *
 *    padding
 * --------------------------------------------------- */
.u-pt_0 {
  padding-top: 0 !important;
}

.u-pt_5 {
  padding-top: 5px !important;
}

.u-pt_10 {
  padding-top: 10px !important;
}

.u-pt_15 {
  padding-top: 15px !important;
}

.u-pt_20 {
  padding-top: 20px !important;
}

.u-pt_25 {
  padding-top: 25px !important;
}

.u-pt_30 {
  padding-top: 30px !important;
}

.u-pt_35 {
  padding-top: 35px !important;
}

.u-pt_40 {
  padding-top: 40px !important;
}

.u-pt_45 {
  padding-top: 45px !important;
}

.u-pt_50 {
  padding-top: 50px !important;
}

.u-pr_0 {
  padding-right: 0 !important;
}

.u-pr_5 {
  padding-right: 5px !important;
}

.u-pr_10 {
  padding-right: 10px !important;
}

.u-pr_15 {
  padding-right: 15px !important;
}

.u-pr_20 {
  padding-right: 20px !important;
}

.u-pr_25 {
  padding-right: 25px !important;
}

.u-pr_30 {
  padding-right: 30px !important;
}

.u-pr_35 {
  padding-right: 35px !important;
}

.u-pr_40 {
  padding-right: 40px !important;
}

.u-pr_45 {
  padding-right: 45px !important;
}

.u-pr_50 {
  padding-right: 50px !important;
}

.u-pb_0 {
  padding-bottom: 0 !important;
}

.u-pb_5 {
  padding-bottom: 5px !important;
}

.u-pb_10 {
  padding-bottom: 10px !important;
}

.u-pb_15 {
  padding-bottom: 15px !important;
}

.u-pb_20 {
  padding-bottom: 20px !important;
}

.u-pb_25 {
  padding-bottom: 25px !important;
}

.u-pb_30 {
  padding-bottom: 30px !important;
}

.u-pb_35 {
  padding-bottom: 35px !important;
}

.u-pb_40 {
  padding-bottom: 40px !important;
}

.u-pb_45 {
  padding-bottom: 45px !important;
}

.u-pb_50 {
  padding-bottom: 50px !important;
}

.u-pl_0 {
  padding-left: 0 !important;
}

.u-pl_5 {
  padding-left: 5px !important;
}

.u-pl_10 {
  padding-left: 10px !important;
}

.u-pl_15 {
  padding-left: 15px !important;
}

.u-pl_20 {
  padding-left: 20px !important;
}

.u-pl_25 {
  padding-left: 25px !important;
}

.u-pl_30 {
  padding-left: 30px !important;
}

.u-pl_35 {
  padding-left: 35px !important;
}

.u-pl_40 {
  padding-left: 40px !important;
}

.u-pl_45 {
  padding-left: 45px !important;
}

.u-pl_50 {
  padding-left: 50px !important;
}

/* --------------------------------------------------- *
 *    margin
 * --------------------------------------------------- */
.u-mt_0 {
  margin-top: 0 !important;
}

.u-mt_5 {
  margin-top: 5px !important;
}

.u-mt_10 {
  margin-top: 10px !important;
}

.u-mt_15 {
  margin-top: 15px !important;
}

.u-mt_20 {
  margin-top: 20px !important;
}

.u-mt_25 {
  margin-top: 25px !important;
}

.u-mt_30 {
  margin-top: 30px !important;
}

.u-mt_35 {
  margin-top: 35px !important;
}

.u-mt_40 {
  margin-top: 40px !important;
}

.u-mt_45 {
  margin-top: 45px !important;
}

.u-mt_50 {
  margin-top: 50px !important;
}

.u-mr_0 {
  margin-right: 0 !important;
}

.u-mr_5 {
  margin-right: 5px !important;
}

.u-mr_9 {
  margin-right: 9px !important;
}

.u-mr_10 {
  margin-right: 10px !important;
}

.u-mr_15 {
  margin-right: 15px !important;
}

.u-mr_18 {
  margin-right: 18px !important;
}

.u-mr_20 {
  margin-right: 20px !important;
}

.u-mr_25 {
  margin-right: 25px !important;
}

.u-mr_30 {
  margin-right: 30px !important;
}

.u-mr_35 {
  margin-right: 35px !important;
}

.u-mr_40 {
  margin-right: 40px !important;
}

.u-mr_50 {
  margin-right: 50px !important;
}

.u-mb_0 {
  margin-bottom: 0 !important;
}

.u-mb_5 {
  margin-bottom: 5px !important;
}

.u-mb_10 {
  margin-bottom: 10px !important;
}

.u-mb_15 {
  margin-bottom: 15px !important;
}

.u-mb_20 {
  margin-bottom: 20px !important;
}

.u-mb_25 {
  margin-bottom: 25px !important;
}

.u-mb_30 {
  margin-bottom: 30px !important;
}

.u-mb_35 {
  margin-bottom: 35px !important;
}

.u-mb_40 {
  margin-bottom: 40px !important;
}

.u-mb_45 {
  margin-bottom: 45px !important;
}

.u-mb_50 {
  margin-bottom: 50px !important;
}

.u-ml_0 {
  margin-left: 0 !important;
}

.u-ml_5 {
  margin-left: 5px !important;
}

.u-ml_10 {
  margin-left: 10px !important;
}

.u-ml_15 {
  margin-left: 15px !important;
}

.u-ml_20 {
  margin-left: 20px !important;
}

.u-ml_25 {
  margin-left: 25px !important;
}

.u-ml_30 {
  margin-left: 30px !important;
}

.u-ml_35 {
  margin-left: 35px !important;
}

.u-ml_40 {
  margin-left: 40px !important;
}

.u-ml_45 {
  margin-left: 45px !important;
}

.u-ml_50 {
  margin-left: 50px !important;
}

/* --------------------------------------------------- *
 *    padding
 * --------------------------------------------------- */
.u-pt_0 {
  padding-top: 0 !important;
}

.u-pt_5 {
  padding-top: 5px !important;
}

.u-pt_10 {
  padding-top: 10px !important;
}

.u-pt_15 {
  padding-top: 15px !important;
}

.u-pt_20 {
  padding-top: 20px !important;
}

.u-pt_25 {
  padding-top: 25px !important;
}

.u-pt_30 {
  padding-top: 30px !important;
}

.u-pt_35 {
  padding-top: 35px !important;
}

.u-pt_40 {
  padding-top: 40px !important;
}

.u-pt_45 {
  padding-top: 45px !important;
}

.u-pt_50 {
  padding-top: 50px !important;
}

.u-pr_0 {
  padding-right: 0 !important;
}

.u-pr_5 {
  padding-right: 5px !important;
}

.u-pr_10 {
  padding-right: 10px !important;
}

.u-pr_15 {
  padding-right: 15px !important;
}

.u-pr_20 {
  padding-right: 20px !important;
}

.u-pr_25 {
  padding-right: 25px !important;
}

.u-pr_30 {
  padding-right: 30px !important;
}

.u-pr_35 {
  padding-right: 35px !important;
}

.u-pr_40 {
  padding-right: 40px !important;
}

.u-pr_45 {
  padding-right: 45px !important;
}

.u-pr_50 {
  padding-right: 50px !important;
}

.u-pb_0 {
  padding-bottom: 0 !important;
}

.u-pb_5 {
  padding-bottom: 5px !important;
}

.u-pb_10 {
  padding-bottom: 10px !important;
}

.u-pb_15 {
  padding-bottom: 15px !important;
}

.u-pb_20 {
  padding-bottom: 20px !important;
}

.u-pb_25 {
  padding-bottom: 25px !important;
}

.u-pb_30 {
  padding-bottom: 30px !important;
}

.u-pb_35 {
  padding-bottom: 35px !important;
}

.u-pb_40 {
  padding-bottom: 40px !important;
}

.u-pb_45 {
  padding-bottom: 45px !important;
}

.u-pb_50 {
  padding-bottom: 50px !important;
}

.u-pl_0 {
  padding-left: 0 !important;
}

.u-pl_5 {
  padding-left: 5px !important;
}

.u-pl_10 {
  padding-left: 10px !important;
}

.u-pl_15 {
  padding-left: 15px !important;
}

.u-pl_20 {
  padding-left: 20px !important;
}

.u-pl_25 {
  padding-left: 25px !important;
}

.u-pl_30 {
  padding-left: 30px !important;
}

.u-pl_35 {
  padding-left: 35px !important;
}

.u-pl_40 {
  padding-left: 40px !important;
}

.u-pl_45 {
  padding-left: 45px !important;
}

.u-pl_50 {
  padding-left: 50px !important;
}

/* END */
