@charset "UTF-8";

/* ----- Foundation ----- */
.bpduss {
    color: #000000;
    font-size: 14px;
    line-height: 1.2;
}
.bpduss input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
/* IE */
.bpduss input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}
/* Edge */
.bpduss input::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}
.bpduss input[type="radio"],
.bpduss input[type="checkbox"] {
    display: none;
}
.bpduss select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.bpduss select::-ms-expand {
    display: none;
}
.bpduss button {
    cursor: pointer;
}

/* ----- Layout ----- */
/* l_container */
.l_container {
    position: relative;
    padding-bottom: 90px;
}
.l_container__inner {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
}

@media screen and (max-width: 768px) {
    .l_container {
        padding-bottom: 70px;
    }
}

/* l_column */
.l_column {
    display: flex;
    flex-wrap: wrap;
}
.l_column__1of2 {
    width: 50%;
    max-width: 50%;
    box-sizing: border-box;
}
.l_column__1of2--auto {
    width: auto;
    max-width: 100%;
}
.l_column__1of2:nth-child(2n) {
    padding-left: 15px;
}
.l_column__1of2:nth-child(2n-1) {
    padding-right: 15px;
}

@media screen and (max-width: 768px) {
    .l_column {
        display: block;
    }
    .l_column > * + * {
        margin-top: 15px;
    }
    .l_column--hm10 > * + * {
        margin-top: 10px;
    }
    .l_column__1of2 {
        width: 100%;
        max-width: 100%;
    }
    .l_column__1of2:nth-child(2n) {
        padding-left: 0;
    }
    .l_column__1of2:nth-child(2n-1) {
        padding-right: 0;
    }
}


/* ----- Component ----- */
/* c_heading1 */
.c_heading1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0044a6;
    font-size: 46px;
    height: 150px;
    background-color: #f0f7fd;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .c_heading1 {
        font-size: 28px;
        height: 120px;
    }
}

/* c_heading2 */
.c_heading2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0044a6;
    font-size: 32px;
    margin-bottom: 60px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .c_heading2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

