* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body.no_scroll{
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  /* Other browsers */
  overscroll-behavior: none;
    height: 100%;
}
.content {
    margin: 0 auto;
    padding: 40px;
}
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}
.modal__bg {
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: relative;
    width: 100vw;
}
.modal__content {
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-height: 87%;
    max-width: 1000px;
    border-radius: 10px;
}
.nonScroll {
    height:calc(100vh + 1px) ;
    width: 1px;
    background-color: transparent;
}
.modal__content_wrap {
    padding: 40px;
    overflow-y: scroll;
    max-height: 87vh;
}
.js-modal-close {
    color: #fff;
    font-size: 55px;
    position: fixed !important;
        font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    top: -45px;
    right: -8px;
}
.modal_title {
    max-width: 130px;
    margin-bottom: 1rem;
}
.modal_item {
    border-bottom: 1px solid #000000;
}
.car_detail_special_modal {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #bb0a30;
    margin-bottom: 2rem;
}
.modal_caption {
    font-size: 14px;
    text-align: left;
    margin-top: 2rem;
}
@media (max-width:559px) {
    .modal__content {
    width: 90%;
    max-height: 87%;
}
    .modal__content_wrap {
    padding: 1rem;
}
.js-modal-close {
    font-size: 30px;
     top: -35px;
    right: -8px;
}
    .car_detail_special_modal {
    margin-top: 1rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
}
    .modal_caption {
    font-size: 12px;
        line-height: 16px;
    margin-top: 1rem;
}
}
