/* 全体 */
body {
    margin-bottom: 100px;
    font-family: '游明朝', 'Lato';
}
body:after {
    background: #F9F9F9;
    /*background: linear-gradient(to top, #009688 0%, #ffffff 100%);*/
}

header {
    background: #F9F9F9 !important;
    color: #000000;
    border: none!important;
    box-shadow: 0px 1px 25px rgba(0, 0, 0, 0.1);
    /*background: linear-gradient(to top, #EDECED 0%, #0D9079 30%, #0D9079 100%);*/
}

main {
    margin-left: 0 !important;
}
footer {
    box-shadow: 0px -4px 24px rgba(0, 0, 0, 0.1);
}

/* ヘッダー */
.app-header .navbar-toggler {
    color: #8F82BC;
    margin: 0 .5em 0 0;
}
.app-header .navbar-toggler:hover,
.app-header .navbar-toggler:focus {
    color: #8F82BC !important;
    outline: none;
}
@media (max-width: 991.98px) {
    .app-header .navbar-brand {
        margin-left: 0;
        left: 0;
    }
    #app-title {
        margin-left: 155px;
    }
}
#navbarToggleExternalContent a.btn {
    width: 80% !important;
    white-space: normal !important;
}
.nav.navbar-nav .btn-outline-purple {
    width: 100px;
}
/* 既存クラス */
.card {
    box-shadow: 0px 1px 25px rgba(0, 0, 0, 0.1);
}
.card, .card-body {
    border: none;
    border-radius: 8px;
}
a.card {
    text-decoration: none;
    color: inherit;
}
a.card:hover {
    background-color: #f0f3f5;
}
.form-group label:first-child {
    font-weight: bold;
}
.aside-menu-fixed .aside-menu .tab-content {
    height: calc(100vh - 55px - 230px);
}
.aside-menu-fixed .aside-menu .tab-content.freeShipping {
    height: calc(100vh - 55px - 270px);
}
button:focus {
    outline: none;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background: #8F82BC;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #ffffff;
    background: #8F82BC;
}
.dropdown-item:active {
    color: #FFFFFF;
    background: #8F82BC;
}
/* 独自クラス */
.btn-system {
    color: #fff;
    background-color: #0D9079;
    border-color: #0D9079;
}
.btn-system:hover,
.btn-system:not(:disabled):not(.disabled).active,
.btn-system:not(:disabled):not(.disabled):active,
.show>.btn-system.dropdown-toggle {
    color: #fff;
    background-color: #147F6C;
    border-color: #177766;
}
/*.btn-system.focus,*/
/*.btn-system:focus {*/
/*    box-shadow: 0 0 0 0.2rem rgba(13,144,121,.5);*/
/*}*/

.card-accent-system {
    border-top-color: #0D9079;
    border-top-width: 2px;
}
.btn-purple {
    color: #ffffff!important;
    background: #8F82BC;
    border-color: #8F82BC;
}
.btn-outline-purple {
    color: #8F82BC;
    background-color: transparent;
    background-image: none;
    border-color: #8F82BC;
}
.btn-outline-purple:hover {
    color:#ffffff;
    background-color:#8F82BC;
    border-color:#8F82BC
}
.text-purple {
    color: #8F82BC;
}
.text-purple:hover {
    color: #8F82BC;
}
.btn-red {
    color: #ffffff!important;
    background: #f86c6b;
    border-color: #f86c6b;
}
.btn-red:hover,
.btn-red:not(:disabled):not(.disabled).active,
.btn-red:not(:disabled):not(.disabled):active,
.show>.btn-red.dropdown-toggle {
    color: #fff;
    opacity: 0.8;
    transition: 0.4s;
    background-color: #f86c6b;
    border-color: #f86c6b;
}
.bg-base {
    background: #F9F9F9;
}
.bg-nanaho {
    color: #ffffff;
    background: #8F82BC;
}
.list-group-item-accent-nanaho {
    border-left: 4px solid #8F82BC;
}
/* パンくず */
.breadcrumb {
    list-style: none;
    float: left;
    overflow: hidden;
    padding-left: 1.25rem;
    margin-bottom: .5rem;
}
.breadcrumb li {
    float: left;
    color: #666;
    margin-right: 9px;
}

