html {
    font-size: 100%;
    font-family: "Zen Kaku Gothic New",sans-serif;
    color: #000;
    line-height: 1.5
}

body {
    position: relative;
    overflow-x: hidden;
    background-color: #ebf4f7
}

img {
    max-width: 100%
}

a {
    transition: .3s
}

    a:hover {
        opacity: .8
    }

::-webkit-scrollbar {
    background: #ebf4f7;
    border-radius: 5px;
    width: 7px
}

::-webkit-scrollbar-thumb {
    background: #0361bf;
    border-radius: 5px
}

.container {
    padding: 0 20px;
    width: min(100%,1000px);
    margin: 0 auto
}

.read {
    margin-bottom: 30px
}

.header {
    padding: 20px 0;
    background: #fff
}

.page--form .header {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.05)
}

    .page--form .header .container {
        display: flex;
        align-items: center;
        justify-content: center
    }

h1 {
    font-size: calc((26px) + 6*(100vw - 360px)/1560);
    font-weight: 700;
    text-align: center;
    margin-top: 70px
}

h2 {
    font-size: calc((18px) + 6*(100vw - 360px)/1560);
    font-weight: 700;
    border-left: solid 5px #0361bf;
    padding-left: 20px
}

.section {
    margin-top: 60px;
    background-color: #fff;
    border-radius: 10px;
    padding: 65px 75px
}

    .section h2 ~ p {
        margin-top: 1rem
    }

@media screen and (max-width: 768px) {
    .section {
        padding: 30px 15px
    }
}

.fieldset {
    display: flex
}

    .fieldset ~ .fieldset {
        margin-top: 24px;
        padding-top: 24px;
        border-top: solid 1px #979797
    }

.fieldset--noBorder {
    border-top: none !important
}

.fieldset:first-of-type {
    margin-top: 24px
}

.fieldset__mark--required {
    display: inline-block;
    margin-left: 10px;
    background-color: #0361bf;
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: calc((10px) + 3*(100vw - 360px)/1560);
    font-weight: 400
}

@media screen and (max-width: 768px) {
    .fieldset {
        flex-direction: column;
        gap: 15px
    }
}

.fieldset__agreement {
    height: 150px;
    overflow-y: scroll;
    resize: vertical;
    border-radius: 5px;
    border: solid 1px #979797;
    padding: 15px
}

    .fieldset__agreement dl:nth-child(n+2) {
        margin-top: 15px
    }

    .fieldset__agreement dl {
        line-height: 1.5
    }

    .fieldset__agreement li {
        padding-left: 1em;
        text-indent: -1em
    }

    .fieldset__agreement a {
        color: #0361bf
    }

.fieldset__input {
    flex-grow: 1
}

.fieldset__input--vertical {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.fieldset__input--flex {
    display: flex;
    align-items: center;
    gap: 15px
}

@media screen and (max-width: 768px) {
    .fieldset__input--flex {
        flex-flow: wrap
    }
}

@media screen and (max-width: 768px) {
    .fieldset__input--spCol {
        flex-direction: column
    }
}

legend {
    margin-top: .5rem;
    width: 275px;
    font-weight: 500;
    flex-shrink: 0
}

@media screen and (max-width: 768px) {
    legend {
        width: 100%
    }
}

input {
    border-radius: 5px;
    background-color: #f6f6f6;
    color: #000
}

    input[type=file] {
        border: none;
        margin: 2px 0
    }

    input[type=text], input[type=search], input[type=tel], input[type=url], input[type=email], input[type=password], input[type=datetime], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime-local], input[type=number], input[type=range], input[type=color] {
        padding: 25px 10px;
        height: 50px;
        margin: 2px 0;
        flex: 1;
        max-width: 100%;
        width: 100%
    }

@media screen and (max-width: 768px) {
    input[type=text], input[type=search], input[type=tel], input[type=url], input[type=email], input[type=password], input[type=datetime], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime-local], input[type=number], input[type=range], input[type=color] {
        min-width: 150px
    }
}

input[type=text][type=range], input[type=search][type=range], input[type=tel][type=range], input[type=url][type=range], input[type=email][type=range], input[type=password][type=range], input[type=datetime][type=range], input[type=date][type=range], input[type=month][type=range], input[type=week][type=range], input[type=time][type=range], input[type=datetime-local][type=range], input[type=number][type=range], input[type=range][type=range], input[type=color][type=range] {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto
}

input[type=text]:disabled, input[type=search]:disabled, input[type=tel]:disabled, input[type=url]:disabled, input[type=email]:disabled, input[type=password]:disabled, input[type=datetime]:disabled, input[type=date]:disabled, input[type=month]:disabled, input[type=week]:disabled, input[type=time]:disabled, input[type=datetime-local]:disabled, input[type=number]:disabled, input[type=range]:disabled, input[type=color]:disabled {
    cursor: not-allowed;
    background-color: #aaa
}

