﻿@charset "utf-8";
* {
    box-sizing: border-box;
    outline: 0;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
* {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}
body {
    background: #fff;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Helvetica,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol;
    font-size: 16px;
    color: #333;
    position: relative;
}
a,
img,
button,
input,
textarea,
select {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
a {
    text-decoration: none;
    color: #333;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
li {
    list-style: none;
}
img {
    vertical-align: middle;
    border: none;
}
i {
    font-style: normal;
}

.clear:after{
    content: '';
    height: 0;
    display: block;
    clear: both;
}

.box{
    width: 1440px;
    margin: 0 auto;
}
.pd{
    padding: 60px 0;
}
.mobile{
    display: none;
}
/*scroll*/

/*::-webkit-scrollbar {
    width: 2px;
    height: 2px
}
::-webkit-scrollbar-button:vertical {
    display: none
}
::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: #ccc;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #016EC5;
}
::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #016EC5;
}
::-webkit-scrollbar-thumb:vertical:active {
    background-color: #016EC5;
}*/
@media(max-width: 1440px){
    .box{
        padding: 0 60px;
        width: 100%;
    }
}



@media(max-width: 768px){
    .box{
        padding: 0 20px;
    }
    .pc{
        display: none;
    }
    .mobile{
        display: block;
    }
    .pd{
        padding: 30px 0;
    }
}
