/* ===============================================
   Basic styles
=============================================== */
body {
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
}

p { margin-bottom: 10px; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }
ul:last-child,
ul li:last-child,
ol:last-child,
ol li:last-child { margin-bottom: 0; }


a div {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ===============================================
   Common styles
=============================================== */
/* =====================================
   Bootstarp fix
===================================== */
.row {
    margin-right: -10px;
    margin-left: -10px;
}
.container,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    padding-right: 10px;
    padding-left: 10px;
}

/* ===========================
   Layout
=========================== */
/* Clearfix */
.clearfix { display: block; }
.clearfix:after {
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    content: "";
}

/* Header */
.header {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #c8c8c8;
}
.header .container {
    padding: 0;
}

/* Footer */
.footer {
    width: 100%;
    padding: 15px;
    background-color: #164199;
}

/* Bootstrap fix */
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9,
.col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9,
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9,
.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-right: 10px;
    padding-left: 10px;
}

/* ===========================
   Navigation
=========================== */
/* Global navigation */
.navbar {
    height: 100px;
    margin-bottom: 0;
    border: none;
    border-bottom: 3px solid #eee;
    background-color: transparent;
}
.navbar > .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    height: inherit;
    padding: 30px 0;
}
.navbar-brand img {
    width: 333px;
    height: auto;
    transition: all 0.3s cubic-bezier(0, 0, 0.7, 1);
}
.navbar-brand span {
    font-size: 28px;
    color: black;
}
.navbar-brand img.honda-logo {
    width: 150px;
    display: inline;
}
.navbar-brand img:hover {
    opacity: 0.7;
}
.navbar-default .navbar-nav > li > a {
    padding: 21px 0;
    color: #164199;
    transition: all 0.3s cubic-bezier(0, 0, 0.7, 1);
}
.navbar-default .navbar-nav > li > a:hover {
    color: #164199;
    background-color: #f0f0f0;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    color: #164199;
    background-color: #e7e7e7;
    border-bottom: 2px solid #164199;
    transition: none;
}
.navbar .container-fluid,
.navbar-collapse { padding: 0; }
.navbar {
    border: none;
}
.navbar .dropdown .fa {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
}
.nav > li {
    width: 100px;
    border-left: 1px solid #c8c8c8;
    text-align: center;
}
.nav > li:last-child {
    border-right: 1px solid #c8c8c8;
}
.nav > li a {
    height: 99px;
    font-size: 11px;
}
.nav > li a span {
    display: block;
    padding-top: 3px;
    font-weight: bold;
}
.navbar-nav > li > .dropdown-menu {
    margin-top: 1px;
    border-top: none;
}
.dropdown-menu {
    left: -1px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dropdown-menu > li > a {
    height: auto !important;
    padding: 8px 13px 8px 27px;
    background: url('../../../img/sp/front/common/arrow-right.png') no-repeat 10px 12px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-brand {
        margin-left: 15px;
    }
}
@media (min-width: 768px) {
    .navbar-nav {
        float: right;
    }
}
@media (max-width: 767px) {
    .header,
    .navbar,
    .nav > li a {
        height: auto;
    }
    .navbar,
    .nav > li a {
        border: none;
        font-size: 13px;
    }
    .header .container {
        padding: 0;
    }
    .navbar-nav {
        margin: 0;
    }
    .navbar-default .navbar-nav > li > a:hover {
        background-color: #eeede3;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        background-image: none;
    }
    .navbar-default .navbar-nav > .open > a {
        border-bottom: 1px solid #fff !important;
    }
    .navbar-default .navbar-nav > .open > a:focus,
    .navbar-default .navbar-nav > .open > a:hover {
        background-color: #eeede3;
    }
    .navbar-default .navbar-toggle {
        margin: 33px 15px 33px 0;
        border: none;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #000;
    }
    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #164199;
    }
    .navbar-default .navbar-toggle:hover .icon-bar,
    .navbar-default .navbar-toggle:focus .icon-bar {
        background-color: #fff;
    }
    .navbar-toggle.login {
        border: 1px solid #c8c8c8;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0, 0, 0.7, 1);
    }
    .navbar-toggle.login:hover {
        background-color: #f0f0f0;
        box-shadow: 0 0 5px #c8c8c8;
    }
    .navbar-brand {
        padding-left: 15px;
    }
    .navbar .dropdown .fa {
        display: none;
    }
    .navbar-collapse,
    .navbar .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
    .navbar-collapse {
        padding: 0;
        border-color: #c8c8c8 !important;
    }
    .nav > li {
        width: 100%;
        min-height: 65px;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid #fff;
    }
    .nav > li:last-child {
        border-bottom: none;
    }
    .nav > li > a {
        padding: 10px 0 !important;
        min-height: 65px;
        background-color: #f0f0f0;
    }
    .nav > li > a > img {
        width: 25px;
        height: auto;
    }
    .navbar-nav > li > .dropdown-menu {
        padding: 0;
        text-align: center;
    }
    .navbar-nav > li > .dropdown-menu li {
        border-bottom: 1px solid #fff;
    }
    .navbar-nav > li > .dropdown-menu li:last-child {
        border-bottom: none;
    }
    .navbar-nav > li > .dropdown-menu li a {
        color: #164199;
        font-weight: bold;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        background-color: #f5f5f5;
        transition: all 0.3s cubic-bezier(0, 0, 0.7, 1);
    }
    .navbar-nav > li > .dropdown-menu li a:hover {
        background-color: #f0f0f0 !important;
    }
}
@media (max-width: 480px) {
    .navbar-default .navbar-toggle {
        margin-top: 8px;
        margin-right: 15px;
        margin-bottom: 8px;
    }
    .navbar-brand {
        width: 200px;
        padding: 15px 15px;
    }
}