/* c_button */
.c_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    min-width: 262px;
    height: 60px;
    padding: 0 30px;
    border-radius: 30px;
    box-sizing: border-box;
    transition: opacity 0.25s ease;
}
.c_button:hover {
    opacity: 0.6;
}
.c_button:disabled {
    opacity: 1;
    cursor: auto;
}
.c_button--primary {
    color: #0044a6;
    background-color: #ffffff;
    border: solid #0044a6 2px;
}
.c_button--primary:disabled {
    color: #dae2e8;
    border-color: #dae2e8;
}
.c_button--checkbox {
    background-color: #dae2e8;
    cursor: pointer;
}
.c_button--checkbox span {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: all 0.25s ease;
}
.c_button--checkbox span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 12px;
    border-right: solid #dae2e8 2px;
    border-bottom: solid #dae2e8 2px;
    box-sizing: border-box;
    transform: translate(-50%, -50%) rotate(45deg);
}
input[type="checkbox"]:checked + .c_button--checkbox {
    color: #ffffff;
    background: linear-gradient(to right, #1d82cf, #77abe5);
}
input[type="checkbox"]:checked + .c_button--checkbox span {
    width: 10px;
    height: 10px;
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .c_button {
        font-size: 14px;
    }
}

/* c_list */
.c_list {
    font-size: 14px;
}
.c_list--error {
    color: #bf0000;
    padding: 40px 30px;
    border: solid #bf0000 2px;
}
.c_list .c_list {
    padding-left: 1em;
}
.c_list > * {
    position: relative;
    padding-left: 1em;
}
.c_list--note > * {
    padding-left: 1.2em;
}
.c_list--error > * {
    padding-left: 1.2em;
}
.c_list > * + * {
    margin-top: 10px;
}
.c_list > *::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
.c_list--note > *::before {
    content: "※";
}
.c_list--error > *::before {
    content: "※";
}
.c_list--number > *:nth-child(1):before { content: "1."; }
.c_list--number > *:nth-child(2):before { content: "2."; }
.c_list--number > *:nth-child(3):before { content: "3."; }
.c_list--number > *:nth-child(4):before { content: "4."; }
.c_list--number > *:nth-child(5):before { content: "5."; }
.c_list--numberCircle > *:nth-child(1):before { content: "①"; }
.c_list--numberCircle > *:nth-child(2):before { content: "②"; }
.c_list--numberCircle > *:nth-child(3):before { content: "③"; }
.c_list--numberCircle > *:nth-child(4):before { content: "④"; }
.c_list--numberCircle > *:nth-child(5):before { content: "⑤"; }

@media screen and (max-width: 768px) {
    .c_list {
        font-size: 12px;
    }
    .c_list--error {
        padding: 20px 15px;
    }
}

/* c_table */
.c_table {
    width: 100%;
}
.c_table thead tr {
    font-weight: bold;
    background-color: #e8edf1;
}
.c_table tbody tr {
    border-bottom: solid #e8edf1 1px;
}
.c_table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
.c_table tbody tr:nth-child(even) {
    background-color: #f5f8fa;
}
.c_table tr > *:nth-child(1) {
    width: 12%;
}
.c_table tr > *:nth-child(2) {
    width: 22%;
}
.c_table tr > *:nth-child(3) {
    width: 30%;
}
.c_table tr > *:nth-child(4) {
    width: 10%;
}
.c_table tr > *:nth-child(5) {
    width: 26%;
}
.c_table th {
    padding: 20px 15px;
    box-sizing: border-box;
    vertical-align: top;
}
.c_table th:first-child {
    padding-left: 30px;
}
.c_table th:last-child {
    padding-right: 30px;
}
.c_table td {
    padding: 30px 15px;
    box-sizing: border-box;
    vertical-align: top;
}
.c_table td:first-child {
    padding-left: 30px;
}
.c_table td:last-child {
    padding-right: 30px;
}
.c_d_warn {
    padding: 20px 30px;
    line-height: 1.8;
    margin-bottom: 90px;
    border-bottom: solid #e8edf1 1px;
}

@media screen and (max-width: 768px) {
    .c_table {
        font-size: 12px;
    }
    .c_table thead tr {
        display: none;
    }
    .c_table tbody tr:first-child {
        border-top: solid #e8edf1 1px;
    }
    .c_table tr > * {
        width: 100% !important;
    }
    .c_table td {
        display: flex;
        align-items: center;
    }
    .c_table td {
        padding: 7.5px 20px;
    }
    .c_table td:first-child {
        padding: 20px 20px 7.5px;
    }
    .c_table td:last-child {
        padding: 7.5px 20px 20px;
    }
    .c_table td::before {
        content: "";
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        width: 80px;
        height: 24px;
        margin-right: 10px;
        background-color: #e8edf1;
        border-radius: 12px;
    }
    .c_table td:nth-child(1)::before {
        content: "利用者番号";
    }
    .c_table td:nth-child(2)::before {
        content: "法人名";
    }
    .c_table td:nth-child(3)::before {
        content: "法人名カナ";
    }
    .c_table td:nth-child(4)::before {
        content: "郵便番号";
    }
    .c_table td:nth-child(5)::before {
        content: "登記住所";
    }
    .c_d_warn {
        font-size: 12px;
        margin-bottom: 45px;
    }
}

/* c_input */
.c_input[type="text"] {
    font-weight: bold;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    background-color: #ffffff;
    border-radius: 20px;
    box-sizing: border-box;
}
.c_input--w286[type="text"] {
    max-width: 286px;
}
.c_input[type="radio"] + label {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.c_input[type="radio"] + label::before {
    content: "";
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.25s ease;
}
.c_input[type="radio"] + label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.25s ease;
}
.c_input[type="radio"]:checked + label {
    color: #ffffff;
}
.c_input[type="radio"]:checked + label::before {
    background-color: #ffffff;
}
.c_input[type="radio"]:checked + label::after {
    background-color: #0044a6;
}

@media screen and (max-width: 768px) {
    .c_input[type="text"] {
        font-size: 12px;
    }
    .c_input[type="radio"] + label {
        font-size: 12px;
    }
}

/* c_select */
.c_select {
    font-weight: bold;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    background-color: #ffffff;
    border-radius: 20px;
    box-sizing: border-box;
}
.c_select.s_none {
    color: rgba(0, 0, 0, 0.3);
}
.c_select.s_none option {
    color: #000000;
}

@media screen and (max-width: 768px) {
    .c_select {
        font-size: 12px;
    }
}

/* c_label */
.c_label {
    color: #0044a6;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .c_label {
        font-size: 18px;
    }
}