input[type=radio] {
    display: none
}

    input[type=radio]:disabled + .radio__input::before {
        cursor: not-allowed;
        background-color: #aaa
    }

    input[type=radio]:disabled + label {
        cursor: not-allowed
    }

input[type=checkbox] {
    display: none
}

    input[type=checkbox]:disabled + .checkbox__input::before {
        cursor: not-allowed;
        background-color: #aaa
    }

    input[type=checkbox]:disabled + label {
        cursor: not-allowed
    }

.radio__wrap--toggle {
    flex: 1;
    border-radius: 5px;
    border: solid 1px #979797
}

@media screen and (max-width: 768px) {
    .radio__wrap--toggle {
        flex: none;
        width: 100%;
        flex-grow: 1
    }
}

.radio__wrap--toggle .radio__input {
    width: 100%;
    padding: 30px 0 30px 30px;
    justify-content: center;
    font-weight: 700
}

    .radio__wrap--toggle .radio__input::before {
        left: 15%
    }

@media screen and (max-width: 768px) {
    .radio__wrap--toggle .radio__input::before {
        left: 7%
    }
}

.radio__wrap--toggle .radio__input::after {
    width: 25px;
    height: 25px;
    left: 15%
}

@media screen and (max-width: 768px) {
    .radio__wrap--toggle .radio__input::after {
        left: 7%
    }
}

::-moz-placeholder {
    color: #878787
}

::-moz-placeholder, ::placeholder {
    color: #878787
}

label.checkbox__input, label.radio__input {
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    display: flex;
    align-items: center;
    min-height: 25px;
    width: -moz-fit-content;
    width: fit-content
}

    label.checkbox__input::before, label.checkbox__input::after, label.radio__input::before, label.radio__input::after {
        content: "";
        position: absolute
    }

    label.checkbox__input::before, label.radio__input::before {
        left: 0;
        width: 25px;
        height: 25px;
        border: 1px solid #979797;
        background: #fff
    }

    label.checkbox__input::after, label.radio__input::after {
        content: "";
        opacity: 0;
        position: absolute
    }

    label.checkbox__input::before {
        border-radius: 5px
    }

    label.checkbox__input::after {
        position: absolute;
        width: 9px;
        height: 15px;
        left: 8px;
        margin-top: -3px;
        border-right: 3px solid #0361bf;
        border-bottom: 3px solid #0361bf;
        transform: rotate(45deg)
    }

    label.radio__input::before {
        border-radius: 50%
    }

    label.radio__input::after {
        left: 6px;
        position: absolute;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #0361bf
    }

input[type=checkbox]:checked + .checkbox__input::after, input[type=radio]:checked + .radio__input::after {
    opacity: 1
}

.selectWrap {
    position: relative;
    width: -moz-max-content;
    width: max-content
}

    .selectWrap::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        width: 0;
        height: 0;
        border-top: 11px solid #878787;
        border-left: 6px solid rgba(135,135,135,0);
        border-right: 6px solid rgba(135,135,135,0);
        transform: translateY(-50%);
        pointer-events: none
    }

@media screen and (max-width: 768px) {
    .selectWrap {
        width: auto
    }
}

textarea, select {
    padding: 5px 10px;
    max-width: 100%;
    border: solid 1px #979797;
    border-radius: 5px;
    background-color: #fff
}

    textarea:disabled, select:disabled {
        cursor: not-allowed;
        background-color: #aaa !important
    }

.page--form textarea, .page--form select {
    background-color: #f6f6f6;
    border: none
}

textarea {
    resize: vertical;
    min-height: 100px;
    width: 100%;
    background-color: #f6f6f6;
    border: none
}

select {
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    height: 50px
}

.dropzone {
    cursor: pointer;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f6f6f6;
    border-radius: 5px
}

    .dropzone [type=file] {
        display: none
    }

.previewzone {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: right
}

    .previewzone .delete {
        color: #d53c04
    }

.button {
    display: inline-block;
    border-radius: 5px;
    padding: 10px 15px;
    border: solid 1px #979797;
    background-color: #fbfbfb;
    transition: .3s
}

    .button:hover {
        opacity: .8
    }

.button--action {
    border-color: #0361bf;
    background-color: #f2f9ff
}

.button--file {
    width: 200px;
    text-align: center;
    background-color: #f2f9ff
}

.button--back {
    border-color: #878787;
    background-color: #878787;
    color: #fff
}

.button--submit {
    border-color: #0361bf;
    background-color: #0361bf;
    color: #fff
}

    .button--submit:disabled {
        border-color: #979797;
        background-color: #979797;
        cursor: not-allowed;
        color: #fff
    }

