/* 改行の調整 */
.pc-only{
    display: inline-block;
}
.sp-only{
    display: none;
}
.sp_pc_only{
    display: inline-block;
}

@media screen and (min-width:769px) and (max-width:1280px){
    .pc-only{
        display: none;
    }
    .sp-only{
        display: none;
    }
    .sp_pc_only{
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .pc-only{
        display: none;
    }
    .sp-only{
        display: inline-block;
    }
    .sp_pc_only{
        display: inline-block;
    }
}

@media screen and (max-width:768px){
    select, input, textarea{
        width: 100%;
        max-width: 100%;
    }

    .table input{
        max-width: 100%;
    }

    .lower-industry {
        font-size: 2.4rem;
    }

    .lower-main-ttl{
        margin: 120px 0 24px;
    }

    .def-table td{
        padding: 8px 0 24px;
    }

    .form-txt-wrap{
        margin: 16px 0 0;
    }
}

/* 下層ページ 内部リンク */
.page-nav{
    display: block;
}

@media screen and (max-width:768px){
    .page-nav{
        display: none;
    }
}

/* ページ下部のボタン */

.conversion-area{
    padding: 20px 0 240px 0;
}

.btn_navy{
    background: #0B0276;
    color: #fff;
    font-size: 1.8rem;
}
.btn_navy:visited{
    color: #fff;
}

.btn_orange{
    background: linear-gradient(270.63deg, #FF8400 0.53%, #FF2D00 97.18%);
    color: #fff;
    font-size: 1.8rem;
}
.btn_orange:visited{
    color: #fff;
}

.btn-long{
    width: 400px;
}

@media screen and (min-width:769px) and (max-width:1280px){
    .conversion-btn-wrap{
        flex-flow: column;
        margin: 0 auto;
        align-items: center;
        gap: 24px;
    }
}
@media screen and (max-width:768px){
    .conversion-area{
        padding: 64px 0 84px 0;
    }
    .btn_navy, .btn_orange{
        font-size: 1.4rem;
    }

    .conversion-btn-wrap{
        text-align: center;
    }

    .btn-long{
        width: calc(100% - 128px);
        margin: 0 auto;
        line-height: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
}

/* js用 */
.js-changeBg,
.js-bgBlur,
.js-changeTxtColor,
.js-section-border,
.js-linkImg_navy,
.js-page-business,
.js-page-business-changeMenu,
.js-loading
{
	transition-property: all;
	transition-duration: .5s;
	transition-timing-function: ease-in-out;
}

.hideBgColor{
	background: rgba(255,255,255,0) !important;
}

.changeBgColor{
	background: rgba(0,0,51,.85);
}

.changeTxtColor{
	color:rgb(255,255,255);
}

.changeBorderColor{
	background:rgb(255,255,255);
}

.hideLinkNavy{
	opacity: 0;
}

.changeBusinessMenu{
    background: rgba(255, 255, 255, .15);
}

/* ローディング後に表示する */
/* .main{
    opacity: 0;
} */
.loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,1);
    z-index: 12;
}

.loading_after{
    background: rgba(255, 255, 255, 0);
}