/* --------------------------------------
  Flexbox
-------------------------------------- */
.flexbox {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -ms-flex-pack:justify;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flex-row {
  -webkit-flex-direction:row;
  -moz-flex-direction:row;
  -ms-flex-direction:row;
  -o-flex-direction:row;
  flex-direction:row;
}
.flex-col {
  -webkit-flex-direction:column;
  -moz-flex-direction:column;
  -ms-flex-direction:column;
  -o-flex-direction:column;
  flex-direction:column;
}
.flex-left {
  -webkit-justify-content:flex-start;
  -ms-justify-content:flex-start;
  justify-content:flex-start;
}
.flex-center {
  -webkit-justify-content:center;
  -ms-justify-content:center;
  justify-content:center;
}
.flex-right {
  -webkit-justify-content:flex-end;
  -ms-justify-content:flex-end;
  justify-content:flex-end;
}
.flex-between {
  -webkit-justify-content:space-between;
  -ms-justify-content:space-between;
  justify-content:space-between;
}
.flex-stretch {
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.flex-al-start  {
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.flex-al-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.flex-al-end{
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.flex-al-between {
  -ms-flex-align: space-between;
  -webkit-align-content: space-between;
  align-content: space-between;
}
@media screen and (max-width: 767px) {
  .flexbox-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -ms-flex-pack:justify;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-sp-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex-sp-row {
    -webkit-flex-direction:row;
    -moz-flex-direction:row;
    -ms-flex-direction:row;
    -o-flex-direction:row;
    flex-direction:row;
  }
  .flex-sp-col {
    -webkit-flex-direction:column;
    -moz-flex-direction:column;
    -ms-flex-direction:column;
    -o-flex-direction:column;
    flex-direction:column;
  }
  .flex-sp-left {
    -webkit-justify-content:flex-start;
    -ms-justify-content:flex-start;
    justify-content:flex-start;
  }
  .flex-sp-center {
    -webkit-justify-content:center;
    -ms-justify-content:center;
    justify-content:center;
  }
  .flex-sp-right {
    -webkit-justify-content:flex-end;
    -ms-justify-content:flex-end;
    justify-content:flex-end;
  }
  .flex-sp-between {
    -webkit-justify-content:space-between;
    -ms-justify-content:space-between;
    justify-content:space-between;
  }
  .flex-sp-stretch {
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
  }
  .flex-sp-al-start  {
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  .flex-sp-al-center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .flex-sp-al-end{
    -ms-flex-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
  .flex-sp-al-between {
    -ms-flex-align: space-between;
    -webkit-align-content: space-between;
    align-content: space-between;
  }
}

/* --------------------------------------
  Hide : Show
-------------------------------------- */
@media screen and (min-width: 768px) {
  .is-pc-hide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-sp-hide {
    display: none !important;
  }
}

/* --------------------------------------
  Helper Class
-------------------------------------- */
.hc-f10 { font-size: 10px  !important;}
.hc-f11 { font-size: 11px  !important;}
.hc-f12 { font-size: 12px  !important;}
.hc-f13 { font-size: 13px  !important;}
.hc-f14 { font-size: 14px  !important;}
.hc-f15 { font-size: 15px  !important;}

.hc-pt0 {padding-top: 0 !important;}
.hc-pt5 {padding-top: 5px !important;}
.hc-pt10 {padding-top: 10px !important;}
.hc-pt15 {padding-top: 15px !important;}
.hc-pt20 {padding-top: 20px !important;}
.hc-pt25 {padding-top: 25px !important;}
.hc-pt30 {padding-top: 30px !important;}
.hc-pt35 {padding-top: 35px !important;}
.hc-pt40 {padding-top: 40px !important;}
.hc-pt45 {padding-top: 45px !important;}
.hc-pt50 {padding-top: 50px !important;}
.hc-pt55 {padding-top: 55px !important;}
.hc-pt60 {padding-top: 60px !important;}
.hc-pt65 {padding-top: 65px !important;}
.hc-pt70 {padding-top: 70px !important;}
.hc-pt75 {padding-top: 75px !important;}
.hc-pt80 {padding-top: 80px !important;}
.hc-pt85 {padding-top: 85px !important;}
.hc-pt90 {padding-top: 90px !important;}
.hc-pt95 {padding-top: 95px !important;}
.hc-pt100 {padding-top: 100px !important;}

.hc-pr0 {padding-right: 0 !important;}
.hc-pr5 {padding-right: 5px !important;}
.hc-pr10 {padding-right: 10px !important;}
.hc-pr15 {padding-right: 15px !important;}
.hc-pr20 {padding-right: 20px !important;}
.hc-pr25 {padding-right: 25px !important;}
.hc-pr30 {padding-right: 30px !important;}
.hc-pr35 {padding-right: 35px !important;}
.hc-pr40 {padding-right: 40px !important;}
.hc-pr45 {padding-right: 45px !important;}
.hc-pr50 {padding-right: 50px !important;}
.hc-pr55 {padding-right: 55px !important;}
.hc-pr60 {padding-right: 60px !important;}
.hc-pr65 {padding-right: 65px !important;}
.hc-pr70 {padding-right: 70px !important;}
.hc-pr75 {padding-right: 75px !important;}
.hc-pr80 {padding-right: 80px !important;}
.hc-pr85 {padding-right: 85px !important;}
.hc-pr90 {padding-right: 90px !important;}
.hc-pr95 {padding-right: 95px !important;}
.hc-pr100 {padding-right: 100px !important;}

.hc-pb0 {padding-bottom: 0 !important;}
.hc-pb5 {padding-bottom: 5px !important;}
.hc-pb10 {padding-bottom: 10px !important;}
.hc-pb15 {padding-bottom: 15px !important;}
.hc-pb20 {padding-bottom: 20px !important;}
.hc-pb25 {padding-bottom: 25px !important;}
.hc-pb30 {padding-bottom: 30px !important;}
.hc-pb35 {padding-bottom: 35px !important;}
.hc-pb40 {padding-bottom: 40px !important;}
.hc-pb45 {padding-bottom: 45px !important;}
.hc-pb50 {padding-bottom: 50px !important;}
.hc-pb55 {padding-bottom: 55px !important;}
.hc-pb60 {padding-bottom: 60px !important;}
.hc-pb65 {padding-bottom: 65px !important;}
.hc-pb70 {padding-bottom: 70px !important;}
.hc-pb75 {padding-bottom: 75px !important;}
.hc-pb80 {padding-bottom: 80px !important;}
.hc-pb85 {padding-bottom: 85px !important;}
.hc-pb90 {padding-bottom: 90px !important;}
.hc-pb95 {padding-bottom: 95px !important;}
.hc-pb100 {padding-bottom: 100px !important;}

.hc-pl0 {padding-left: 0 !important;}
.hc-pl5 {padding-left: 5px !important;}
.hc-pl10 {padding-left: 10px !important;}
.hc-pl15 {padding-left: 15px !important;}
.hc-pl20 {padding-left: 20px !important;}
.hc-pl25 {padding-left: 25px !important;}
.hc-pl30 {padding-left: 30px !important;}
.hc-pl35 {padding-left: 35px !important;}
.hc-pl40 {padding-left: 40px !important;}
.hc-pl45 {padding-left: 45px !important;}
.hc-pl50 {padding-left: 50px !important;}
.hc-pl55 {padding-left: 55px !important;}
.hc-pl60 {padding-left: 60px !important;}
.hc-pl65 {padding-left: 65px !important;}
.hc-pl70 {padding-left: 70px !important;}
.hc-pl75 {padding-left: 75px !important;}
.hc-pl80 {padding-left: 80px !important;}
.hc-pl85 {padding-left: 85px !important;}
.hc-pl90 {padding-left: 90px !important;}
.hc-pl95 {padding-left: 95px !important;}
.hc-pl100 {padding-left: 100px !important;}

.hc-mt0 {margin-top: 0 !important;}
.hc-mt5 {margin-top: 5px !important;}
.hc-mt10 {margin-top: 10px !important;}
.hc-mt15 {margin-top: 15px !important;}
.hc-mt20 {margin-top: 20px !important;}
.hc-mt25 {margin-top: 25px !important;}
.hc-mt30 {margin-top: 30px !important;}
.hc-mt35 {margin-top: 35px !important;}
.hc-mt40 {margin-top: 40px !important;}
.hc-mt45 {margin-top: 45px !important;}
.hc-mt50 {margin-top: 50px !important;}
.hc-mt55 {margin-top: 55px !important;}
.hc-mt60 {margin-top: 60px !important;}
.hc-mt65 {margin-top: 65px !important;}
.hc-mt70 {margin-top: 70px !important;}
.hc-mt75 {margin-top: 75px !important;}
.hc-mt80 {margin-top: 80px !important;}
.hc-mt85 {margin-top: 85px !important;}
.hc-mt90 {margin-top: 90px !important;}
.hc-mt95 {margin-top: 95px !important;}
.hc-mt100 {margin-top: 100px !important;}

.hc-mr0 {margin-right: 0 !important;}
.hc-mr5 {margin-right: 5px !important;}
.hc-mr10 {margin-right: 10px !important;}
.hc-mr15 {margin-right: 15px !important;}
.hc-mr20 {margin-right: 20px !important;}
.hc-mr25 {margin-right: 25px !important;}
.hc-mr30 {margin-right: 30px !important;}
.hc-mr35 {margin-right: 35px !important;}
.hc-mr40 {margin-right: 40px !important;}
.hc-mr45 {margin-right: 45px !important;}
.hc-mr50 {margin-right: 50px !important;}
.hc-mr55 {margin-right: 55px !important;}
.hc-mr60 {margin-right: 60px !important;}
.hc-mr65 {margin-right: 65px !important;}
.hc-mr70 {margin-right: 70px !important;}
.hc-mr75 {margin-right: 75px !important;}
.hc-mr80 {margin-right: 80px !important;}
.hc-mr85 {margin-right: 85px !important;}
.hc-mr90 {margin-right: 90px !important;}
.hc-mr95 {margin-right: 95px !important;}
.hc-mr100 {margin-right: 100px !important;}

.hc-mb0 {margin-bottom: 0 !important;}
.hc-mb5 {margin-bottom: 5px !important;}
.hc-mb10 {margin-bottom: 10px !important;}
.hc-mb15 {margin-bottom: 15px !important;}
.hc-mb20 {margin-bottom: 20px !important;}
.hc-mb25 {margin-bottom: 25px !important;}
.hc-mb30 {margin-bottom: 30px !important;}
.hc-mb35 {margin-bottom: 35px !important;}
.hc-mb40 {margin-bottom: 40px !important;}
.hc-mb45 {margin-bottom: 45px !important;}
.hc-mb50 {margin-bottom: 50px !important;}
.hc-mb55 {margin-bottom: 55px !important;}
.hc-mb60 {margin-bottom: 60px !important;}
.hc-mb65 {margin-bottom: 65px !important;}
.hc-mb70 {margin-bottom: 70px !important;}
.hc-mb75 {margin-bottom: 75px !important;}
.hc-mb80 {margin-bottom: 80px !important;}
.hc-mb85 {margin-bottom: 85px !important;}
.hc-mb90 {margin-bottom: 90px !important;}
.hc-mb95 {margin-bottom: 95px !important;}
.hc-mb100 {margin-bottom: 100px !important;}
.hc-mb150 {margin-bottom: 150px !important;}

.hc-ml0 {margin-left: 0 !important;}
.hc-ml5 {margin-left: 5px !important;}
.hc-ml10 {margin-left: 10px !important;}
.hc-ml15 {margin-left: 15px !important;}
.hc-ml20 {margin-left: 20px !important;}
.hc-ml25 {margin-left: 25px !important;}
.hc-ml30 {margin-left: 30px !important;}
.hc-ml35 {margin-left: 35px !important;}
.hc-ml40 {margin-left: 40px !important;}
.hc-ml45 {margin-left: 45px !important;}
.hc-ml50 {margin-left: 50px !important;}
.hc-ml55 {margin-left: 55px !important;}
.hc-ml60 {margin-left: 60px !important;}
.hc-ml65 {margin-left: 65px !important;}
.hc-ml70 {margin-left: 70px !important;}
.hc-ml75 {margin-left: 75px !important;}
.hc-ml80 {margin-left: 80px !important;}
.hc-ml85 {margin-left: 85px !important;}
.hc-ml90 {margin-left: 90px !important;}
.hc-ml95 {margin-left: 95px !important;}
.hc-ml100 {margin-left: 100px !important;}

.hc-textL {text-align: left !important;}
.hc-textC {text-align: center !important;}
.hc-textR {text-align: right !important;}

.hc-color-orange {color: #f19c17;}
.hc-color-blue {color: #1c93bf;}

.red1 {color: #e60012;}


/* --------------------------------------
  COMMON
-------------------------------------- */
@media screen and (max-width: 767px) {
  body.js-isSPFixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* Text */
.ttlH3 {
  font-family: Helvetica, "Helvetica Neue", "Lucida Grande", Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.ttlH3 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .ttlH3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .ttlH3 br {
    display: inline;
  }
}

.ttlH4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .ttlH4 {
    font-size: 18px;
  }
}

.ttlH5 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .ttlH5 {
    font-size: 18px;
    margin-bottom: 14px;
  }
}

/* --------------------------------------
  Global Header
-------------------------------------- */
.glbHeader {
  position: relative;
  z-index: 9999;
  padding: 30px 20px 0;
}
.glbHeader .inner {
  position: relative;
}
.glbHeader a {
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  transition: opacity 0.25s;
}
.glbHeader a:hover {
  opacity: 0.5;
}

.glbHeader .glbHeaderLeft {
  width: 150px;
  text-align: left;
  margin-right: auto;
  margin-left: 20px;
}
.glbHeader .glbHeaderCenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.glbHeaderCenter__inner {
  margin-right: 80px;
}
.glbHeader .glbHeaderRigth {
  /*width: 150px;*/
  text-align: right;
  margin-left: auto;
}

.glbHeaderLogo__left__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .glbHeader {
    height: 48px;
    /*padding: 12px 10px 0;*/
    padding: 0;
  }
  .glbHeader a:hover {
    opacity: 1;
  }
  .glbHeader .glbHeaderRigth {
    width: 60px;
  }
  .glbHeaderCenter__inner {
    margin-right: 0px;
  }
}

/* Logo */
.glbHeaderLogo {
  font-size: 0;
}
.glbHeaderLogoChili {
  display: block;
  width: 90px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .glbHeaderLogoChili {
    /*display: none;*/
    position: absolute;
    top: 12px;
    left: 8px;
    width: 60px;
  }
  .glbHeader .glbHeaderLeft {
    width: 100%;
    margin-left: 0px;
    position: relative;
  }
  .glbHeaderLogo {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 150px;
    margin-left: -75px;
  }
}

/* Navigation */
.glbHeaderNav {
  font-size: 0;
  margin-top: 8px;
}
.glbHeaderNavItem {
  font-family: Helvetica, "Helvetica Neue", "Lucida Grande", Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.15em;

  display: inline-block;
  vertical-align: middle;
}
.glbHeaderNavItem:nth-of-type(n+2) {
  margin-left: 40px;
}
.glbHeaderNavItem__link {
  display: block;
}
@media screen and (max-width: 767px) {
  
}

/* glbHeaderMenu */
.glbHeader .glbHeaderMenu {
  display: none;
  vertical-align: middle;
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 9999;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.glbHeader .glbHeaderMenu a {
  display: block;
  padding: 20px;
}
.glbHeader .glbHeaderMenu a span {
  display: block;
  width: 18px;
  height: 16px;
  position: relative;
}
.glbHeader .glbHeaderMenu a span:hover {
  opacity: 1;
}
.glbHeader .glbHeaderMenu a span:before,
.glbHeader .glbHeaderMenu a span:after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 2px solid #e60012;
  position: absolute;
  left: 0;
  -webkit-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.glbHeader .glbHeaderMenu a span:before {
  height: 9px;
  border-top: 2px solid #e60012;
  top: 0;
}
.glbHeader .glbHeaderMenu a span:after {
  bottom: 0;
}
.glbHeader .glbHeaderMenu.active a span:before,
.glbHeader .glbHeaderMenu.active a span:after {
  top: 50%;
  margin-top: -1px;
}
.glbHeader .glbHeaderMenu.active a span:before {
  height: 0;
  border-top: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.glbHeader .glbHeaderMenu.active a span:after {
  bottom: auto;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (max-width: 767px) {
  .glbHeader .glbHeaderMenu {
    display: inline-block;
  }

  .glbHeader .glbHeaderCenter {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 99;
    background: #FFF;
    /*padding: 0 0 20px;*/
    overflow: hidden;
  }
  .glbHeader .glbHeaderCenter .inner {
    padding: 0;
  }
  .glbHeaderNav {
    /*display: none;*/
    width: 100%;
    margin: -250px 0 0;
    overflow: hidden;
    -webkit-transition: margin .3s ease;
    transition: margin .3s ease; 
  }
  .glbHeaderNav.active {
    display: block;
    margin-top: 0px;
    padding: 0 0 20px;
  }
  .glbHeaderNav .glbHeaderNavItem {
    text-align: right;
    display: block;
    width: 100%;
    /*border-bottom: 1px solid #e60012;*/
  }
  .glbHeaderNav .glbHeaderNavItem:nth-of-type(n+2) {
    margin-left: 0px;
  }
  .glbHeaderNav .glbHeaderNavItem a {
    display: block;
    padding: 10px 20px;
  }
}

/* --------------------------------------
  Main
-------------------------------------- */
.mainContainer {
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .mainContainer {
    margin-top: 12px;
  }
}

/* --------------------------------------
  Global Footer
-------------------------------------- */
.glbFooter {
  text-align: center;
}
.glbFooterMapContainer {
  width: 100%;
  height: 550px;
  background-color: #EEE;
}
.glbFooter a {
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  transition: opacity 0.25s;
}
.glbFooter a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .glbFooter a:hover {
    opacity: 1;
  }
  .glbFooterMapContainer {
    height: 300px;
  }
}

/* glbFooterInfo */
.glbFooter {
  margin-top: 175px;
}
.glbFooter .glbFooterInfo {
  margin: 0 auto;
}
.glbFooter .glbFooterInfo p {
  font-size: 14px;
}
.glbFooter .glbFooterInfo .glbFooterInfoAddressText {
  margin-top: 52px;
  margin-bottom: 26px;
}
.glbFooter .glbFooterInfo .glbFooterInfoTelText {
  margin-bottom: 50px;
}

/* glbFooterCredit */
.glbFooter .glbFooterCredit {
  margin: 40px 0 50px;
}

/* Logo */
.glbFooterLogo {
  width: 150px;
  margin: 0 auto;
}
.glbFooterLogo__image {
}
@media screen and (max-width: 767px) {
  .glbFooterLogo {
  }
  .glbFooterLogo__image {
  }
  .glbFooter {
    margin-top: 80px;
  }
  .glbFooter .glbFooterInfo .glbFooterInfoAddressText {
    margin-top: 40px;
    margin-bottom: 26px;
  }
}

/* Copyright */
.glbFooterCopyright {
  font-family: Helvetica, "Helvetica Neue", "Lucida Grande", Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.25em;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .glbFooterCopyright {
  }
}
