@charset "utf-8";
@media only screen and (max-width:1215px){
    #fNavi{display: none;}
    #footer .mainwrapper {padding-bottom: 6.5rem;}
}
:root {
    --bgMustColor: #ffd9d9;
    --txtMustColor: #ff0000;
    --bgOptionalColor: #e0f6ff;
    --txtOptionalColor: #59a4c3;
    --placeholderColor: rgba(34, 34, 34, 0.4);
    --placeholderColorDisabled: rgba(34, 34, 34, 0.22);
    --placeholderColorDisabledDisabled: rgba(34, 34, 34, 0.35);
}

/* placeholderの色指定 */
::placeholder {
    color: var(--placeholderColor);
}

/* disabled 時：プレースホルダー・セレクト表示を薄く */
.secFormTable input:disabled::placeholder,
.secFormTable textarea:disabled::placeholder {
    color: var(--placeholderColorDisabled);
}

.secFormTable select:disabled {
    color: var(--placeholderColorDisabledDisabled);
    cursor: not-allowed;
}

.secFormTable .boxSelect:has(select:disabled)::after {
    opacity: 0.35;
}

/* PHPエラー文 */
.secForm .txtError {
    color: var(--txtMustColor);
    font-size: var(--pcFS12);
    background: url(../img/common/iconError.png) left top / 1.4rem auto no-repeat;
    padding: 0 0 0 1.7rem;
    margin-top: 1.5rem;
    line-height: 1.4rem;
}

/* secCmnForm */
.secCmnForm {
    background-color: var(--whiteColor);
    border-radius: 2rem;
    border: 0.1rem solid var(--gray_lightColor);
    box-shadow: 0 0 1.5rem var(--blackColor_6);
    margin-top: 9rem;
}

.secCmnForm.topMargin {
    margin-top: 0;
}