/* ----- Object ----- */
/* p_lead */
.p_lead {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    height: 116px;
    margin-bottom: 90px;
    padding: 0 10px;
    background-image: url("../images/pc/bg_lead_01.png");
    background-position: center;
    background-size: cover;
    line-height: 1.5;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .p_lead {
        font-size: 18px;
        margin-bottom: 210px;
        background-image: url("../images/sp/bg_lead_01.png");
    }
}

/* p_step */
.p_step {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    transform: translateY(-50%);
}
.p_step > * {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    background-color: #dae2e8;
    border-radius: 50%;
}
.p_step > *.s_current {
    background-color: #0044a6;
}
.p_step > * + * {
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    .p_step {
        margin-bottom: 40px;
    }
    .p_step > * {
        font-size: 16px;
    }
}

/* p_company */
.p_company {
    display: flex;
    align-items: center;
}
.p_company__label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    height: 34px;
    padding: 0 17px;
    margin-right: 15px;
    background-color: #0044a6;
    border-radius: 17px;
}
.p_company__value {
    color: #0044a6;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .p_company__label {
        font-size: 18px;
        height: 32px;
        padding: 0 16px;
        border-radius: 16px;
    }
    .p_company__value {
        font-size: 12px;
    }
}

/* p_inputArea */
.p_inputArea {
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: #f0f7fd;
}
.p_inputArea + .p_inputArea {
    margin-top: 2px;
}
.p_inputArea__label {
    flex-shrink: 0;
    padding-right: 15px;
    box-sizing: border-box;
}
.p_inputArea__value {
    flex-grow: 1;
    padding-left: 15px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .p_inputArea {
        display: block;
        padding: 20px;
    }
    .p_inputArea__label {
        margin-bottom: 15px;
        padding-right: 0;
    }
    .p_inputArea__value {
        padding-left: 0;
    }
}

/* p_radioArea */
.p_radioArea {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 50px;
    margin-bottom: 20px;
    padding: 0 30px;
    background-color: #6fa3de;
    border-radius: 25px;
}
.p_radioArea::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-top: solid #6fa3de 10px;
    border-right: solid transparent 9px;
    border-left: solid transparent 9px;
    transform: translate(-50%, 100%);
}

@media screen and (max-width: 768px) {
    .p_radioArea {
        height: auto;
        margin-bottom: 15px;
        padding: 10px 20px;
    }
}

/* p_selectArea */
.p_selectArea {
    display: flex;
    align-items: center;
}
.p_selectArea__label {
    color: #0044a6;
    font-weight: bold;
    padding-right: 7.5px;
    box-sizing: border-box;
}
.p_selectArea__value {
    position: relative;
    flex-grow: 1;
    padding-left: 7.5px;
    box-sizing: border-box;
}
.p_selectArea__value::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-right: solid #0044a6 2px;
    border-bottom: solid #0044a6 2px;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .p_selectArea__label {
        font-size: 12px;
    }
}

/* p_flame */
.p_flame {
    padding: 25px;
    border: solid #e7ecf0 2px;
}

@media screen and (max-width: 768px) {
    .p_flame {
        padding: 25px 20px;
    }
}

/* p_buttonArea */
.p_buttonArea {
    margin-top: 30px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .p_buttonArea {
        margin-top: 20px;
    }
}

