/* reset add
-------------------------------------*/

/* IE,edge用のobject-fit対応 */
.cover{
  object-fit: cover;
  font-family: 'object-fit: cover';
}
.contain{
  object-fit: contain;
  font-family: 'object-fit: contain';
}
/* IE対策 */
main{
  display: block;
}
/* footerを最下部に配置 */
body{
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow-x: hidden;
}
main{
  flex: 1;
  -ms-flex: none;
}

/* form 関係
-------------------------------------*/

/* iOSでのデフォルトスタイルをリセット */
input[type="text"],
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="text"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="text"]::focus,
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/* ここまで */
table th{
    text-align: left;
    vertical-align: top;
}
input,
textarea,
select{
  padding: 2px;
  resize: none;
  color: #333;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}
/* IE */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
  color: #b3b3b3;
}
label input[type="checkbox"]{
  display: none;
}
label span{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
label span::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 4px;
}
label input[type="checkbox"]:checked + span::after{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #2079AD;
  border-right: 3px solid #2079AD;
}
input[type="radio"]{
  display: none;
}
input[type="radio"] + label{
    position: relative;
    display: inline-block;
    padding: 7px 0 0 35px;
    margin-right: 25px;
    cursor: pointer;
}
input[type="radio"]:last-of-type + label{
    margin-right: 0;
}

input[type="radio"] + label::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 50%;
}
input[type="radio"]:checked  + label::before{
    background: #000000;
}
input[type="radio"]:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 9px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}
button{
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* base
-------------------------------------*/
li{
    list-style: none;
}
a{
    color: #D00F00;
    text-decoration: none;
}
a:hover{
    color: #D00F00CC;
}

img {
    display: inline-block;
    max-width: 100%;
    border: none;
    vertical-align: bottom;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    word-break: break-all;
}
.br::before {
    content: "\A";
    white-space: pre;
}
.txtR{
    text-align: right;
}
/*クリックしたときの枠線*/
*:focus {
  outline: none;
}
/*タップしたときの青い四角*/
a,label {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}

@media screen and (max-width: 767px) {
    .spBr::before {
        content: "\A";
        white-space: pre;
    }
    .pcView{
        display: none !important;
    }
}
@media screen and (min-width: 768px) {
    .pcBr::before {
        content: "\A";
        white-space: pre;
    }
    .spView{
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    #header .kw .pcView{
        display: none;
    }
}

/* common
-------------------------------------*/

body{
    color: #4d4d4d;
    font-size: 14px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    body{
        font-size: 13px;
    }
}
body.fixed{
    position: fixed;
    width: 100%;
    height: 100%;
}

.fmin{
    font-family: "游明朝体", "Yu Mincho", YuMincho, 'Noto Serif JP', "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
p:not(.btn):not(.btn2){
    line-height: 1.8;
}
.under{
    background: linear-gradient(transparent 50%, yellow 50%);
    font-weight: bold;
}
.exLink{
    position: relative;
}
.exLink::before{
    content: "";
    position: absolute;
    top: 2px;
    right: -20px;
    display: block;
    width: 10px;
    height: 8px;
    border: 1px solid #999;
}
.exLink::after{
    content: "";
    position: absolute;
    top: 6px;
    right: -24px;
    display: block;
    width: 10px;
    height: 8px;
    border: 1px solid #999;
}

.btn_main a{
  background: #000000;
}
.btn_main a:hover{
  background-color: #000000cc;
}
.btn button{
  width: 100%;
  height: 100%;
  font-size: 13px;
}
.btn a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 0 0;
  color: #4d4d4d;
  font-size: 13px;
  text-align: center;
}
p.btn.submit,
div.btn.submit form,
p.btn.back,
div.btn.back form{
  width: 86vw;
  max-width: 400px;
  height: 50px;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .btn button{
    font-size: 16px;
  }
  .btn a{
    font-size: 16px;
  }
  p.btn.submit,
  div.btn.submit form,
  p.btn.back,
  div.btn.back form{
    width: 360px;
    height: 58px;
  }
}
.btn.submit button,
.btn.submit a{
  position: relative;
  background: #000000;
  color: #fff;
}
.btn.submit button:hover,
.btn.submit a:hover{
  background: #000000cc;
  transition: .3s;
}
.btn.submit button::before,
.btn.submit a::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 17px;
  border-top: 1px solid #fff;
}
.btn.submit button::after,
.btn.submit a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 8px;
  margin: -2px 0 0;
  border-top: 1px solid #fff;
  transform: rotate(30deg);
}
.btn.back button,
.btn.back a{
  background: #fff;
  border: 1px solid #bbb;
}
.btn.back button:hover,
.btn.back a:hover{
  border: 1px solid #000000;
}
@media screen and (max-width: 374px) {


}
@media screen and (max-width: 767px) {
    .inner,
    .inner3{
        margin: auto;
        width: 96vw;
        min-width: 308px;
    }
    .innerPc{
        margin: auto;
        width: 100%;
    }

}
@media screen and (max-width: 1100px) {
    .inner,
    .inner3{
        margin: auto;
        width: 96vw;
    }
    .inner2{
        margin: auto;
        width: 96vw;
        max-width: 760px;
    }
    .innerPc{
        margin: auto;
        width: 100%;
    }
}
@media screen and (min-width: 1100px) {
    .inner,
    .innerPc{
        margin: auto;
        width: 100%;
        max-width: 1100px;
    }
    .inner2{
        margin: auto;
        width: 100%;
        max-width: 760px;
    }
    .inner3{
        margin: auto;
        width: 100%;
        max-width: 800px;
    }
}