.secCmnForm .secForm {
    width: calc(100% - 11.8rem);
    margin: 0 auto;
    padding: 4.5rem 0 10rem;
}
.secCmnForm .boxTit {
    width: 100%;
    height: 10rem;
    background: var(--blackColor_333);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem 2rem 0 0;
}
.secCmnForm .txtTitJp {
    color: var(--whiteColor);
    font-size: var(--pcFS22);
    font-weight: bold;
}
.secCmnForm .txtAbout {
    font-size: var(--pcFS13);
    letter-spacing: var(--pcLS13);
    text-align: center;
}
.secCmnForm .flowList {
    display: flex;
    justify-content: center;
    margin: 6rem auto 3.2rem;
    position: relative;
    gap: 5rem;
}
.secCmnForm .flowList::after {
    content: "";
    position: absolute;
    display: block;
    top: 3.5rem;
    left: 50%;
    width: 20rem;
    height: 0.1rem;
    transform: translateX(-50%);
    background: var(--acceptColor);
    z-index: 0;
    pointer-events: none;
}
.secCmnForm .flowList .box {
    position: relative;
    width: 7rem;
    height: 7rem;
    background: var(--whiteColor);
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    font-size: var(--pcFS13);
    letter-spacing: var(--pcLS13);
    color: var(--gray_darkColor);
    border: 0.1rem solid var(--acceptColor);
    border-radius: 50%;
    padding-top: 0.5rem;
    z-index: 1;
}
.secCmnForm .flowList .box.active {
    background: var(--acceptColor);
    color: var(--whiteColor);
    border: 1px solid var(--acceptColor);
}
/* secFormTable */
.secFormTable {
    width: 100%;
    margin: 0 auto;
    font-size: 0;
}
.secFormTable tr {
    display: flex;
    flex-direction: column;
}
.secFormTable tr + tr {
    padding-top: 6rem;
}
.secFormTable tr.hope + tr {
    padding-top: 5rem;
}
.secFormTable td.boxPass {
    position: relative;
}
.secFormTable th {
    width: 100%;
    padding-bottom: 2.2rem;
    font-size: var(--pcFS26);
    border-bottom: 1px solid var(--tableborderColor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.secFormTable th,
.secFormTable td {
    letter-spacing: var(--pcLS26);
    line-height: var(--pcLH26_39);
    vertical-align: top;
}
.secFormTable th .titLabel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.secFormTable th .titLabel .titNote {
    font-size: var(--pcFS12);
    font-weight: normal;
    color: var(--gray_darkColor);
}
.secCmnForm .txtMust,
.secCmnForm .txtOptional {
    color: var(--txtMustColor);
    width: 3.4rem;
    height: 2.1rem;
    border-radius: 0.5rem;
    background: var(--bgMustColor);
    font-size: var(--txtMustColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--pcFS12);
    font-weight: normal;
}
.secCmnForm .txtOptional {
    color: var(--txtOptionalColor);
    background: var(--bgOptionalColor);
}
.secFormTable td {
    vertical-align: middle;
    position: relative;
    width: 100%;
    padding-top: 2.7rem;
}
.secFormTable input[type="text"],
.secFormTable input[type="tel"],
.secFormTable input[type="email"],
.secFormTable input[type="number"],
.secFormTable input[type="password"],
.secFormTable select,
.secFormTable textarea {
    height: 6rem;
    color: var(--textColor);
    background: var(--tablebgColor);
    border-radius: 1rem;
    font-size: var(--pcFS16);
    letter-spacing: var(--pcLS16);
    padding: 0.5rem 2rem;
    font-family: inherit;
    border: none;
    width: 100%;
}
.secFormTable textarea {
    width: 100%;
    height: 15rem;
    padding: 2rem;
    line-height: var(--pcLH16_24);
    resize: none;
}
.secFormTable td .label03 {
    font-size: var(--pcFS16);
}
.secFormTable td .checkPrivacy {
    margin: -0.2rem 1rem 0 0;
}
.secFormTable .txtNote {
    font-size: var(--pcFS12);
    margin-top: 1.4rem;
    margin-left: 2rem;
    line-height: var(--pcLH12_20);
    letter-spacing: var(--pcLS12);
}
.secFormTable .txtNote.privacy {
    margin-top: 1rem;
}
.secFormTable .boxPassIn {
    position: relative;
}
.secFormTable .iconEye {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    cursor: pointer;
}
.secFormTable .boxFlex {
    display: flex;
    align-items: center;
}
.secFormTable .boxFlex.is_col {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}
.secFormTable .boxFlex + .boxFlex {
    margin-top: 1rem;
}
.secFormTable .txtLeft {
    font-size: var(--pcFS16);
    min-width: 11rem;
}
.secFormTable .boxNote {
    display: flex;
    flex-direction: column;
    line-height: var(--pcLH12_20);
    font-size: var(--pcFS12);
    letter-spacing: var(--pcLS12);
}
.secFormTable .flForm {
    display: flex;
    align-items: center;
}
.secFormTable .boxSelect {
    position: relative;
}
.secFormTable select {
    appearance: none;
}
.secFormTable .boxSelect::after {
    content: "";
    position: absolute;
    width: 0.9rem;
    height: 0.7rem;
    background-color: var(--textColor);
    top: calc(50% - 0.4rem);
    right: 2rem;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}
/* boxAgree */
.secForm .boxAgree {
    margin: 5rem 0;
    text-align: center;
    font-weight: bold;
}
.secForm .boxAgree .boxCheck {
    align-items: center;
}
.secForm .boxAgree .txt {
    font-size: var(--pcFS16);
}
.secForm .boxAgree a {
    color: var(--linkColor);
}
.secForm .cmnCoBtn {
    width: 50rem;
    height: 9rem;
    font-size: var(--pcFS20);
    letter-spacing: var(--pcLS20);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem auto 0;
}
.secForm .cmnCoBtn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--formBtnColor);
    background: var(--formBtnColor_gradient);
    background-size: 100% 100%;
    background-position: 0% 50%;
    color: var(--whiteColor);
    border-radius: 1rem;
    opacity: 1 !important;
    transition: 0.3s ease-out !important;
}
.secForm .cmnCoBtn a:hover{
    background: var(--formBtnColor_gradient);
    background-size: 200% 100%;
    background-position: 100% 50%;
}
@media only screen and (max-width:1215px) {
    .secCmnForm {
        position: relative;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 1.5rem;
    }
    .secCmnForm:after{
        position: absolute;
        content: '';
        margin: auto;
        display: block;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 1px 0 var(--blackColor_10);
        mix-blend-mode: multiply;
        z-index: -1;
    }
    .secCmnForm .boxTit {
        height: 5rem;
        border-radius: 0;
    }
    .secCmnForm .txtTitJp {
        font-size: var(--spFS14);
    }
    .secCmnForm .flowList {
        margin: 3rem auto 2rem;
        gap: 3rem;
    }
    .secCmnForm .flowList .box {
        width: 4rem;
        height: 4rem;
        font-size: var(--spFS11);
        letter-spacing: 0;
        padding-top: 0.2rem;
    }
    .secCmnForm .flowList::after {
        width: 14rem;
        top: 2rem;
    }
    .secCmnForm .txtAbout {
        font-size: var(--spFS11);
        letter-spacing: 0;
    }
    .secCmnForm .secForm {
        width: 100%;
        padding: 4rem 0 6rem;
    }
    .secCmnForm .txtMust,
    .secCmnForm .txtOptional {
        width: 3rem;
        height: 1.6rem;
        font-size: var(--spFS10);
    }
    .secFormTable,
    .secFormTable tbody {
        display: block;
    }
    .secFormTable th,
    .secFormTable td {
        padding: 0;
        font-size: var(--spFS13);
    }
    .secFormTable th {
        width: 100%;
        padding-bottom: 1.2rem;
        margin-bottom: 1.4rem;
        font-size: var(--spFS15);
    }
    .secFormTable td {
        width: 100%;
    }
    .secFormTable td.maxTd {
        max-width: 34.5rem;
    }
    .secFormTable th .titLabel {
        gap: 0.3rem;
    }
    .secFormTable th .titLabel .titNote {
        font-size: var(--spFS11);
    }
    .secFormTable input[type="text"],
    .secFormTable input[type="tel"],
    .secFormTable input[type="email"],
    .secFormTable input[type="number"],
    .secFormTable input[type="password"],
    .secFormTable select,
    .secFormTable textarea {
        height: 5rem;
        border-radius: 0.5rem;
        padding: 1.5rem;
        font-size: var(--spFS16);
    }
    .secFormTable select {
        font-size: var(--spFS12);
    }
    .secFormTable textarea {
        height: 15rem;
    }
    .secFormTable input::placeholder,
    .secFormTable textarea::placeholder {
        font-size: var(--spFS12);
    }
    .secFormTable td .label03 {
        font-size: var(--spFS13);
    }
    .secFormTable .txtNote {
        font-size: var(--spFS11);
        line-height: var(--spLH11_19);
        margin-top: 1rem;
        margin-left: 1rem;
    }
    .secFormTable .iconEye {
        top: calc(50% - 0.2rem);
        left: auto;
        right: 1.5rem;
    }
    .secFormTable tr + tr {
        padding-top: 2.5rem;
    }
    .secFormTable .boxFlex {
        align-items: flex-start;
        flex-direction: column;
    }
    .secFormTable .boxFlex.is_col {
        gap: 0.5rem;
    }
    .secFormTable .txtLeft {
        font-size: var(--spFS12);
        min-width: unset;
        margin-bottom: 1rem;
    }
    .secFormTable .boxNote {
        line-height: var(--spLH11_19);
        font-size: var(--spFS11);
        letter-spacing: 0;
    }
    .secFormTable .boxSelect::after {
        width: 0.8rem;
        height: 0.6rem;
        top: calc(50% - 0.3rem);
        right: 1.5rem;
    }
    /* boxAgree */
    .secForm .boxAgree {
        margin: 3rem 0 4rem;
    }
    .secForm .boxAgree .txt {
        font-size: var(--spFS12);
    }
    .secForm .cmnCoBtn {
        width: 100%;
        height: 5rem;
        border-radius: 0.5rem;
        font-size: var(--spFS12);
        margin-top: 3.5rem;
    }
    .secForm .cmnCoBtn a {
        border-radius: 0.5rem;
    }
}



