@charset "UTF-8";
/*
body
------------------------------------------------*/
html{
  font-size: 62.5%;
  /* sets the base font to 10px for easier math */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
html.wf-active{
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  transition: opacity 1s cubic-bezier(.3, .58, .05, .98);
}

body{
  -webkit-text-size-adjust: 100%;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
  color: #00306d;
}

a{
  color: #00306d;
}

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

.main{
  overflow: hidden;
}

/*
PCとSPの表示切り替え
------------------------------------------------*/
.c-onlyiphone5{
  display: none;
}

@media screen and (max-width: 1112px){
  .c-ipad{
    display: none;
  }
}

@media screen and (max-width: 768px){
  .c-pc{
    display: none;
  }
}

@media screen and (max-width: 667px){
  .c-onlyPc{
    display: none;
  }
}

@media screen and (max-width: 350px){
  .c-iphone5{
    display: none;
  }
  .c-onlyiphone5{
    display: block;
  }
}

@media screen and (min-width: 769px){
  .c-sp{
    display: none;
  }
}

@media screen and (min-width: 668px){
  .c-onlySp{
    display: none;
  }
}

/*
インナー
------------------------------------------------*/
.c-inner{
  width: calc(100% - 45px);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px){
  .c-inner.-pc{
    width: auto;
  }
}

/*
ボタン
------------------------------------------------*/
.c-btn{
  width: 100%;
  position: relative;
  z-index: 1;
  letter-spacing: .6em;
}
@media screen and (min-width: 769px){
  .c-btn{
    height: 60px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px){
  .c-btn{
    height: 50px;
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
  }
}
.c-btn.-viewMore{
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
  text-indent: .3em;
  /*中央揃え*/
}
@media screen and (min-width: 769px){
  .c-btn.-viewMore{
    max-width: 260px;
  }
}
.c-btn.-viewMore .c-btn-body{
  top: 2px;
}
@media screen and (min-width: 769px){
  .c-btn.-short{
    max-width: 260px;
  }
}
@media screen and (min-width: 769px){
  .c-btn.-primary{
    max-width: 350px;
  }
}
@media screen and (min-width: 769px){
  .c-btn.-large{
    max-width: 450px;
  }
}
.c-btn.-center{
  margin-right: auto;
  margin-left: auto;
}
.c-btn-arrowDown{
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #00306d;
  border-right: 2px solid #00306d;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-btn-arrowUp{
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #00306d;
  border-right: 2px solid #00306d;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-btn a , .c-btn > span{
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: background .3s ease, color .3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border: 1px solid #00306d;
}
@media screen and (min-width: 769px){
  .c-btn a:hover , .c-btn > span:hover{
    background: #dbdbdb;
  }
}
.c-btn-body{
  position: relative;
  margin-right: -.6em;
}

.c-btn_hoverAnim a{
  position: relative;
  background: #00306d;
  color: #fff;
  border: none;
  transition: all .3s ease;
}
@media screen and (min-width: 769px){
  .c-btn_hoverAnim a:hover{
    background: #00306d;
  }
}
.c-btn_hoverAnim a:hover:before{
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
@media screen and (min-width: 769px){
  .c-btn_hoverAnim a:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    transition: -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1), -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    background: #646464;
  }
}

/*
記事の一覧
------------------------------------------------*/
@media screen and (min-width: 769px){
  .c-property-list.-pcCol2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

@media screen and (min-width: 769px){
  .c-property-list.-pcCol2 .c-property-item{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 30px;
  }
  .c-property-list.-pcCol2 .c-property-item:nth-child(2n){
    margin-right: 0;
  }
}

.c-property-item a{
  display: block;
  width: 100%;
  height: 100%;
}

.c-property-item-thumb{
  position: relative;
}
.c-property-item-thumb-leftLabel{
  position: absolute;
  top: 0;
  left: 0;
  font-family: neue-haas-grotesk-display,sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .2em;
  height: 28px;
  text-align: center;
  background: #00306d;
  color: #fff;
  line-height: 28px;
  padding: 0 15px;
  z-index: 1;
}
.c-property-item-thumb-rightLabel{
  position: absolute;
  top: 0;
  right: 0;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .2em;
  text-align: center;
  padding: 0 15px;
  height: 28px;
  color: #00306d;
  background: #ededed;
  line-height: 28px;
  white-space: nowrap;
  z-index: 1;
  min-width: 110px;
}
.c-property-item-thumb-rightLabel.-close{
  background: #000;
  color: #fff;
}
.c-property-item-thumb-leftLabel.-close{
  background: #EDEDED;
  color: #00306d;
}
.c-property-item-thumb-rightLabel.-member{
  background: #CC0000;
  color: #FFFFFF;
}
.c-property-item-thumb-img{
  overflow: hidden;
  text-align:center;
  height: 438px;
}
#top .c-property-item-thumb-img,
.c-property-spSlider .c-property-item-thumb-img,
.blog-main .c-property-item-thumb-img{
  height: 226px;
}

#top .newArrivals .c-property-item-thumb-img,{
  height: 320px;
}
@media screen and (min-width: 769px){
.c-property-item-thumb-img{
  height: 438px;
}
#top .c-property-item-thumb-img,
.c-property-spSlider .c-property-item-thumb-img,
.blog-main .c-property-item-thumb-img{
  height: 226px;
}
#top .newArrivals .c-property-item-thumb-img{
  height: 320px;
}
}
.c-property-item-thumb-img img{
  max-width: 100%;
  max-height: 438px;
}
#top .c-property-item-thumb-img img,
.blog-main .c-property-item-thumb-img img,
.c-property-spSlider .c-property-item-thumb-img img{
  max-height: 226px;
}
#top .newArrivals .c-property-item-thumb-img img{
  max-height: 320px;
}

