body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    background-color: #fbfbfb;
}

/* コンテンツエリア */
/* PC */
@media (min-width: 576px) {
    main {
        display: flex;
        margin-top: 45px;
        padding: 0 5px;
    }

    .contentArea, .contentAreaPc {
        margin: 70px 20px 30px 20px;
        width: 100%;
    }
}

/* スマホ */
@media (max-width: 575.98px) {
    main {
        display: flex;
        margin-top: 0px;
        padding: 0 5px;
    }

    .contentArea {
        margin: 0px 0 30px 0;
        width: 100%;
    }
}

/* スマホ横表示 */
@media (orientation: landscape) and (max-height: 575.98px) and (max-width: 848.98px) and (min-aspect-ratio: 16/9) {
    main {
        display: flex;
        margin-top: 0px;
        padding: 0 5px;
    }

    .contentArea {
        margin: 0px 0 30px 0;
        width: 100%;
    }
}

.contentCenter {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#pageTop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #3f98ef;
    opacity: 0.8;
    border-radius: 50%;
}

#pageTop a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#pageTop a:hover {
    opacity: 0.6;
}

#pageTop a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/* ボタン */
.buttonArea {
    margin-top: 50px;
    text-align: center;
}

.blueButton {
    margin: 10px auto;
    width: 160px;
    color: #fff;
    padding: 5px;
    background: linear-gradient(0deg, #177bce 0%, #50a0e2 100%);
}

.backButton {
    margin: 10px auto;
    width: 120px;
    color: #fff;
    padding: 5px;
    background: linear-gradient(0deg, #ce8e17 0%, #e2a350 100%);
}

.blueButton:hover, .backButton:hover {
    opacity: 0.7;
    color: #fff;
}

.disableBtn {
    margin: 10px auto;
    width: 160px;
    color: #fff;
    padding: 5px;
    background-color: #b8b8b8;
}

.disableBtn:hover {
    color: white;
}

/* 共通部品 */
.whiteCard {
    margin-bottom: 10px;
    padding: 15px;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    word-wrap: break-word;
}

.whiteCard label:hover {
    /* background-color: #a1a1a1; */
    cursor: pointer;
}

/* PC */
@media (min-width: 576px) {
    .fixedTop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 15;
    }

    .flexBetweenPc {
        display: flex;
        justify-content: space-between;
    }
}

/* スマホ */
@media (max-width: 575.98px) {
    .fixedTop {
        position: relative;
        z-index: 15;
    }
}

/* スマホ横表示 */
@media screen and (orientation: landscape) and (max-height: 575.98px) and (max-width: 848.98px) and (min-aspect-ratio: 16/9) {
    .fixedTop {
        position: relative;
        z-index: 15;
    }
}

/* .fixedBottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
} */

.flex {
    display: flex;
    align-items: center;
}

.flexWrap {
    display: flex;
    flex-wrap: wrap;
}

.flexBetween {
    display: flex;
    justify-content: space-between;
    width: 95vw;
}

.alignCenter {
    align-self: center;
}

.alignBottom {
    align-self: bottom;
}

.short {
    width: 100px;
}

.middle {
    width: 200px;
}

.large {
    width: 310px;
}

.input-wrap {
    position: relative;
}

.toggle-pass {
    position: absolute;
    top: 50%;
    right: 10px;
    cursor: pointer;
    transform: translateY(-45%);
}

.eyeArea {
    padding: 10px 20px;
    cursor: pointer;
    background-size: 20px 20px;
    background-position: 19px center;
    background-repeat: no-repeat;
}

.eye {
    background-image: url(../../image/eye.png);
}

.eye-slash {
    background-image: url(../../image/eye-slash.png);
}

select.ui-datepicker-year {
    margin-left: 5px !important;
    padding: 3px;
    width: 70px !important;
}

select.ui-datepicker-month {
    margin-right: 5px !important;
    padding: 3px;
    width: 70px !important;
}