/* チェックボックス */
.secForm .boxRadio,
.secForm .boxCheck{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
}
.secForm .boxRadio.is_row,
.secForm .boxCheck.is_row{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}
.secForm .boxRadio.is_row.gp10{
    gap: 1rem;
    margin-top: 2rem;
}
.secForm .labelRadio input[type="radio"],
.secForm .txtRadio::before,
.secForm input[type="checkbox"],
.secForm .txtCheck::before{
    width: 2.6rem;
    height: 2.6rem;
}
.secForm .labelRadio input[type="radio"],
.secForm input[type="checkbox"]{
    visibility: hidden;
    position: absolute;
    margin: 0;
}
.secForm .labelRadio,
.secForm .labelCheck{
    position: relative;
    display: inline-block;
}
.secForm .txtRadio,
.secForm .txtCheck{
    display: inline-flex;
    align-items: center;
    font-size: 0;
    width: 100%;
}
.secForm .txtRadio::before,
.secForm .txtCheck::before{
    content: "";
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.5rem;
    background: var(--tablebgColor);
    margin-right: 1rem;
}
.secForm .txtRadio::before{
    border-radius: 100%;
}
.secForm input[type="checkbox"]:checked + .txtCheck::before{
    background: url(../img/common/iconCheckbox.png) center center / 1.4rem auto no-repeat,var(--acceptColor);
}
.secForm input[type="radio"]:checked + .txtRadio::after{
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100%;
    background: var(--acceptColor);
    position: absolute;
    top: 0;
    left: 0.6rem;
    bottom: 0;
    margin: auto;
}
.secForm .boxCheck .txt,
.secForm .boxRadio .txt{
    max-width: calc(100% - 3.4rem);
    font-size: var(--pcFS16);
    line-height: var(--pcLH16_24);
    font-weight: bold;
    white-space: nowrap;
}
.secForm .boxCheck .txtMin,
.secForm .boxRadio .txtMin{
    font-size: var(--pcFS12);
    font-weight: normal;
    margin-left: 0.8rem;
}
.secForm .itemRadio_input,
.secForm .itemCheck_input{
    display: flex;
    align-items: center;
}
.secForm .boxRadio + .box_input,
.secForm .boxCheck + .box_input {
    margin-top: 3rem;
}
@media only screen and (max-width:1215px){
    .secForm .boxRadio,
    .secForm .boxCheck{
        gap: 1rem 0;
    }
    .secForm .boxRadio.is_row,
    .secForm .boxCheck.is_row {
        gap: 0.5rem 0;
    }
    .secForm .boxRadio.is_col_sp,
    .secForm .boxCheck.is_col_sp {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
    .secForm .itemRadio,
    .secForm .itemCheck{
        width: 100%!important;
        font-size: 0;
    }
    .secForm .txtCheck::before{
        margin-right: 0.8rem;
    }
    .secForm .boxCheck .txt,
    .secForm .boxRadio .txt{
        max-width: none;
        font-size: var(--spFS12);
        line-height: var(--spLH12_20);
    }
    .co .secForm .txt{
        font-size: var(--spFS12);
        line-height: var(--spLH12_20);
        margin: -1rem 0 0 1rem;
    }
    .secForm .boxCheck .txtMin,
    .secForm .boxRadio .txtMin {
        font-size: var(--pcFS10);
        font-weight: normal;
        margin-left: 0.8rem;
    }
    .secForm .boxRadio + .box_input,
    .secForm .boxCheck + .box_input{
        margin-top: 2rem;
    }
    .secForm .labelRadio input[type="radio"],
    .secForm .txtRadio::before,
    .secForm input[type="checkbox"],
    .secForm .txtCheck::before,
    .secForm .txtRadio::before,
    .secForm .txtCheck::before{
        width: 2rem;
        height: 2rem;
        margin-right: 0.5rem;
    }
    .secForm input[type="radio"]:checked + .txtRadio::after{
        left: calc((2rem - 1.4rem) / 2);
    }
    .secForm input[type="checkbox"]:checked + .txtCheck::before {
        background-size: 1rem auto;
    }
    .secForm .boxRadio.is_row.gp10{
        gap: 1rem;
        margin-top: 1.3rem;
    }
}

/* 幅・スペース指定 */
.secFormTable .mr10 {
    margin-right: 1rem;
}
.secFormTable .mr20 {
    margin-right: 2rem;
}
.secFormTable .mt10 {
    margin-top: 1rem;
}
.secFormTable .mt15 {
    margin-top: 1.5rem;
}
.secFormTable input[type="tel"].w300,
.secFormTable input[type="text"].w300 {
    width: 30rem;
}
.secFormTable .w200 {
    width: 20rem;
}
.secFormTable .w300 {
    width: 30rem;
}
.secFormTable .w400 {
    width: 40rem;
}
.secFormTable .w740 {
    width: 74rem;
}
.secFormTable .w100p {
    width: 100%;
}
@media only screen and (max-width:1215px) {
    .secFormTable .ws100p {
        width: 100%;
    }
    .secFormTable .ws140 {
        width: 14rem;
    }
    .secFormTable .mts10 {
        margin-top: 1rem;
    }
    .secFormTable input[type="tel"].w300,
    .secFormTable input[type="text"].w300 {
        width: 100%;
    }
    .secFormTable .mt15 {
        margin-top: 1rem;
    }
}

@media only screen and (max-width:370px) {
    .secFormTable .ws140 {
        width: 11rem;
    }
}

/* / datepicker / */
.ui-widget.ui-widget-content{
	z-index: 1000 !important;
	font-size: var(--pcFS15);
}
@media only screen and (max-width:1215px){
	.ui-widget.ui-widget-content{
		font-size: var(--spFS17);
	}
}

/* 希望条件アコーディオン */
/* .hopeAccordion.is-closed > tr:not(.hopeAccordionHead) {
    display: none;
}

.secFormTable tr.hopeAccordionHead {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.secFormTable .hopeAccordionHead .boxHope {
    position: relative;
    padding-right: 3.6rem;
}

.secFormTable .hopeAccordionHead .boxHope::after {
    content: "";
    position: absolute;
    right: 2.4rem;
    top: 50%;
    width: 0.9rem;
    height: 0.7rem;
    margin-top: -0.35rem;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: currentColor;
    transition: transform 0.25s ease;
}

.secFormTable .hopeAccordion:not(.is-closed) .hopeAccordionHead .boxHope::after {
    transform: rotate(180deg);
} */

/*-----------------------------------------------
    co(確認ページ)
-----------------------------------------------*/
.secCmnForm.co td{
    font-size: var(--pcFS16);
}
.co .btnForm.no_tap,
.co .btnSendCoBack.no_tap {
    opacity: 0.3 !important;
    pointer-events: none !important;
    transition: none !important;
}
.co .cmnCoBtn .btnSendCo.no_tap {
    background: url(../img/common/iconLoader.png) center center / 32px auto no-repeat var(--endColor) !important;
    font-size: 0 !important;
    opacity: 0.3 !important;
    pointer-events: none !important;
    transition: none !important;
}
.secForm .cmnCoBtn.btnBack{
    width: 36rem;
    height: 7rem;
    margin: 3rem auto 0;
    font-size: var(--pcFS18);
}
.secForm .cmnCoBtn.btnBack a{
    background: var(--whiteColor);
    color: var(--textColor);
    border: 1px solid var(--tableborderColor);
}

@media only screen and (max-width:1215px) {
    .secForm .cmnCoBtn.btnBack{
        width: 92%;
        height: 5rem;
        margin: 2rem auto 0;
        font-size: var(--spFS12);
    }
}

/*-----------------------------------------------
    ok(完了ページ)
-----------------------------------------------*/
.co.secCmnForm,
.ok.secCmnForm{
    margin-top: 0;
}
.ok .txtOk{
    font-size: var(--pcFS20);
    line-height: calc(30 / 20);
    letter-spacing: 0.04em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}
.ok .redtxt{
    color: var(--redColor);
}
.ok .boxRed{
    padding: 2rem;
    border: 1px solid var(--redColor);
    font-size: var(--pcFS16);
    line-height: calc(24 / 16);
    margin-top: 2rem;
}
.ok .titRed{
    font-size: var(--pcFS22);
    letter-spacing: 0.04em;
    line-height: calc(33 / 22);
    font-weight: bold;
}
.ok .txtLine{
    font-size: var(--pcFS13);
    line-height: calc(26 / 13);
    letter-spacing: 0.04em;
    margin-top: 2rem;
}
.ok .yellow_line {
    background: var(--yellowColor);
}
.ok .titOk {
    font-size: var(--pcFS30);
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}
.ok.secCmnForm .secForm {
    padding: 4rem 0 10rem;
}

@media only screen and (max-width:1215px) {
    .ok .titOk {
        font-size: var(--spFS20);
        letter-spacing: 0;
    }
    .ok .titRed {
        font-size: var(--spFS20);
        letter-spacing: 0;
        margin-bottom: 2rem;
    }
    .ok .txtLine {
        font-size: var(--spFS13);
        line-height: var(--spLH13_20);
    }
    .ok .boxRed {
        padding: 1.5rem;
        font-size: var(--spFS11);
        line-height: var(--spLH11_19);
        margin-top: 1.5rem;
    }
    .ok .txtOk {
        font-size: var(--spFS20);
        line-height: calc(20 / 13);
        letter-spacing: 0;
        margin-bottom: 2rem;
    }
    .ok.secCmnForm .secForm {
        padding: 2rem 0 6rem;
    }
}

/* hideQes */
.secFormTable .hideQes{
    width: 100%;
    padding: 2.5rem 4rem 0;
    display: none;
}
.secFormTable .hideQes .th {
    font-size: var(--pcFS18);
    font-weight: bold;
    margin-bottom: 1rem;
}
@media only screen and (max-width:1215px) {
    .secFormTable .hideQes{
        padding: 2.5rem 0 0;
    }
    .secFormTable .hideQes .th {
        font-size: var(--spFS15);
        padding-bottom: 1.2rem;
        margin-bottom: 1.4rem;
        border-bottom: 1px solid var(--tableborderColor);
    }
}

/* boxFile（カスタムファイル選択） */
.boxFile {
    max-width: 56rem;
}
.boxFileRow {
    display: flex;
    align-items: stretch;
}
.boxFile .displayFileName {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 1.2rem 1.5rem;
    font-size: var(--pcFS14);
    line-height: 1.5;
    color: var(--textColor);
    background: var(--whiteColor);
    border: 0.1rem solid var(--tableborderColor);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.boxFile .displayFileName:not(.isSet) {
    color: var(--placeholderColor);
}
.boxFile .btnFileSelect {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 -0.1rem;
    padding: 1.2rem 2rem;
    font-size: var(--pcFS14);
    font-weight: bold;
    color: var(--whiteColor);
    background: var(--blackColor_333);
    border: 0.1rem solid var(--blackColor_333);
    cursor: pointer;
    transition: opacity 0.2s;
}
.boxFile .btnFileSelect:hover {
    opacity: 0.85;
}
.boxFile .inputFileHidden {
    position: absolute;
    width: 0.1rem;
    height: 0.1rem;
    padding: 0;
    margin: -0.1rem;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.boxFile .unsetUpload {
    display: none;
    margin-top: 1rem;
    font-size: var(--pcFS12);
    color: var(--gray_darkColor);
    text-decoration: underline;
}
@media only screen and (max-width:1215px) {
    .boxFile .displayFileName,
    .boxFile .btnFileSelect {
        font-size: var(--spFS13);
        padding: 1rem 1.2rem;
    }
    .boxFile .btnFileSelect {
        padding: 1rem 1.5rem;
    }
}
/* ▼260615 */
.secFormTable tr.normal:not(.active),
.secFormTable tr.typeBusiness:not(.active){
    display: none;
}
/* ▼LPフォーム */
.secFormTable .requestbox{
    width: 100%;
}
.secFormTable .requestbox .requestlist{
    width: 100%;
}
.secFormTable .requestbox .itemRequest{
    width: 100%;
}
.secFormTable .requestbox .itemRequest + .itemRequest{
    margin-top: 2.5rem;
}
.secFormTable .requestbox .reqtit{
    width: 100%;
}
.secFormTable .requestbox .r_tit{
    position: relative;
    display: flex;
    align-items: center;
    font-size: var(--pcFS16);
    line-height: var(--pcLH16_24);
    font-weight: bold;
}
.secFormTable .requestbox .txtMust,
.secFormTable .requestbox .txtOptional{
    margin-left: 1rem;
}
.secFormTable .requestbox .r_content{
    width: 100%;
    margin-top: 1rem;
}
.secFormTable .requestbox .rankList{
    width: 100%;
}
.secFormTable .requestbox .itemRank{
    width: 100%;
}
.secFormTable .requestbox .itemRank + .itemRank{
    margin-top: 1rem;
}
.secFormTable .requestbox .rankInner{
    width: 100%;
    display: flex;
    align-items: center;
}
.secFormTable .requestbox .ranktitbox{
    font-size: var(--pcFS16);
    line-height: var(--pcLH16_24);
    font-weight: bold;
    width: 10rem;
}
.secFormTable .requestbox .rankbox{
    width: calc(100% - 10rem);
    padding-left: 1rem;
}
.secFormTable .requestbox .otherbox{
    width: 100%;
    margin-top: 1rem;
}
.secFormTable .requestbox .itemRank option:disabled{
    color: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width:1215px){
    /* ▼フォーム */
    .secFormTable .requestbox .itemRequest + .itemRequest{
        margin-top: 1.5rem;
    }
    .secFormTable .requestbox .reqtit{
        width: 100%;
    }
    .secFormTable .requestbox .r_tit{
        font-size: var(--spFS12);
    }
    .secFormTable .requestbox .txtMust,
    .secFormTable .requestbox .txtOptional{
        margin-left: 0.5rem;
    }
    .secFormTable .requestbox .r_content{
        margin-top: 1rem;
    }
    .secFormTable .requestbox .itemRank + .itemRank{
        margin-top: 0.5rem;
    }
    .secFormTable .requestbox .ranktitbox{
        font-size: var(--spFS12);
        width: 6rem;
    }
    .secFormTable .requestbox .rankbox{
        width: calc(100% - 6rem);
        padding-left: 0.5rem;
    }
}
.secForm .boxBudget{
    margin-top: 1rem;
    display: none;
}