.c-property-item-detail-info{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid #00306d;
}
@media screen and (min-width: 769px){
  .c-property-item-detail-info{
    padding: 20px 0 8px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px){
  .c-property-item-detail-info{
    padding-bottom: 8px;
  }
}

.c-property-item-detail-cat{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .1em;
  min-width: 100px;
  padding: 0 5px;
  border-right: 1px solid #00306d;
  border-left: 1px solid #00306d;
  box-sizing: border-box;
  text-align: center;
}

.c-property-item-detail-date{
  margin: 0 0 0 auto;
  font-family: neue-haas-grotesk-display,sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .1em;
}

.c-property-item-detail-price{
  font-family: neue-haas-grotesk-display,sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 2px;
}
.c-property-item-detail-price span{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.c-property-item-detail-close{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .1em;
}
@media screen and (min-width: 769px){
  .c-property-item-detail-close{
    margin-top: 25px;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 768px){
  .c-property-item-detail-close{
    margin-top: 20px;
    margin-bottom: 5px;
  }
}

.c-property-item-detail-title{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2.2;
}
@media screen and (min-width: 769px){
.blog-list .c-property-item-detail-title{
  height: 66px;
}
}

.c-property-item-detail-text{
  font-size: 12px;
  font-size: 1.2rem;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .05em;
  color: #646464;
  line-height: 1.4;
  word-break: break-all;
}

.c-property-item.-spCol1{
  /* SP時縦並びの場合 */
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol1 .c-property-item-detail-info{
    padding-top: 20px;
    margin-bottom: 12px;
  }
}

.c-property-item.-spCol2{
  /* SP時横並びの場合 */
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-body{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-thumb{
    width: 45%;
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-thumb-leftLabel{
    height: 20px;
    line-height: 2;
    padding: 0 8px;
    font-size: 1rem;
    -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
            transform: scale(.7);
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-thumb-rightLabel{
    width: auto;
    height: 20px;
    line-height: 2;
    padding: 0 8px;
    font-size: 1rem;
    -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
            transform: scale(.7);
    -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
            transform-origin: right top;
    min-width: 65px;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-detail{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-detail-info{
    padding: 0 0 5px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-detail-cat{
    font-size: 1.1rem;
    min-width: 80px;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-detail-date{
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-detail-price{
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-detail-close{
    font-size: 1.2rem;
    margin-top: 12px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px){
  .c-property-item.-spCol2 .c-property-item-detail-title{
    font-size: 1.2rem;
  }
}

.c-property-keyword{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -10px;
}
.c-property-keyword-item{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .2em;
  background: #00306d;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  margin: 10px 10px 0 0;
}
@media screen and (min-width: 769px){
  .c-property-keyword-item{
    min-width: 93px;
    font-size: 1.1rem;
    padding: 7px 5px;
  }
}
@media screen and (max-width: 768px){
  .c-property-keyword-item{
    font-size: 1rem;
    min-width: 75px;
    padding: 5px;
  }
}

/* hoverアニメーション */
@media screen and (min-width: 769px){
  .c-property-item-thumb-img img{
    -webkit-transform: translate3d(0, 0, 0) scale(1, 1);
            transform: translate3d(0, 0, 0) scale(1, 1);
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  }
  .c-property-item a:hover .c-property-item-thumb-img img{
    -webkit-transform: translate3d(0, 0, 0) scale(1.05, 1.05);
            transform: translate3d(0, 0, 0) scale(1.05, 1.05);
  }
}

/*
SEARCH
検索カテゴリー
------------------------------------------------*/
.c-search-type-list{
  max-width: 1145px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
}
@media screen and (max-width: 768px){
  .c-search-type-list{
    height: 50px;
  }
}

.c-search-type-item{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .3em;
  width: 33.3%;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px){
  .c-search-type-item{
    font-size: 1.4rem;
    letter-spacing: .1em;
  }
}
.c-search-type-item.-active a{
  background: #ededed;
}
.c-search-type-item a{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 15px;
  box-sizing: border-box;
  transition: background .8s cubic-bezier(.19, 1, .22, 1);
}
@media screen and (max-width: 768px){
  .c-search-type-item a{
    padding-bottom: 8px;
  }
}
.c-search-type-item a:after{
  content: "";
  display: block;
  border-top: 2px solid #00306d;
  border-right: 2px solid #00306d;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .c-search-type-item a:after{
    width: 7px;
    height: 7px;
    bottom: 8px;
  }
}

/* hoverアニメーション*/
@media screen and (min-width: 769px){
  .c-search-type-item a:hover{
    background: #ededed;
  }
}

/*
ヘッダー
------------------------------------------------*/
.header-bar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  z-index: 999;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 950px){
  .header-bar{
    height: 60px;
  }
}
.header-bar:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #ededed;
  z-index: -1;
}

.header-logo{
  max-width: 210px;
  width: 100%;
  margin: 0 15px 0 35px;
}
@media screen and (max-width: 950px){
  .header-logo{
    margin-left: 15px;
  }
}

.header-menuTab{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 auto;
  height: 100%;
}
.header-menuTab-item{
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1px;
  height: 100%;
}
@media screen and (max-width: 950px){
  .header-menuTab-item{
    width: 60px;
    text-align: center;
  }
}
.header-menuTab-item:last-child{
  margin-right: 0;
}
@media screen and (min-width: 951px){
  .header-menuTab-item_tel{
    width: 215px;
  }
}
@media screen and (max-width: 950px){
  .header-menuTab-item_tel .header-menuTab-icon{
    max-width: 20px;
    padding-top: 13px;
  }
}

@media screen and (min-width: 951px){
  .header-menuTab-item_login{
    width: 170px;
  }
}
@media screen and (min-width: 951px){
  .header-menuTab-item_login .header-menuTab-block{
    background-color: #00306d;
    color:#FFFFFF;
  }
}
@media screen and (max-width: 950px){
  .header-menuTab-item_login .header-menuTab-block{
    padding-top: 12px;
  }
}
.header-menuTab-item_login .header-menuTab-icon{
  width: 20px;
}
@media screen and (min-width: 951px){
  .header-menuTab-item_login .header-menuTab-icon{
    position: relative;
    top: -1px;
  }
}
@media screen and (max-width: 950px){
  .header-menuTab-item_login .header-menuTab-icon{
    max-width: 19px;
  }
}
@media screen and (min-width: 951px){
  .header-menuTab-item_menu{
    width: 170px;
  }
}
.header-menuTab-item_menu:hover{
  cursor: pointer;
}
@media screen and (min-width: 951px){
  .header-menuTab-item_menu .header-menuTab-block{
    background: #dbdbdb;
  }
}
.header-menuTab-item_menu .header-menuTab-title{
  height: 1em;
  line-height: 1;
  overflow: hidden;
}
.header-menuTab-item_menu .header-menuTab-title .-str{
  display: block;
  transition: margin-top .4s cubic-bezier(.3, .58, .05, .98);
}
@media screen and (max-width: 950px){
  .header-menuTab-pc{
    display: none;
  }
}
.header-menuTab-sp{
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 951px){
  .header-menuTab-sp{
    display: none;
  }
}
.header-menuTab-block{
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 951px){
  .header-menuTab-block{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 950px){
  .header-menuTab-block{
    display: block;
    background: #dbdbdb;
  }
  .header-menuTab-item_login .header-menuTab-block{
    background-color: #00306d;
    color:#FFFFFF;
  }
}
.header-menuTab-title{
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .5em;
  font-family: neue-haas-grotesk-display,sans-serif;
  font-weight: 600;
  font-style: normal;
}
.header-menuTab-item_login .header-menuTab-title{
  font-family:dnp-shuei-gothic-gin-std, sans-serif;
}
@media screen and (min-width: 951px){
  .header-menuTab-title{
    position: relative;
    margin-right: 12px;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 950px){
  .header-menuTab-title{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    font-size: .8rem;
    letter-spacing: .2em;
  }
}
@media screen and (min-width: 951px){
  .header-menuTab-icon{
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 950px){
  .header-menuTab-icon{
    margin-left: auto;
    margin-right: auto;
  }
}
.header-menuTab-hamburger{
  position: relative;
  height: 14px;
  width: 20px;
  z-index: 9999;
}
@media screen and (min-width: 951px){
  .header-menuTab-hamburger{
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 950px){
  .header-menuTab-hamburger{
    padding-top: 17px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.header-menuTab-hamburger span{
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #00306d;
  transition: .3s cubic-bezier(.3, .58, .05, .98);
}
.header-menuTab-hamburger span:nth-child(1){
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.header-menuTab-hamburger span:nth-child(2){
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
.header-menuTab-hamburger span:nth-child(3){
  -webkit-transform: translateY(12px);
      -ms-transform: translateY(12px);
          transform: translateY(12px);
}
.header-menuTab-tel{
  line-height: 1;
}
.header-menuTab-tel-number{
  font-family: neue-haas-grotesk-display,sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .15em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-menuTab-tel-number .-icon{
  max-width: 18px;
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.header-menuTab-tel-time{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  font-size: 1rem;
  -webkit-transform: scale(.9);
      -ms-transform: scale(.9);
          transform: scale(.9);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  letter-spacing: .06em;
  margin-top: 4px;
}

.header-nav{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #ededed;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  transition: .6s cubic-bezier(.3, .58, .05, .98);
}

@media screen and (min-width: 951px) and (max-height: 790px){
  .header-nav-scroll{
    position: relative;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    margin-top: 70px;
  }
}
@media screen and (max-width: 950px){
  .header-nav-scroll{
    position: relative;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    margin-top: 60px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.header-nav-member{
  width: 100%;
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 951px){
  .header-nav-member{
    height: 35px;
    position: absolute;
    top: 70px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}
@media screen and (min-width: 951px) and (max-height: 790px){
  .header-nav-member{
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 950px){
  .header-nav-member{
    padding: 10px;
  }
}
.header-nav-member-name{
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .06em;
}
@media screen and (min-width: 951px){
  .header-nav-member-name{
    margin-left: 35px;
  }
}
@media screen and (max-width: 950px){
  .header-nav-member-name{
    font-size: 1rem;
    line-height: 1.4;
    margin-right: 10px;
  }
}
@media screen and (min-width: 951px){
  .header-nav-member-name br{
    display: none;
  }
}
.header-nav-member-list{
  margin: 0 0 0 auto;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header-nav-member-item{
  margin: 1px 0 1px 1px;
}
@media screen and (max-width: 950px){
  .header-nav-member-item{
    margin-right: 15px;
  }
  .header-nav-member-item:last-child{
    margin-right: 0;
  }
}
.header-nav-member-item.-fav .header-nav-member-icon{
  width: 21px;
}
.header-nav-member-item.-setting .header-nav-member-icon{
  width: 20px;
}
.header-nav-member-item.-logout .header-nav-member-icon{
  width: 17px;
}
.header-nav-member-item span{
  display: block;
}
.header-nav-member-item a{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 951px){
  .header-nav-member-item a{
    padding: 5px 10px;
  }
}
.header-nav-member-icon{
  margin-right: 10px;
}
@media screen and (max-width: 950px){
  .header-nav-member-icon{
    margin-right: 5px;
  }
}
.header-nav-member-text{
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .06em;
}
@media screen and (max-width: 950px){
  .header-nav-member-text{
    font-size: 1rem;
  }
}
@media screen and (min-width: 951px){
  .header-nav-body{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media screen and (min-width: 951px) and (max-height: 790px){
  .header-nav-body{
    position: relative;
    top: 0;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    margin-top: 20px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 950px){
  .header-nav-body{
    width: calc(100% - 46px);
    margin: 20px auto 110px;
  }
}
@media screen and (min-width: 951px){
  .header-nav-list{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 951px){
  .header-nav-item{
    padding: 60px 0 47px 3%;
    border-right: 1px solid #fff;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate(-200px, 0);
        -ms-transform: translate(-200px, 0);
            transform: translate(-200px, 0);
    transition-delay: .5s;
    transition-delay: cubic-bezier(.3, .58, .05, .98);
  }
}
@media screen and (min-width: 951px) and (max-width: 1200px){
  .header-nav-item{
    padding-left: 2%;
  }
}
@media screen and (max-width: 950px){
  .header-nav-item{
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 951px){
  .header-nav-item:last-child{
    border-right: none;
  }
}
@media screen and (max-width: 950px){
  .header-nav-item:last-child{
    border-bottom: none;
  }
}
@media screen and (max-width: 950px){
  .header-nav-item.-childHas .header-nav-title:hover{
    cursor: pointer;
  }
  .header-nav-item.-childHas .header-nav-title:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    vertical-align: middle;
    width: 9px;
    height: 9px;
    border-top: 1px solid #00306d;
    border-right: 1px solid #00306d;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
    right: 35px;
    transition: .3s cubic-bezier(.3, .58, .05, .98);
  }
}
@media screen and (max-width: 950px){
  .header-nav-item.-childHas.-open .header-nav-title:after{
    -webkit-transform: rotate(315deg);
        -ms-transform: rotate(315deg);
            transform: rotate(315deg);
  }
}
.header-nav-title{
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 951px){
  .header-nav-title a:hover{
    cursor: default;
  }
}
.header-nav-title span{
  display: block;
}
.header-nav-title .-en{
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .3em;
}

@media screen and (min-width: 951px) and (max-width: 1112px){
  .header-nav-title .-en{
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 950px){
  .header-nav-title .-en{
    letter-spacing: .4em;
  }
}
.header-nav-title .-jp{
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .2em;
  margin-top: 20px;
}

@media screen and (min-width: 951px) and (max-width: 1112px){
  .header-nav-title .-jp{
    font-size: 1rem;
  }
}
@media screen and (max-width: 950px){
  .header-nav-title .-jp{
    margin-top: 4px;
  }
}
@media screen and (max-width: 950px){
  .header-nav-title-inner{
    display: block;
    padding: 25px;
  }
}
.header-nav-btns{
  margin: 50px 3% 0;
}
@media screen and (min-width: 951px){
  .header-nav-btns{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
}
@media screen and (max-width: 950px){
  .header-nav-btns{
    margin: 30px 0 0;
  }
}
@media screen and (min-width: 951px){
  .header-nav-btns-item{
    margin-right: 1.5%;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header-nav-btns-item:first-child{
    margin-right: 5%;
  }
  .header-nav-btns-item:last-child{
    margin-right: 0;
  }
}
@media screen and (max-width: 950px){
  .header-nav-btns-item{
    margin-bottom: 5px;
  }
  .header-nav-btns-item:first-child{
    margin-bottom: 30px;
  }
  .header-nav-btns-item:last-child{
    margin-bottom: 0;
  }
}
.header-nav-btn{
  max-width: 100%;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .4em;
}
@media screen and (max-width: 950px){
  .header-nav-btn{
    height: 60px;
    font-size: 1.4rem;
  }
}
.header-nav-btn.-blue{
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px){
  .header-nav-btn.-blue{
    height: 60px;
  }
}
.header-nav-btn.-blue a{
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all .3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  color: #fff;
  background: #00306d;
}
.header-nav-btn.-blue a:before{
  background: #646464;
}

@media screen and (min-width: 951px){
  .header-subNav{
    margin-top: 50px;
    display: block !important;
  }
}

@media screen and (max-width: 950px){
  .header-subNav{
    padding-bottom: 25px;
    display: none;
  }
}

@media screen and (max-width: 950px){
  .header-subNav.-pc{
    display: none;
  }
}

.header-subNav-item{
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .2em;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media screen and (min-width: 951px) and (max-width: 1112px){
  .header-subNav-item{
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 950px){
  .header-subNav-item{
    letter-spacing: .1em;
    margin-left: 50px;
  }
}
.header-subNav-item:last-child{
  margin-bottom: 0;
}
@media screen and (min-width: 951px){
  .header-subNav-item a{
    display: inline-block;
    transition: margin-left .2s;
  }
  .header-subNav-item a:hover{
    margin-left: 5px;
  }
}

.header-hoverAnim{
  position: relative;
}
.header-hoverAnim:hover:before{
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
@media screen and (min-width: 951px){
  .header-hoverAnim:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbcaca;
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    transition: -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1), -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
  }
  .header-menuTab-item_login .header-hoverAnim:before{
    background: #646464;
  }
}
.header-hoverAnim-obj{
  position: relative;
}

body.-navOpen{
  position: fixed;
  width: 100%;
  height: 100%;
}
body.-navOpen .header-menuTab-hamburger span:nth-child(1){
  -webkit-transform: rotate(45deg) translateY(4px) translateX(4px);
      -ms-transform: rotate(45deg) translateY(4px) translateX(4px);
          transform: rotate(45deg) translateY(4px) translateX(4px);
}
body.-navOpen .header-menuTab-hamburger span:nth-child(2){
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
body.-navOpen .header-menuTab-hamburger span:nth-child(3){
  -webkit-transform: rotate(-45deg) translateY(4px) translateX(-4px);
      -ms-transform: rotate(-45deg) translateY(4px) translateX(-4px);
          transform: rotate(-45deg) translateY(4px) translateX(-4px);
}
body.-navOpen .header-menuTab-item_menu .header-menuTab-title .-str:first-child{
  margin-top: -1em;
}
body.-navOpen .header-nav{
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (min-width: 951px){
  body.-navOpen .header-bar{
    transition: .8s cubic-bezier(.3, .58, .05, .98) .9s;
    background: #ededed;
  }
  body.-navOpen .header-nav-item{
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    transition: .8s cubic-bezier(.3, .58, .05, .98);
  }
  body.-navOpen .header-nav-item:nth-child(1){
    transition-delay: .5s;
  }
  body.-navOpen .header-nav-item:nth-child(2){
    transition-delay: .6s;
  }
  body.-navOpen .header-nav-item:nth-child(3){
    transition-delay: .7s;
  }
  body.-navOpen .header-nav-item:nth-child(4){
    transition-delay: .8s;
  }
  body.-navOpen .header-nav-item:nth-child(5){
    transition-delay: .9s;
  }
  body.-navOpen .header-nav-member{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    transition: opacity .8s cubic-bezier(.3, .58, .05, .98) .9s, -webkit-transform .8s cubic-bezier(.3, .58, .05, .98) .9s;
    transition: transform .8s cubic-bezier(.3, .58, .05, .98) .9s, opacity .8s cubic-bezier(.3, .58, .05, .98) .9s;
    transition: transform .8s cubic-bezier(.3, .58, .05, .98) .9s, opacity .8s cubic-bezier(.3, .58, .05, .98) .9s, -webkit-transform .8s cubic-bezier(.3, .58, .05, .98) .9s;
  }
  body.-navOpen .header-nav-btns{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    transition: .8s cubic-bezier(.3, .58, .05, .98) .9s;
  }
}
@media screen and (max-width: 950px){
  body.-navOpen .header-nav-scroll{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    transition: .8s cubic-bezier(.3, .58, .05, .98) .6s;
  }
}

/*
フッター
------------------------------------------------*/
.footer{
  overflow: hidden;
}
@media screen and (min-width: 951px){
  .footer-pickup{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 951px){
  .footer-pickup-item{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer-pickup-item:last-child a:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -2px;
    bottom: 0;
    width: 2px;
    height: 100%;
    background: #646464;
    display: none;
  }
}
@media screen and (max-width: 950px){
  .footer-pickup-item{
    margin-bottom: 1px;
  }
  .footer-pickup-item:last-child{
    margin-bottom: 0;
  }
}
.footer-pickup-item a{
  display: block;
  background: #00306d;
  color: #fff;
  padding: 65px 15px;
  text-align: center;
}
@media screen and (min-width: 951px){
  .footer-pickup-item a:hover:after{
    display: block;
  }
}
@media screen and (max-width: 950px){
  .footer-pickup-item a{
    padding: 40px 0 25px;
  }
}
.footer-pickup-title span{
  display: block;
  line-height: 1;
}
.footer-pickup-title .-en{
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: .4em;
}

@media screen and (min-width: 951px) and (max-width: 1112px){
  .footer-pickup-title .-en{
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 950px){
  .footer-pickup-title .-en{
    font-size: 3rem;
  }
}
.footer-pickup-title .-jp{
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .4em;
  margin-top: 10px;
}

@media screen and (min-width: 951px) and (max-width: 1112px){
  .footer-pickup-title .-jp{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 950px){
  .footer-pickup-title .-jp{
    font-size: 1.2rem;
    margin-top: 8px;
  }
}
.footer-pickup-text{
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: .1em;
  margin-top: 40px;
}

@media screen and (min-width: 951px) and (max-width: 1112px){
  .footer-pickup-text{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 950px){
  .footer-pickup-text{
    line-height: 1.8;
    margin-top: 30px;
  }
}
@media screen and (min-width: 951px){
  .footer-body{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-nav{
  background: #ededed;
}
@media screen and (min-width: 951px){
  .footer-nav{
    padding: 100px 4% 75px;
    width: 67%;
  }
}
@media screen and (max-width: 950px){
  .footer-nav{
    padding: 35px 35px 50px;
  }
}
@media screen and (min-width: 951px){
  .footer-nav a{
    transition: opacity .3s;
  }
  .footer-nav a:hover{
    opacity: .7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  }
}
@media screen and (min-width: 951px){
  .footer-nav-list{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (min-width: 951px){
  .footer-nav-item{
    width: 33%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 950px){
  .footer-nav-item{
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 950px){
  .footer-nav-item:nth-last-child(2){
    border-bottom: none;
  }
}
@media screen and (max-width: 950px){
  .footer-nav-item.-childHas .footer-nav-title:hover{
    cursor: pointer;
  }
  .footer-nav-item.-childHas .footer-nav-title:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    vertical-align: middle;
    width: 9px;
    height: 9px;
    border-top: 1px solid #00306d;
    border-right: 1px solid #00306d;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
    right: 35px;
    transition: .3s ease;
  }
}
@media screen and (max-width: 950px){
  .footer-nav-item.-childHas.-open .footer-nav-title:after{
    -webkit-transform: rotate(315deg);
        -ms-transform: rotate(315deg);
            transform: rotate(315deg);
  }
}
@media screen and (max-width: 950px){
  .footer-nav-item.-pc{
    display: none;
  }
}
.footer-nav-title{
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 951px){
  .footer-nav-title a:hover{
    cursor: default;
  }
}
.footer-nav-title span{
  display: block;
}
.footer-nav-title .-en{
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .4em;
}

@media screen and (min-width: 951px) and (max-width: 1112px){
  .footer-nav-title .-en{
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 950px){
  .footer-nav-title .-en{
    font-size: 3rem;
  }
}
.footer-nav-title .-jp{
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .2em;
  margin-top: 4px;
}
@media screen and (min-width: 951px){
  .footer-nav-title .-jp{
    display: none;
  }
}
@media screen and (max-width: 950px){
  .footer-nav-title-inner{
    display: block;
    padding: 25px;
  }
}
@media screen and (min-width: 951px){
  .footer-nav-btn{
    display: none;
  }
}
@media screen and (max-width: 950px){
  .footer-nav-btn{
    max-width: 100%;
    letter-spacing: .4em;
    height: 60px;
    font-size: 1.4rem;
    margin-top: 25px;
  }
}
.footer-nav-other{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 950px){
  .footer-nav-other{
    margin-top: 30px;
  }
}
.footer-nav-other-item{
  font-size: 11px;
  font-size: 1.1rem;
  margin-right: 25px;
}
@media screen and (max-width: 950px){
  .footer-nav-other-item{
    margin-right: 20px;
    letter-spacing: .4em;
  }
}
.footer-nav-other-item:last-child{
  margin-right: 0;
}
@media screen and (min-width: 951px){
  .footer-subNav{
    margin-top: 20px;
    display: block !important;
  }
}
@media screen and (max-width: 950px){
  .footer-subNav{
    padding-bottom: 25px;
    display: none;
  }
}
@media screen and (max-width: 950px){
  .footer-subNav.-pc{
    display: none;
  }
}
.footer-subNav-item{
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .1em;
  line-height: 1.6;
}
@media screen and (min-width: 951px){
  .footer-subNav-item{
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1112px){
  .footer-subNav-item{
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 950px){
  .footer-subNav-item{
    letter-spacing: .1em;
    margin-left: 50px;
    margin-bottom: 10px;
  }
}
.footer-subNav-item:last-child{
  margin-bottom: 0;
}
@media screen and (min-width: 951px){
  .footer-subNav-item br{
    display: none;
  }
}
.footer-about{
  position: relative;
  background: #dbdbdb;
  padding: 100px 6% 70px 3%;
}
@media screen and (min-width: 951px){
  .footer-about{
    width: 33%;
  }
}
@media screen and (max-width: 950px){
  .footer-about{
    padding: 65px 57px 45px 37px;
  }
}
.footer-logo{
  max-width: 274px;
}
@media screen and (max-width: 950px){
  .footer-logo{
    margin: 0 -15px;
  }
}
.footer-info{
  margin-top: 118px;
}
@media screen and (max-width: 950px){
  .footer-info{
    margin-top: 60px;
  }
}
.footer-tel{
  line-height: 1;
}
.footer-tel-number{
  font-family: neue-haas-grotesk-display,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .12em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-tel-number .-icon{
  max-width: 34px;
  width: 100%;
  margin-right: 5px;
  position: relative;
  top: -3px;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer-tel-time{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: .06em;
  margin-top: 4px;
}
.footer-address{
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #00306d;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .06em;
  line-height: 1.5;
}
.footer-btn{
  height: 58px;
  margin-top: 30px;
}
@media screen and (max-width: 950px){
  .footer-btn{
    margin-top: 22px;
    height: 60px;
  }
}
.footer-btn a{
  background: #00306d;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
}
.footer-btn a:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 17px;
  height: 14px;
  background: url("../images/common/footer_btn_outlink.png") no-repeat center center;
  background-size: cover;
  margin: auto 0;
}
.footer-btn-body{
  max-width: 170px;
  width: 100%;
}
.footer-copyright{
  font-size: 10px;
  font-size: 1rem;
  -webkit-transform: scale(.8);
      -ms-transform: scale(.8);
          transform: scale(.8);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .3em;
  margin-top: 30px;
}
@media screen and (min-width: 951px){
  .footer-copyright{
    white-space: nowrap;
  }
}
@media screen and (max-width: 950px){
  .footer-copyright{
    margin-top: 50px;
    letter-spacing: .25em;
    white-space: nowrap;
  }
}
.footer-scroll{
  position: absolute;
  z-index: 2;
  right: -13px;
  top: 0;
  padding-bottom: 225px;
  line-height: 1;
}
.footer-scroll-text{
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .2em;
  color: #fff;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  margin-top: 465px;
}
@media screen and (max-width: 950px){
  .footer-scroll-text{
    margin-top: 385px;
  }
}
.footer-scroll-line{
  display: block;
  overflow: hidden;
  position: absolute;
  background: #dbdbdb;
  height: 424px;
  width: 1px;
  left: -3px;
  right: 0;
  top: 0;
  margin: 0 auto;
}
@media screen and (max-width: 950px){
  .footer-scroll-line{
    height: 342px;
  }
}
.footer-scroll-line:after{
  content: "";
  display: block;
  background: #fff;
  height: 424px;
  width: 1px;
  position: absolute;
  left: 0;
  bottom: 424px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-animation: footer-scroll-bar_pc 3.5s cubic-bezier(.455, .03, .515, .955) infinite;
          animation: footer-scroll-bar_pc 3.5s cubic-bezier(.455, .03, .515, .955) infinite;
}
@media screen and (max-width: 950px){
  .footer-scroll-line:after{
    height: 342px;
    bottom: 342px;
    -webkit-animation: footer-scroll-bar_sp 3.5s cubic-bezier(.455, .03, .515, .955) infinite;
            animation: footer-scroll-bar_sp 3.5s cubic-bezier(.455, .03, .515, .955) infinite;
  }
}

@-webkit-keyframes footer-scroll-bar_pc{
  0% , 5%{
    -webkit-transform: translate3d(0, 848px, 0);
            transform: translate3d(0, 848px, 0);
  }
  to{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes footer-scroll-bar_pc{
  0% , 5%{
    -webkit-transform: translate3d(0, 848px, 0);
            transform: translate3d(0, 848px, 0);
  }
  to{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes footer-scroll-bar_sp{
  0% , 5%{
    -webkit-transform: translate3d(0, 684px, 0);
            transform: translate3d(0, 684px, 0);
  }
  to{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes footer-scroll-bar_sp{
  0% , 5%{
    -webkit-transform: translate3d(0, 684px, 0);
            transform: translate3d(0, 684px, 0);
  }
  to{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.footer-hoverAnim{
  position: relative;
}
.footer-hoverAnim:hover:before{
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
@media screen and (min-width: 951px){
  .footer-hoverAnim:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #646464;
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    transition: -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1), -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
  }
}
.footer-hoverAnim-obj{
  position: relative;
}