.actions {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px
}

    .actions .button {
        width: 260px;
        height: 70px;
        text-align: center
    }

@media screen and (max-width: 768px) {
    .actions {
        gap: 30px;
        flex-direction: column-reverse
    }

        .actions .button {
            width: 100%
        }
}

.input--small {
    width: 100px
}

.input--medium {
    width: 200px
}

@media screen and (max-width: 768px) {
    .input--medium {
        min-width: 100%
    }
}

.input--large {
    width: 296px
}

@media screen and (max-width: 768px) {
    .input--large {
        min-width: 100%
    }
}

.input--tel {
    display: flex;
    align-items: center;
    gap: 15px
}

    .input--tel input {
        flex: 1;
        min-width: auto
    }

.footer {
    margin-top: 80px;
    background-color: #fff
}

    .footer .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        gap: 20px
    }

@media screen and (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        padding: 20px
    }
}

.footer__info {
    display: flex;
    flex: 1;
    justify-content: space-between
}

@media screen and (max-width: 768px) {
    .footer__info {
        flex: none;
        flex-flow: wrap
    }
}

.footer nav {
    display: flex;
    justify-content: right;
    gap: 30px
}

@media screen and (max-width: 768px) {
    .footer nav {
        justify-content: center;
        margin-top: 15px
    }
}

.footer__col {
    flex: 1
}

@media screen and (max-width: 768px) {
    .footer__col {
        text-align: center;
        flex: none;
        width: 100%
    }
}

.footer__copyright {
    margin-top: 5px;
    text-align: right
}

@media screen and (max-width: 768px) {
    .footer__copyright {
        text-align: center
    }
}

.cm--btn01 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: #0361bf;
    border: .2rem solid #0361bf;
    transition: .3s all;
    cursor: pointer;
    border-radius: .5rem
}

    .cm--btn01:hover {
        color: #0361bf;
        background: #fff
    }

.cm--btn02 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: #878787;
    border: .2rem solid #878787;
    transition: .3s all;
    cursor: pointer;
    border-radius: .5rem;
    font-weight: 500
}

    .cm--btn02:hover {
        color: #878787;
        background: #fff
    }

.cm--btndialog {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: #0361bf;
    border: .2rem solid #0361bf;
    transition: .3s all;
    cursor: pointer;
    border-radius: .5rem
}

    .cm--btndialog:hover {
        color: #0361bf;
        background: #fff
    }

.page--login .login-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

@media screen and (max-width: 768px) {
    .page--login .login-wrapper {
        padding: 30px
    }
}

.page--login .login-box {
    width: 500px;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 15.9px rgba(0,0,0,.04);
    border-radius: 5px;
    padding: 45px 55px 55px;
    text-align: center
}

@media screen and (max-width: 768px) {
    .page--login .login-box {
        width: 100%;
        padding: 30px
    }
}

.page--login .logo {
    font-size: 29px;
    font-weight: 500;
    letter-spacing: .05em;
    margin: 0 0 35px
}

.page--login .error--msg {
    color: #d53c04;
    margin-top: 15px
}

.page--login .input {
    width: 100%;
    padding: 15px 18px;
    margin: 0 0 20px;
    border: none;
    border-radius: 5px;
    background: #f1f1f1;
    font-size: 16px;
    height: 60px;
    text-align: left
}

    .page--login .input::-moz-placeholder {
        color: #878787;
        font-weight: 500;
        letter-spacing: .05em;
        font-size: 16px
    }

    .page--login .input::placeholder {
        color: #878787;
        font-weight: 500;
        letter-spacing: .05em;
        font-size: 16px
    }

.page--login .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    gap: 8px;
    font-weight: 500;
    margin-top: -4px
}

    .page--login .checkbox input {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #f1f1f1
    }

.page--login .radio-like {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    gap: 15px;
    font-weight: 500;
    margin-top: -1px
}

    .page--login .radio-like input {
        display: none
    }

        .page--login .radio-like input:checked + .checkmark {
            border-color: #f1f1f1;
            background: #f1f1f1
        }

            .page--login .radio-like input:checked + .checkmark:after {
                transform: translate(-50%,-50%) scale(1)
            }

    .page--login .radio-like .checkmark {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 2px solid #f1f1f1;
        position: relative;
        background: #f1f1f1;
        transition: .2s;
        flex-shrink: 0
    }

        .page--login .radio-like .checkmark:after {
            content: "";
            position: absolute;
            width: 14px;
            height: 14px;
            background: #0361bf;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%) scale(0);
            transition: .2s
        }

.page--login .btn-login {
    width: 100%;
    max-width: 260px;
    height: 70px;
    font-size: 18px;
    font-weight: 500;
    margin: auto
}