/* header
-------------------------------------*/



@media screen and (max-width: 1024px) {
    #header{
        width: 100%;
        height: 60px;
        padding: 10px 2vw;
        background: rgba(255,255,255,.95);
        filter: drop-shadow(0px 0px 2px rgba(0,0,0,.3));
        z-index: 5;
    }
    #header .kw{
        display: none;
    }
    #header .logo{
        position: absolute;
        left: 50%;
        display: block;
        width: 104px;
        margin: 10px 0 0 -52px;
        color: #fff;
    }

    #header .inner{
        position: relative;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        padding: 0px 0px;
    }
    #hNav > ul{
        display: flex;
        justify-content: space-between;
        margin: 5px 0 0;
    }
    #hNav >ul > li{
        position: relative;
        width: 46px;
        font-size: 11px;
        text-align: center;
    }
    #hNav li figure{
        display: block;
        width: 36px;
        height: 36px;
        margin:  0 auto 5px;
        padding: 7px;
        border: 1px solid #ccc;
        border-radius: 50%;
        background-color: #000000;
    }

    #hNav li span.chara{
        display: none;
    }

    #hNav .keyword{
        display: none;
    }
    #hNav .favorite,
    #hNav .support{
        display: none;
    }
    #hNav li.cart span.count{
        position: absolute;
        top: -5px;
        right: 2px;
        display: block;
        width: 16px;
        height: 16px;
        padding: 2px 0 0;
        background: #FF1D25;
        border-radius: 50%;
        color: #fff;
        text-align: center;
    }

}
@media screen and (min-width: 1025px) {
    /*PC*/
    #header{
        width: 100%;
        height: 120px;
        background: rgba(255,255,255,.95);
        z-index: 5;
        border-bottom: 3px solid #333333;
    }
    #header .kw{
        position: absolute;
        left: 20px;
        top: 10px;
        font-size: 12px;
        font-weight: normal;
        line-height: 1.4;
    }
    #header .logo a{
        display: block;
        width: 210px;
        text-align: center;
    }
    #header .logo a:hover{
        opacity: .7;
        transition: .3s;
    }
    #header .inner{
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 40px 0px 10px;
    }


    #hNav > ul{
        display: flex;
        justify-content: space-between;
    }
    #hNav >ul > li{
        position: relative;
        width: 78px;
        font-size: 11px;
        text-align: center;
    }
    #hNav >ul > li:first-child{
        width: 400px;
        margin: 5px 40px 0 0;
    }
    #hNav li:first-child form{
        display: flex;
        width: 100%;
    }
    #hNav li:first-child input{
        display: inline-block;
        width: 340px;

        height: 40px;
        padding: 0 0 0 40px;
        background: url(../img/common/ico_search.png) no-repeat 10px center;
        border: 1px solid #bbb;
    }
    #hNav li:first-child button{
        display: inline-block;
        width: 60px;
        margin: 0 0 0 5px;
        background: #f5f5f5;
        border: 1px solid #bbb;
        border-radius: 5px;
        font-size: 13px;
        color: #4d4d4d;
    }
    #hNav li figure{
        display: block;
        width: 42px;
        height: 42px;
        margin:  0 auto 5px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 50%;
        background-color: #000000;
    }
    #hNav li a{
        color: #4d4d4d;
    }
    #hNav li.cart span.count{
        position: absolute;
        top: 0;
        right: 10px;
        display: block;
        width: 20px;
        height: 20px;
        padding: 5px 0 0;
        background: #FF1D25;
        border-radius: 50%;
        color: #fff;
        text-align: center;
    }

}