/* p_isAgree */
.p_isAgree {
    position: relative;
    padding: 30px;
    text-align: center;
}
.p_isAgree::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: solid #7fa1d2 10px;
    border-right: solid transparent 10px;
    border-left: solid transparent 10px;
    transform: translate(-50%, -50%);
}
.p_isAgree > * + * {
    margin-top: 90px;
}

@media screen and (max-width: 768px) {
    .p_isAgree {
        padding: 20px;
    }
    .p_isAgree > * + * {
        margin-top: 70px;
    }
}

/* p_computer */
.p_computer {
    position: absolute;
    top: 142px;
    right: 0;
    width: calc(425 * 100% / 1366);
    max-width: 425px;
}

@media screen and (max-width: 768px) {
    .p_computer {
        top: 230px;
        width: 390px;
    }
}

/* ----- Utility ----- */
.u_fsS { font-size: 14px; }
.u_fsM { font-size: 16px; }
.u_fsL { font-size: 18px; }

.u_fwBold { font-weight: bold; }

.u_taLeft { text-align: left; }
.u_taRight { text-align: right; }
.u_taCenter { text-align: center; }

.u_mtS { margin-top: 20px; }
.u_mrS { margin-right: 20px; }
.u_mbS { margin-bottom: 20px; }
.u_mlS { margin-left: 20px; }

.u_mtM { margin-top: 30px; }
.u_mrM { margin-right: 30px; }
.u_mbM { margin-bottom: 30px; }
.u_mlM { margin-left: 30px; }

.u_mtL { margin-top: 40px; }
.u_mrL { margin-right: 40px; }
.u_mbL { margin-bottom: 40px; }
.u_mlL { margin-left: 40px; }

.u_mt60-30 { margin-top: 60px; }
.u_mr60-30 { margin-right: 60px; }
.u_mb60-30 { margin-bottom: 60px; }
.u_ml60-30 { margin-left: 60px; }
.u_mt90-45 { margin-top: 90px; }
.u_mr90-45 { margin-right: 90px; }
.u_mb90-45 { margin-bottom: 90px; }
.u_ml90-45 { margin-left: 90px; }

.u_pr10 { padding-right: 10px; }
.u_pl10 { padding-left: 10px; }

.u_mt15 { margin-top: 15px; }

.u_mr15 { margin-right: 15px; }

.u_mb15 { margin-bottom: 15px; }

.u_ml15 { margin-left: 15px; }

.u_emphasis {
    color: #bf0000;
}

.u_isPc {
    display: inline-block;
}
.u_isSp {
    display: none;
}

@media screen and (max-width: 768px) {
    .u_fsS { font-size: 12px; }
    .u_fsM { font-size: 14px; }
    .u_fsL { font-size: 16px; }

    .u_mtS { margin-top: 15px; }
    .u_mrS { margin-right: 15px; }
    .u_mbS { margin-bottom: 15px; }
    .u_mlS { margin-left: 15px; }

    .u_mtM { margin-top: 25px; }
    .u_mrM { margin-right: 25px; }
    .u_mbM { margin-bottom: 25px; }
    .u_mlM { margin-left: 25px; }

    .u_mtL { margin-top: 35px; }
    .u_mrL { margin-right: 35px; }
    .u_mbL { margin-bottom: 35px; }
    .u_mlL { margin-left: 35px; }

    .u_mt60-30 { margin-top: 30px; }
    .u_mr60-30 { margin-right: 30px; }
    .u_mb60-30 { margin-bottom: 30px; }
    .u_ml60-30 { margin-left: 30px; }
    .u_mt90-45 { margin-top: 45px; }
    .u_mr90-45 { margin-right: 45px; }
    .u_mb90-45 { margin-bottom: 45px; }
    .u_ml90-45 { margin-left: 45px; }
    
    .u_isPc {
        display: none;
    }
    .u_isSp {
        display: inline-block;
    }
}

/* #Error */
#Error {
    display: none;
}
#Error.s_show {
    display: block;
}

/* JavaScript */
.jsToggleContent {
    display: none;
    transition: all 0.25s ease;
}
.jsToggleContent.s_show {
    display: block;
}