.page--login .forgot {
    margin-top: 21px;
    font-size: 14px
}

    .page--login .forgot a {
        color: #0361bf;
        text-decoration: none;
        position: relative
    }

        .page--login .forgot a:before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #0361bf;
            position: absolute;
            left: -14px;
            top: 8px
        }

.page--login .support {
    text-align: center;
    margin: 25px 0 0
}

    .page--login .support .ttl {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 9px;
        border-left: none;
        padding: 0
    }

    .page--login .support .phone {
        font-size: 24px;
        font-weight: 500;
        letter-spacing: .05em;
        margin: 2px 0 9px
    }

    .page--login .support .url {
        font-size: 14px;
        color: #000;
        text-decoration: underline;
        margin: 1px 0 13px;
        display: block
    }

.page--login .time {
    font-size: 14px;
    margin-top: 7px;
    text-align: center
}

.page--mypage .footer {
    margin-top: 0
}

    .page--mypage .footer .container {
        margin: 0;
        max-width: 1130px;
        width: 100%;
        padding: 20px 0 12px 30px;
        gap: 35px
    }

@media screen and (max-width: 768px) {
    .page--mypage .footer .container {
        padding: 20px;
        gap: 20px
    }
}

.page--mypage .footer nav {
    gap: 58px
}

@media screen and (max-width: 768px) {
    .page--mypage .footer nav {
        gap: 30px
    }
}

.page--mypage .footer__copyright {
    margin-top: 10px
}

@media screen and (max-width: 768px) {
    .page--mypage .footer__copyright {
        margin-top: 5px
    }
}

.page--mypage .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 20px 30px;
    box-shadow: 0 2px 2px rgba(0,0,0,.05);
    position: relative;
    z-index: 999
}

@media screen and (max-width: 768px) {
    .page--mypage .header {
        padding: 30px 20px 20px
    }
}

.page--mypage .header_logo {
    width: 260px
}

@media screen and (max-width: 768px) {
    .page--mypage .header_logo {
        width: 190px
    }
}

.page--mypage .header_logo img {
    display: block
}

.page--mypage .header_right {
    display: flex;
    gap: 54px
}

@media screen and (max-width: 768px) {
    .page--mypage .header_right {
        display: block;
        position: relative
    }

        .page--mypage .header_right:after {
            content: "";
            clear: both;
            display: block
        }
}

.page--mypage .header_user {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 50px
}

@media screen and (max-width: 768px) {
    .page--mypage .header_user {
        height: auto;
        gap: 5px;
        position: absolute;
        top: -25px;
        right: 0;
        width: 375px;
        justify-content: flex-end
    }
}

.page--mypage .header_user_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative
}

@media screen and (max-width: 768px) {
    .page--mypage .header_user_img {
        width: 15px;
        height: 15px
    }
}

.page--mypage .header_user_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.page--mypage .header_user p {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: 10px
}

@media screen and (max-width: 768px) {
    .page--mypage .header_user p {
        font-size: 12px;
        gap: 1px
    }
}

.page--mypage .header_user p span {
    font-size: 16px;
    letter-spacing: .05em
}

@media screen and (max-width: 768px) {
    .page--mypage .header_user p span {
        font-size: 11px;
        display: block
    }
}

.page--mypage .header_btn {
    width: 150px;
    height: 50px;
    border-radius: 5px;
    background: #021e54;
    border: 2px solid #021e54;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: .3s all
}

@media screen and (max-width: 768px) {
    .page--mypage .header_btn {
        height: 43px;
        width: 100px;
        font-size: 14px;
        float: right
    }
}

.page--mypage .header_btn:hover {
    color: #021e54;
    background: #fff
}

.cm--breadcrumb {
    display: flex;
    gap: 12px;
    margin: -31px 0 23px
}

@media screen and (max-width: 768px) {
    .cm--breadcrumb {
        display: none
    }
}

.cm--breadcrumb a {
    color: #878787;
    font-size: 16px;
    position: relative;
    padding-right: 25px
}

    .cm--breadcrumb a:after {
        content: "";
        width: 0;
        height: 0;
        border-top: 4px solid rgba(0,0,0,0);
        border-bottom: 4px solid rgba(0,0,0,0);
        border-left: 8px solid #d9d9d9;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -3px
    }

.cm--titlepage {
    display: flex;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .05em;
    gap: 16px;
    margin: 0 0 20px
}

    .cm--titlepage img {
        width: 37px;
        height: auto;
        display: block
    }