/* ===========================
   Footer content
=========================== */
/* Footer logo */
.footer .logo {}

/* Footer link */
.footer-link ul  {
    float: right;
    margin-bottom: 0;
    color: #fff;
    font-size: 12px;
}
.footer-link ul li {
    float: left;
}
.footer-link ul li::after {
    padding: 0 5px;
    content: "/";
}
.footer-link ul li:last-child::after {
    content: "";
}
.footer-link ul li a {
    color: #fff;
}
.footer-link ul li a:hover {
    text-decoration: underline;
}

/* Copyright */
.copyright {
    float: right;
    clear: both;
    color: #fff;
    font-size: 12px;
}

/* ===========================
   Table styles
=========================== */
/* No border table */
table.table-style-1,
table.table-style-1 tr,
table.table-style-1 th,
table.table-style-1 td {
    border: none !important;
}
table.table-style-1 th,
table.table-style-1 td {
    padding: 3px 8px !important;
}

/* Table background grey */
table.table-style-2,
table.table-style-2 tr,
table.table-style-2 th,
table.table-style-2 td {
    border: 1px solid #fff !important;
    border-right: none !important;
    border-left: none !important;
}
table.table-style-2 th {
    border-right: none !important;
}
table.table-style-2 tr {
    background-color: #f5f5f5;
}
table.table-style-2 tr:last-child {
    background-color: #eeede3;
}
table.table-style-2 th:last-child,
table.table-style-2 td:last-child {
    background-color: transparent;
}

/* ===========================
   List styles
=========================== */
/* UL style 1 */
ul.ul-style-1 {
    list-style: none;
    margin-bottom: 20px;
}
ul.ul-style-1 li {
    margin-bottom: 10px;
}
ul.ul-style-1:last-child,
ul.ul-style-1 li:last-child {
    margin-bottom: 0;
}

/* UL style 2 */
ul.ul-style-2 {
    list-style: none;
    margin-bottom: 20px;
}
ul.ul-style-2 li {
    float: left;
    margin-right: 20px;
}
ul.ul-style-2:last-child {
    margin-bottom: 0;
}
ul.ul-style-2 li:last-child {
    margin-right: 0;
}

/* DL style 1 */
dl.dl-style-1 {
    margin-bottom: 20px;
}
dl.dl-style-1 dt {
    float: left;
    width: 80px;
    font-weight: normal;
}
dl.dl-style-1 dd {
    margin-bottom: 10px;
    padding-left: 80px;
}
dl.dl-style-1:last-child,
dl.dl-style-1 dd:last-child {
    margin-bottom: 0;
}
dl.dl-style-1.colon dd:before {
    content: ": "
}

/* ===========================
   Buttons
=========================== */
/* Button type 1 */
.btn-1 {
    width: 380px;
    padding: 6px 0;
    border: 2px solid #000;
    background-color: #000;
    border-radius: 10px;
    color: #fff !important;
    text-align: center;
}
.btn-1:hover {
    background-color: transparent !important;
    color: #000 !important;
}

@media (max-width: 480px) {
    .btn-1 { width: 80%; }
}

