/* -- Primary style -- */

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    /* important for the full-width image to work */
    height: 100%;
    font-family:
        "Open Sans",
        Arial,
        Meiryo,
        "Microsoft YaHei",
        sans-serif;
}

:lang(ja) {
    font-family: Meiryo, Arial, "Microsoft YaHei", sans-serif;
}

:lang(zh) {
    font-family: "Microsoft YaHei", Arial, Meiryo, sans-serif;
}

:lang(en),
:lang(fr),
:lang(de),
:lang(es),
:lang(it),
:lang(pt) {
    font-family: Arial, Meiryo, "Microsoft YaHei", sans-serif;
}

/* Other languages (fallback) */
:lang(*) {
    font-family: sans-serif;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

/* -- Menu --  */

button.navbar-toggler {
    outline: none !important;
    border-color: rgba(0, 0, 0, 0) !important;
}

#navbarResponsive {
    background-color: #8da6ba;
}

#navbarResponsive ul {
    padding: 12px;
}

/* -- /Menu --  */

/* -- Background --  */

#banner {
    width: 100%;
    height: 255px;
    background: url("../img/office-banner.jpg") no-repeat;
}

/* -- /Background -- */

/* -- Cards -- */

.card {
    background-color: #e0ebf4;
}

.section-logo {
    margin-bottom: 12px;
}

ul.custom-list {
    list-style-type: none;
    text-align: left;
    margin-top: 12px;
    margin-left: 0;
    padding-left: 24px;
    padding-right: 24px;
}

ul.custom-list li {
    margin-left: 0;
    padding-left: 0;
}

ul.custom-list li a,
ul.custom-list li p,
ul.custom-list li span {
    margin-left: 22px;
}

ul.custom-list li p {
    margin-bottom: 4px;
}

li.list-download {
    background: url("../img/icon-download.png") no-repeat top left;
}

li.list-link {
    background: url("../img/icon-link.png") no-repeat top left;
}

li.list-note {
    background: url("../img/icon-note.png") no-repeat top left;
}

li.list-help {
    background: url("../img/icon-help.png") no-repeat top left;
}

li.list-hotfix {
    background: url("../img/icon-hotfix.png") no-repeat top left;
}

li.list-video {
    background: url("../img/icon-video.png") no-repeat center left;
}

li.list-book {
    background: url("../img/icon-book.png") no-repeat center left;
}

li.list-tools {
    background: url("../img/icon-tools.png") no-repeat top left;
}

ul.tool-list {
    list-style-type: none;
    padding-left: 0px;
}

.portal-link p {
    padding-left: 24px;
}

.ver {
    font-size: 12px;
    text-align: center;
    color: #282828;
    margin-right: 36px;
    font-weight: bold;
}

.color-block {
    background-color: #c6daeb;
    border-radius: 8px;
    padding: 0;
    margin: 0;
}

.color-block .ver span {
    padding: 0;
    margin: 0;
}

/* -- Side Nav -- */

/* The side navigation menu */

.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: #8da6ba;
    /* Blue-grey*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #0a0a0a;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */

.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.mb-custom-2{
    margin-bottom: 2px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */

#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}
@media (min-width: 1200px) {
  .text-nowrap-xl {
    white-space: nowrap;
  }
}

/* -- /Side Nav -- */