/*
$breakpoints-min: (
    'xs': 'screen and (min-width: 481px)',
    'sm': 'screen and (min-width: 769px)',
    'md': 'screen and (min-width: 990px)',
    'lg': 'screen and (min-width: 1367px)',
    'xl': 'screen and (min-width: 1921px)',
) !default;
 */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

#body-in {
    padding-top: 110px;
    color: #222;
    /* font-family: "Zen Kaku Gothic New", serif; */
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.8;
    box-sizing: border-box;
    /*
    min-width: $container-width-lg;
    @include sp {
        min-width: 0;
    }
    @include full-width-scroll-x($container-width-lg);
     */
}

@media screen and (max-width: 1239px) {
    #body-in {
        padding-top: 70px;
    }
}

#body-in *,
#body-in *::before,
#body-in *::after {
    box-sizing: border-box;
}

.main-container {
    width: 1200px;
    margin: 98px auto 0;
}

@media screen and (max-width: 767px) {
    .main-container {
        margin-top: 0;
        width: 100%;
    }
}

#main {
    width: 900px;
    float: right;
}

@media screen and (max-width: 767px) {
    #main {
        width: auto;
        margin: 30px auto 0;
        float: none;
    }
}

#side {
    width: 250px;
    float: left;
}

@media screen and (max-width: 767px) {
    #side {
        width: auto;
        margin: 0 auto;
        float: none;
    }
}

a {
    color: #0845A2;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    overflow: hidden;
    text-decoration: none;
}
