@charset "UTF-8";

:root {
    --font-color: #333333;
    --white-color: #FFFFFF;
    --gray-color: #E6E6E6;
    --dark-gray-color: #666666;
    --background-color: #F8FBFF;
    --border-color: #DBE1EB;
    --accent-color: #1156BD;
    --key-color: #EC0000;
    --sp-padding: 1rem;
    --pc-padding: 1.5rem;
    --pc-header-height: 5rem;
    --sp-header-height: 4rem;
    --sp-footer-height: 3.8125rem;
    --aside-width: 17rem;
    --ff-base: "Noto Sans JP", sans-serif;
}

.a-style {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

.img-style {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.button-style {
    display: block;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
}

.body-style {
    background-color: var(--white-color);
    color: var(--font-color);
    font-family: var(--ff-base);
    font-weight: 400;
    font-size: 1rem;
}

.wrapper {
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.footer {
    font-size: small;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    z-index: 10000;
}

.centercell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
    padding-bottom: 1px;
}

.leftcell {
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 5px;
    padding-top: 1px;
    padding-bottom: 1px;
}

.rightcell {
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 5px;
    padding-top: 1px;
    padding-bottom: 1px;
}

.entrycontents {
    padding: 1px;
}


.entrylbl:disabled {
    background-color: #ececec;
    color: black;
}

.gridcolor {
    background-color: white;
}

    .gridcolor:hover {
        background-color: lightskyblue;
    }

.gridtext {
    white-space: nowrap;
    overflow: hidden;
}

.selecttime:hover {
    background-color: lightskyblue;
}

.progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .progressbar li {
        position: relative;
        list-style-type: none;
        text-align: center;
        text-transform: uppercase;
        width: 33.333%;
        color: #999999;
        font-weight: bold;
    }

        .progressbar li:before {
            display: block;
            width: 18px;
            height: 18px;
            margin: 7px auto 20px auto;
            content: '';
            text-align: center;
            border-radius: 50%;
            background-color: #F5F5F5;
        }

        .progressbar li:after {
            position: absolute;
            z-index: -1;
            top: 15px;
            left: -50%;
            width: 100%;
            height: 2px;
            content: '';
            background-color: #F5F5F5;
        }

        .progressbar li:first-child:after {
            content: none;
        }

        .progressbar li.active,
        .progressbar li.complete {
            color: #0070BD;
        }

            .progressbar li.active:before,
            .progressbar li.complete:before {
                background-color: #0070BD;
            }

            .progressbar li.active:after,
            .progressbar li.complete:after {
                background-color: #0070BD;
            }

button.link-style-btn {
    cursor: pointer;
    border: none;
    background: none;
    color: #0033cc;
}

    button.link-style-btn:hover {
        text-decoration: underline;
        color: #002080;
    }

.menubtn {
    width: 100px;
    height: 100px;
}

.boxscroll {
}

@media screen and (max-width:480px) {
    .boxscroll {
        overflow-x: scroll;
    }
}

.titlelbl {
    background-color: #404040;
    color: white;
    min-width: 130px;
}

.table_frame {
    width: 800px;
    height: 300px;
    overflow: auto;
}

.l-wrapper {
    overflow: hidden;
}

.l-header {
    border-bottom: 0.0625rem solid var(--border-color);
    background: var(--white-color);
    width: 100%;
}

@media screen and (max-width:767px) {
    .l-header {
        height: var(--sp-header-height);
    }
}

@media screen and (min-width: 768px) {
    .l-header {
        height: var(--pc-header-height);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }
}

.l-header__inner {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 var(--pc-padding);
}

@media screen and (max-width:767px) {
    .l-header__inner {
        padding: 0 var(--sp-padding);
    }
}

.p-header-left__box {
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .p-header-left__box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1.5rem;
    }
}

.p-logo {
    width: 10rem;
    max-width: 100%;
}

@media screen and (max-width:767px) {
    .p-logo {
        width: 6.9375rem;
    }
}

.p-logo .p-logo__link {
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    background: -webkit-gradient(linear, left top, right top, from(var(--accent-color)), to(#0A408F));
    background: linear-gradient(90deg, var(--accent-color) 0%, #0A408F 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity 0.5s ease 0s;
    transition: opacity 0.5s ease 0s;
}

@media screen and (max-width:767px) {
    .p-logo .p-logo__link {
        padding: 0.5rem 1rem;
    }
}

.p-logo .p-logo__link img {
    width: 6rem;
    max-width: 100%;
}

@media screen and (max-width:767px) {
    .p-logo .p-logo__link img {
        width: 4.9375rem;
    }
}

.p-header__text {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 500;
}

.p-logout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width:767px) {
    .p-logout {
        font-size: 0.75rem;
    }
}

.p-logout i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-left: 1.0625rem;
}

@media screen and (max-width:767px) {
    .p-logout i {
        display: none;
    }
}

.l-sidebar {
    position: fixed;
    top: var(--pc-header-height);
    left: 0;
    z-index: 100;
    border-right: 0.0625rem solid var(--border-color);
    width: var(--aside-width);
    height: calc(100vh - var(--pc-header-height));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.p-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:767px) {
    .p-menu__list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 0.125rem;
    }
}

@media screen and (min-width: 768px) {
    .p-menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width:767px) {
    .p-menu-list__item {
        width: 4.5625rem;
        max-width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .p-menu-list__item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
    }
}

.p-menu-list__item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

@media screen and (max-width:767px) {
    .p-menu-list__item i {
        color: #868686;
    }
}

.p-menu-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width:767px) {
    .p-menu-item__link {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media screen and (min-width: 768px) {
    .p-menu-item__link {
        gap: 1rem;
        padding: 1.5rem;
    }
}

.p-menu-list-item__inline {
    font-weight: 500;
    display: inline-block;
}

@media screen and (max-width:767px) {
    .p-menu-list-item__inline {
        color: #868686;
        font-size: 0.75rem;
    }
}

.p-menu-list__item.is-active .p-menu-item__link {
    cursor: default;
}

@media screen and (min-width: 768px) {
    .p-menu-list__item.is-active .p-menu-item__link {
        background: -webkit-gradient(linear, left top, right top, from(var(--accent-color)), to(#0A408F));
        background: linear-gradient(90deg, var(--accent-color) 0%, #0A408F 100%);
    }
}

.p-menu-list__item.is-active .p-menu-item__link i {
    color: var(--white-color);
}

@media screen and (max-width:767px) {
    .p-menu-list__item.is-active .p-menu-item__link i {
        color: var(--accent-color);
    }
}

.p-menu-list__item.is-active .p-menu-item__link .p-menu-list-item__inline {
    color: var(--white-color);
}

@media screen and (max-width:767px) {
    .p-menu-list__item.is-active .p-menu-item__link .p-menu-list-item__inline {
        color: var(--accent-color);
    }
}

.p-menu-list__item.is-active .p-menu-item__link:hover {
    background: linear-gradient(90deg, var(--accent-color) 0%, #0A408F 100%);
    color: var(--white-color);
    cursor: default;
}

.p-menu-profile__content {
    border-radius: 0.875rem;
}

@media screen and (max-width:767px) {
    .p-menu-profile__content {
        text-align: center;
        background: var(--white-color);
        padding: 1rem;
        -webkit-box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.08);
        box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.08);
        width: 22.375rem;
        max-width: 100%;
        margin-inline: auto;
    }
}

@media screen and (min-width: 768px) {
    .p-menu-profile__content {
        margin-inline: auto;
        background: var(--background-color);
        width: 15.875rem;
        max-width: 100%;
        padding: 2rem 1.5rem;
        border: 0.0625rem solid var(--border-color);
    }
}

@media screen and (max-width:767px) {
    .p-menu-profile__title {
        color: var(--accent-color);
        font-size: 0.875rem;
        font-weight: 500;
    }
}

.p-menu-profile__name {
    font-size: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

@media screen and (max-width:767px) {
    .p-menu-profile__name {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 1rem;
    }
}

.p-menu-profile__name i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.p-menu-profile-name__inline {
    font-size: 1rem;
}

@media screen and (max-width:767px) {
    .p-menu-profile-name__inline {
        font-size: 0.875rem;
    }
}

.p-btn__menu-profile {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 2.125rem;
    border: 0.0625rem solid var(--accent-color);
    background: var(--white-color);
    color: var(--accent-color);
    -webkit-transition: opacity 0.5s ease 0s;
    transition: opacity 0.5s ease 0s;
}

@media screen and (max-width:767px) {
    .p-btn__menu-profile {
        width: 12.75rem;
        max-width: 100%;
        font-size: 0.8125rem;
        margin-inline: auto;
        padding: 0.75rem 1rem;
    }
}

.l-main {
    background: var(--background-color);
}

@media screen and (min-width: 768px) {
    .l-main {
        margin-left: auto;
        width: calc(100% - var(--aside-width));
    }
}

.l-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.8125rem;
    padding: 0.625rem 0.5rem;
    background: var(--background-color);
    /* ���w�i�G�t�F�N�g */
    -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

.c-hover__target {
    -webkit-transition: opacity 0.5s ease 0s;
    transition: opacity 0.5s ease 0s;
}

@media (any-hover: hover) {
    .c-hover__target:hover {
        opacity: 0.6;
    }
}

@media (any-hover: hover) {
    .l-sidebar .c-hover__target:hover {
        background: var(--background-color);
    }
}

.u-dn {
    display: none;
}

@media screen and (min-width: 768px) {
    .u-pc-none {
        display: none !important;
    }
}

@media screen and (max-width:767px) {
    .u-sp-none {
        display: none !important;
    }
}

.u-dib {
    display: inline-block;
}

.u-pt-8 {
    padding-top: 0.5rem;
}

.u-pb-8 {
    padding-bottom: 0.5rem;
}

.u-visually-hidden {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    margin: -0.0625rem;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media screen and (min-width: 768px) {
    .l-home-page__main {
        margin-top: var(--pc-header-height);
        padding-bottom: 5.25rem;
        padding-top: 2.5625rem;
    }
}

@media screen and (max-width:767px) {
    .l-home-page__main {
        padding-top: 1.5rem;
        padding-bottom: 1.9375rem;
        margin-bottom: var(--sp-footer-height);
    }
}

.l-home-page__inner {
    padding-right: 2rem;
    padding-left: 4rem;
}

@media screen and (max-width:767px) {
    .l-home-page__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

.p-home__contents {
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 62.5rem;
    width: 100%;
}

@media screen and (max-width:767px) {
    .p-home__contents {
        gap: 1.5rem;
        margin-inline: auto;
        width: 22.375rem;
        max-width: 100%;
    }
}

.p-home-content__box {
    border-radius: 0 1rem 1rem 1rem;
    background: var(--white-color);
    /* ���w�i�G�t�F�N�g */
    -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-event-content__box .p-home-item__entry {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media screen and (max-width:767px) {
    .p-event-content__box .p-home-item__entry {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-event-content__box .p-btn__event {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media screen and (max-width:767px) {
    .p-event-content__box .p-btn__event {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-event-content__box .p-home-item__title {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .p-event-content__box .p-home-item__title {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
    }
}

.p-btn__event {
    margin-left: auto;
}

.p-eventbtn__link {
    color: var(--accent-color);
    text-align: center;
    padding: 0.625rem;
    font-weight: 500;
    border-radius: 2.125rem;
    border: 0.0625rem solid var(--accent-color);
    background: var(--white-color);
    width: 6.5rem;
}

@media screen and (max-width:767px) {
    .p-eventbtn__link {
        padding: 0.375rem;
        font-size: 0.8125rem;
        width: 5rem;
    }
}

.p-home-content__head {
    padding: 0.9375rem 2.5rem 0.9375rem 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 4.375rem;
}

@media screen and (max-width:767px) {
    .p-home-content__head {
        height: 3.5rem;
        padding-right: 1.125rem;
        padding-left: 1.125rem;
    }
}

.p-home-content__head::before {
    content: "";
    position: absolute;
    width: 0.4375rem;
    height: 100%;
    background: var(--accent-color);
    top: 0;
    left: 0;
}

.p-home-content__lead {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: bold;
}

@media screen and (max-width:767px) {
    .p-home-content__lead {
        font-size: 1rem;
    }
}

@media screen and (min-width: 768px) {
    .p-readmore__link {
        border-radius: 1.6875rem;
        background: var(--accent-color);
        color: var(--white-color);
        font-weight: 500;
        padding: 0.625rem 1.25rem;
    }
}

@media screen and (max-width:767px) {
    .p-readmore__link .p-readmore__inline {
        display: none;
    }
}

.p-readmore__link i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.p-home-list__item {
    padding: 1.5625rem 2.125rem;
    border-top: 0.0625rem solid var(--gray-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width: 768px) {
    .p-home-list__item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-home-list__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media screen and (max-width:767px) {
    .p-home-list__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 1rem;
    }
}

.p-home-list__item.p-event-list__item {
    padding: 0.9375rem 2.125rem;
    gap: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-home-list__item.p-event-list__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0.25rem 1rem;
    }
}

@media screen and (max-width:767px) {
    .p-home-list__item.p-event-list__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0.25rem 1rem;
        padding: 0.9375rem 1rem;
    }
}

.p-home-item__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-home-item__wrapper {
        display: contents;
    }
}

@media screen and (max-width:767px) {
    .p-home-item__wrapper {
        display: contents;
    }
}

.p-home-item__entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-home-item__date {
    font-size: 1.125rem;
}

@media screen and (max-width:767px) {
    .p-home-item__date {
        font-size: 0.875rem;
    }
}

.p-home-item__company {
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

@media screen and (max-width:767px) {
    .p-home-item__company {
        font-size: 0.75rem;
    }
}

@media screen and (min-width: 768px) {
    .p-home-item__title {
        margin-left: 1.5rem;
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-home-item__title {
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

@media screen and (max-width:767px) {
    .p-home-item__title {
        margin-top: 0.25rem;
    }
}

@media screen and (min-width: 768px) {
    .l-profile-page__main {
        margin-top: var(--pc-header-height);
        padding-top: 4rem;
        padding-bottom: 10.875rem;
    }
}

@media screen and (max-width:767px) {
    .l-profile-page__main {
        padding-top: 2rem;
        padding-bottom: 8.3125rem;
    }
}

.l-profile-page__inner {
    padding-right: 2rem;
    padding-left: 4rem;
}

@media screen and (max-width:767px) {
    .l-profile-page__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 62.5rem;
    width: 100%;
}

.p-profile-page__section {
    border-radius: 0 1rem 1rem 1rem;
    background: var(--white-color);
    -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

@media screen and (max-width:767px) {
    .p-profile-page__section {
        max-width: 22.375rem;
        width: 100%;
        margin-inline: auto;
    }
}

.p-profile-page-section__head {
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    min-height: 4.375rem;
}

    .p-profile-page-section__head.custom-text-sub {
        color: black;
    }


@media screen and (max-width:767px) {
    .p-profile-page-section__head {
        min-height: 3.375rem;
        padding: 1rem;
        font-size: 1rem;
    }
}

.p-profile-page-section__head::before {
    content: "";
    position: absolute;
    width: 0.4375rem;
    height: 100%;
    background: var(--accent-color);
    top: 0;
    left: 0;
}

.p-profile-page-section__head.custom-border-sub::before {
    background: black;
}

@media screen and (max-width:767px) {
    .p-profile-page-section__head::before {
        width: 0.25rem;
    }
}

.p-profile-page-section__head:has(.p-profile-page-section-head__inline) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width: 768px) {
    .p-profile-page-section__head:has(.p-profile-page-section-head__inline) {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-profile-page-section__head:has(.p-profile-page-section-head__inline) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.5rem;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media screen and (max-width:767px) {
    .p-profile-page-section__head:has(.p-profile-page-section-head__inline) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.25rem;
    }
}

.p-profile-page-section-head__inline {
    color: var(--dark-gray-color);
    font-size: 1rem;
    font-weight: 400;
}

@media screen and (max-width:767px) {
    .p-profile-page-section-head__inline {
        font-size: 0.875rem;
        line-height: 1.2;
        letter-spacing: 0.28px;
    }
}

.p-profile-page-section__body {
    padding: 1.5rem;
    border-top: 0.0625rem solid var(--gray-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8125rem;
}

@media screen and (max-width:767px) {
    .p-profile-page-section__body {
        padding: 2rem 1rem;
    }
}

.p-profile-page-section__body.p-profile-page-section__body--file {
    gap: 2rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-profile-page-section__body.p-profile-page-section__body--file {
        gap: 1.5rem;
    }
}

@media screen and (max-width:767px) {
    .p-profile-page-section__body.p-profile-page-section__body--file {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
}

.p-profile-page-section__body.p-profile-page-section__body--file .p-form__row04 {
    gap: 0.375rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-profile-page-section__body.p-profile-page-section__body--file .p-form-label__wrapper {
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width:767px) {
    .p-profile-page-section__body.p-profile-page-section__body--file .p-form-label__wrapper {
        margin-bottom: 0.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-profile-page-section__body.p-profile-page-section__body--file .p-form-input__wrapper {
        padding-left: 0.5rem;
    }
}

@media screen and (max-width:767px) {
    .p-profile-page-section__body.p-profile-page-section__body--file .p-form-input__wrapper {
        padding-left: 0.5rem;
    }
}

@media screen and (max-width:767px) {
    .p-profile-page-section__body.p-profile-page-section__body--career {
        padding: 1.5rem 1rem;
    }
}

.form-style input[type="text"],
.form-style input[type="tel"],
.form-style input[type="email"],
.form-style input[type="password"],
.form-style input[type="month"],
.form-style input[type="date"],
.form-style input[type="number"],
.form-style textarea,
.form-style select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    color: inherit;
    border: 0.0625rem solid var(--dark-gray-color);
    background: var(--white-color);
    font-size: 1.125rem;
    padding: 0.75rem;
    min-height: 3rem;
}

/* ���f�B�A�N�G������l�ɃN���X����t���Č��� */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .form-style input[type="text"],
    .form-style input[type="tel"],
    .form-style input[type="email"],
    .form-style input[type="password"],
    .form-style input[type="date"],
    .form-style input[type="month"],
    .form-style input[type="number"],
    .form-style textarea,
    .form-style select {
        font-size: 1rem;
    }
}

@media screen and (max-width:767px) {
    .form-style input[type="text"],
    .form-style input[type="tel"],
    .form-style input[type="email"],
    .form-style input[type="password"],
    .form-style input[type="date"],
    .form-style input[type="month"],
    .form-style input[type="number"],
    .form-style textarea,
    .form-style select {
        font-size: 1rem;
    }
}

.form-style select {
    font-size: 1rem;
    padding-right: 2.125rem;
}

.form-style textarea {
    resize: vertical;
}

.form-style input[type="file"] {
    max-width: 9.625rem;
    width: 100%;
    font-weight: 500;
    font-size: 1.0625rem;
}

    .form-style input[type="file"]::-webkit-file-upload-button,
    .form-style input[type="file"]::file-selector-button {
        -webkit-appearance: none;
        appearance: none;
        background-color: var(--background-color);
        border: none;
        width: 100%;
        height: 100%;
        font-size: 1.0625rem;
        padding: 0.3125rem 1rem;
        cursor: pointer;
        color: var(--accent-color);
        font-weight: 500;
        border-radius: 0.1875rem;
        line-height: 170%;
        letter-spacing: 0.34px;
        text-align: center;
    }

.js-flatpickr {
    border-radius: 0.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    color: inherit;
    border: 0.0625rem solid var(--dark-gray-color);
    background: var(--white-color);
    font-size: 1.125rem;
    padding: 0.75rem;
    min-height: 3rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .js-flatpickr {
        font-size: 1rem;
    }
}

@media screen and (max-width:767px) {
    .js-flatpickr {
        font-size: 1rem;
    }
}

.p-input__wrapper--date {
    position: relative;
}

.bi-calendar {
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--dark-gray-color);
    cursor: pointer;
}

.p-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-form__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width:767px) {
    .p-form__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (min-width: 768px) {
    .p-form-label__wrapper {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12rem;
        flex: 0 0 12rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-form-label__wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

@media screen and (max-width:767px) {
    .p-form-label__wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-form-label__wrapper:has(.text-danger) .form-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-form-label__wrapper:has(.text-danger) .form-label {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (max-width:767px) {
    .p-form-label__wrapper:has(.text-danger) .form-label {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.form-label {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.36px;
}

@media screen and (min-width: 768px) {
    .form-label {
        white-space: nowrap;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .form-label {
        font-size: 1rem;
    }
}

@media screen and (max-width:767px) {
    .form-label {
        font-size: 1rem;
    }
}

.text-danger {
    color: var(--key-color);
    letter-spacing: 0.32px;
    font-size: 1rem;
    margin-top: -0.625rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .text-danger {
        margin-left: 0.5rem;
        font-size: 0.875rem;
        margin-top: 0;
    }
}

@media screen and (max-width:767px) {
    .text-danger {
        margin-left: 0.5rem;
        font-size: 0.875rem;
        margin-top: 0;
    }
}

.p-form-input__wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    .p-form-input__wrapper:has(.p-fom-input-wrapper--postcode) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        gap: 1.25rem;
    }

@media screen and (max-width:767px) {
    .p-form-input__wrapper:has(.p-fom-input-wrapper--postcode) {
        gap: 0.5rem;
    }
}

.p-form-input__info {
    color: var(--dark-gray-color);
    line-height: 170%;
    letter-spacing: 0.32px;
    font-weight: 400;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-form-input__info {
        font-size: 0.875rem;
    }
}

@media screen and (max-width:767px) {
    .p-form-input__info {
        font-size: 0.875rem;
    }
}

@media screen and (min-width: 768px) {
    .p-input__wrapper {
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-input__wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

@media screen and (max-width:767px) {
    .p-input__wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

@media screen and (max-width:767px) {
    .p-input__wrapper:has(textarea) {
        min-height: 100%;
        height: 31.25rem;
    }
}

@media screen and (min-width: 768px) {
    .p-input__wrapper--ss {
        max-width: 10.875rem;
    }
}

@media screen and (min-width: 768px) {
    .p-input__wrapper--s {
        max-width: 16.25rem;
    }
}

@media screen and (min-width: 768px) {
    .p-input__wrapper--m {
        max-width: 21.0625rem;
    }
}

@media screen and (min-width: 768px) {
    .p-input__wrapper--l {
        max-width: 46.5rem;
    }
}

.p-input__wrapper--select {
    position: relative;
}

.c-deco-select {
    position: absolute;
    content: "";
    width: 1.125rem;
    height: 1.125rem;
    color: var(--dark-gray-color);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1rem;
    pointer-events: none;
    visibility: visible;
}

.c-btn-auto-postcode {
    width: 100%;
    max-width: 8.5rem;
    max-height: 2.8125rem;
    padding: 0.625rem;
    border-radius: 2.125rem;
    border: 0.0625rem solid currentColor;
    background: #FFF;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--accent-color);
    font-weight: 500;
}

@media screen and (max-width:767px) {
    .c-btn-auto-postcode {
        max-width: 7.75rem;
        font-size: 0.875rem;
    }
}

.p-input__wrapper--file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}

@media screen and (min-width: 768px) {
    .p-input__wrapper--file {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-input__wrapper--file {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media screen and (max-width:767px) {
    .p-input__wrapper--file {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.p-input__wrapper--file i {
    font-size: 1.5rem;
    color: #34C759;
    margin-right: 0.5rem;
}

.p-file__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .p-file__name span {
        text-overflow: ellipsis;
        line-height: 150%;
        /* 27.2px */
        letter-spacing: 0.32px;
    }

.p-check-box__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[type=checkbox].form-check-input {
    width: 1.25rem;
    height: 1.25rem;
}

    [type=checkbox].form-check-input:checked {
        background-color: var(--accent-color) !important;
        border-color: var(--accent-color) !important;
    }

.p-check-box-text__inline {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 170%;
    /* 28.9px */
    letter-spacing: 0.34px;
    margin-left: 1rem;
}

@media screen and (max-width:767px) {
    .p-check-box-text__inline {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .p-check-box-text__inline {
        font-size: 0.9375rem;
    }
}

.p-form-hometown__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.p-profile-page-section__body--career {
    gap: 3rem;
}

@media screen and (max-width:767px) {
    .p-profile-page-section__body--career {
        gap: 2.5rem;
    }

        .p-profile-page-section__body--career input[type=text] {
            padding: 0.625rem 1rem;
            min-height: 2.5rem;
        }
}

.p-form-label__wrapper--career {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12rem;
    flex: 0 0 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-form-label__wrapper--career {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

@media screen and (max-width:767px) {
    .p-form-label__wrapper--career {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.p-career-info__text {
    color: var(--dark-gray-color);
    line-height: 170%;
    letter-spacing: 0.32px;
}

@media screen and (max-width:767px) {
    .p-career-info__text {
        font-size: 0.875rem;
        letter-spacing: 0.28px;
    }
}

.c-btn__add {
    color: var(--accent-color);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    /* 30.6px */
    letter-spacing: 0.36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 3.75rem;
    width: 100%;
    height: 2.375rem;
    padding: 0 0.5rem;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.1875rem;
    background: #F5F5F5;
}

@media screen and (max-width:767px) {
    .c-btn__add {
        margin-top: 1.375rem;
        max-width: 7.5rem;
        padding: 0 1rem;
        font-size: 1.0625rem;
        letter-spacing: 0.34px;
    }
}

.p-form-input__wrapper--career {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-form-input__wrapper--career {
        margin-top: 1rem;
    }
}

@media screen and (max-width:767px) {
    .p-form-input__wrapper--career {
        margin-top: 1rem;
    }
}

.p-career-table__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #F5F5F5;
    line-height: 170%;
    /* 27.2px */
    letter-spacing: 0.32px;
    padding-right: 1rem;
    padding-left: 1rem;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

@media screen and (max-width:767px) {
    .p-career-table__head {
        font-size: 0.875rem;
        letter-spacing: 0.28px;
    }
}

.p-career-table-head__date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 7.25rem;
    flex: 0 0 7.25rem;
}

.p-career-table-head__cont {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.p-career-table__body {
    margin-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (max-width:767px) {
    .p-career-table__body {
        margin-top: 0.375rem;
        gap: 0.75rem;
    }
}

.p-career-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 170%;
    /* 30.6px */
    letter-spacing: 0.36px;
}

@media screen and (max-width:767px) {
    .p-career-table__row {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        letter-spacing: 0.32px;
    }
}

@media screen and (min-width: 768px) {
    .p-career-table__row {
        font-size: 1.125rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media screen and (max-width:374px) {
    .p-career-table__row {
        font-size: 0.875rem;
    }
}

.p-career-table__row .p-career-icon__wrapper {
    margin-left: auto;
}

.p-career-table-body__cont {
    margin-left: 1.5rem;
}

@media screen and (max-width:767px) {
    .p-career-table-body__cont {
        margin-left: 0.5rem;
    }
}

.p-career-input-row__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
    padding-right: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-career-input-row__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width:767px) {
    .p-career-input-row__wrapper {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-career-input-row__wrapper .p-career-icon__wrapper {
        margin-left: auto;
    }
}

@media screen and (max-width:767px) {
    .p-career-input-row__wrapper .p-career-icon__wrapper {
        margin-left: auto;
    }
}

.p-career-date__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    max-width: 15.5rem;
    width: 100%;
}

.p-career-input__wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 7.5rem;
    flex: 0 0 7.5rem;
}

@media screen and (max-width:767px) {
    .p-career-input__wrapper {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 9.4375rem;
        flex: 0 0 9.4375rem;
    }
}

@media screen and (max-width:767px) {
    .p-career-input__wrapper--year select {
        padding: 0.625rem 1rem;
        min-height: 2.5rem;
    }
}

@media screen and (max-width:767px) {
    .p-career-input__wrapper--month select {
        padding: 0.625rem 1rem;
        min-height: 2.5rem;
    }
}

.p-career-input__wrapper--cont {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-left: 0.5rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .p-career-input__wrapper--cont {
        margin-left: 0;
    }
}

@media screen and (max-width:767px) {
    .p-career-input__wrapper--cont {
        margin-left: 0;
    }
}

.p-career-icon__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1rem;
    gap: 1rem;
}

.c-btn__career {
    font-size: 1.25rem;
    color: var(--dark-gray-color);
}

.p-form-input__wrapper--checkbox {
    position: relative;
}

    .p-form-input__wrapper--checkbox i {
        position: absolute;
        font-size: 1.5rem;
        cursor: pointer;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 1rem;
        color: var(--dark-gray-color);
    }

.p-error-message__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
}

.p-error-message {
    color: var(--key-color);
    line-height: 170%;
    /* 27.2px */
    letter-spacing: 0.32px;
}

.c-btn__add--entry-section {
    color: var(--accent-color);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 170%;
    /* 30.6px */
    letter-spacing: 0.36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.5rem 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.5rem;
    background: var(--white-color);
    /* ���w�i�G�t�F�N�g */
    -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    max-width: 11.1875rem;
    width: 100%;
    margin-top: -1rem;
}

@media screen and (max-width:767px) {
    .c-btn__add--entry-section {
        font-size: 0.875rem;
        max-width: 9.125rem;
        margin-inline: auto;
        padding: 0.5rem;
        -webkit-box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.08);
        box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.08);
    }
}

.c-btn__delete--entry-section {
    max-width: 9.625rem;
    width: 100%;
    padding: 0.375rem 0.5rem;
    border-radius: 0.1875rem;
    background: #F5F5F5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.1875rem;
    background: #F5F5F5;
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.3px;
    margin-inline: auto;
    margin-top: 1rem;
}

@media screen and (max-width:767px) {
    .c-btn__delete--entry-section {
        padding: 0.4375rem 0.5rem;
        font-size: 0.875rem;
        letter-spacing: 0.28px;
    }
}

.c-btn__keep {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 15rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    background: var(--accent-color);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.48px;
    margin-inline: auto;
}

@media screen and (max-width:767px) {
    .c-btn__keep {
        font-size: 1.25rem;
        letter-spacing: 0.4px;
    }
}

.c-btn__keep_m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 15rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    background: var(--accent-color);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.48px;
    margin-inline: auto;
}

@media screen and (max-width:767px) {
    .c-btn__radio {
        font-size: 1rem;
        letter-spacing: 0.4px;
    }
}

.p-charcount__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 1rem;
    padding-right: 1rem;
    margin-top: -0.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-charcount__button {
    color: var(--dark-gray-color);
    font-size: 0.75rem;
    line-height: 170%;
    letter-spacing: 0.24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.25rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.1875rem;
    border: 0.0625rem solid var(--dark-gray-color);
    max-width: 5.625rem;
    width: 100%;
}

.c-charcount__result {
    color: var(--dark-gray-color);
    font-size: 0.75rem;
    line-height: 170%;
    letter-spacing: 0.24px;
}


.btn-check:checked + .btn-outline-primary {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--white-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}