/* ステップバー */
.stepBar {
    position: relative;
    list-style: none;
    margin: 0 0 1em;
    padding: 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
    *zoom: 1;
}
.stepBar .step {
    position: relative;
    float: left;
    display: table;
    height: 60px;
    padding: 0 20px;
    background-color: #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    font-size: larger;
    font-weight: bold;
}
.stepBar .step:before, .stepBar .step:after {
    position: absolute;
    left: -8px;
    display: block;
    content: '';
    background-color: #fff;
    border-left: 4px solid #eee;
    width: 20px;
    height: 30px;
}
.stepBar .step:after {
    top: 0;
    -moz-transform: skew(30deg);
    -ms-transform: skew(30deg);
    -webkit-transform: skew(30deg);
    transform: skew(30deg);
}
.stepBar .step:before {
    bottom: 0;
    -moz-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -webkit-transform: skew(-30deg);
    transform: skew(-30deg);
}
.stepBar .step:first-child {
    -moz-border-radius-topleft: 4px;
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.stepBar .step:first-child:before, .stepBar .step:first-child:after {
    content: none;
}
.stepBar .step:last-child {
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.stepBar .step.current {
    color: #FFF;
    background-color: #8F82BC
}
.stepBar p {
    display: table-cell;
    vertical-align: middle;
}
.stepBar .step.current:before, .stepBar .step.current:after {
    background-color: #8F82BC
}
.stepBar.step3 .step:nth-child(1),
.stepBar.step3 .step:nth-child(2) {
    width: 34%;
}
.stepBar.step3 .step:nth-child(3) {
    width: 32%;
}
@media (max-width: 767px) {
    .stepBar .step {
        font-size: inherit;
    }
}
#toggle {
    display: block;
    float: right;
    cursor: pointer;
}
#toggle a {
    display: block;
    width: 50px;
    height: 54px;
    font-size: 0;
    color: #8F82BC;
    background: #F9F9F9;
    /*border-radius: 5px;*/
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none !important;
}
#toggle a span {
    display: block;
    width: 24px;
    height: 1px;
    background: #8F82BC;
    position: absolute;
    top: 26px;
    left: 13px;
    transition: all 0.3s;
}
#toggle a.open span { opacity: 0;}
#toggle a:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 1px;
    background: #8F82BC;
    top: 18px;
    left: 13px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
#toggle a:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 1px;
    background: #8F82BC;
    top: 34px;
    left: 13px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
#toggle a.open:before { background: #8F82BC;}
#toggle a.open:after { background: #8F82BC;}
#toggle a.open:before {
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg);
    top: 25px;
    left: 13px;
}
#toggle a.open:after {
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
    top: 25px;
    left: 13px;
}

.img-avatar {
    border: 1px solid #c8ced3;
}

/* 商品一覧 */
#home object {
    display: inline-block;
}
#home .subcategory-link object:not(:last-child)::after {
    content: '/';
}
/*商品一覧 検索フォーム */
@media (min-width: 768px) {
    #home .searchForm {
        margin-top: 1.1rem;
    }
}
#product_search_searchText,
.input-group-prepend.searchButton .input-group-text {
    background: #f5f5f5;
}
#product_search_searchText:focus,
.input-group-prepend.searchButton .input-group-text:focus {
    background: #f5f5f5;
}
#product_search_searchText:focus {
    box-shadow: none;
}
.input-group-prepend.searchButton .input-group-text:focus {
    box-shadow: none;
}
.searchFormFocus {
    box-shadow: 3px 3px 8px 4px rgb(0 0 0 / 12%);
    transition: 0.4s;
}
#product_search_searchText:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f5f5f5 inset;
}
.searchForm .input-group {
    transition: 0.4s;
}
/* ページトップに移動ボタン */
@media (max-width: 576px) {
    .result_footer_background {
        background: #0005!important;
    }

    #return a.btn_return {
        position:fixed;
        bottom:20px;
        right:20px;
        display:block;
        background:#8f82bc url(../img/common/arrow_t_white.svg) center no-repeat;
        width:50px;
        height:50px;
        z-index: 1;
        /*transition:background 0.3s;*/
    }
    /*#return a.btn_return:hover {background:#E30D0D url(../img/common/arrow_t_white.svg) center no-repeat;}*/
    #return a.btn_return span {display:none;}
}
@media (min-width: 577px) {
    #return a.btn_return {
        display: none;
    }
}


/* 発注リスト */
#order-right-panel .order-item-detail span.badge,
#order-right-panel .total-data span.badge {
    min-width: 65px;
}

