@charset "UTF-8";
/* リセット用CSSをインポート */
@import url(https://fonts.googleapis.com/css?family=Heebo:400,500,700);
@import url(https://fonts.googleapis.com/css?family=Bentham);
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;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

/* base */
@-webkit-keyframes hvr-icon-up {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-up {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
/* 11. Global
   ========================================================================== */
/* 12. Grid
   ========================================================================== */
/*
.wrapper {
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}
@media only screen and (min-width : 641px) {
  .wrapper {
    width: 85%;
  }
}
@media only screen and (min-width : 993px) {
  .wrapper {
    width: 70%;
  }
}

.wrapper .row {
  margin-left: (-1 * $gutter-width / 2);
  margin-right: (-1 * $gutter-width / 2);
}
*/
/*
.section {
  padding-top: 1rem;
  padding-bottom: 1rem;

  &.no-pad {
    padding: 0;
  }
  &.no-pad-bot {
    padding-bottom: 0;
  }
  &.no-pad-top {
    padding-top: 0;
  }
}
*/
.row {
  margin-left: auto;
  margin-right: auto;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row .col {
  float: left;
  box-sizing: border-box;
}
@media only screen and (max-width: 668px) {
  .row .col {
    padding: 0 0.21429rem;
  }
}
@media only screen and (min-width: 668px) {
  .row .col {
    padding: 0 0.5rem;
    /*
          &:first-child{ //グリッドシステムを使う、使わない同列要素があるため最初と最後のpaddingを調整
            padding:0 $gutter-width / 3 0 0;
          }
          &:last-child{
            padding:0 0 0 $gutter-width / 3;
          }
    */
  }
}
.row .col[class*="push-"], .row .col[class*="pull-"] {
  position: relative;
}
.row .col.s1 {
  width: 8.33333%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s2 {
  width: 16.66667%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s3 {
  width: 25%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s4 {
  width: 33.33333%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s5 {
  width: 41.66667%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s6 {
  width: 50%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s7 {
  width: 58.33333%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s8 {
  width: 66.66667%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s9 {
  width: 75%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s10 {
  width: 83.33333%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s11 {
  width: 91.66667%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.s12 {
  width: 100%;
  margin-right: auto;
  left: auto;
  right: auto;
}
.row .col.offset-s1 {
  margin-right: 8.33333%;
}
.row .col.pull-s1 {
  right: 8.33333%;
}
.row .col.push-s1 {
  left: 8.33333%;
}
.row .col.offset-s2 {
  margin-right: 16.66667%;
}
.row .col.pull-s2 {
  right: 16.66667%;
}
.row .col.push-s2 {
  left: 16.66667%;
}
.row .col.offset-s3 {
  margin-right: 25%;
}
.row .col.pull-s3 {
  right: 25%;
}
.row .col.push-s3 {
  left: 25%;
}
.row .col.offset-s4 {
  margin-right: 33.33333%;
}
.row .col.pull-s4 {
  right: 33.33333%;
}
.row .col.push-s4 {
  left: 33.33333%;
}
.row .col.offset-s5 {
  margin-right: 41.66667%;
}
.row .col.pull-s5 {
  right: 41.66667%;
}
.row .col.push-s5 {
  left: 41.66667%;
}
.row .col.offset-s6 {
  margin-right: 50%;
}
.row .col.pull-s6 {
  right: 50%;
}
.row .col.push-s6 {
  left: 50%;
}
.row .col.offset-s7 {
  margin-right: 58.33333%;
}
.row .col.pull-s7 {
  right: 58.33333%;
}
.row .col.push-s7 {
  left: 58.33333%;
}
.row .col.offset-s8 {
  margin-right: 66.66667%;
}
.row .col.pull-s8 {
  right: 66.66667%;
}
.row .col.push-s8 {
  left: 66.66667%;
}
.row .col.offset-s9 {
  margin-right: 75%;
}
.row .col.pull-s9 {
  right: 75%;
}
.row .col.push-s9 {
  left: 75%;
}
.row .col.offset-s10 {
  margin-right: 83.33333%;
}
.row .col.pull-s10 {
  right: 83.33333%;
}
.row .col.push-s10 {
  left: 83.33333%;
}
.row .col.offset-s11 {
  margin-right: 91.66667%;
}
.row .col.pull-s11 {
  right: 91.66667%;
}
.row .col.push-s11 {
  left: 91.66667%;
}
.row .col.offset-s12 {
  margin-right: 100%;
}
.row .col.pull-s12 {
  right: 100%;
}
.row .col.push-s12 {
  left: 100%;
}
@media only screen and (min-width: 641px) {
  .row .col.m1 {
    width: 8.33333%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m2 {
    width: 16.66667%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m3 {
    width: 25%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m4 {
    width: 33.33333%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m5 {
    width: 41.66667%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m6 {
    width: 50%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m7 {
    width: 58.33333%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m8 {
    width: 66.66667%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m9 {
    width: 75%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m10 {
    width: 83.33333%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m11 {
    width: 91.66667%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.m12 {
    width: 100%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-m1 {
    margin-right: 8.33333%;
  }
  .row .col.pull-m1 {
    right: 8.33333%;
  }
  .row .col.push-m1 {
    left: 8.33333%;
  }
  .row .col.offset-m2 {
    margin-right: 16.66667%;
  }
  .row .col.pull-m2 {
    right: 16.66667%;
  }
  .row .col.push-m2 {
    left: 16.66667%;
  }
  .row .col.offset-m3 {
    margin-right: 25%;
  }
  .row .col.pull-m3 {
    right: 25%;
  }
  .row .col.push-m3 {
    left: 25%;
  }
  .row .col.offset-m4 {
    margin-right: 33.33333%;
  }
  .row .col.pull-m4 {
    right: 33.33333%;
  }
  .row .col.push-m4 {
    left: 33.33333%;
  }
  .row .col.offset-m5 {
    margin-right: 41.66667%;
  }
  .row .col.pull-m5 {
    right: 41.66667%;
  }
  .row .col.push-m5 {
    left: 41.66667%;
  }
  .row .col.offset-m6 {
    margin-right: 50%;
  }
  .row .col.pull-m6 {
    right: 50%;
  }
  .row .col.push-m6 {
    left: 50%;
  }
  .row .col.offset-m7 {
    margin-right: 58.33333%;
  }
  .row .col.pull-m7 {
    right: 58.33333%;
  }
  .row .col.push-m7 {
    left: 58.33333%;
  }
  .row .col.offset-m8 {
    margin-right: 66.66667%;
  }
  .row .col.pull-m8 {
    right: 66.66667%;
  }
  .row .col.push-m8 {
    left: 66.66667%;
  }
  .row .col.offset-m9 {
    margin-right: 75%;
  }
  .row .col.pull-m9 {
    right: 75%;
  }
  .row .col.push-m9 {
    left: 75%;
  }
  .row .col.offset-m10 {
    margin-right: 83.33333%;
  }
  .row .col.pull-m10 {
    right: 83.33333%;
  }
  .row .col.push-m10 {
    left: 83.33333%;
  }
  .row .col.offset-m11 {
    margin-right: 91.66667%;
  }
  .row .col.pull-m11 {
    right: 91.66667%;
  }
  .row .col.push-m11 {
    left: 91.66667%;
  }
  .row .col.offset-m12 {
    margin-right: 100%;
  }
  .row .col.pull-m12 {
    right: 100%;
  }
  .row .col.push-m12 {
    left: 100%;
  }
}
@media only screen and (min-width: 993px) {
  .row .col.l1 {
    width: 8.33333%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l2 {
    width: 16.66667%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l3 {
    width: 25%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l4 {
    width: 33.33333%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l5 {
    width: 41.66667%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l6 {
    width: 50%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l7 {
    width: 58.33333%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l8 {
    width: 66.66667%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l9 {
    width: 75%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l10 {
    width: 83.33333%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l11 {
    width: 91.66667%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.l12 {
    width: 100%;
    margin-right: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-l1 {
    margin-right: 8.33333%;
  }
  .row .col.pull-l1 {
    right: 8.33333%;
  }
  .row .col.push-l1 {
    left: 8.33333%;
  }
  .row .col.offset-l2 {
    margin-right: 16.66667%;
  }
  .row .col.pull-l2 {
    right: 16.66667%;
  }
  .row .col.push-l2 {
    left: 16.66667%;
  }
  .row .col.offset-l3 {
    margin-right: 25%;
  }
  .row .col.pull-l3 {
    right: 25%;
  }
  .row .col.push-l3 {
    left: 25%;
  }
  .row .col.offset-l4 {
    margin-right: 33.33333%;
  }
  .row .col.pull-l4 {
    right: 33.33333%;
  }
  .row .col.push-l4 {
    left: 33.33333%;
  }
  .row .col.offset-l5 {
    margin-right: 41.66667%;
  }
  .row .col.pull-l5 {
    right: 41.66667%;
  }
  .row .col.push-l5 {
    left: 41.66667%;
  }
  .row .col.offset-l6 {
    margin-right: 50%;
  }
  .row .col.pull-l6 {
    right: 50%;
  }
  .row .col.push-l6 {
    left: 50%;
  }
  .row .col.offset-l7 {
    margin-right: 58.33333%;
  }
  .row .col.pull-l7 {
    right: 58.33333%;
  }
  .row .col.push-l7 {
    left: 58.33333%;
  }
  .row .col.offset-l8 {
    margin-right: 66.66667%;
  }
  .row .col.pull-l8 {
    right: 66.66667%;
  }
  .row .col.push-l8 {
    left: 66.66667%;
  }
  .row .col.offset-l9 {
    margin-right: 75%;
  }
  .row .col.pull-l9 {
    right: 75%;
  }
  .row .col.push-l9 {
    left: 75%;
  }
  .row .col.offset-l10 {
    margin-right: 83.33333%;
  }
  .row .col.pull-l10 {
    right: 83.33333%;
  }
  .row .col.push-l10 {
    left: 83.33333%;
  }
  .row .col.offset-l11 {
    margin-right: 91.66667%;
  }
  .row .col.pull-l11 {
    right: 91.66667%;
  }
  .row .col.push-l11 {
    left: 91.66667%;
  }
  .row .col.offset-l12 {
    margin-right: 100%;
  }
  .row .col.pull-l12 {
    right: 100%;
  }
  .row .col.push-l12 {
    left: 100%;
  }
}
.row .col img {
  max-width: 100%;
}

/* 共通カラー設定
==================================================================== */
/*
  共通指定
*/
.color-base {
  color: #019944;
}

.color-primary {
  color: #f14f04;
}

.color-black {
  color: #2c1737;
}

.color-white {
  color: #fff;
}

.color-yellow {
  color: #fff100;
}

.bg-color-white {
  background: #fff;
}

.bg-color-accent {
  background: #fbf200;
}

.bg-color-accent-sub {
  background: #efe8ce;
}

/*
  base
 */
body {
  font-family: "Heebo" ,"ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #999;
  text-decoration: none;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}
a:hover {
  color: #69c;
}
a:visited {
  color: #999;
}

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

/* layout */
/*
  layout
  レイアウト要素統合ファイル
 */
/*
 header
 */
.header__inner {
  width: 100%;
  padding: 50px 0 0;
  position: fixed;
  z-index: 2000;
}
@media only screen and (max-width: 668px) {
  .header__inner {
    padding: 20px 0 0;
  }
}

/* バリエーション　（物事の変化、型が同じ）
自身のクラス名のみ
----------------------------- */
.header .btn-group {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 1200;
}
@media only screen and (max-width: 668px) {
  .header .btn-group {
    display: none !important;
  }
}

.header .btn-burger {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1200;
}
@media only screen and (max-width: 668px) {
  .header .btn-burger {
    top: 20px;
    right: 10px;
  }
}

/*
  cont
 */
.cont {
  padding: 70px 0;
}
@media only screen and (max-width: 668px) {
  .cont {
    padding: 30px 18px;
  }
}

/*
 footer
 */
.footer {
  width: 100%;
  background-color: #e2e3e7;
}
.footer--fixed {
  position: fixed;
  bottom: 0;
  z-index: 1000;
}

/*
  copylight
  説明：コピーライト
 */
.copylight {
  padding: 30px;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
  color: #748091;
}

/* component */
/*
  hero
  説明：メインビジュアル
 */
.hero {
  width: 100%;
}
.hero__item {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero--cover .hero__item {
  height: calc( 100vh - 70px);
}
.hero--fixed .hero__item {
  height: 410px;
}

.js-hook-slide .hero__item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}
.js-hook-slide .hero__item--visible {
  opacity: 1;
  z-index: 500;
  animation: fadeIn 1.2s 1 both;
  -webkit-animation: fadeIn 1.2s 1 both;
}
.js-hook-slide .hero__item--visible-current {
  opacity: 1;
  z-index: 300;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
  gloval-nav
  説明：グローバルナビ
*/
.gloval-nav {
  opacity: 0;
  position: absolute;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100vh;
  padding: 0;
  background: #fff;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 1100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 668px) {
  .gloval-nav {
    right: -100%;
    width: 100%;
  }
}
.gloval-nav__inner {
  padding: 150px 0 20px 0;
}
.gloval-nav__item {
  display: block;
  padding: 10px 55px 10px 20px;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  text-align: right;
  color: #334865;
}
.gloval-nav__item:hover {
  color: #000;
}
.gloval-nav__item:visited {
  color: #334865;
}
.gloval-nav--open {
  opacity: .6;
  right: 0;
}

/*
 section
 */
.section {
  padding: 0 0 120px;
}
@media only screen and (max-width: 668px) {
  .section {
    padding: 0 0 40px;
  }
}
.section:last-child {
  padding: 0;
}
.section__inner {
  margin: 0 auto;
  max-width: 960px;
}

/* バリエーション
----------------------------- */
/*
  panel
  説明：レイアウト用コンポーネント
*/
.panel--about-about {
  margin: 0 0 40px;
  padding: 0 0 80px;
  background-image: url(../img/img_sign.png);
  background-position: bottom right 150px;
  background-repeat: no-repeat;
  background-size: 194px auto;
}
@media only screen and (max-width: 668px) {
  .panel--about-about {
    background-position: bottom right 50px;
  }
}

@media only screen and (max-width: 668px) {
  .panel--about-profile .panel__box {
    padding: 0;
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 668px) {
  .panel--about-profile .panel__box {
    padding: 0 40px;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 992px) {
  .panel--about-profile .panel__box {
    padding: 0 90px;
    margin: 0 0 20px;
  }
}
.panel--about-profile .panel__box-item {
  margin: 0 0 6px;
}

.panel--access-map {
  margin: 50px auto 0;
  max-width: 602px;
}

.panel--brand .panel__box {
  margin: 0 0 80px;
}
.panel--brand .panel__box-item {
  margin: 0 0 50px;
}

/*
 menu
 説明：メニュー　フッターに使用
 */
.menu {
  margin: 0 0 80px;
  font-family: 'Bentham';
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: .1rem;
  color: #999;
  text-align: center;
}
.menu a {
  color: #3366ff;
}
.menu a:hover {
  color: #9999cc;
}

/* parts */
/*
  logo
 */
.logo {
  display: block;
  width: 335px;
  height: 113px;
  margin: 0 auto;
}
.logo img {
  max-width: 100%;
}
@media only screen and (max-width: 668px) {
  .logo {
    width: 60%;
    height: auto;
  }
}

/*
  btn
 */
.btn {
  display: inline-block;
  padding: 10px 0 10px 40px;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .8px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background: url(../img/icon_btn.png) center left no-repeat;
  background-size: 30px;
  /*
    ボタンのalign用
  */
}
.btn-wrapper {
  text-align: center;
}

/* ボタン複数 グループ ボタン空き調整*/
.btn-group-wrapper {
  margin: 0 100px;
}
@media only screen and (max-width: 668px) {
  .btn-group-wrapper {
    margin: 0;
    text-align: left;
  }
}
@media only screen and (min-width: 668px) {
  .btn-group-wrapper {
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  .btn-group-wrapper {
    text-align: left;
  }
}
@media only screen and (max-width: 668px) {
  .btn-group .btn {
    display: block;
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 668px) {
  .btn-group .btn {
    margin: 0 30px 20px 0;
  }
}
@media only screen and (min-width: 992px) {
  .btn-group .btn {
    margin: 0 60px 0 0;
  }
}
.btn-group--last .btn {
  margin: 0;
}
@media only screen and (max-width: 668px) {
  .btn-group--last .btn {
    margin: 0 0 10px;
  }
}

/*
  sns
 */
.btn-sns {
  display: inline-block;
}
.btn-sns--facebook, .btn-sns--inst, .btn-sns--cart {
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.btn-sns--facebook {
  width: 35px;
  height: 35px;
  margin: 0 15px 0 0;
  background-image: url(../img/btn_facebook.png);
  background-size: 35px auto;
}
.btn-sns--facebook:hover {
  background-image: url(../img/btn_facebook--h.png);
}
.btn-sns--inst {
  width: 35px;
  height: 35px;
  margin: 0 12px 0 0;
  background-image: url(../img/btn_inst.png);
  background-size: 35px auto;
}
.btn-sns--inst:hover {
  background-image: url(../img/btn_inst--h.png);
}
.btn-sns--cart {
  width: 38px;
  height: 33px;
  background-image: url(../img/btn_cart.png);
  background-size: 38px auto;
}
.btn-sns--cart:hover {
  background-image: url(../img/btn_cart--h.png);
}

/*
  バーガーメニュー
*/
.btn-burger {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.btn-burger:hover .btn-burger__icon {
  background: #405276;
}
.btn-burger:hover .btn-burger__icon:before, .btn-burger:hover .btn-burger__icon:after {
  background: #405276;
}
.btn-burger__icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 5px;
  margin: -1px 0 0 -17px;
  background: #000;
  transition: .2s;
}
.btn-burger__icon:before, .btn-burger__icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 35px;
  height: 5px;
  background: #000;
  transition: .3s;
}
.btn-burger__icon:before {
  margin-top: -16px;
}
.btn-burger__icon:after {
  margin-top: 10px;
}
.btn-burger__icon--close {
  background: transparent !important;
}
.btn-burger__icon--close:before, .btn-burger__icon--close:after {
  margin-top: 0;
}
.btn-burger__icon--close:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.btn-burger__icon--close:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

/*
  text
 */
.text {
  margin: 0 0 30px 0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.text-xs {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}
.text-sm {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.text-md {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.text-lg {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
.text-xl {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.2;
}

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

.text-brand {
  font-size: 33px;
  font-size: 2.0625rem;
  font-family: 'Bentham';
  text-align: right;
  word-wrap: break-word;
}
@media only screen and (max-width: 668px) {
  .text-brand {
    margin: 0 0 10px;
    text-align: center;
  }
}
.text-brand a {
  color: #000;
}
.text-brand a:hover {
  text-decoration: underline;
}
.text-brand--desc {
  padding: 0 40px 0 20px !important;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media only screen and (max-width: 668px) {
  .text-brand--desc {
    padding: 0 10px !important;
  }
}

/*
  image
 */
.image {
  text-align: center;
  margin: 0 0 40px;
}
.image img {
  max-width: 100%;
}
.image--brand {
  margin: 0 0 20px;
}
.image--brand img {
  max-width: 70px;
}

/*
  title
 */
.title-primary {
  display: inline-block;
  margin: 0 auto 50px;
  padding: 0 20px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #999;
  text-align: center;
  background: url(../img/img_title_underline.png) center bottom no-repeat;
  background-size: 100% 2px;
}
.title-secondary {
  padding: 0 0 25px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.title-tertiary {
  padding: 0 0 25px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: bold;
}

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