.table--style01 {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border-collapse: collapse;
    border-spacing: 0
}

    .table--style01 tr {
        border-bottom: 1px solid #d9d9d9;
        text-align: center;
        background: #f2f7fa
    }

        .table--style01 tr:nth-child(2n) {
            background: #fff
        }

        .table--style01 tr th {
            border-right: 1px solid #d9d9d9;
            text-align: center;
            background: #e4f1f8;
            padding: 15px
        }

            .table--style01 tr th:last-child {
                border-right: none
            }

        .table--style01 tr td {
            border-right: 1px solid #d9d9d9;
            padding: 13px
        }

            .table--style01 tr td:last-child {
                border-right: none
            }

            .table--style01 tr td.clr_red {
                color: #d53c04
            }

            .table--style01 tr td a {
                color: #0361bf;
                font-weight: 700;
                text-decoration: underline
            }

.table--style02 {
    width: 100%;
    border: 1px solid #dbdbdb;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 42px
}

    .table--style02:last-child {
        margin-bottom: 0
    }

    .table--style02.text_center {
        text-align: center
    }

        .table--style02.text_center th, .table--style02.text_center td {
            text-align: center
        }

    .table--style02 th {
        background: #f9fcff;
        padding: 12px 24px;
        font-weight: 500;
        text-align: left;
        border: 1px solid #dbdbdb;
        vertical-align: top
    }

@media only screen and (max-width: 767px) {
    .table--style02 th {
        padding: 10px 5px;
        width: 100px !important
    }
}

.table--style02 td {
    padding: 10px 27px;
    border: 1px solid #dbdbdb
}

@media only screen and (max-width: 767px) {
    .table--style02 td {
        padding: 10px
    }
}

.table--style03 {
    width: 100%;
    border: 2px solid #fff;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 42px;
    border-radius: 5px;
    overflow: hidden
}

    .table--style03:last-child {
        margin-bottom: 0
    }

    .table--style03 th {
        width: 275px;
        background: #eaf2f8;
        padding: 15px 24px;
        font-weight: 500;
        text-align: left;
        border: 2px solid #fff
    }

@media only screen and (max-width: 767px) {
    .table--style03 th {
        padding: 10px 5px;
        width: 100px
    }
}

.table--style03 td {
    padding: 15px 27px;
    border: 2px solid #fff;
    background: #f9f9f9
}

@media only screen and (max-width: 767px) {
    .table--style03 td {
        padding: 10px
    }
}

.table--style03 .number {
    width: 50px
}

.table--style03 .btn {
    width: 235px
}

.table--style03 .tb_btn {
    display: flex;
    gap: 10px
}

    .table--style03 .tb_btn a {
        border: 1px solid #0361bf;
        border-radius: 5px;
        color: #0361bf;
        font-size: 16px;
        font-weight: 700;
        padding: 10px
    }

.table--style04 {
    width: 100%;
    border: 2px solid #fff;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 42px;
    border-radius: 5px;
    overflow: hidden
}

    .table--style04:last-child {
        margin-bottom: 0
    }

    .table--style04 th {
        background: #eaf2f8;
        padding: 15px 5px;
        text-align: center;
        font-weight: 500;
        border: 2px solid #fff
    }

@media only screen and (max-width: 767px) {
    .table--style04 th {
        padding: 10px 5px;
        width: 100px
    }
}

.table--style04 td {
    padding: 15px 10px;
    border: 2px solid #fff;
    background: #f9f9f9
}

@media only screen and (max-width: 767px) {
    .table--style04 td {
        padding: 10px
    }
}

.table--style04 td:first-child {
    text-align: center
}

.table--style04 .number {
    width: 50px
}

.table--style04 .tb_btn {
    display: flex;
    gap: 10px
}

    .table--style04 .tb_btn a {
        border: 1px solid #0361bf;
        border-radius: 5px;
        color: #0361bf;
        font-size: 16px;
        font-weight: 700;
        padding: 5px 10px
    }

        .table--style04 .tb_btn a:hover {
            background: #0361bf;
            color: #fff
        }

@media only screen and (max-width: 767px) {
    .js-scrollable {
        overflow-x: scroll
    }

        .js-scrollable table, .js-scrollable canvas {
            width: 1000px
        }
}

.content--mypage {
    display: flex
}

@media screen and (max-width: 768px) {
    .content--mypage {
        flex-wrap: wrap
    }
}

.content--mypage .cm--sidebar {
    width: 250px;
    background: #fff;
    padding: 28px 0 0 30px;
    flex-shrink: 0
}

@media screen and (max-width: 768px) {
    .content--mypage .cm--sidebar {
        width: 100%;
        padding: 28px 0 28px 20px
    }
}

.content--mypage .cm--sidebar a {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .05em;
    padding: 12px 24px;
    margin-bottom: 9px;
    border-radius: 50px 0 0 50px
}

    .content--mypage .cm--sidebar a span {
        width: 31px;
        flex-shrink: 0;
        display: flex;
        align-items: center
    }

    .content--mypage .cm--sidebar a:hover, .content--mypage .cm--sidebar a.active {
        background: #ebf4f7;
        color: #0361bf
    }

