.fs-login-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}
.fs-login-wrapper::after {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background-color: #EDEDED;
}
.fs-column--left {
    width: 45%;
}
.fs-column--right {
    width: 45%;
}
.fs-c-subSection__title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
}
.fs-c-inputTable {
    width: 100%;
}
#fs_form tr {
    display: flex;
    flex-flow: column;
    margin-bottom: 18px;
    border-bottom: none;
}
.fs-c-inputTable__headerCell {
    width: fit-content;
    margin-bottom: 5px;
}
.fs-c-inputTable__headerCell, .fs-c-inputTable__dataCell {
    padding: 0;
}
.fs-c-inputInformation__field {
    margin-bottom: 30px;
}
.fs-c-requiredMark {
    margin-left: 7px;
}
.fs-c-newUsers__message {
    line-height: 2;
    margin-bottom: 40px;
}
.fs-c-inputInformation__link {
    margin: 10px 0 20px;
    text-align: center;
}
.fs-c-anotherLogin__message {
    line-height: 2;
    margin-bottom: 40px;
}

.fs-c-linkedServiceLogin__title {
    position: relative;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid #EDEDED;
}
.fs-c-linkedServiceLogin__title::after {
    content: "または";
    position: absolute;
    inset: -10px 0 auto 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
    font-size: 1.4rem;
    background-color: #fff;
    padding: 0 20px;
}
.fs-c-guestPurchase--message {
    line-height: 2;
    margin-bottom: 40px;
}
.fs-c-button--guestPurchase {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto;
    background-color: #080808;
    border: 1px solid #080808;
    transition: all 0.2s ease-out;
}
.fs-c-button--guestPurchase:hover {
    color: #080808;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .fs-login-wrapper {
        flex-flow: column;
        align-items: center;
    }
    .fs-login-wrapper::after {
        content: none;
    }
    .fs-column--left {
        width: 100%;
        margin-bottom: 70px;
    }
    .fs-column--right {
        width: 100%;
    }
    .fs-column--left::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: #EDEDED;
        margin-top: 70px;
    }
}