/* # =================================================================
   # productionは白黒反転させる
   # ================================================================= */

body {
    background-color: #fff;
}

.models_nav .btn-simple a {
    border: 2px solid #000;
}

.nav_list {
    color: #000;
}

#list .name,
#list .text {
    color: #000;
}

/* footerの白黒反転
------------------------------ */

#footer {
    border: 0.5px solid #000;
    /*search-openの高さ分*/
    /* margin-bottom: 50px; */
    margin-bottom: 0;
}

#footer .footer_header.flexbox {
    border-bottom: 0.5px solid #000;
}

.footer-item a {
    color: #000;
}

.footer_body {
    color: #000;
}

@media screen and (max-width: 960px) {
    /* モバイルナビゲーション
    ------------------------------ */
    #mobile-navgation.model-only {
        color: #000;
    }
    #mobile-navgation.model-only .mobile_nav_title {
        border-bottom: 1px solid #000;
    }
    /* ハンバーガーメニュー
    ------------------------------ */
    #mobile-header.model-only .mobile-header-menu p {
        background-color: #000;
        color: #fff;
    }
    #mobile-header.model-only .js-hamburger {
        background-color: #000;
    }
    #mobile-header.model-only .js-hamburger span {
        background-color: #fff;
    }
    #mobile-header.model-only .mobile-header-menu {
        background-color: #000;
    }
    #mobile-header.model-only .mobile-header-nav {
        background: rgba(0, 0, 0, 0.9);
    }
    #mobile-header.model-only .mobile-header-item {
        color: #fff;
    }
}

/* # =================================================================
   # productionの1つ1つのボックス
   # ================================================================= */

#list {
    margin-top: 100px;
}

#list .production {
    width: 280px;
    /* padding-top: 25px; */
    padding-top: 1.73vw;
    text-decoration: none;
}

#list .production img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    /* margin-bottom: 20px; */
    margin-bottom: 1.25vw;
}

#list .production p {
    /* font-size: 18px; */
    font-size: 1.25vw;
    /* margin-bottom: 20px; */
    margin-bottom: 1.25vw;
    font-weight: 300;
    color: #666;
    line-height: 1.3;
}

/* # =================================================================
   # productionのスマホ用
   # ================================================================= */
@media screen and (max-width: 960px) {
    #list {
        margin-top: 50px;
    }
    #list .production {
        width: 100%;
        padding-top: 0;
        margin-bottom: 5vw;
    }
    #list .production img {
        width: 100%;
        height: auto;
        margin-bottom: 5vw;
    }
    #list .production p {
        font-size: 3vw;
        margin-bottom: 5vw;
    }
}

/* 【案1】右下コンタクトボタンの白黒反転とサーチと被らないように
------------------------------ */

.cta-contact {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
}

.cta-contact {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}
.cta-contact__text {
    color: #fff;
}
.cta-contact__icon {
    color: #fff;
}