.btn-1.red { border: 2px solid #ca1212; background-color: #ca1212; } /* Button color red */
.btn-1.red:hover { color: #ca1212 !important; }

.btn-1.blue { border: 2px solid #164199; background-color: #164199; } /* Button color blue */
.btn-1.blue:hover { color: #164199 !important; }

/* Button small */
.btn-s {
    display: inline-block;
    padding: 1px 5px 0;
    border-radius: 2px;
    background: #164199;
    color: #fff;
    font-size: 11px;
}
.btn-s:focus,
.btn-s:hover {
    background-color: #f3dd23;
    color: #164199;
}

/* Sort button */
.sort-icons,
.sort-icon { display: inline; }

/* ===========================
   Settings
=========================== */
/* List style */
.disc { list-style: disc; margin-left: 17px; }

/* Float */
.fl { float: left !important; }
.fr { float: right !important; }

@media (max-width: 640px) {
    .fl,
    .fr { float: none !important; }
}

/* Z-index */
.zi1   { z-index: 1 !important; }
.zi10  { z-index: 10 !important; }
.zi100 { z-index: 100 !important; }

/* Width */
.full-width { width: 100% !important; }

/* Height */
.auto-height { height: auto !important; }

/* Line height */
.lh32 { line-height: 32px !important; }
.lh34 { line-height: 34px !important; }

/* Margin */
.mt00 { margin-top:    0 !important; }
.mr00 { margin-right:  0 !important; }
.mb00 { margin-bottom: 0 !important; }
.ml00 { margin-left:   0 !important; }

.mt10 { margin-top:    10px !important; }
.mr10 { margin-right:  10px !important; }
.mb10 { margin-bottom: 10px !important; }
.ml10 { margin-left:   10px !important; }

.mt20 { margin-top:    20px !important; }
.mr20 { margin-right:  20px !important; }
.mb20 { margin-bottom: 20px !important; }
.ml20 { margin-left:   20px !important; }

.mt30 { margin-top:    30px !important; }
.mr30 { margin-right:  30px !important; }
.mb30 { margin-bottom: 30px !important; }
.ml30 { margin-left:   30px !important; }

.mt40 { margin-top:    40px !important; }
.mr40 { margin-right:  40px !important; }
.mb40 { margin-bottom: 40px !important; }
.ml40 { margin-left:   40px !important; }

.mt50 { margin-top:    50px !important; }
.mr50 { margin-right:  50px !important; }
.mb50 { margin-bottom: 50px !important; }
.ml50 { margin-left:   50px !important; }

.mt60 { margin-top:    60px !important; }
.mr60 { margin-right:  60px !important; }
.mb60 { margin-bottom: 60px !important; }
.ml60 { margin-left:   60px !important; }

/* Padding */
.pd00 { padding: 0 !important; }
.pd10 { padding: 10px !important; }
.pd20 { padding: 20px !important; }
.pd30 { padding: 30px !important; }
.pd40 { padding: 40px !important; }
.pd50 { padding: 50px !important; }

.pt00 { padding-top: 0 !important; }
.pt10 { padding-top: 10px !important; }
.pt20 { padding-top: 20px !important; }
.pt30 { padding-top: 30px !important; }
.pt40 { padding-top: 40px !important; }
.pt50 { padding-top: 50px !important; }
.pt60 { padding-top: 60px !important; }

.pr00 { padding-right: 0 !important; }
.pr10 { padding-right: 10px !important; }
.pr20 { padding-right: 20px !important; }
.pr30 { padding-right: 30px !important; }
.pr40 { padding-right: 40px !important; }
.pr50 { padding-right: 50px !important; }
.pr60 { padding-right: 60px !important; }

.pb00 { padding-bottom: 0 !important; }
.pb10 { padding-bottom: 10px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb60 { padding-bottom: 60px !important; }

.pl00 { padding-left: 0 !important; }
.pl10 { padding-left: 10px !important; }
.pl20 { padding-left: 20px !important; }
.pl30 { padding-left: 30px !important; }
.pl40 { padding-left: 40px !important; }
.pl50 { padding-left: 50px !important; }
.pl60 { padding-left: 60px !important; }

/* Border */
.btdt { border-top: 1px dotted #c8c8c8 !important; }
.bbdt { border-bottom: 1px dotted #c8c8c8 !important; }
.btds { border-top: 1px dashed #c8c8c8 !important; }
.bbds { border-bottom: 1px dashed #c8c8c8 !important; }
.btsl { border-top: 1px solid #164199 !important; }
.bbsl { border-bottom: 1px solid #164199 !important; }

/* Background */
.bg-none      { background: none !important; }
.bg-navy      { background-color: #164199 !important; }
.bg-darkbrown { background-color: #3e3a39 !important; }
.bg-darkblue  { background-color: #4c5674 !important; }
.bg-red       { background-color: #ca0000 !important; }
.bg-beige     { background-color: #eeede3 !important; }
.bg-grey      { background-color: #f0f0f0 !important; }
.bg-yellow    { background-color: #f3dd23 !important; }
.bg-white     { background-color: #ffffff !important; }
.bg-orange    { background-color: #ff8c00 !important; }
.bg-blue      { background-color: #4169e1 !important; }
.bg-yellow2   { background-color: #f3dd23 !important; }

/* Font */
.fc-black  { color: #000 !important; }
.fc-navy   { color: #164199 !important; }
.fc-grey   { color: #787878 !important; }
.fc-red    { color: #ca0000 !important; }
.fc-yellow { color: #f3dd23 !important; }
.fc-white  { color: #fff !important; }

.fw400 { font-weight: 400 !important; }
.fw800 { font-weight: 800 !important; }
.fwbld { font-weight: bold !important; }

.fs10 { font-size: 10px !important; }
.fs11 { font-size: 11px !important; }
.fs12 { font-size: 12px !important; }
.fs14 { font-size: 14px !important; }
.fs16 { font-size: 16px !important; }
.fs18 { font-size: 18px !important; }
.fs20 { font-size: 20px !important; }
.fs28 { font-size: 28px !important; }
.fs32 { font-size: 32px !important; }

/* Text */
.tal { text-align: left   !important; }
.tac { text-align: center !important; }
.tar { text-align: right  !important; }

.ti14 { text-indent: 14px !important; }


.label { color: black !important }
