/* reset */
::selection { background:red; }
::-moz-selection { background:red; }
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin:0;padding:0;}
header,footer,section,article,aside,nav,hgroup,address,figure,figcaption,menu,details{display:block;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;font-weight:normal;}
html,body,fieldset,img,iframe,abbr{border:0;}
i,cite,em,var,address,dfn{font-style:normal;}
[hidefocus],summary{outline:0;}
li{list-style:none;}
h1,h2,h3,h4,h5,h6,small{font-size:100%;}
sup,sub{font-size:83%;}
pre,code,kbd,samp{font-family:inherit;}
q:before,q:after{content:none;}
textarea{overflow:auto;resize:none;}
label,summary{cursor:default;}
a,button{cursor:pointer;}
h1,h2,h3,h4,h5,h6,em,strong,b{font-weight:bold;}
del,ins,u,s,a,a:hover{text-decoration:none;}
body,textarea,input,button,select,keygen,legend{font-family: "Neue Haas Grotesk", Icons /*!Persona*/;color:#000;outline:0;}
body{background:#fff;  caret-color: yellow;}
a{color:#000;text-decoration:underline}
a:hover{color:red;text-decoration: underline}
div{ font-size:1rem;box-sizing: border-box;line-height: 1.3rem;text-align:justify;text-justify:distribute-all-lines; }
img{    width: 100%;}
.small{ font-size:.8rem }
.black{ font-weight:600 }


body{
    background-color: #898989;
}

.main{
    display:flex;
}

.left{
    width: 25%;
    position: fixed;
    left: 0;
    height:100%;
    border-right:1px solid #000;
}

.left .left-content{
    padding:20px;
    height: calc(100vh - 60px) ;
    overflow-y:scroll;
    overflow: -moz-scrollbars-none;
}

.left .left-footer{
    position: absolute;
    bottom:0;
    padding:20px 0 20px 20px;
    border-top:1px solid #000;
    width:100%;
    background: #898989;
}

.left .left-content::-webkit-scrollbar{
    display: none;
}

.left .left-content-header{
    display:flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.left .left-content-contact{
    padding-top:20px;
}

.left .left-content-contact a{
    display:block;
    font-size:.6rem;
}

.right{
    margin-left:auto;
    width: 75%;
}

.right .card{
    padding:20px;
    border-bottom:1px solid #000;
    display:flex;
}

.right .card:last-child{
    border-bottom:none;
}

.card-title{
    display:flex;
    justify-content: space-between;
}

.card-left{
    width:30%;
    margin-right: 30px;
}

.card-left-tag{
    padding-top:20px;
}

.card-left-tag p a{
    padding-left:3px;
}

.card-right{
    width:70%;
}

.card-right-header{
    padding-bottom:20px;
    display:flex;
    justify-content: space-between;
    align-content: center;
}

.big-dot{
    font-size:2rem;
    padding-right: 15px;
}

.big-dot-header{
    display:flex;
    padding-bottom:20px;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide{

}

.pc-hidden{
    display:none;
}

@media screen and (max-width:640px){
    .main{
        display:block;
    }

    .left{
        width: 100%;
        position: relative;
        border-bottom: 1px solid #000;
    }

    .left .left-footer{
        display:none;
    }

    .right{
        margin-left: 0;
        width: 100%;
    }

    .right .card{
        display:block;
    }

    .right .card:last-child{
        padding-bottom:20px;
    }

    .card-left{
        width:100%;
        margin-right: 0;
    }

    .card-right{
        width: 100%;
    }

    .card-title{
        padding-top: 25px;
    }

    .single-content{
        width:100%;
    }

    img{
        width:100%!important;
        height: auto!important;
    }

    .mobile-hidden{
        display:none;
    }

    .pc-hidden{
        display:block;
    }
}