.content--mypage .cm--content {
    width: 100%
}

.content--mypage .cm--content_inner {
    max-width: 920px;
    padding: 50px 40px 70px
}

@media screen and (max-width: 768px) {
    .content--mypage .cm--content_inner {
        padding: 30px 20px
    }
}

.content--mypage .flx--block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.content--mypage .block {
    background: #fff;
    border-radius: 10px;
    width: calc(50% - 15px)
}

@media screen and (max-width: 768px) {
    .content--mypage .block {
        width: 100%
    }
}

.content--mypage .sec_news {
    padding: 28px 45px 46px;
    width: 100%
}

@media screen and (max-width: 768px) {
    .content--mypage .sec_news {
        padding: 20px
    }
}

.content--mypage .sec_news .title {
    color: #0361bf;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 0;
    border-left: none;
    margin: 0 0 6px
}

.content--mypage .sec_news a {
    display: flex;
    letter-spacing: .05em;
    border-bottom: 1px solid #d9d9d9;
    padding: 18px 0 17px
}

@media screen and (max-width: 768px) {
    .content--mypage .sec_news a {
        padding: 10px 0;
        display: block
    }
}

.content--mypage .sec_news a:hover {
    color: #0361bf
}

.content--mypage .sec_news a .date {
    width: 120px
}

@media screen and (max-width: 768px) {
    .content--mypage .sec_news a .date {
        width: 100%
    }
}

.content--mypage .sec_block {
    padding: 32px 35px 39px
}

@media screen and (max-width: 768px) {
    .content--mypage .sec_block {
        padding: 20px
    }
}

.content--mypage .sec_block .ttl {
    border: none;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: 13px
}

    .content--mypage .sec_block .ttl img {
        position: relative;
        top: -2px
    }

.content--mypage .sec_block p {
    line-height: 1.875;
    margin: 13px 0 0
}

.content--mypage .sec_block .btn {
    margin-top: 11px
}

    .content--mypage .sec_block .btn:after {
        clear: both;
        display: block;
        content: ""
    }

    .content--mypage .sec_block .btn a {
        float: right;
        width: 200px;
        height: 50px
    }

.content--mypage .s-invoice {
    width: 100%;
    padding: 57px 45px
}

@media screen and (max-width: 768px) {
    .content--mypage .s-invoice {
        padding: 20px
    }
}

.content--mypage .s-invoice p {
    line-height: 1.875
}

    .content--mypage .s-invoice p.note {
        margin-top: 5px
    }

.content--mypage .s-invoice .sec-location {
    display: flex;
    align-items: center;
    margin-top: 46px;
    margin-bottom: 38px
}

@media screen and (max-width: 768px) {
    .content--mypage .s-invoice .sec-location {
        display: block;
        margin-top: 30px;
        margin-bottom: 30px
    }
}

.content--mypage .s-invoice .sec-location p {
    font-size: 18px;
    font-weight: 500;
    margin-right: 24px
}

.content--mypage .s-invoice .sec-location .select {
    width: 400px;
    height: 50px;
    border: 1px solid #979797;
    border-radius: 5px;
    overflow: hidden;
    position: relative
}

@media screen and (max-width: 768px) {
    .content--mypage .s-invoice .sec-location .select {
        width: 100%
    }
}

.content--mypage .s-invoice .sec-location .select:after {
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0,0,0,0);
    border-right: 6px solid rgba(0,0,0,0);
    border-top: 11px solid #000;
    position: absolute;
    right: 29px;
    top: 50%;
    transform: translateY(-50%);
    content: ""
}

.content--mypage .s-invoice .sec-location .select select {
    width: 100%;
    height: 100%;
    padding: 0 30px;
    border: none;
    background: #f7f7f7;
    color: #878787;
    font-weight: 500
}

.flx_title {
    display: flex;
    justify-content: space-between;
    margin-top: 48px
}

@media only screen and (max-width: 767px) {
    .flx_title {
        margin-top: 0;
        display: block
    }
}

.flx_title .cm--titlepage {
    font-size: 32px
}

@media only screen and (max-width: 767px) {
    .flx_title .cm--titlepage {
        font-size: 24px
    }
}

.bnt-bdf {
    width: 240px;
    height: 50px;
    border-radius: 5px;
    background: #d3745c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none
}

@media only screen and (max-width: 767px) {
    .bnt-bdf {
        margin: auto
    }
}

.bnt-bdf.bnt-bdf--green {
    background: #035d21
}

.s-invoice_detail {
    margin-top: 26px
}

    .s-invoice_detail .block {
        width: 100%;
        padding: 30px 45px 35px;
        margin-bottom: 35px
    }

