@charset "sjis";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
/* ====== common ====== */

.body_wrapper {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.NotoSansJP {
    font-family: 'Noto Sans JP', sans-serif;
}

.NotoSerifJP {
    font-family: 'Noto Serif JP', serif;
}

.Montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

a:hover {
    text-decoration: none !important;
}
/* font size and etc... */
.f-xxs {
    font-size: 0.625rem !important; /* 10px */
}

.f-xs {
    font-size: 0.75rem !important; /* 12px */
}

.f-13px {
    font-size: 0.8125rem !important; /* 13px */
}

.f-sm {
    font-size: 0.875rem !important; /* 14px */
}

.f-md {
    font-size: 1rem !important; /* 16px */
}

.f-lg {
    font-size: 1.125rem !important; /* 18px */
}

.f-xl {
    font-size: 1.25rem !important; /* 20px */
}

.f-xxl {
    font-size: 1.5rem !important; /* 24px */
}

.f-2x {
    font-size: 2rem !important;
}

.f-3x {
    font-size: 3rem !important;
}

.f-4x {
    font-size: 4rem !important;
}

.f-white {
    color: #fff;
}

.f-grey1 {
    color: #8E867E;
}

.f-grey2 {
    color: #DED9D6;
}

.f-grey3 {
    color: #BCB4AC;
}

.f-grey4 {
    color: #9C9690;
}

.f-black {
    color: #070600;
}

.f-blue {
    color: #007bff;
}

.f-blue2 {
    color: #2AA2FF;
}

.f-red {
    color: #FF0055;
}

.fw-400 {
    font-style: normal;
    font-weight: 400;
}

.fw-500 {
    font-style: normal;
    font-weight: 500;
}

.fw-600 {
    font-style: normal;
    font-weight: 600;
}

.fw-700 {
    font-style: normal;
    font-weight: 700;
}

.lh-14 {
    line-height: 1.4;
}

.lh-18 {
    line-height: 1.8;
}

.lh-20 {
    line-height: 2;
}

.w-40 {
    width: 40% !important;
}

.w-45 {
    width: 45% !important;
}

.mw_300 {
    max-width: 300px !important;
}

.mw_360 {
    max-width: 360px !important;
}

.mw_480 {
    max-width: 480px !important;
}

.mw_600 {
    max-width: 600px !important;
}

.mw_720 {
    max-width: 720px !important;
}

.mw_960 {
    max-width: 960px !important;
}

.text-decoration-underline {
    text-decoration: underline;
}

.flex-wrap-wrap {
    flex-wrap: wrap;
}

.list-style-none {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* --- */
.pc_none {
    display: none;
}

@media (max-width:1024px) {
    .sp_none {
        display: none !important;
    }

    .pc_none {
        display: inline-block;
    }
}



/* -------- */
@media (min-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

select {
    -webkit-appearance: none;
    appearance: none;
}

    select::-ms-expand {
        display: none;
    }

select {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 12px auto;
    background: #FFFFFF;
    border: 1px solid #DED9D6;
    box-sizing: border-box;
    border-radius: 4px;
    background-image: url('/img/svg/expand_more_black_24dp.svg');
    background-repeat: no-repeat;
    background-position: top 12px right 12px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"] {
    display: block;
    width: 100%;
    height: 48px;
    padding: 12px;
    margin: 12px auto;
    background: #FFFFFF;
    border: 1px solid #DED9D6;
    box-sizing: border-box;
    border-radius: 4px;
}

textarea {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 12px auto;
    background: #FFFFFF;
    border: 1px solid #DED9D6;
    box-sizing: border-box;
    border-radius: 4px;
}

.des-radio {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .des-radio input[type=radio] {
        display: none;
    }

    .des-radio li label {
        position: relative;
        top: 0;
        text-align: left;
        padding: 6px;
    }

    .des-radio input[type=radio] + label:before {
        content: "";
        display: inline-block;
        background-size: contain;
        width: 36px;
        height: 24px;
        margin-right: 6px;
        background-image: url(/img/svg/radio_button_unchecked_black_24dp.svg);
        position: relative;
        background-repeat: no-repeat;
        top: 6px;
        left: 6px;
    }

    .des-radio input[type=radio]:checked + label::before {
        background-image: url(/img/svg/radio_button_checked_black_24dp.svg);
    }

    .des-radio input[type=radio]:checked + label {
        border: 1px solid #070600;
    }

    .des-radio li label:hover {
        cursor: pointer;
    }



.des-checkbox {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .des-checkbox input[type=checkbox] {
        display: none;
    }

    .des-checkbox li label {
        position: relative;
        top: 0;
        text-align: left;
        padding: 6px 24px 8px 6px;
    }

    .des-checkbox input[type=checkbox] + label:before {
        content: "";
        display: inline-block;
        background-size: contain;
        width: 36px;
        height: 24px;
        margin-right: 6px;
        background-image: url(/img/svg/checkbox_button_unchecked_black_24dp.svg);
        position: relative;
        background-repeat: no-repeat;
        top: 6px;
        left: 6px;
    }

    .des-checkbox input[type=checkbox]:checked + label::before {
        background-image: url(/img/svg/checkbox_button_checked_black_24dp.svg);
    }

    .des-checkbox input[type=checkbox]:checked + label {
        border: 1px solid #070600;
        border-radius: 8px;
    }

    .des-checkbox li label:hover,
    .des-checkbox label:hover {
        cursor: pointer;
    }


/* ====== des ====== */
* {
    font-family: sans-serif, 'Noto Sans JP', HiraKakuPro-W3,'ヒラギノ角ゴ Pro W3','メイリオ', Meiryo;
    color: #070600;
}


.bg-yellow {
    background: #FFF255;
}

.bg-yellow2 {
    background: #FFFCD4;
}

.bg-grey3 {
    background: #F4F2EE;
}

.bg-grey4 {
    background: #FAF9F7;
}

.bg-grey5 {
    background: #EBE8E3;
}
.bg-orange {
    background: linear-gradient(transparent 0%, #ff9900 0%);
}
.bg-orange-nrw {
    background: linear-gradient(transparent 80%, #ff9900 80%);
}
.bg-yellow3 {
    background: linear-gradient(transparent 0%, #ffff66 0%);
}
.bg-yellow3-nrw {
    background: linear-gradient(transparent 80%, #ffff66 80%);
}
.bg-pink {
    background: linear-gradient(transparent 0%, #ff99cc 0%);
}
.bg-pink-nrw {
    background: linear-gradient(transparent 80%, #ff99cc 80%);
}
.border-top-white {
    border-top: 1px solid #fff;
}

.border-y-grey3 {
    border-top: 1px solid #EBE8E3;
    border-bottom: 1px solid #EBE8E3;
}

.border-grey3 {
    border: 1px solid #EBE8E3;
}

.border-red-3 {
    border: 3px solid #FF0055;
}

.border-bottom-grey2 {
    border-bottom: 1px solid #DED9D6;
}

.text-x-border {
    display: flex;
    align-items: center;
}

    .text-x-border:before,
    .text-x-border:after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background-color: #DED9D6;
    }

    .text-x-border:before {
        margin-right: 1rem;
    }

    .text-x-border:after {
        margin-left: 1rem;
    }

.position-unset {
    position:unset !important;
}
    .position-unset.sidebar__inner {
       width:unset !important;
       
    }

.btn.arw01 {
    background: #FFF255;
    background-image: url('/img/svg/arw01.svg');
    background-repeat: no-repeat;
    background-position: right 24px top 24px;
    border-radius: 4px;
    height: 72px;
    min-width: 290px;
    padding: 0 76px 0 56px;
    line-height: 76px;
    font-weight: bold;
    font-size: 1.5rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.arw02 {
    background: #FFF255;
    background-image: url('/img/svg/arw01.svg');
    background-repeat: no-repeat;
    background-position: right 24px top 9px;
    border-radius: 4px;
    height: 44px;
    padding: 0 76px 0 56px;
    line-height: 44px;
    border: 1px solid #FFF255;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}


.btn.arw03 {
    background: #FFF255;
    background-image: url('/img/svg/arw01.svg');
    background-repeat: no-repeat;
    background-position: right 24px top 15px;
    border-radius: 4px;
    height: 56px;
    min-width: 290px;
    padding: 0 76px 0 56px;
    line-height: 56px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.btn_sm_yellow {
    background: #FFF255;
    border: 1px solid #FFF255;
    border-radius: 4px;
    height: 44px;
    min-width: 160px;
    padding: 0 24px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1.125rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.btn_sm_bk {
    background: #FFF;
    border: 1px solid #070600;
    border-radius: 4px;
    height: 44px;
    min-width: 160px;
    padding: 0 24px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1.125rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.btn_xs_bk {
    background: #FFF;
    border: 1px solid #070600;
    border-radius: 4px;
    height: 30px;
    padding: 0 12px;
    line-height: 30px;
    font-size: 0.75rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.btn_xs_grey1 {
    background: #FFF;
    border: 1px solid #8E867E;
    color: #8E867E;
    border-radius: 4px;
    height: 24px;
    padding: 0 12px;
    line-height: 24px;
    font-size: 0.75rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.login {
    background: #FFF;
    background-image: url('/img/svg/icon_login.svg');
    background-repeat: no-repeat;
    background-position: left 12px top 12px;
    border-radius: 4px;
    border: 1px solid #070600;
    height: 44px;
    min-width: 160px;
    padding: 0 24px 0 50px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.logout {
    background: #FFF;
    background-image: url('/img/svg/icon_logout.svg');
    background-repeat: no-repeat;
    background-position: right 12px top 12px;
    border-radius: 4px;
    border: 1px solid #070600;
    height: 44px;
    min-width: 160px;
    padding: 0 50px 0 24px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.prof_edit {
    position: relative;
    background: #FDD816;
    box-shadow: inset 0px -2px 0px #FBB702;
    border-radius: 4px;
    background-image: url('/img/icon/icon-edit.svg');
    background-repeat: no-repeat;
    background-position: left 12px top 10px;
    height: 44px;
    min-width: 200px;
    padding: 0 24px 0 50px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}


.btn.prof_edit_red {
    position: relative;
    color: #ffffff;
    background: #FF0055;
    box-shadow: inset 0px -2px 0px #E8014E;
    border-radius: 4px;
    background-image: url('/img/icon/icon-edit-white.svg');
    background-repeat: no-repeat;
    background-position: left 12px top 10px;
    height: 44px;
    min-width: 200px;
    padding: 0 24px 0 50px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.mypage_01 {
    position: relative;
    color: #ffffff;
    background: #0A8CAD;
    box-shadow: inset 0px -4px 0px #02688E;
    border-radius: 4px;
    background-image: url('/img/mypage/arw01.svg');
    background-repeat: no-repeat;
    background-position: right 12px top 18px;
    height: 56px;
    width: 100%;
    padding: 0 50px 0 24px;
    line-height: 56px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: block;
    align-items: center;
    text-align: center;
}

    .btn.mypage_01.disable,
    .btn.mypage_03.disable,
    .btn.mypage_04.disable {
        pointer-events: none;
        opacity: 0.2;
    }


.btn.mypage_03 {
    position: relative;
    color: #ffffff;
    background: #32BDD2;
    box-shadow: inset 0px -4px 0px #0A8CAD;
    border-radius: 4px;
    background-image: url('/img/mypage/arw03.svg');
    background-repeat: no-repeat;
    background-position: right 12px top 18px;
    height: 56px;
    width: 100%;
    padding: 0 50px 0 24px;
    line-height: 56px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: block;
    align-items: center;
    text-align: center;
}

.btn.mypage_04 {
    position: relative;
    color: #070600;
    background: #FDD816;
    box-shadow: inset 0px -4px 0px #FBB702;
    border-radius: 4px;
    background-image: url('/img/mypage/arw04.svg');
    background-repeat: no-repeat;
    background-position: right 12px top 18px;
    height: 56px;
    width: 100%;
    padding: 0 50px 0 24px;
    line-height: 56px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: block;
    align-items: center;
    text-align: center;
}

.btn.mypage_05 {
    position: relative;
    color: #ffffff;
    background: #057FC3;
    box-shadow: inset 0px -4px 0px #015EA1;
    border-radius: 4px;
    background-image: url('/img/mypage/arw05.svg');
    background-repeat: no-repeat;
    background-position: right 12px top 18px;
    height: 56px;
    width: 100%;
    padding: 0 50px 0 24px;
    line-height: 56px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: block;
    align-items: center;
    text-align: center;
}

.btn.mendanform {
    position: relative;
    background: #ffffff;
    box-shadow: inset 0px -2px 0px #070600;
    border: 1px solid #070600;
    border-radius: 4px;
    background-image: url('/img/icon/icon-cal.svg');
    background-repeat: no-repeat;
    background-position: left 12px top 8px;
    height: 44px;
    min-width: 200px;
    padding: 0 24px 0 50px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.btn-default-bk {
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #070600;
    height: 44px;
    display: block;
    padding: 0 24px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    align-items: center;
    text-align: center;
}

.btn.btn-default-grey {
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #8E867E;
    color: #8E867E;
    height: 44px;
    display: block;
    padding: 0 24px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    align-items: center;
    text-align: center;
}

.btn.btn-default-red {
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #FF0055;
    color: #FF0055;
    height: 44px;
    display: block;
    padding: 0 24px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    align-items: center;
    text-align: center;
}

.btn.btn-default-yel {
    background: #FFF255;
    border: 1px solid #FFF255;
    border-radius: 4px;
    height: 44px;
    display: block;
    padding: 0 24px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    align-items: center;
    text-align: center;
}

    .btn.btn-default-yel.h56 {
        height: 56px;
        line-height: 56px;
    }

.btn.btn-default-ora {
    background: #fda116;
    border: 1px solid #fda116;
    border-radius: 4px;
    height: 44px;
    display: block;
    padding: 0 24px;
    line-height: 44px;
    font-weight: bold;
    font-size: 1rem;
    align-items: center;
    text-align: center;
}

.btn.grey4 {
    background: #FAF9F7;
    border-radius: 4px;
    border: 1px solid #EBE8E3;
    height: 72px;
    min-width: 290px;
    padding: 0 76px 0 56px;
    line-height: 76px;
    font-weight: normal;
    font-size: 1.25rem;
    /* or 38px */
    display: inline-block;
    align-items: center;
    text-align: center;
}

.btn.btn-mini-bk {
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #070600;
    height: 30px;
    display: block;
    padding: 0 24px;
    line-height: 30px;
    font-weight: bold;
    font-size: 0.875rem;
    align-items: center;
    text-align: center;
}

.btn.btn-menu-bk {
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #070600;
    padding: 14px 24px;
    margin: 8px auto;
    display: block;
    font-weight: bold;
    font-size: 1rem;
    align-items: center;
    text-align: center;
}

.btn.btn-menu-grey {
    background: #FFF;
    border-radius: 4px;
    color: #8E867E;
    border: 1px solid #8E867E;
    padding: 14px 24px;
    margin: 8px auto;
    display: block;
    font-weight: bold;
    font-size: 1rem;
    align-items: center;
    text-align: center;
}


.wrap_gf_dt01 {
    background: url(/img/img/gf_dt01.jpg);
    background-size: cover;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-upper-8 {
    border-radius: 8px 8px 0 0;
}

.rounded-lower-8 {
    border-radius: 0 0 8px 8px;
}

.msg_err {
    display: block;
    color: #FF0055;
    font-size: 0.75rem;
    line-height: 20px;
    margin-bottom: 8px;
    background: url(/img/svg/icon_attention.svg);
    background-repeat: no-repeat;
    text-indent: 18px;
    background-position: top 2px left 0;
}

.tag_mini_blk {
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    margin: 0px 8px;
    padding: 0 6px;
    background: #070600;
    border-radius: 2px;
    height: 16px;
    bottom: 2px;
    position: relative;
}

.tag_mini_yellow {
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #070600;
    margin: 0px 8px;
    padding: 0 6px;
    background: #FFF255;
    border-radius: 2px;
    height: 16px;
    bottom: 2px;
    position: relative;
}

.tag_mini_grey {
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    color: #BCB4AC;
    margin: 0px 8px;
    padding: 0 6px;
    background: #FAF9F7;
    border-radius: 2px;
    height: 16px;
    bottom: 2px;
    position: relative;
}

.tag-yel {
    color: #070600;
    background: #FFF255;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5rem;
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 2px 7px;
    margin-bottom: 6px;
    border: 1px solid #FFF255;
    box-sizing: border-box;
    border-radius: 4px;
    top: -1px;
    position: relative;
}


.tag-date-yel {
    text-align: center;
    display: inline-block;
    width: 144px;
    height: 20px;
    color: #070600;
    background: #FFF255;
    font-size: 0.75rem;
    padding: 2px 7px;
    border-radius: 4px;
}

.icon_home {
    position: relative;
    bottom: 2px;
}

/* nav */
.header {
    position: relative;
    height: 80px;
}

.logo {
    display: inline-block;
}

.nav_catch {
    line-height: 48px;
    margin-left: 1rem;
    display: inline-block;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

    nav ul li {
        display: inline-flex;
        font-size: 1rem;
        font-weight: 700;
        margin: auto;
        padding: 0;
        width: 100%;
    }

        nav ul li a {
            color: #070600;
            display: block;
            height: 56px;
            width: 100%;
            text-align: center;
            line-height: 56px;
            position: relative;
        }

            nav ul li a:hover {
                color: #070600;
            }

            nav ul li a::after {
                position: absolute;
                bottom: 0;
                left: 50%;
                content: '';
                width: 0;
                height: 1px;
                background-color: #000;
                transition: .3s;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }

            nav ul li a:hover::after {
                width: 100%;
            }
/*dialog*/
.dialog-des {
    width: 100% !important;
    max-width: 500px !important;
}
/* news */
.wrap_news {
    border-bottom: 1px solid #DED9D6;
}
.wrap_news_item {
    border-top: 1px solid #DED9D6;
    padding:1rem;
    background-image:url(/img/icon/arw.svg);
    background-repeat:no-repeat;
    background-position:right ;
}
    .wrap_news_item .date {
        display: inline-flex;
        min-width:100px;
        padding-right:1rem;
        font-size: 0.8125rem !important;
    }
    .wrap_news_item .wrap_text {
        display: inline-flex;
        align-items: center;
        width: calc( 100% - 300px );
        padding-left: 1rem;
    }
    .wrap_news_item .text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.875rem !important;
    }
/*reg*/
.reg-validation {
    background: #FF0055;
    width: 100%;
    padding: 16px;
    display: block;
    text-align: center;
    margin-bottom: 50px;
}

    .reg-validation ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .reg-validation ul li {
            color: #ffffff;
            font-size: 0.875rem;
            line-height: 1.8;
            font-weight: 500px;
        }

.step {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .step li {
        position: relative;
        list-style-type: none;
        text-align: center;
        text-transform: uppercase;
        width: 25%;
        font-weight: 500;
        font-size: 0.875rem;
        color: #DED9D6;
        counter-increment: steps;
    }

        .step li:before {
            display: block;
            width: 26px;
            height: 26px;
            margin: 7px auto 10px auto;
            content: '';
            line-height: 26px;
            font-size: 12px;
            text-align: center;
            border-radius: 50%;
            background-color: #F4F2EE;
            content: counter(steps);
        }

        .step li:after {
            position: absolute;
            z-index: -1;
            top: 19px;
            left: -50%;
            width: 100%;
            height: 2px;
            content: '';
            background-color: #F4F2EE;
        }

        .step li:first-child:after {
            content: none;
        }

        .step li.crnt,
        .step li.comp {
            color: #070600;
        }

            .step li.crnt:before,
            .step li.comp:before {
                background-color: #FFF255;
                color: #070600;
            }

            .step li.crnt:after,
            .step li.comp:after {
                background-color: #FFF255;
            }


.draftbtn.floating {
    border: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #FFF255;
    border-radius: 0;
    height: 72px;
    font-size: 1.25rem;
}

.reg-msg {
    background: #FF0055;
    color: #ffffff;
    width: 100%;
    padding: 16px;
    display: block;
    text-align: center;
}

    .reg-msg:empty {
        display: none !important;
    }

.wrap_regall div {
    position: relative;
}

.textmonidisp {
    color: #2ba1ff;
    position: absolute;
    top: -24px;
    right: 5px;
}

    .textmonidisp:after {
        content: '文字'; /*文字*/
        font-size: 10px;
    }

    .textmonidisp:before {
        content: '現在'; /*現在*/
        font-size: 10px;
    }

.wrap_sibouriyuu .textmonidisp,
.wrap_textmoni0 .textmonidisp {
    top: 0;
}

.wrap_textmoni15 .textmonidisp {
    top: 15px;
}

.wrap_shikakujouhou .textmonidisp,
.wrap_textmoni31 .textmonidisp {
    top: 31px;
}

.des-checkbox.skill_tag label {
    padding: 0 10px 5px 0;
}

.reg_ex {
    color: #8E867E;
    font-size: 0.75rem;
}

.reg_select_shibou {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

    .reg_select_shibou li {
        list-style: none;
        display: inline-flex;
        height: 120px;
        width: 46%;
        text-align: center;
        margin: 0 2%;
    }

        .reg_select_shibou li label div:hover {
            cursor: pointer;
        }

        .reg_select_shibou li label {
            width: 100%;
        }

            .reg_select_shibou li label div {
                height: 120px;
                width: 100%;
                align-items: center;
                display: flex;
                border-radius: 4px;
                border: 1px solid #DED9D6;
            }

                .reg_select_shibou li label div img {
                    margin: auto;
                }

    .reg_select_shibou input[type="radio"] {
        display: none;
    }

        .reg_select_shibou input[type="radio"]:checked + label div {
            border: 1px solid #070600;
        }

.reg_select_sex {
    display: flex;
    margin: 0;
    padding: 0;
}

    .reg_select_sex li {
        display: inline-flex;
        height: 48px;
        width: calc( 50% - 9px);
        margin: 0 2%;
        padding: 0;
    }

        .reg_select_sex li label {
            width: 100%;
            height: 48px;
            border-radius: 4px;
            border: 1px solid #DED9D6;
        }


        .reg_select_sex li:first-child {
            margin: 0 7px 4px 0;
        }

        .reg_select_sex li:nth-child(2) {
            margin: 0 0 4px 7px;
            text-align: right;
        }

.reg_select_bunri {
    display: block;
    margin: 0;
    padding: 0;
}

    .reg_select_bunri li {
        display: inline-block;
        height: 48px;
        margin: 12px 4% 6px 0;
        padding: 0;
    }

        .reg_select_bunri li label {
            width: 100%;
            height: 48px;
            padding-right: 24px;
            border-radius: 4px;
            border: 1px solid #DED9D6;
        }

.select-sotsunen1 {
    display: inline-block;
    width: calc( 55% - 50px );
}

.select-sotsunen2 {
    display: inline-block;
    width: calc( 45% - 50px );
}

.col2-textbox input[type="text"]:first-child {
    width: calc( 50% - 9px);
    margin-right: 6px;
    margin-bottom: 4px;
}

.col2-textbox input[type="text"]:nth-child(2) {
    width: calc( 50% - 9px);
    margin-left: 5px;
    margin-bottom: 4px;
}

.col3-textbox-ymd select:first-child {
    width: calc( 33.333333% - 12px);
    margin-right: 6px;
    margin-bottom: 4px;
    display: inline-block;
}

.col3-textbox-ymd select:nth-child(2),
.col3-textbox-ymd select:nth-child(3) {
    width: calc( 33.333333% - 44px);
    margin-left: 5px;
    margin-bottom: 4px;
    display: inline-block;
}

.col3-textbox-tel input[type="text"] {
    width: calc( 100% / 3 - 12px );
    display: inline-block;
}

.des-checkbox.kinmuchi li {
    display: inline-block;
}

div.plevel {
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 3px 0px 0px 0px;
    background-color: #eeeeee;
}

div.plevel2 {
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 3px 0;
    background-color: #ffffff;
}

.removeThis {
    display: none;
}

.plevel-tag {
    background-color: #2ba1ff;
    padding: 4px 8px;
    margin: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
}

    .plevel-tag span.pgs {
        color: #fff;
        font-weight: 500;
        font-size: 14px;
    }

.pgdel {
    color: #04406f;
    font-weight: 900;
    font-size: 16px;
}

.prselect li label {
    padding-right: 24px;
    padding-bottom: 10px;
    border-radius: 4px;
}

/*
    tobiz
*/
.tobiz {
    display: block;
}
/* des */
.wrap_title {
    position: relative;
    height: 160px;
}

    .wrap_title .g-cat {
        position: absolute;
        top: 85px;
        right: calc( 50% - 300px );
    }

.wrap_subtitle {
    position: relative;
    text-align: center;
}

    .wrap_subtitle h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0;
        padding: 8px 0;
    }
/* festival-box */
.festival-box {
    border-radius: 8px;
    background: #FFFFFF;
    padding: 0 !important;
    max-width: 280px;
    /*    margin: auto;*/
}

    .festival-box .gfpanel_wrap {
        overflow: hidden;
        height: 146px;
        width: 100%;
        border-radius: 8px 8px 0px 0px;
    }

    .festival-box img.gfpanel {
        width: 100%;
        height: 146px;
        border-radius: 8px 8px 0px 0px;
        object-fit: cover;
        transition-duration: .3s;
    }

    .festival-box:hover img.gfpanel {
        transform: scale(1.08);
        transition-duration: .3s;
    }

    .festival-box .tag,
    .tag {
        color: #070600;
        background: #FAF9F7;
        font-size: 0.75rem;
        font-weight: 400;
        line-height: 1.5rem;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 2px 7px;
        margin-bottom: 6px;
        border: 1px solid #EBE8E3;
        box-sizing: border-box;
        border-radius: 4px;
    }

    .festival-box a:hover span {
        text-decoration: none !important;
    }

    .festival-box .gfeyecatch {
        width: 100%;
        border-radius: 8px 8px 0px 0px; /*
        height: 222px;*/
        object-fit: cover;
    }

    .festival-box .g-cat {
        position: absolute;
        top: -65px;
        right: 60px;
    }

    .festival-box.postdeadline .gfpanel_wrap,
    .festival-box.postdeadline .wrap_imggfpanel {
        position: relative;
    }

        .festival-box.postdeadline .gfpanel_wrap::after,
        .festival-box.postdeadline .wrap_imggfpanel::after {
            content: "";
            height: calc( 100% + 40px );
            width: 100%;
            position: absolute;
            top: 0;
            display: block;
            background-color: #737373;
            mix-blend-mode: multiply;
        }

        .festival-box.postdeadline .gfpanel_wrap::before {
            content: "";
            height: 100%;
            width: 100%;
            position: absolute;
            bottom: 0;
            display: block;
            background-image: url('/img/panel/tag-postdeadline.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            z-index: 100;
        }

        .festival-box.postdeadline .wrap_imggfpanel::after {
            border-radius: 8px 0px 0px 8px;
        }
        .festival-box.postdeadline .wrap_imggfpanel::before {
            content: "";
            height: 100%;
            width: 100%;
            position: absolute;
            bottom: 0;
            display: block;
            background-image: url('/img/panel/tag-postdeadline-sp.png');
            background-repeat: no-repeat;
            background-size: contain;
            z-index: 100;
        }

        /*GfPanel*/
.wrap_gfpanel_cname {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.wrap_gfpanel_enddate {
    width: 128px;
    height:40px;
    line-height:40px;
    display: inline-block;
    text-align: center;
    border-radius: 0 0 0 8px;
    position: absolute;
    bottom: 0;
    background-color: #EBE8E3;
}

.postdeadline .wrap_gfpanel_enddate {
    bottom: -40px;
}
/*default*/
.wrap_default_catch {
    height: 400px;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

    .wrap_default_catch object,
    .wrap_default_catch .catch_png {
        height: 400px;
        display: inline-block;
        overflow: hidden;
        position: absolute;
        right: calc(( 100% - 1280px ) / 2 );
        margin: 0 auto;
    }

.loop_logo img {
    width: auto;
    height: 100%;
}

.loop_logo {
    display: flex;
    width: 100vw;
    height: 54px;
    overflow: hidden;
}

    .loop_logo img:first-child {
        animation: loop_logo 50s -25s linear infinite;
    }

    .loop_logo img:last-child {
        animation: loop_logo2 50s linear infinite;
    }

@keyframes loop_logo {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop_logo2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

.title01 {
    height: 160px;
    text-align: center;
    position: relative;
}

.default02 {
    max-width: 423px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
}

.icon_male,
.icon_female {
    position: absolute;
    bottom: 0;
    right: 90px;
}

.icon_it {
    position: absolute;
    margin: 0 auto;
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
}

.icon_biz {
    position: absolute;
    margin: 0 auto;
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
}

.btn.more {
    background-image: url('/img/svg/arw02.svg');
    background-repeat: no-repeat;
    background-position: right top;
    height: 26px;
    padding: 0 34px 0 0;
    line-height: 24px;
    font-weight: 400;
    font-size: 0.875rem;
    display: inline-block;
}

    .btn.more:hover {
        text-decoration: underline;
    }
/* gf_list */

.index-back {
    padding: 18px 12px 14px 12px;
    text-align: center;
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 600;
    width: 100%;
    max-width: 460px;
    border-radius: 8px;
    background: -webkit-repeating-linear-gradient(-45deg, #F4F2EE, #F4F2EE 5px, #fff 5px, #fff 10px);
    background: repeating-linear-gradient(-45deg, #F4F2EE, #F4F2EE 5px, #fff 5px, #fff 10px);
}

.flow {
    position: relative;
    text-align: center;
    padding: 36px 12px 24px 12px;
}

    .flow:after {
        border: solid transparent;
        content: '';
        height: 0;
        width: 0;
        pointer-events: none;
        position: absolute;
        border-top-width: 20px;
        border-bottom-width: 20px;
        border-left-width: 10px;
        border-right-width: 10px;
        margin-left: -10px;
        top: 100%;
        left: 50%;
        z-index: 1000;
    }

.bg-grey3.flow:after {
    border-top-color: #F4F2EE;
}

.flow.upper-arw:before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-left: -10px;
    top: 0;
    left: 50%;
    border-top-color: #ffffff;
    z-index: 1000;
}

.tabmenu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .tabmenu li,
    .tabmenu div {
        /*        display: inline-flex;*/
        width: 25%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-size: 1rem;
        cursor: pointer;
        border: solid 2px #e9e9e9;
        border-left: 0;
        background-color: #e9e9e9;
        color: #666;
    }

    .tabmenu div {
        font-size: 0.875rem;
    }

        .tabmenu li:first-child, .tabmenu div:first-child {
            border-left: solid 2px #e9e9e9;
        }

        .tabmenu li.gf-select,
        .tabmenu li.event-select,
        .tabmenu div.gf-select,
        .tabmenu div.event-select {
            color: #bbb;
            background-color: #fff;
        }

.wrap_gf_list .festival-box {
    margin-right: calc( ( 33.333333% - 280px ) / 2 );
    margin-left: calc( ( 33.333333% - 280px ) / 2 );
}

/* gf_dt */
.wrap_gf_dt .col-lg-9 {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}

.wrap_gf_dt .col-lg-3 {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}

.wrap_gf_dt .festival-box {
    min-width: 280px;
    max-width: unset;
}

.wrap_related .festival-box {
    max-width: 280px;
}

.table-gf {
    border: 1px solid #DED9D6;
    box-sizing: border-box;
    border-radius: 8px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    overflow: hidden;
}

    .table-gf th {
        background: #F4F2EE;
        padding: 1rem;
        border-bottom: 1px solid #DED9D6;
    }

    .table-gf td {
        padding: 1rem;
        border-bottom: 1px solid #DED9D6;
        word-break: break-all;
    }

    .table-gf tbody tr:last-child th,
    .table-gf tbody tr:last-child td {
        border-bottom: 0 !important;
    }

ul.clist {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.clist li {
        padding-bottom: 8px;
    }

.table_cinfo {
    width: 100%;
    max-width: 1000px;
    overflow-x: scroll !important;
    display: block;
    padding-bottom: 8px;
}

    .table_cinfo .table_wrap {
/*        border-radius: 8px;
        border: 1px solid #DED9D6;*/
    }

    .table_cinfo th.fixed {
        position: sticky;
        position: -webkit-sticky;
        left: 0;
    }

    .table_cinfo td.fixed {
        position: sticky;
        position: -webkit-sticky;
        left: 0;
        border: 1px solid #DED9D6 !important;
    }

    .table_cinfo .fixed:before {
        content: "";
        position: absolute;
        border-right: 1px solid #DED9D6;
        top: -1px;
        left: -1px;
        width: 1px;
        height: 100%;
    }
    .table_cinfo .fixed:after {
        content: "";
        position: absolute;
        border-right: 1px solid #DED9D6;
        top: -1px;
        right: -1px;
        width: 1px;
        height: 100%;
    }

    .table_cinfo td {
        padding: 12px 8px;
    }

    .table_cinfo th {
        background: #F4F2EE ;
        text-align:center;
    }

    .table_cinfo td,
    .table_cinfo th {
        border: 1px solid #DED9D6 !important;
        width: 180px;
        min-width: 180px;
        padding: 8px;
    }


    .table_cinfo tr td:first-child {
        min-width: 200px;
        width: 200px;
        background: #FAF9F7;
        z-index: 1;
    }
    .table_cinfo tr th:first-child {
        min-width: 200px;
        width: 200px;
        background: #F4F2EE;
        border: 1px solid #DED9D6 !important;

    }

    .table_cinfo td.jigyou div,
    .table_cinfo td.konna div {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-all;
    }
    .table_cinfo th.shainnum,
    .table_cinfo td.shainnum,
    .table_cinfo th.setsuritsu,
    .table_cinfo td.setsuritsu {
        width: 150px;
        min-width: 150px;
    }
    .table_cinfo th.jigyou,
    .table_cinfo td.jigyou,
    .table_cinfo th.konna,
    .table_cinfo td.konna {
        width: 240px;
        min-width: 240px;
    }

        /*gf_thanks*/
        .msg_attention {
    color: #FF0055;
}

    .msg_attention::before {
        content: '';
        width: 100%;
        height: 40px;
        display: block;
        background-image: url(/img/svg/icon_attention.svg);
        background-repeat: no-repeat;
        background-position: top 0 left 50%;
        background-size: 32px 32px;
    }

.note {
    margin: 0;
    padding: 24px 0 24px 24px;
}

    .note li {
        margin: 0;
        padding: 6px 0;
    }


/* event */
.wrap_event_list .festival-box {
    margin: unset;
    margin-right: calc( ( 33.333333% - 280px ) / 2 );
    margin-left: calc( ( 33.333333% - 280px ) / 2 );
}


.wrap_event_dt .table-gf th {
    font-size: 0.875rem;
    white-space: nowrap;
}

.wrap_kon {
    border-radius: 8px;
    padding: 0.5rem 1rem 1rem 1rem;
    background: -webkit-repeating-linear-gradient( -45deg, #F4F2EE, #F4F2EE 5px, #fff 5px, #fff 10px);
    background: repeating-linear-gradient( -45deg, #F4F2EE, #F4F2EE 5px, #fff 5px, #fff 10px);
}

    .wrap_kon .kon {
        font-weight: 500;
        line-height: 2;
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
    }

.wrap_event_photo {
    display: flex;
    justify-content: flex-start;
}

    .wrap_event_photo .event_photos {
        display: inline-flex;
    }

        .wrap_event_photo .event_photos img {
            max-width: 100px;
            margin: 2rem;
        }



/* StudentDB */
.page-link {
    border: 0;
    display: inline-flex;
}

    .page-link.active {
        font-weight: bold;
        border-radius: 50%;
        background: #1592e6;
        color: #fff;
        width: 40px;
        height: 40px;
        padding: 9px 1px;
        text-align: center;
        white-space: nowrap;
        display: inline-block;
    }

.wrap_std {
    border: 1px solid #DED9D6;
    border-radius: 8px;
    margin: auto;
    text-align: justify;
    word-break: break-all;
}

    .wrap_std a {
        display: block;
        color: #070600;
    }

    .wrap_std .faceimg {
        width: 80px;
        height: 80px;
        border-radius: 40px;
        border: 1px solid #d9dde0;
        object-fit: cover;
        display: block;
        overflow: hidden;
        margin: auto;
    }

        .wrap_std .faceimg img {
            width: 80px;
            height: 80px;
            border-radius: 40px;
            object-fit: cover;
            display: block;
        }

    .wrap_std .nophoto {
        position: relative;
        background: #FAF9F7;
        overflow: hidden;
    }

        .wrap_std .nophoto img {
            position: absolute;
            top: 10px;
            left: 5px;
            width: 120px;
            height: unset;
            border-radius: unset;
            object-fit: unset;
        }

    .wrap_std .icons {
        height: 40px;
        text-align: center;
        padding-bottom: 1rem;
    }

    .wrap_std .name {
        font-size: 0.875rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .wrap_std .univ {
        font-size: 0.875rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 1rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.des-checkbox.shubetsu input[type=checkbox] + label {
    padding: 6px 18px 10px 8px;
}

.des-checkbox.shubetsu input[type=checkbox]:checked + label {
}
/*mypage*/
.icon_q {
    width: 16px;
    position: relative;
    bottom: 1px;
}

input.pgbtn {
    background: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    height: 50px;
    line-height: 50px;
    display: block;
    text-align: center;
    color: #2ba1ff;
    border: 1px solid #2ba1ff;
    padding: 0;
    margin: 15px 15px 20px auto;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    -webkit-appearance: none;
}

.lp_bn01 {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.Wrap_float-link {
    display: inline-block;
    width: auto;
    position: fixed;
    right: 50px;
    bottom: 60px;
    text-align: right;
    z-index: 99999999;
}

.float-close img {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
}

.Wrap_float-link a {
    display: inline-block;
    cursor: pointer;
}

.float-link img {
    width: 336px;
}

.modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    align-items: center;
    display: none;
}

    .modal.is_active {
        display: none;
    }

@media (max-width:960px) {

    .modal.is_active {
        display: flex;
    }
}


.modal_bg {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
}

.modal_wrap {
    text-align: right;
    width: 100%;
    margin: 0 auto;
    z-index: 10000;
    position: fixed;
    top: calc( 50% - 160px );
    left: 0;
    right: 0;
    /*    height:320px;
    width:356px;*/
    height: 256px;
    width: 284px;
}

    .modal_wrap .float-link img {
        width: 284px;
    }

.modal_inner {
    padding: 0;
}

.modal_close {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 99999999;
}

    .modal_close img {
        width: 40px;
        height: 40px;
    }


.modal-container {
    position: absolute;
    top: 130px;
    right: 16px;
    width: 200px;
    height: 100px;
    background: transparent;
    overflow: auto;
    opacity: 1;
    visibility: visible;
    /*    transition: .3s;*/
    box-sizing: border-box;
    z-index: 1000;
}
    /*    .modal-container:before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        height: 100%;
    }*/
    .modal-container.no_active {
        opacity: 0;
        visibility: hidden;
    }

.modal-body {
    position: relative;
    display: inline-block;
    width: 100%; /*
    height: 100%;*/
}

.modal-close {
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    cursor: pointer;
}

    .modal-close.closebtn {
        text-align: center;
        width: 26px;
        height: 26px;
        font-size: 22px;
        line-height: 27px;
        border-radius: 13px;
        color: #fff;
        top: 0;
        right: 0;
        z-index: 100;
        display: block;
        color: #fff;
        background: #000;
        font-size: 20px;
        font-weight: bold;
    }
/*モーダル内のコンテンツの指定*/
.modal-content-mypage a img {
    width: 176px;
    filter: drop-shadow(0px 4px 8px rgba(156, 150, 144, 0.3));
}

.modal-content-mypage {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
}

.pwdialog-des {
    max-width: 100%;
}

.mypage_top .faceimg {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 1px solid #d9dde0;
    object-fit: cover;
    display: block;
    overflow: hidden;
    margin: auto;
}

    .mypage_top .faceimg img {
        width: 120px;
        height: 120px;
        border-radius: 8px;
        object-fit: cover;
        display: block;
    }

.mypage_top .nophoto {
    position: relative;
    background: #FAF9F7;
    overflow: hidden;
}

    .mypage_top .nophoto img {
        position: absolute;
        top: 77px;
        left: -18px;
        width: 131px;
        height: unset;
        border-radius: unset;
        object-fit: unset;
    }

.icon-beginner {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
}

#gfhistory li {
    padding-top: 8px;
}

.acMenuTitle:hover {
    cursor: pointer;
}

.acMenuBody {
    display: none;
}

.entry_event_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .entry_event_list li {
        padding-bottom: 1.5rem;
    }

.event_list_date {
    border: 1px solid #DED9D6;
    box-sizing: border-box;
    border-radius: 4px;
    display: inline-block;
    width: 56px;
    height: 56px;
    margin-right: 16px;
}

    .event_list_date span.event_month {
        display: block;
        background: #FF0055;
        border-radius: 4px 4px 0px 0px;
        font-family: 'Hiragino Kaku Gothic Pro';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        height: 24px;
        line-height: 24px;
        text-align: center;
        color: #FFFFFF;
    }

    .event_list_date span.event_date {
        display: block;
        font-family: 'Hiragino Kaku Gothic Pro';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        color: #070600;
    }


.event_list_theme {
    width: calc( 100% - 74px );
    display: inline-block;
    padding-top: 4px;
}

    .event_list_theme a.event_theme {
        font-weight: 700;
        font-size: 18px;
        line-height: 120%;
        padding-top: 6px;
        padding-bottom: 4px;
        color: #070600;
        display: inline-block;
        text-decoration: underline;
    }

        .event_list_theme a.event_theme:hover {
            text-decoration: underline !important;
        }

    .event_list_theme .event_cancel {
        font-weight: 400;
        font-size: 14px;
        line-height: 160%;
        color: #9C9690;
    }

.message-tab {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

    .message-tab li {
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-size: 1rem;
        cursor: pointer;
        border: solid 2px #e9e9e9;
        border-left: 0;
        background-color: #fff;
        color: #bbb;
    }

    .message-tab.col2 li {
        width: 50%;
    }

    .message-tab.col3 li {
        width: 33.3333333%;
    }

    .message-tab li:first-child {
        border-left: solid 2px #e9e9e9;
    }

    .message-tab li.message-select {
        background-color: #e9e9e9;
        color: #666;
    }

div#message-box li.message {
    border-bottom: solid 1px #DED9D6;
    padding: 12px 6px;
    display: block;
    position: relative;
}

    div#message-box li.message:hover {
        cursor: pointer;
        background: #FAF9F7;
    }

    div #message-box li.message:last-child {
        border-bottom: 0;
    }

li.message .l {
    display: inline-block;
    width: calc( 100% - 118px );
}

li.message .r {
    display: inline-block;
    width: 112px;
    padding-left: 12px;
}

li.message .tantou_face_wrap,
.tantou_face_wrap {
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

    li.message .tantou_face_wrap img,
    .tantou_face_wrap img {
        width: 80px;
        height: 80px;
        border-radius: 40px;
        border: 1px solid #d9dde0;
        object-fit: cover;
        display: block;
    }

/* message */
.msgshowallbtn:hover {
    cursor: pointer;
}

.o_sent {
    background: #DED9D6;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
}

    .o_sent span {
        line-height: 30px;
        display: inline-block;
    }

    .o_sent::after {
        content: '';
        width: 24px;
        height: 24px;
        position: absolute;
        left: -16px;
        top: 6px;
        background-image: url(/img/svg/fuki_o.svg);
        background-repeat: no-repeat;
        background-size: 24px 24px;
    }


.o_sent_body {
    background: #DED9D6;
    font-weight: 500;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    line-height: 1.8;
    padding: 0.25rem;
    text-align: justify;
    margin-top: 3px;
    position: relative;
    top: -10px;
    word-break: break-all;
}


.u_sent {
    background: #2ba1ff;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
}

    .u_sent::after {
        content: '';
        width: 24px;
        height: 24px;
        position: absolute;
        right: -16px;
        top: 6px;
        background-image: url(/img/svg/fuki_u.svg);
        background-repeat: no-repeat;
        background-size: 24px 24px;
    }

    .u_sent span {
        line-height: 30px;
        display: inline-block;
    }

    .u_sent .tag,
    .o_sent .tag {
        color: #070600;
        background: #FAF9F7;
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1.5rem;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 2px 7px;
        margin-bottom: 0;
        margin-right: 6px;
        border: 1px solid #EBE8E3;
        box-sizing: border-box;
        border-radius: 4px;
    }

.u_sent_body {
    background: #2ba1ff;
    color: #fff;
    font-weight: 500;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    line-height: 1.8;
    padding: 0.25rem;
    text-align: justify;
    margin-top: 3px;
    position: relative;
    top: -10px;
    word-break: break-all;
}

    .u_sent_body p {
        color: #fff;
    }
/*.message-info:hover{
    cursor:pointer;
}*/
.message .festival-box {
    max-width: 280px;
}

.message .col-lg-4 {
    flex: unset;
    max-width: unset;
}

.mypage_mslist.message[readf="0"]::after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    left: 3px;
    top: 48px;
    background-image: url(/img/svg/icon_reddot.svg);
    background-repeat: no-repeat;
    background-size: 8px 8px;
}


/* prbiz */

.prbiz_event .festival-box {
    margin: unset;
    margin-right: calc( ( 50% - 280px ) / 2 );
    margin-left: calc( ( 50% - 280px ) / 2 );
    margin-bottom: 32px;
    display: inline-flex;
    border: 1px solid #DED9D6;
}


.tantou_info_wrap.prbiz {
    display: inline-block;
    width: calc( 100% - 86px );
    padding-left: 12px;
}

.tabmenu.prbiz li {
    color: #666;
    background-color: #fff;
    width: 33.333333%;
}

    .tabmenu.prbiz li.select {
        background-color: #e9e9e9;
        color: #070600;
    }

.company-info-table {
    border-bottom: 1px solid #dee2e6;
}

    .company-info-table th {
        font-size: 0.875rem;
        width: 160px;
    }

    .company-info-table td {
        word-break: break-all;
        text-align: justify;
    }
/* info */
.wrap_infoindex_p {
    height: 180px;
    overflow-y: scroll;
    padding: 16px 8px;
    background: #FAF9F7;
    border-radius: 8px;
}
/*footer*/
.footer_wrap ul {
    margin: 0 auto;
    padding: 0;
    display: inline-block;
}

    .footer_wrap ul li {
        display: inline-flex;
        list-style: none;
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

        .footer_wrap ul li a {
            color: #8E867E;
        }

/* del user */
.des-checkbox.del_anke label {
    font-size: 0.875rem;
    padding: 0 12px 6px 0;
}


.des-radio.del_anke {
    display: block;
    margin: 0;
    padding: 0;
}

    .des-radio.del_anke li {
        display: block; /*
        height: 48px;*/
        margin: 12px 4% 6px 0;
        padding: 0;
    }

        .des-radio.del_anke li label {
            display: inline-block;
            /*width: 100%; 
            height: 48px;*/
            padding-right: 24px;
            padding-left: 50px;
            text-indent: -45px;
            border-radius: 4px;
            border: 1px solid #DED9D6;
        }

/* sns */
.f-twitter {
    color: #1d9bf0;
}

.bg-twitter {
    background: #1d9bf0;
}

.link_twitter {
    display: inline-block;
    margin: auto;
    font-size: 0.75rem;
    color: #FAF9F7;
    font-weight: 600;
    height: 32px;
    line-height: 32px;
    background: #1d9bf0;
    padding: 0 16px 0 40px;
    border-radius: 4px;
    background-image: url('/img/svg/twitter/icons_circle_blue.svg');
    background-repeat: no-repeat;
    background-size: 32px;
    margin:4px;
}

    .link_twitter:hover {
        color: #fff;
    }

.link_note {
    display: inline-block;
    margin: auto;
    font-size: 0.75rem;
    color: #FAF9F7;
    font-weight: 600;
    height: 32px;
    line-height: 32px;
    background: #41C9B4;
    padding: 0 16px 0 40px;
    border-radius: 4px;
    background-image: url('/img/svg/note/logo_symbol.svg');
    background-repeat: no-repeat;
    background-size: 32px;
    margin:4px;
}

    .link_note:hover {
        color: #fff;
    }

@media ( min-width: 992px ) {
    .f-md-sm {
        font-size: 0.875rem !important; /* 14px */
    }

    .f-md-md {
        font-size: 1rem !important; /* 16px */
    }

    .f-md-lg {
        font-size: 1.125rem !important; /* 18px */
    }

    .f-md-xl {
        font-size: 1.25rem !important; /* 20px */
    }

    .f-md-xxl {
        font-size: 1.5rem !important; /* 24px */
    }
}

/* MD */
@media ( min-width: 768px ) {
    .rounded-upper-md-8 {
        border-radius: 8px 8px 0 0 !important;
    }
}



/*大デバイス LG（デスクトップ, 1200px 未満）*/
@media (max-width: 1199.98px) {
}
/*中デバイス MD（タブレット, 992px 未満）*/
@media (max-width: 991.98px) {


    .nav_catch {
        margin-left: 0.125rem;
    }

    .logo img {
        height: 32px;
    }

    .header {
        height: 60px;
    }

    .btn.login {
        background-position: left 8px top 8px;
        background-size: 16px 16px;
        height: 32px;
        min-width: 104px;
        padding: 0 12px 0 25px;
        line-height: 32px;
        font-size: 0.75rem;
    }

    .btn.mini_logout {
        background: #FAF9F7;
        border: 1px solid #EBE8E3;
        box-sizing: border-box;
        width: 32px;
        height: 32px;
        border-radius: 16px;
        text-align: center;
        padding: 7px 8px;
    }

        .btn.mini_logout img {
            width: 16px;
            height: 16px;
        }

    .btn.btn_sm_yellow,
    .btn.btn_sm_bk {
        height: 32px;
        min-width: 90px;
        padding: 0 12px;
        line-height: 32px;
        font-size: 0.75rem;
    }
    .wrap_news_item {
        padding: 1rem 0;
        background-image:none;
    }
        .wrap_news_item .date {
            display: inline-block;
            width: calc( 100% - 150px );
            text-align: right !important;
            padding-right:0;
        }
            .wrap_news_item .wrap_text {
            display: flex;
            width: 100%;
            padding-top:0.25rem;
            padding-left:0;
        }

    div.tabmenu {
        display: block;
    }

    .tabmenu div {
        float: left;
        width: 50%;
    }

        .tabmenu div:first-child,
        .tabmenu div:nth-child(2) {
            border-bottom: 0;
        }

        .tabmenu div:nth-child(3) {
            border-left: solid 2px #e9e9e9;
        }

    .wrap_gf_dt .col-lg-9,
    .wrap_gf_dt .col-lg-3 {
        flex: unset;
        max-width: unset;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .wrap_gf_dt .festival-box.detail {
        width: 720px;
    }

    .wrap_gf_list .festival-box,
    .wrap_event_list .festival-box {
        margin-right: calc( ( 50% - 280px ) / 2 );
        margin-left: calc( ( 50% - 280px ) / 2 );
    }

    .wrap_event_dt .table-gf th {
        font-size: 0.75rem;
        padding: 1rem 0.75rem;
        width: 96px;
    }

    .wrap_event_dt .table-gf td {
        font-size: 0.875rem;
    }
}
/*小デバイス SM（横向きモバイル, 768px 未満）*/
@media (max-width: 767.98px) {


    .f-sm-lg {
        font-size: 1.125rem !important; /* 18px */
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .sp_menu li {
        border-right: 1px solid #EBE8E3; /*
        border-bottom: 1px solid #EBE8E3;*/
        width: 25%;
        margin: 0;
        padding: 0;
        text-align: center;
    }

        .sp_menu li:last-child {
            border-right: 0;
        }

        .sp_menu li a {
            display: inline-block;
            height: 48px;
            margin: auto;
            width: 100%;
            padding: 7px 0;
        }

    .wrap_imggfpanel {
        width: 128px;
        min-width: 128px;
        height: 128px;
        border-radius: 8px 0 0 0;
        background-size: cover;
        background-position: center center;
    }

    .festival-box .gfpanel {
        border-radius: unset;
    }

    .festival-box .tag {
        font-size: 0.625rem;
        line-height: 1.25rem;
        padding: 0 3px;
    }

    .festival-box {
        max-width: unset;
    }

    .wrap_gf_dt .festival-box,
    .wrap_gf_dt .festival-box .gfeyecatch {
        border-radius: 0;
    }

    .table-gf {
        width: calc( 100% + 24px );
        margin: auto;
        position: relative;
        left: -12px;
        /*        border-radius: 0;
        border-left: 0;
        border-right: 0;*/
    }

    .wrap_gf_dt .festival-box.detail {
        width: unset;
    }


    .wrap_gf_list .festival-box {
        margin-right: auto;
        margin-left: auto;
        max-width: 460px;
    }

    .wrap_related .festival-box {
        margin-right: auto;
        margin-left: auto;
        min-width: 420px;
        border-radius: 8px;
        position: relative;
    }


    .wrap_event_list .festival-box {
        margin-right: auto;
        margin-left: auto;
    }


    .prbiz_event .festival-box {
        margin-right: unset;
        margin-left: unset;
    }
    .wrap_gfpanel_cname {
        height: 36px;
    }
    .festival-box{
        min-height:168px;
    }
}
/*極小デバイス XS（縦向きモバイル, 576px 未満）*/
@media (max-width: 575.98px) {
    .f-xs-xs {
        font-size: 0.75rem !important; /* 18px */
    }

    .col-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .wrap_title .g-cat {
        display: none;
    }

    .wrap_title.reglink {
        height: unset;
    }

    .wrap_related .festival-box {
        min-width: 400px;
    }

    .tabmenu li {
        font-size: 0.875rem;
    }

    .table-gf {
        width: calc( 100% + 32px );
        margin: auto;
        position: relative;
        left: -16px;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .table_cinfo {
        width: calc( 100% + 32px );
        margin: auto;
        position: relative;
        left: -16px;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .wrap_gf_dt01 .w-75 {
        width: 100% !important;
        max-width: 330px;
    }

    .btn.arw01 {
        font-size: 1.25rem;
        padding: 0 70px 0 40px;
    }

    .wrap_event_photo {
        justify-content: space-evenly;
    }

        .wrap_event_photo .event_photos img {
            max-width: 100px;
            margin: 1rem;
        }

    .company-info-table.prbiz1 th {
        width: 70px;
    }

    .company-info-table.sp-table th,
    .company-info-table.sp-table td {
        display: block;
        border-top: 0;
        width: 100%;
    }

    .company-info-table.sp-table {
        border-bottom: 0;
    }

        .company-info-table.sp-table th {
            font-size: 1rem;
            padding: 8px;
        }

        .company-info-table.sp-table td {
            text-align: justify;
            padding: 0 8px 24px 8px;
        }
}

@media (max-width: 419.98px) {
    .wrap_related .festival-box {
        min-width: 349px;
        width: 100%;
    }
}
@media (max-width: 459.98px) {
    .table_cinfo tr th:first-child {
        min-width: calc( 50% - 24px );
        width: calc( 50% - 24px );
    }

        .table_cinfo tr th:first-child span {
            font-size: 0.875rem !important;
        }
    .table_cinfo th.jigyou, .table_cinfo td.jigyou, .table_cinfo th.konna, .table_cinfo td.konna {

        min-width: 180px;
        width: 180px;
    }

}

        /*iphone6/7/8未満サイズ（縦向きモバイル, 375px 未満）*/
        @media (max-width: 374.98px) {
            .px-xs-0 {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }


            .wrap_imggfpanel {
                width: 78px;
                min-width: 78px;
                height: 168px;
                border-radius: 8px 0 0 8px;
            }

            .wrap_gfpanel_enddate{
                display:none;
            }
            .nav_catch {
                display: none;
            }

            .btn.arw01 {
                font-size: 1.125rem;
                padding: 0 70px 0 20px;
                background-position: right 16px top 24px;
            }
        }