/* nav
-------------------------------------*/
#navBtn{
    display: none;
}
@media screen and (max-width: 1024px) {
    a#navBtn{
        display: inline-block;
        position: absolute;
        top: 0px;
        left: 0;
        width: 60px;
        height: 60px;
        margin: 0px 0 10px;
        padding: 44px 0 0;
        background: #000000;
        color: #fff;
        font-size: 8px;
        text-align: center;
        z-index: 9999;
    }

    #navBtnIcon{
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 24px;
        height: 2px;
        margin: -1px 0 0 -12px;
        background: #fff;
        transition: .2s;
    }
    #navBtnIcon::before, #navBtnIcon::after{
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 24px;
        height: 2px;
        background: #fff;
        transition: .3s;
    }
    #navBtnIcon::before{
        margin-top: -6px;
    }
    #navBtnIcon::after{
        margin-top: 4px;
    }
    #navBtn .close{
        background: transparent;
    }
    #navBtn .close::before, #navBtn .close::after{
        margin-top: 0;
    }
    #navBtn .close::before{
        transform: rotate(-45deg);
    }
    #navBtn .close::after{
        transform: rotate(-135deg);
    }
}
@media screen and (min-width: 1025px) {

}
#gNav li a{
    color: #4d4d4d;
    font-weight: bold;
}
#gNav a:hover{
    color: #4d4d4dcc;
    transition: .3s;
}

@media screen and (max-width: 1024px) {
    #gNav{
        display: none;
    }

    #gNav{
        position: fixed;
        top: 60px;
        right: 0;
        overflow: auto;
        width: 100%;
        height: 100%;
        padding: 0 0 60px;
        background: rgba(242,242,242,1);
        z-index: 10;
    }
    #gNav .keyword form{
        display: flex;
        width: 100%;
        padding: 20px 2vw;
        background: #f2f2f2;
    }

    #gNav .keyword form input{
        display: inline-block;
        width: 100%;
        height: 35px;
        padding: 0 0 0 40px;
        background: #fff url(../img/common/ico_search.png) no-repeat 10px center;
        border: 1px solid #bbb;
    }
    #gNav .keyword form button{
        display: inline-block;
        width: 60px;
        border: 1px solid #bbb;
        border-left: none;
        font-size: 12px;
    }
    #gNav > ul{
        border-bottom: 1px solid #ccc;
    }
    #gNav li{
        width: 100%;
        margin: 0 auto;
    }

    #gNav li ul{
        display: none;
    }

    #gNav ul li a{
        position: relative;
        display: block;
        padding: 18px 4vw 0;
        width: 100%;
        height: 50px;
        background: #fff;
        border-top: 1px solid #ccc;
    }
    #gNav > ul > li > a::after{
        content: '';
        position: absolute;
        right: 4vw;
        top: 50%;
        display: block;
        width: 10px;
        height: 10px;
        margin: -7px 0 0;
        border-right: 1px solid #000000;
        border-bottom: 1px solid #000000;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #gNav ul li.menu__mega a::after{
        margin: -7px 0 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #gNav ul li.menu__mega a.close::after{
        margin: -7px 0 0;
        -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(225deg);
    }
    #gNav ul li li{
        width: 100%;
    }
    #gNav ul li li a{
        width: 100%;
        padding: 12px 8vw;
        height: 40px;
        border-top: none;
    }
    #gNav .menu__second-level > li > a::before{
        content: "";
        position: absolute;
        left: 4vw;
        display: block;
        border-left: 8px solid #000000;
        border-right: 8px solid transparent;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

}