@media only screen and (max-width: 767px) {
    .s-invoice_detail .block {
        padding: 20px;
        margin-bottom: 30px
    }
}

.s-invoice_detail .block .title {
    border: none;
    padding: 0;
    font-size: 20px;
    letter-spacing: .05em;
    margin: 0 0 13px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

    .s-invoice_detail .block .title span {
        font-weight: 400;
        font-size: 16px
    }

.s-invoice_detail .block .date_next {
    display: flex;
    gap: 33px;
    align-items: center
}

    .s-invoice_detail .block .date_next .title {
        margin-bottom: 0
    }

    .s-invoice_detail .block .date_next p {
        line-height: 1
    }

.s-invoice_detail .s-invoice_detail_btn .cm--btn02 {
    width: 120px;
    height: 50px
}

.page--usage .txt {
    margin: 2px 0 30px
}

.page--usage .block {
    width: 100%;
    padding: 44px
}

@media only screen and (max-width: 767px) {
    .page--usage .block {
        padding: 20px
    }
}

.page--usage .flx_select {
    display: flex;
    justify-content: space-between
}

@media only screen and (max-width: 767px) {
    .page--usage .flx_select {
        flex-wrap: wrap
    }
}

.page--usage .flx_select p {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px
}

.page--usage .flx_select .bx-select {
    width: 100%
}

    .page--usage .flx_select .bx-select select, .page--usage .flx_select .bx-select input {
        width: 100%;
        border: none;
        margin: 0;
        background: #f7f7f7;
        color: #878787;
        font-weight: 500
    }

    .page--usage .flx_select .bx-select .inputdate {
        border: 1px solid #979797;
        border-radius: 5px;
        overflow: hidden;
        height: 52px
    }

    .page--usage .flx_select .bx-select .select {
        border: 1px solid #979797;
        border-radius: 5px;
        overflow: hidden;
        position: relative;
        width: auto
    }

        .page--usage .flx_select .bx-select .select:after {
            width: 0;
            height: 0;
            border-left: 6px solid rgba(0,0,0,0);
            border-right: 6px solid rgba(0,0,0,0);
            border-top: 11px solid #000;
            position: absolute;
            right: 13px;
            top: 50%;
            transform: translateY(-50%);
            content: ""
        }

@media only screen and (max-width: 767px) {
    .page--usage .flx_select .bx-select--date {
        width: 46% !important
    }

        .page--usage .flx_select .bx-select--date ~ p {
            margin-bottom: 20px
        }
}

.page--usage .usage_btn {
    margin-top: 32px
}

    .page--usage .usage_btn:after {
        content: "";
        clear: both;
        display: block
    }

    .page--usage .usage_btn a {
        float: right;
        width: 195px;
        height: 45px;
        gap: 7px
    }

.page--usage .usage_map {
    margin: 50px -20px 0
}

@media only screen and (max-width: 767px) {
    .page--usage #elecChart {
        width: 400px !important;
        height: auto !important
    }
}

.page--user_info .flx_title {
    justify-content: center
}

.page--user_info .block {
    width: 100%;
    padding: 64px 30px 61px;
    margin-bottom: 50px
}

@media only screen and (max-width: 767px) {
    .page--user_info .block {
        padding: 20px;
        margin-bottom: 30px
    }
}

.page--user_info .block:last-child {
    margin-bottom: 0
}

.page--user_info .block h2 {
    font-size: 24px
}

.page--user_info .block p {
    margin: 15px 0 25px
}

.cm-list_btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 19px;
    margin-bottom: 60px
}

@media only screen and (max-width: 767px) {
    .cm-list_btn {
        flex-wrap: wrap;
        margin-bottom: 30px
    }
}

.cm-list_btn a {
    border: 1px solid #0361bf;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(25% - 15px);
    color: #0361bf;
    text-decoration: none;
    height: 60px;
    border-radius: 5px;
    font-weight: 500;
    position: relative;
    transition: .3s all
}

@media only screen and (max-width: 767px) {
    .cm-list_btn a {
        width: calc(50% - 10px);
        padding-right: 10px
    }
}

.cm-list_btn a:hover {
    background: #0361bf;
    color: #fff
}

    .cm-list_btn a:hover:after {
        border: solid #fff;
        border-width: 0 2px 2px 0
    }

.cm-list_btn a:after {
    content: "";
    border: solid #0361bf;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 20px
}

@media only screen and (max-width: 767px) {
    .cm-list_btn a:after {
        right: 10px
    }
}

@media only screen and (max-width: 767px) {
    .scroll-hint-text {
        margin-bottom: 10px
    }
}

.page--login .input::-moz-placeholder {
    color: #878787;
    font-weight: 500;
    letter-spacing: .05em;
    font-size: 16px
}