/* パーツ選択 */
#parts-select #category-list {
    overflow: auto;
    height: calc(100vh - 350px);
    min-height: 400px;
    padding-bottom: 20px;
}
#parts-select #category-list .collapse .list-group-item,
#parts-select #category-list .collapsing .list-group-item {
    margin-left: 48px;
}
#parts-select #category-list a[data-toggle=collapse]:hover {
    z-index: 2;
    color: #fff;
    background-color: #20a8d8;
    border-color: #20a8d8;
}
#parts-select #category-image .tab-content {
    border-color: rgba(0,0,0,.125);
}
#parts-select #category-image .tab-content {
    height: 100%;
}
#parts-select #category-image .tab-pane {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 1rem;
}
#parts-select #category-image .tab-pane img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 1rem;
    max-height: 100%;
    max-width: 100%;
}
@media (max-width: 992px) {
    #parts-select #category-list {
        height: calc(100vh - 310px);
    }
}
@media (min-width: 1300px) {
    .container.parts {
        max-width: 1248px;
    }
}

.parts-table .text-muted {
    font-size: 0.7rem;
}
input[type="text"].changeModal-number::-ms-clear, input[type="text"].changeModal-facNumber::-ms-clear
, .parts-table .parts-row input[type="text"]::-ms-clear, .parts-table input[type="text"].input-number::-ms-clear
, .parts-table input[type="text"].input-facNumber::-ms-clear
, #order_confirm_shabanNo::-ms-clear, #order_confirm_dealerCharge::-ms-clear {
    visibility:hidden;
}
.imageTd {
    width: 125px;
}
.numberTd {
    width: 100px;
}
.facNumberTd {
    width: 170px;
}
@media (min-width: 300px) {
    .searchH4 {
        font-size: 17px;
    }
}
/* スクロール幅の調整 */
.aside-menu .tab-content::-webkit-scrollbar {
    width: 20px;
}
.aside-menu .tab-content::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
/* パーツ一覧 テーブルデザイン */
.parts-table .parts-info {
    display: block;
    white-space: nowrap;
}
.parts-table .parts-info .badge {
    width: 78px;
}

/* 紫ボタン */
/* 独自クラス */
.purpleBtn {
    color: #fff;
    background-color: #8F82BC;
    border-color: #8F82BC;
    transition: 0.4s;
}
.purpleBtn:hover,
.purpleBtn:not(:disabled):not(.disabled).active,
.purpleBtn:not(:disabled):not(.disabled):active,
.show>.purpleBtn.dropdown-toggle {
    color: #fff;
    opacity: 0.8;
    transition: 0.4s;
    background-color: #8F82BC;
    border-color: #8F82BC;
}
.list-group-item-accent-openid,
.list-group-accent-openid {
    border-left: 4px solid #f78c40;
}