@media screen and (min-width: 1025px) {
    /*PC*/
    #menu_cell_container{
        display: none;
    }
    #gNav {
        background: rgba(245,245,245,.95);
    }
    #gNav .keyword,
    #gNav .support,
    #gNav .favorite {
        display: none;
    }
    #gNav > ul{
        display: flex;
        justify-content: center;
        position: relative;
        height:  60px;
        font-size: 15px;
    }

    #gNav > ul > li > a{
        position: relative;
        display: block;
        height: 60px;
        padding: 22px 25px 0;
        border-bottom: 2px solid transparent;
        cursor: pointer;
    }
    #gNav > ul > li > a:hover{
        border-bottom: 2px solid #3E9CCD;
        color: #4d4d4d;
    }

    ul.menu__second-level {
        display: none;
        z-index: 9999;
    }

    .menu__second-level > li > a{
        position: relative;
        display: block;
        padding: 10px 10px;
        font-weight: normal !important;
    }
    #gNav .menu__second-level > li > a::before{
        content: "";
        position: absolute;
        left: -5px;
        display: block;
        border-left: 8px solid #3E9CCD;
        border-right: 8px solid transparent;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .menu__second-level li a:hover {
        color: #4d4d4d;
        text-decoration: underline;
    }
    /*single*/
    li.menu__single {
        position: relative;
        cursor: pointer;
    }
    li.menu__single ul.menu__second-level {
        position: absolute;
        top: 57px;
        left: -60px;
        width: 200px;
        padding: 20px;
        background: #fff;
        box-shadow: 0 0 1px #ccc;
        font-size: 14px;
        text-align: left;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

    li.menu__single ul.menu__second-level a{
        position: relative;
    }

    .init-right::after {
        content: '';
        position: absolute;
        right: 20px;
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 0 0 0 15px;
        border-right: 1px solid #bbb;
        border-top: 1px solid #bbb;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .init-right:hover::after {
        border-right: 1px solid #000000;
        border-top: 1px solid #000000;
    }
    /*mega*/
    li.menu__mega ul.menu__second-level {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px 2%;
        background: #D3EDF0;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

    li.menu__mega ul.menu__second-level > li {
        float: left;
        width: 20%;
        height: 50px;
        padding: 10px;
        border: none;
    }

}

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

#footer a{
    color: #ffffff;
}
#footer a:hover{
    color: #cccccc;
    transition: .3s;
}

@media screen and (max-width: 1024px) {
    #footer{
        margin: 80px 0 0;
        padding: 60px 0 20px;
        background: #000000;
        background-size: cover;
        color: #ffffff;
    }

    #footer .sitemap ul{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 0 30px;
        font-size: 12px;
        line-height: 2;
    }
    #footer .sitemap ul li::after{
        content:"|";
        display: inline-block;
        margin: 0 10px;
    }
    #footer .sitemap ul li:last-child::after{
        display: none;
    }
    #footer .sns{
        display: flex;
        justify-content: center;
        padding:  20px 0 0;
    }
    #footer .sns li a{
        display: block;
        width: 40px;
        height: 40px;
        margin: 0 10px;
        text-align: center;
    }
    #footer .appli{
        display: flex;
        justify-content: center;
    }
    #footer .appli li a img{
        height: 30px;
        margin: 20px 10px 0;
    }
    #footer #copyArea{
        margin: 30px 0 0;
        font-size: 12px;
        text-align: center;

    }
    #footer #pageTop a{
        position: fixed;
        bottom: 0px;
        right: 0px;
        display: block;
        width: 40px;
        height: 40px;
        padding: 0 0;
        background: rgba(26,26,26,1);
        color: #ffffff;
        font-size: 24px;
        text-align: center;
    }
}
@media screen and (max-width: 374px) {
    #footer .sitemap ul li::after{
        margin: 0 5px;
    }
}
@media screen and (min-width: 1025px) {
    #footer{
        margin: 100px 0 0;
        padding: 60px 0;
        background: #000000;
        background-size: cover;
        color: #ffffff;
    }
    #footer > .inner{
        display: flex;
        justify-content: space-between;
    }
    #footer .sitemap{
        display: flex;
        padding: 0 0;
    }
    #footer .sitemap ul{
        margin: 0 100px 0 0;
        line-height: 2.4;
    }
    #footer .sns{
        display: flex;
        justify-content: flex-end;
        padding:  0 0;
    }
    #footer .sns li a{
        display: block;
        width: 50px;
        height: 50px;
        margin: 0 0 0 10px;
        text-align: center;
    }
    #footer .appli{
        display: flex;
        justify-content: flex-end;
    }
    #footer .appli li a img{
        height: 30px;
        margin: 20px 0 0 10px;
    }

    #footer #copyArea{
        position: relative;
        top: -10px;
        font-size: 12px;
        text-align: right;

    }

    #footer #pageTop a{
        position: fixed;
        bottom: 0px;
        right: 0px;
        display: block;
        width: 60px;
        height: 60px;
        padding: 3px 0 0;
        background: #e8e8e8;
        background-size: 50px;
        color: #000000;
        font-size: 30px;
        font-weight: bold;
        text-align: center;
    }


}

/* title
-------------------------------------*/
@media screen and (max-width: 767px) {
    #title{
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0px 20px;

    }
    #title .ttl{
        order: 3;
        width: 96vw;
        margin: 0 auto;
        font-size: 20px;
        font-weight: bold;
    }
}
@media screen and (min-width: 768px) {
    #title{
        display: flex;
        flex-wrap: wrap;
        padding: 30px 0px 30px;

    }
    #title .ttl{
        order: 3;
        width: 100%;
        font-size: 30px;
        font-weight: bold;
    }

}

