@charset "utf-8";

/*-- Page Title / Bread --*/
.common-title{
    background-color: #cb131f;
    background-image: url(../images/common/bg-title.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}
.page-title{
    display: flex;
    align-items: center;
    height: 120px;
    padding: 10px 0;
    color: #fff;
    font-size: 3rem;
    text-shadow: 0 0 5px #cb131f;
}
.bread-list{
    display: flex;
    flex-wrap: wrap;
    margin: 2rem -2.5rem -5px;
    line-height: 1.5;
}
.bread-item{
    position: relative;
    padding: 0 2rem 5px;
    font-size: 14px;
    color: #313131;
}
.bread-item + .bread-item::before{
    content: "≫";
    position: absolute;
    left: -1.25rem;
    color: #313131;
}
.bread-item a:hover{
    opacity: 0.8;
}
@media (min-width: 576px){
    .common-title{
        background-size: contain;
        background-position: right center;
    }
    .page-title{
        font-size: 4rem;
    }
}

/* Keyword */
.single-category-area{
    padding: 2rem 0;
    margin-bottom: 5rem;
}
.single-category-area .keyword-item{
    padding: 5px 10px;
}
.single-category-area .keyword-item > * {
    min-width: 120px;
    font-size: 16px;
}


/* Category navi */
.category-navi{
    position: relative;
    margin-bottom: 2rem;
    line-height: 1;
}
.catnavi-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.catnavi-item{
    width: 33.3333333%;
    padding: 0 5px;
    text-align: center;
}
.catnavi-search{
    width: 100%;
}
.navi-here{
    display: block;
    padding: 10px;
    transition: 0.5s;
}
.navi-here:hover{
    cursor: pointer;
}
.navi-here:hover,
.navi-here.active{
    background-color: #eeeeee;
    border-radius: 5px;
}
.navi-here i{
    padding-left: 10px;
}
.navi-here.active i{
    transform: rotate(180deg);
    padding-left: 0;
    padding-right: 10px;
}
.catnavi-child{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 0;
    background-color: #f6f6f6;
    overflow: hidden;
    transition: 0.5s;
}
.catnavi-child.active{
    height: auto;
    padding: 3rem 0;
    overflow: visible;
}
.keyword-list.container{
    margin-left: auto;
    margin-right: auto;
}
.catnavi-child .keyword-item > *{
    min-width: 120px;
    font-size: 16px;
}
.site-search{
    display: flex;
    max-width: 340px;
    box-shadow: 0 0 30px -20px;
    border: 1px solid #e0e0e0;
    padding: 5px;
}
.site-search input{
    width: calc(100% - 80px);
    max-width: 240px;
    border: 0;
}
.site-search input:focus{
    outline-color: transparent;
}
.search-button{
    width: 80px;
    border: 0;
    background: #f92331;
    background: -moz-linear-gradient(top,  #f92331 0%, #cc131f 100%);
    background: -webkit-linear-gradient(top,  #f92331 0%,#cc131f 100%);
    background: linear-gradient(to bottom,  #f92331 0%,#cc131f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f92331', endColorstr='#cc131f',GradientType=0 );
    padding: 10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
@media (min-width: 576px){
    .catnavi-search{
        width: 33.33333333%;
    }
}

@media (min-width: 992px){
    .catnavi-list{
        flex-wrap: nowrap;
    }
    .catnavi-item,
    .catnavi-search{
        flex-grow: 1;
        width: auto;
    }
}
@media (min-width: 1200px){
    .catnavi-list{
        margin: 0 -15px;
    }
    .catnavi-item{
        padding: 0 15px;
    }
    .navi-here{
        padding: 10px 15px;
    }
}


/*-- Form --*/

.wpcf7c-elm-step2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2em;
}
.wpcf7c-conf {
    background-color: rgb(255, 250, 174);
}
.form-box{
    box-shadow: 0px 0px 30px -20px;
    border: 1px solid #eeeeee;
    padding: 3rem 3rem 5rem;
}
.form-box + .form-box{
    margin-top: 6rem;
}
.contact .form-list + p{
    margin-top: 5rem;
}
.form-explain{
    margin-bottom: 4rem;
    background-color: #f6f6f6;
    padding: 10px 3rem;
}
.form-item{
    margin-bottom: 5px;
    font-weight: bold;
}
.form-item.req::after{
    content: "（必須）";
    color: #cb131f;
}
.form-list dd{
    margin-bottom: 15px;
}
.form-list dd input,
.form-list dd textarea{
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}
.form-list dd input[type=checkbox]{
    width: 16px;
}
.form-list .form-short-box{
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}
.form-list .form-short-box > *{
    width: 50%;
    padding: 0 15px;
}
.form-button{
    margin: 20px -10px -10px;
}
.form-button input{
    display: inline-block;
    width: 100%;
    max-width: 220px;
    margin: 0 10px 10px;
    background-color: #fff;
    padding: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
    transition: 0.5s;
}
.form-button input:hover{
    cursor: pointer;
}
.form-button input[type=submit]{
    border: 1px solid #cb131f;
    color: #cb131f;
}
.form-button input[type=submit]:hover{
    background-color: #cb131f;
    color: #fff;
}
.form-button input[type=button]{
    border: 1px solid #666;
    color: #666;
}
.form-button input[type=button]:hover{
    background-color: #666;
    color: #fff;
}
.form-list dd input[type="file"]{
    margin: 5px 0;
    border: 0;
    padding: 0;
}
.form-list input:focus,
.form-list textarea:focus{
    outline-color: #efefef;
}

.wpcf7 form .wpcf7-response-output{
    margin: 2rem 0 0;
    border: 0;
    padding: 0;
}
.wpcf7-not-valid-tip{
    font-size: 14px;
    line-height: 1.5;
}
span.wpcf7-list-item.first{
    margin-left: 0;
}
@media (min-width: 768px){
    .form-box{
        padding: 6rem 10rem 8rem;
    }
}


/*-- Download archive / single --*/
.dl-content img{
    max-width: 270px;
    filter: drop-shadow(0 0 5px #ccc);
}
.dl-form span.wpcf7-list-item{
    margin-left: 0 !important;
}
.default-button.dl-file{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: none;
}
.default-button.dl-file img{
    width: 27px;
}
.dl-ex-list{
    margin-bottom: -4rem;
}
.dl-ex-list figure{
    width: 50%;
    padding-bottom: 4rem;
}


/*-- Topics arcive / single --*/
.topics-item{
    border-bottom: 1px solid #cfcfcf;
    padding-top: 20px;
    padding-bottom: 3rem;
}
.topics-item:first-child{
    padding-top: 0;
}
.topics-item:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}
.topics-item a{
    display: block;
}
.topics-item a:hover{
    opacity: 0.8;
}
.topics-title{
    margin-bottom: 2rem;
    font-size: 2.2rem;
    line-height: 1.8181818181818;
}
.topics-content{
    font-size: 18px;
    line-height: 1.94444444444444;
}
.topics-content h3{
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    border-bottom: 3px solid #cb131f;
    padding-bottom: 1.5rem;
    font-size: 2.6rem;
}
.topics-content p{
    margin-bottom: 2rem;
}
@media (min-width: 440px){
    .topics-item{
        border-right: 1px solid #cfcfcf;
    }
    .topics-item:nth-child(2){
        padding-top: 0;
    }
    .topics-item:nth-child(2n){
        border-right: 0;
    }
    .topics-item:nth-last-child(2){
        border-bottom: 0;
        padding-bottom: 0;
    }
}
@media (min-width: 768px){
    .topics-item:nth-child(2n){
        border-right: 1px solid #cfcfcf;
    }
    .topics-item:nth-child(3){
        padding-top: 0;
    }
    .topics-item:nth-child(3n){
        border-right: 0;
    }
    .topics-item:nth-last-child(3){
        border-bottom: 0;
        padding-bottom: 0;
    }
}
@media (min-width: 992px){
    .topics-item:nth-child(4){
        padding-top: 0;
    }
    .topics-item:nth-child(3n){
        border-right: 1px solid #cfcfcf;
    }
    .topics-item:nth-child(4n){
        border-right: 0;
    }
    .topics-item:nth-last-child(4){
        border-bottom: 0;
        padding-bottom: 0;
    }
}

/* ------ Case single ----- */
.object-fit-img{
    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: contain;'
}
.case-main-img .object-fit-img{
    max-height: 370px;
    vertical-align: bottom;
}
.case-thumb{
    display: flex;
    margin: 0 -10px;
}
.case-thumb figure{
    width: 33.3333333%;
    padding: 0 10px;
}
.case-thumb .object-fit-img{
    max-height: 106px;
    vertical-align: bottom;
}
.case-spec-table{
    width: 100%;
    border: 1px solid #cfcfcf;
}
.case-spec-table tr{
    border-bottom: 1px solid #cfcfcf;
}
.case-spec-table th,
.case-spec-table td{
    padding: 10px;
    line-height: 1.875;
    vertical-align: middle;
}
.case-spec-table th{
    width: 120px;
    background-color: #eeeeee;
    text-align: center;
}
.case-spec-table td{
    text-align: left;
}
@media (min-width: 992px){
    .case-thumb{
        margin: 0 -20px;
    }
    .case-thumb figure{
        padding: 0 20px;
    }
    .case-spec-table th,
    .case-spec-table td{
        padding: 10px 3rem;
    }
    .case-spec-table th{
        width: 145px;
    }
}


/*-- Facility archive --*/
.facility-item + .facility-item{
    margin-top: 3rem;
}
.facility-item-pic{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.facility-item-table{
    width: 100%;
    border: 1px solid #cfcfcf;
}
.facility-item-table tr{
    border-bottom: 1px solid #cfcfcf;
}
.facility-item-table th,
.facility-item-table td{
    padding: 10px;
    line-height: 1.3875;
    vertical-align: middle;
    text-align: left;
}
.facility-item-table th{
    width: 120px;
    background-color: #eeeeee;
}
@media (min-width: 768px){
    .facility-item-box{
        display: flex;
    }
    .facility-item-pic{
        width: 40%;
        padding: 0;
    }
    .facility-item-text{
        width: 60%;
    }
    .facility-item-table th,
    .facility-item-table td{
        padding: 15px;
    }
}

/*-- Contact 3 --*/
.contact .form-button{
    text-align: center;
}
.contact .form-button input{
    width: calc(100% - 20px);
    max-width: 400px;
}
.contact .topic-bb-title .text{
    display: inline-block;
    position: relative;
    padding: 0 5rem;
}
.contact .topic-bb-title .text::before,
.contact .topic-bb-title .text::after{
    content: "\f071";
    display: inline-block;
    position: absolute;
    top: calc(50% - 2rem);
    color: #cb131f;
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    font-size: 4rem;
    line-height: 1;
}
.contact .topic-bb-title .text::before{
    left: 0;
}
.contact .topic-bb-title .text::after{
    right: 0;
}
.contact .contact-tel{
    font-size: 4rem;
}
.contact .contact-tel img{
    vertical-align: middle;
    max-width: 24px;
}
.contact .form-list dd{
    margin-bottom: 3rem;
}
@media (min-width: 576px){
    .contact .form-list .form-short-box > *{
        max-width: 250px;
    }
}
@media (min-width: 992px){
    .contact .contact-tel{
        font-size: 5rem;
    }
    .contact .contact-tel img{
        max-width: 35px;
    }
}


/* ----- Process ----- */
/* 対応可能な加工 */
.rage-list{
    display: flex;
    flex-wrap: wrap;
}
.range-item{
    margin-right: 10px;
    margin-bottom: 15px;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 18px;
    line-height: 1;
    color: #434343;
}
.pdf-link{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 460px;
    margin: auto;
    border-radius: 10px;
    background-color: #cb131f;
    padding: 2rem;
    color: #fff;
}
.pdf-link img{
    width: 65px;
    padding-right: 15px;
}
.pdf-link .text{
    width: calc(100% - 65px);
    text-align: center;
    font-weight: bold;
}
.process-ex{
    margin-top: 6rem;
}
.xb-title{
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.2rem;
    color: #cb131f;
    overflow: hidden;
}
.xb-title .text{
    display: inline-block;
    position: relative;
    padding: 0 2rem;
}
.xb-title .text::before,
.xb-title .text::after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 650%;
    height: 1px;
    background-color: #aaaaaa;
}
.xb-title .text::before{
    left: -650%;
}
.xb-title .text::after{
    left: 100%;
}
.catalog.default-button.dl-file{
    border-color: #cb131f;
    color: #cb131f;
    font-weight: bold;
}
.catalog.default-button.dl-file:hover{
    background-color: #cb131f;
    color: #fff;
}
.catalog.default-button.dl-file img{
    transition: 0.5s;
}
.catalog.default-button.dl-file:hover img{
    filter: brightness(100) invert(0);
}
@media (min-width: 576px){
    .pdf-link img{
        width: 100px;
        padding: 0 2.5rem;
    }
    .pdf-link .text{
        width: calc(100% - 50px);
        padding-right: 2.5rem;
        font-size: 2.2rem;
    }
}

/* 対応可能な材料 */
.process-content + .process-content{
    padding-top: 8rem;
}
.possible-cap{
    font-size: 18px;
}
.possible-cap + table{
    margin-top: 3rem;
}
.process-talbe table{
    width: 100%;
}
.process-talbe tr{
    border-top: 1px solid #e5e5e5;
}
.process-talbe tr:last-child{
    border-bottom: 1px solid #e5e5e5;
}
.process-talbe td{
    display: block;
    line-height: 1.3875;
    text-align: left;
}
.process-talbe td:nth-child(1){
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0 5px;
}
.process-talbe td{
    padding-bottom: 15px;
}
.process-cap{
    margin-top: 3rem;
    font-weight: bold;
}
@media (min-width: 576px){
    .process-talbe td,
    .process-talbe td:nth-child(1){
        display: table-cell;
        padding: 15px 0;
    }
    .process-talbe td:nth-child(1){
        width: 185px;
    }
    .process-range.process-talbe td:nth-child(1){
        width: 280px;
    }
    .process-talbe td{
        padding: 15px;
    }
}


/* ----- LP ----- */
.head-text-box{
    margin-bottom: 4rem;
}
.head-text{
    margin-bottom: 3rem;
    font-size: 2.8rem;
}
.head-text .fs-large{
    font-size: 1.875em;
    line-height: 1.5;
}
.head-sub-text{
    font-size: 18px;
    line-height: 2.2222222222;
}
.shadow-box{
    box-shadow: 0 0 30px -20px;
    border: 1px solid #e5e5e5;
    padding: 4rem;
}
.point-item + .point-item{
    margin-top: 4rem;
}
.point-box{
    height: 100%;
}
.point-title{
    margin-bottom: 15px;
    color: #cb131f;
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.363636363636364;
}
.point-box p{
    line-height: 1.875;
}
.tie-title{
    margin-bottom: 3rem;
    background-color: #cb131f;
    padding: 10px 15px;
    text-align: center;
    font-size: 2.6rem;
    color: #fff;
}
.pic-list{
    margin-bottom: -4rem;
}
.pic-item{
    margin-bottom: 4rem;
}
.pic-bg{
    background-size: cover;
    background-position: center;
    padding-bottom: 73.07692307692308%;
}
@media (min-width: 576px){
    .head-text{
        font-size: 3rem;
    }
}
@media (min-width: 992px){
    .head-text-box{
        margin-bottom: 0;
    }
    .point-item + .point-item{
        margin-top: 0;
    }
}

/* FLow */
.flow-list{
    overflow: hidden;
}
.flow-item{
    border-top: 1px solid #aaaaaa;
    padding: 3rem 0;
    overflow: hidden;
}
.flow-item:last-child{
    border-bottom: 1px solid #aaaaaa;
}
.flow-item:nth-child(2){
    overflow: visible;
}
.flow-box{
    display: flex;
    align-items: center;
}
.flow-icon{
    position: relative;
    z-index: 3;
    width: 74px;
    padding: 0 10px;
}
.flow-item:nth-child(2) .flow-icon{
    z-index: 2;
}
.flow-icon img{
    vertical-align: bottom;
}
.flow-item:nth-child(1) .flow-icon::before,
.flow-item:nth-child(3) .flow-icon::after,
.flow-item:nth-child(2) .flow-icon::before,
.flow-item:nth-child(2) .flow-icon::after{
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 2px);
    z-index: -1;
    width: 4px;
}
.flow-item:nth-child(1) .flow-icon::before,
.flow-item:nth-child(3) .flow-icon::after{
    height: 120%;
    background-color: #f6f6f6;
}
.flow-item:nth-child(2) .flow-icon::before,
.flow-item:nth-child(2) .flow-icon::after{
    height: 500%;
    background-color: #cb131f;
}
.flow-item:nth-child(1) .flow-icon::before{
    top: -120%;
}
.flow-item:nth-child(2) .flow-icon::before{
    top: -500%;
}
.flow-item:nth-child(3) .flow-icon::after,
.flow-item:nth-child(2) .flow-icon::after{
    top: 100%;
}
.flow-text-box{
    width: calc(100% - 74px);
}
.flow-title{
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.3333333333;
}
.flow-step{
    display: block;
    margin-bottom: 5px;
    color: #cb131f;
}
.flow-title .large{
    padding-left: 5px;
    font-size: 1.7em;
}
.flow-text{
    font-size: 1.8rem;
    line-height: 1.6666666667;
}
.flow-text p{
    position: relative;
    padding-left: 1.8rem;
}
.flow-text p::before{
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
.flow-text p + p{
    margin-top: 10px;
}
@media (min-width: 576px){
    .flow-title{
        font-size: 2.4rem;
    }
    .flow-icon{
        width: 94px;
        padding: 0 20px;
    }
    .flow-text-box{
        width: calc(100% - 94px);
    }
}
@media (min-width: 768px){
    .flow-icon{
        width: 148px;
        padding: 0 20px;
    }
    .flow-item:nth-child(1) .flow-icon::before,
    .flow-item:nth-child(3) .flow-icon::after,
    .flow-item:nth-child(2) .flow-icon::before,
    .flow-item:nth-child(2) .flow-icon::after{
        left: calc(50% - 5px);
        width: 10px;
    }
    .flow-text-box{
        width: calc(100% - 148px);
    }
}
@media (min-width: 992px){
    .head-text{
        font-size: 3.2rem;
    }
    .flow-text-box{
        display: flex;
        align-items: center;
    }
    .flow-title{
        width: 255px;
    }
    .flow-text{
        width: calc(100% - 255px);
        padding-left: 20px;
    }
}
@media (min-width: 1200px){
    .head-text-box{
        padding-right: 4rem;
    }
    .flow-icon{
        width: 230px;
        text-align: right;
    }
    .flow-item:nth-child(1) .flow-icon::before,
    .flow-item:nth-child(3) .flow-icon::after,
    .flow-item:nth-child(2) .flow-icon::before,
    .flow-item:nth-child(2) .flow-icon::after{
        left: auto;
        right: 74px;
        height: 120%;
    }
    .flow-item:nth-child(2) .flow-icon::before{  
        top: -120%;
    }
    .flow-title{
        width: 355px;
        padding: 0 4rem;
        font-size: 3rem;
    }
    .flow-text{
        width: 550px;
        margin-left: auto;
    }
}

/* LP contact */
.lp-contact{
    background-color: #cb131f;
    color: #fff;
}
.lp-contact .section-title{
    margin-bottom: 3rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    font-size: 3.6rem;
    line-height: 1.5;
}
.lp-contact .default-button {
    max-width: 420px;
    margin-left: 0;
    border: 2px solid #fff;
    background-color: transparent;
    font-size: 2rem;
}
.lp-contact .default-button:hover {
    background-color: #fff;
    color: #cb131f;
    font-weight: bold;
}
@media (min-width: 992px){
    .lp-contact .section-title{
        position: relative;
        border-bottom: 0;
    }
    .lp-contact .section-title::after{
        content: "";
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 200%;
        height: 1px;
        background-color: #fff;
    }
    .lp-contact .default-button{
        margin-left: 0;
    }
}
@media (min-width: 1200px){
    .lp-contact .section-title{
        font-size: 4rem;
    }
}
@media (min-width: 1400px){
    .contact-tel-number{
        font-size: 3.7rem;
    }
}


/* pic tie */
.lp-pic-area{
    margin-bottom: 6rem;
}
.col3 .lp-pic-box{
    width: 33.33333333333%;
}
.col4 .lp-pic-box{
    width: 50%;
}
.lp-pic-tie{
    position: relative;
    padding-bottom: 76.59574468085106%;
    background-size: cover;
    background-position: center;
}
.lp-pic-cap{
    display: block;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 5px #000;
}
@media (min-width: 576px){
    .lp-pic-cap{
        bottom: 4rem;
        font-size: 2.6rem;
    }
    .col4 .lp-pic-box{
        width: 25%;
    }
}

/* strength box */
.strength-item{
    padding: 3rem;
}
.strength-item + .strength-item{
    margin-top: 4rem;
}
.strength-title{
    margin-bottom: 2rem;
    color: #cb131f;
    text-align: center;
}
.strength-title > span{
    display: block;
}
.strength-title .num{
    font-size: 6.4rem;
    line-height: 1;
}
.strength-title .text{
    font-size: 2.2rem;
}
.strength-text{
    font-size: 14px;
}
@media (min-width: 576px){  
    .strength-title{
        display: flex;
        align-items: center;
        text-align: left;
    }
    .strength-title .num{
        width: 100px;
    }
    .strength-title .text{
        width: calc(100% - 100px);
        border-left: 1px solid #cb131f;
        padding-left: 3rem;
    }
}
@media (min-width: 992px){
    .strength-item{
        display: flex;
        align-items: center;
        padding: 3rem 5rem;
    }
    .strength-title{
        width: 425px;
        margin-bottom: 0;
    }
    .strength-text{
        width: calc(100% - 425px);
        padding-left: 4rem;
        line-height: 2.14285714285714;
    }
}

/* video */
.video-wrap{
    padding-bottom: 67.85714285714286%;
}
.video-cap{
    margin-top: 10px;
    font-size: 2.2rem;
    line-height: 1.5;
}


/* ----- Form mini ----- */
.form-mini{
    height: 100%;
    border-radius: 10px;
    background-color: #fff;
    padding: 3rem;
    color: #000;
}
.form-mini-title{
    margin-bottom: 10px;
    border-bottom: 1px solid #cb131f;
    padding-bottom: 1rem;
    color: #cb131f;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.5;
}
.form-mini-sub{
    font-size: 2rem;
    line-height: 1.5;
}
.form-mini-inputs{
    margin-top: 15px;
}
.form-input-wrap{
    max-width: 290px;
    margin: 0 auto 20px;
}
.form-input-wrap p + p{
    margin-top: 5px;
}
.form-input-wrap input{
    margin-left: 10px;
}
.form-input-wrap input[type=checkbox]{
    margin: 0 10px 0 0;
}
.form-mini-button{
    width: 100%;
    margin-top: auto;
    border: 1px solid #cb131f;
    background-color: #fff;
    padding: 10px;
    text-align: center;
    color: #cb131f;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.5s;
}
.form-mini-button:hover{
    background-color: #cb131f;
    color: #fff;
    cursor: pointer;
}
@media (min-width: 992px){
    .form-mini-title{
        font-size: 3rem;
    }
    .form-mini-sub{
        font-size: 2.2rem;
    }
}
@media (min-width: 1200px){
    .form-mini-inputs{
        display: flex;
        flex-direction: column;
        height: calc(100% - 12.5rem);
    }
}