/* ログイン画面の 「or」 */
.horizonBar {
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    margin: 40px 0px
}
.horizonBar:before, .horizonBar:after {
    border-top: 1px solid;
    content: "";
    width: 100%; /* 線の長さ */
}
.horizonBar:before {
    margin-right: 1em; /* 文字の右隣 */
}
.horizonBar:after {
    margin-left: 1em; /* 文字の左隣 */
}
/* ホーム */
.searchForm .input-group {
    /*box-shadow: 0px 1px 25px rgba(0, 0, 0, 0.1);*/
    border-radius: 25px;
}
.searchForm .form-control {
    border: none;
    height: 50px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    padding: .375rem 1.75rem;
}
.searchForm .form-control:focus {
    border: none!important;
    outline: 0!important;
}
.searchForm .input-group-text {
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-top-right-radius: 25px!important;
    border-bottom-right-radius: 25px!important;
}
.product-list img {
    width: 100%;
    height: auto;
    max-height: 180px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.card-body.empty {
    opacity: 0.5;
}
.product-list-item {
    transition: 0.4s;
}
.product-list-item .few {
    line-height: 2rem;
}
.product-list-item:hover {
    cursor: pointer;
    opacity: 0.8;
    transition: 0.4s;
}
.product-list-item.soldOut:after {
    content: "完売";
    color: #848484;
    font-size: 3rem ;
    width: 100% ;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}
.product-list-item a {
    color: #000000;
}
.product-list-item a:hover {
    text-decoration: none;
}
.pagination {
    padding: 1rem 0;
}
.page-item {
    padding: 0 0.5rem;
    /*border-radius: 25%;*/
}
.page-link {
    color: #8f82bc;
    transition: 0.4s;
    box-shadow: 0px 1px 25px rgba(0, 0, 0, 0.1);
    border: none;
}
.page-item.active .page-link {
    background: #8f82bc;
}
.page-link:hover {
    color: #8f82bc;
    transition: 0.4s;
    background: none;
}
.page-link:not(.next):not(.previous) {
    border-radius: 50%;
}
.page-link.previous {
    border-radius: 25px 8px 8px 25px!important;
}
.page-link.next {
    border-radius: 8px 25px 25px 8px!important;
}
.product-list-item .cover {
    display: inline-block;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 180px;
    background-size: contain;
}
.product-list-item .card-body {
    overflow: hidden;
}
#home .productName {
    overflow: hidden;
    /* border: 1px solid #ccc; */
    padding: 10px;
    /*width: 332px;*/
    /* background: #eee; */
    line-height: 1.0;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 注文内容確認 */
.order-list-item-thumb {
    width: 30%;
}
.order-list-item-thumb img {
    width: 100%; height: auto
}
.order-list-item-thumb span {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100px;
    display: inherit;
    margin: auto;
}
.order-list-item-content {
    width: 60%
}
.order-action-delete {
    line-height: 2rem;
}

/* 買い物かご */
.cart-action-delete,
.cart-action-change {
    line-height: 2rem;
}
.purchaseNumber {
    border-radius: 50%;
    color: gray;
    transition: 0.4s;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 0px 3px, rgba(0, 0, 0, 0.23) 0px 5px 4px;
    border: none;
    padding: 2px;
    /*padding: 0.35rem .5rem;*/
    font-size: 17px;
    width: 25px;
    height: 25px;
    background-color: #FFF;
    cursor:pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*.orderNumber:hover,*/
.purchaseNumber:not(:disabled):not(.disabled):active,
.show>.purchaseNumber.dropdown-toggle {
    /*background-color: #F7F7F7;*/
    /*border-color: #000000;*/
    box-shadow: rgba(0, 0, 0, 0.15) 0.15px 0.45px 1.6px
}

/*ボトムナビゲーション*/
#fix-phone-under-menu{
    position: fixed;
    width: 102%;
    bottom: 0px;
    z-index: 2;
    background-color: white;
    border-top: 1px solid #E5E5E5;
}
@media (min-width: 576px) {
    .spScreen {
        display: none;
    }
}

@media (min-width: 480px) {
    #fix-phone-under-menu {
        font-size: 16px;
    }
}
#fix-phone-under-menu li{
    display: inline-block;
    width: 44%;
    font-size: 18px;
    border-right: 1px solid #fff;
    margin: 7px 0px 7px 7px;
}
#fix-phone-under-menu li a{
    text-decoration: none;
}
#fix-phone-under-menu li button{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 80%;
}
.grayBtn{
    color: #000000;
    background-color: #DBDBDB;
    border-color: #DBDBDB
}
.grayBtn:hover,
.grayBtn:not(:disabled):not(.disabled).active,
.grayBtn:not(:disabled):not(.disabled):active,
.show>.grayBtn.dropdown-toggle {
    color: #000000;
    background-color: #E8E8E8;
    border-color: #E8E8E8;
}
/* 注文内容確認 */
.order-summary-number, .order-summary-price {
    font-size: x-large;
}
.order-summary-title {
    line-height: 2.2rem;
}
input.coupon {
    border-top-right-radius: .25rem!important;
    border-bottom-right-radius: .25rem!important;
    margin-right: .25rem;
}
/* 注文完了 */
.order-number-title {
    line-height: 1.6rem;
}
.order-number-no {
    font-size: large;
}
/* 注文履歴 */
.status-nav a {
    color: #000000;
    display: block;
    padding: .5rem 1rem;
}
.status-nav a:hover {
    text-decoration: none;
}
.status-nav .active {
    color: #8f82bc;
    border-bottom: 2px solid #8f82bc;
}
@media (max-width: 374px) {
    .status-nav .nav-item {
        font-size: 0.5rem
    }
}
@media (min-width: 375px) {
    .status-nav .nav-item {
        font-size: calc(0.625rem + ((1vw - 3.75px) * 5.7143));
    }
}
@media (min-width: 480px) {
    .status-nav .nav-item {
        font-size: 16px;
    }
}
.again-btn　{
    width: 100% !important;
}
.order-history-list a {
    text-decoration: none;
}
.order-history-list-item-content {
    width: 60%;
}
.order-history-list-item-content p {
    font-size: large;
    font-weight: bold;
}
.order-history-list-item-thumb {
    width: 40%;
}
.order-history-list-item-thumb.sp {
    display: flex;
    align-items: center;
}
.order-history-list-item-thumb img {
    width: 100%;
    height: auto
}
.order-history-list-item-thumb.pc img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}
.order-history-list-item-thumb span {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 320px;
    display: inherit;
    margin: auto;
}
.productBlock:hover {
    cursor: pointer;
    /*opacity: 0.6;*/
    transition: 0.4s;
    background-color: #FCFCFC;
}
.pc .order-history-list-item-content {
    height: 370px;
}