/* breadcrumb
-------------------------------------*/
.breadcrumb li{
    display: inline-block;
    line-height: 1.7;
}
.breadcrumb li::before{
    content: ">";
    margin: 0 5px;
}
.breadcrumb li:first-child::before{
    content:"";
    margin: 0;
}

@media screen and (max-width: 767px) {
    .breadcrumb{
        order: 1;
        width: 96vw;
        margin: 0 auto 20px;
        font-size: 11px;
        text-align: left;
    }

}
@media screen and (min-width: 768px) {
    .breadcrumb{
        order: 1;
        width: 100%;
        margin: 0 0 40px;
        font-size: 13px;
        text-align: left;
    }
    .breadcrumb li::before{
        content: ">";
        margin: 0 5px;
    }

}

/* other
-------------------------------------*/
@media screen and (max-width: 767px) {
    .sTtl{
        padding: 0 0 15px;
        border-bottom: 2px solid #000000;
        font-size: 18px;
        font-weight: bold;
    }
}
@media screen and (min-width: 768px) {
    .sTtl{
        padding: 0 0 25px;
        border-bottom: 2px solid #000000;
        font-size: 22px;
        font-weight: bold;
    }
}


/* ヘッダーの動き */
.headroom--pinned {
    display: block;
}
.headroom--unpinned {
    display: none;
}
/*headroom*/
.headroom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: all .2s ease-in-out;
    z-index:9999;
    /*height:140px*/}
.headroom.headroom--not-top {top: -120px;}
.headroom.headroom--top,
.headroom.slideInDown {top: 0;}
#container{
    padding: 180px 0 0;
}

@media screen and (max-width: 1024px) {
    #container{
        padding: 75px 0 0;
    }
}
/*
@media only screen and (max-width: 600px){
.headroom {height:17%}
.headroom.headroom--not-top {top: -25%;}
.headroom.headroom--top,
.headroom.slideInDown {top: 0;}


}
*/
/* モーダル：ローディング */
div.modal-loading {
    display: none;
    position: fixed;
    background-image: url("../../img/common/loading.gif");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    z-index: 999999;
}

/* モーダル：ダイアログ */
div.modal-dialog {
    display: none;
}
div.ui-widget-overlay {
    z-index: 10000;
}
button.ui-dialog-titlebar-close{
    display: none;
}
.ui-widget.ui-widget-content{
    position: fixed !important;
}
/* モーダル：ダイアログ デザイン調整 */
@media screen and (min-width: 768px) {
    .ui-widget.ui-widget-content{
        width: 400px !important;
    }
}
.ui-draggable .ui-dialog-titlebar{
    display: none;
}
.ui-dialog .ui-dialog-content{
    padding: 1em !important;
}
.ui-dialog .ui-dialog-buttonpane{
    padding: .5em .4em !important;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{
    float: none !important;
    text-align: center;
}
.ui-dialog .ui-dialog-buttonpane button{
    min-height: 35px;
    min-width: 80px;
    margin: .5em .4em !important;
}
div.message {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
    z-index: 10000;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    animation-name: msg-fadein;
    animation-duration: 0.8s;
}
div.message:before {
    line-height: 0px;
    font-size: 20px;
    height: 12px;
    width: 12px;
    border-radius: 15px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    left: -11px;
    background-color: #FFF;
    padding: 12px 14px 12px 10px;
    content: "i";
    color: #a0d3e8;
}

div.message.error {
    background-color: #C3232D;
    color: #FFF;
}

div.message.error:before {
    padding: 11px 16px 14px 7px;
    color: #C3232D;
    content: "x";
}
div.message.hidden {
     display: none;
}
@media screen and (min-width: 768px) {
    div.message {
      top: 20px;
      left: 50%;
      margin-left: -300px;
      width: 600px;
    }

}
/* paginator
-------------------------------------*/

ul.paginator{
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
ul.paginator li{
  margin: 0 5px;
}
ul.paginator li a{
  display: table-cell;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  color: #000000;
  text-align: center;
  vertical-align: middle;
}
ul.paginator li span.now{
  display: table-cell;
  width: 40px;
  height: 40px;
  background: #000000;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  ul.paginator{
    padding-top: 50px;
  }
  ul.paginator li a:hover{
    background: #000000;
    color: #fff;
  }
}