@media screen and (max-width: 768px) {
    .lock-scroll {
        overflow: hidden;
        position: relative;
        height: 100%
    }
}

@media screen and (max-width: 768px) {
    .page--mypage .header {
        padding: 15px
    }
}

.page--mypage .header .trigger-menu {
    width: 43px;
    height: 43px;
    background: #0361bf;
    display: none;
    border-radius: 5px
}

@media screen and (max-width: 768px) {
    .page--mypage .header .trigger-menu {
        display: block
    }

        .page--mypage .header .trigger-menu.active span:nth-child(1) {
            transform: translate(-50%,-50%) rotate(45deg);
            margin-top: 0
        }

        .page--mypage .header .trigger-menu.active span:nth-child(2) {
            opacity: 0
        }

        .page--mypage .header .trigger-menu.active span:nth-child(3) {
            transform: translate(-50%,-50%) rotate(-45deg);
            margin-top: 0
        }
}

.page--mypage .header .trigger-menu span {
    display: block;
    position: absolute;
    width: 23px;
    height: 2px;
    background: #fff;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: auto;
    transition: .25s ease-in-out
}

    .page--mypage .header .trigger-menu span:nth-child(1) {
        margin-top: 7px
    }

    .page--mypage .header .trigger-menu span:nth-child(3) {
        margin-top: -7px
    }

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

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

@media screen and (max-width: 768px) {
    .content--mypage .cm--sidebar {
        position: fixed;
        height: calc(100vh - 73px);
        top: 73px;
        z-index: 999;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease-out
    }

        .content--mypage .cm--sidebar.visible {
            opacity: 1;
            visibility: visible
        }
}

.content--mypage .cm--sidebar .sp_user {
    display: none
}

@media screen and (max-width: 768px) {
    .content--mypage .cm--sidebar .sp_user {
        display: flex;
        gap: 15px;
        margin-bottom: 20px
    }

        .content--mypage .cm--sidebar .sp_user .header_user_img {
            width: 30px;
            height: 30px;
            flex-shrink: 0;
            margin-top: 5px
        }

        .content--mypage .cm--sidebar .sp_user .header_user_name {
            font-size: 18px;
            font-weight: 700
        }

            .content--mypage .cm--sidebar .sp_user .header_user_name span {
                display: block;
                font-size: 16px
            }
}

.content--mypage .cm--sidebar .header_btn_sp {
    display: none
}

@media screen and (max-width: 768px) {
    .content--mypage .cm--sidebar .header_btn_sp {
        width: 150px;
        height: 43px;
        border-radius: 5px;
        background: #021e54;
        border: 2px solid #021e54;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        transition: .3s all;
        display: block;
        margin: 20px auto 0
    }
}

.page--usage .flx_select {
    align-items: flex-end
}

    .page--usage .flx_select .bx-select {
        width: auto
    }

@media only screen and (max-width: 767px) {
    .page--usage .flx_select .bx-select {
        width: 100%;
        margin-bottom: 10px
    }
}

.page--usage .flx_select .bx-select .ctrl-label {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .05em;
    margin: 0 0 9px;
    display: block
}

.page--usage .flx_select .bx-select select, .page--usage .flx_select .bx-select input {
    min-width: auto
}

.page--usage .flx_select .bx-select input {
    border: 1px solid #979797
}

.page--usage .flx_select .btn-apply {
    height: 52px;
    width: 80px;
    background: #0361bf;
    color: #fff;
    text-align: center
}

.page--usage .metrics {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 12px;
    margin-bottom: 1.5rem;
    margin-top: 20px
}

    .page--usage .metrics .metric-label {
        font-size: 12px;
        margin-bottom: 4px
    }

    .page--usage .metrics .metric-value {
        font-size: 20px;
        font-weight: 500
    }

    .page--usage .metrics .metric-unit {
        font-size: 11px;
        margin-left: 2px
    }

.page--usage .legend {
    display: flex;
    gap: 16px;
    font-size: 12px;
    margin-bottom: 20px
}

    .page--usage .legend .legend-item {
        display: flex;
        align-items: center;
        gap: 5px
    }

    .page--usage .legend .legend-dot {
        width: 10px;
        height: 10px;
        border-radius: 2px
    }

.page--usage .usage_btn {
    margin-top: 15px;
    margin-bottom: 30px
}

    .page--usage .usage_btn button {
        float: right;
        width: 195px;
        height: 35px;
        gap: 7px;
        font-size: 14px
    }

.previewzone {
    flex-direction: column !important;
    align-items: stretch !important;
}

    .previewzone .file-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        border: 1px solid #d9d9d9;
        border-radius: 5px;
        background-color: #f9f9f9;
    }

        .previewzone .file-item img {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .previewzone .file-item span {
            flex: 1;
            word-break: break-all;
        }