@charset "UTF-8";
/* CSS Document */
/*===================================================
    スマホ用土台作成用CSS
===================================================*/
/*//////////////////////////////////////////////////
    Base set
///////////////////////////////////////////////////*/
html,body {
	min-width: 0;
}


/* マウスオーバーのスタイル */
a:hover {
    text-decoration: none!important;
    opacity: 1!important;
    -ms-filter: "alpha(opacity=100)"!important;
}

/*//////////////////////////////////////////////////
    Base layout(PC)
///////////////////////////////////////////////////*/
/* --------------------------------------------------
    ヘッダー(header)
-------------------------------------------------- */
header {
  display: flex;
  justify-content: center;
    height: 52px;
    padding: 10px 5px;
}

    header h1 {
      display: flex;
    }

    header h1 img {
      height: 14px;
      margin-top: 8px;
    }

    header h1 span {
      padding: 6px 0 0 2px;
      font-size: 12px;
    }

/* --------------------------------------------------
    ナビ(nav)
-------------------------------------------------- */
nav {
    position: absolute;
    right: 0;
    float: none;
}
nav ul li {
    font-size: 10px;
    /*line-height: 50px;*/
    padding-right: 5px;
}
/*よくあるご質問*/
nav ul #gNavFaq {
    padding-right: 10px;
}
    nav ul #gNavFaq a {
        padding: 0 1.3em 5px 0;
        background-position: right 3px;
    }
/*RESONA*/
nav ul #gNavRESONA {
    max-width: 160px;
    width: auto;
    font-size: 15px;
    text-align: center;
    border-radius: 0;
	  margin-top: 5px;
}
    nav ul #gNavRESONA a {
        padding: 0 20px 0 10px
    }
nav ul li.mt10 {
     margin-top: 0px; 
}

/* --------------------------------------------------
    メイン
-------------------------------------------------- */

/* --------------------------------------------------
    フッター(footer)
-------------------------------------------------- */
footer .footWrap dl {
    padding: 30px 0 40px;
}
footer .copy {
    font-size: 12px;
}

/* --------------------------------------------------
    ページトップ
-------------------------------------------------- */
#pagetop {
    overflow: hidden;
    position: fixed;
    right: 10px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 999;
    text-indent: 100%;
    white-space: nowrap;
    background: url("../../image/common/pagetop.png") no-repeat;
    background-size: 50px auto;
    display: block !important;
}
#pagetop.fade {
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

