@charset "UTF-8";


/* --------------------------------
Color
-------------------------------- */

:root {
    --color-bk: #333;
    --color-bk-rgb: 51,51,51;

    --color-wh: #fff;
    --color-wh-rgb: 255,255,255;

    --color-g: #ddd;
    --color-g-rgb: 221,221,221;

    --color-gl: #f2f2f2;
    --color-gl-rgb: 242,242,242;

    --color-gd: #999;
    --color-gd-rgb: 153,153,153;
    
    --color-primary: #60C0F9;
    --color-primary-rgb: 96,192,249;
    
    --color-secondary: #FF6CE8;
    --color-secondary-rgb: 255,108,232;
    
    --color-light: #f5f6f9;
    
    --color-medium: #e3e4e7;
    --color-medium-rgb: 227,228,231;
    
    --color-dark: #a3acc7;
    --color-dark-rgb: 163,172,199;
    
    
    
    
    --color-error: #f24251;
    --color-error-rgb: 242,66,81;
}





/* --------------------------------
Reset
-------------------------------- */
html {
    font-size: 62.5%;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}
ul[role="list"],
ol[role="list"] {
    list-style: none;
}
body {
    min-height: 100vh;
    line-height: 1.6;
    font-size: 1.6rem;
    font-family: Hiragino Sans,apple-system,BlinkMacSystemFont,sans-serif;
    color: var(--color-bk);
    width: 100%;
}
img,
picture {
    max-width: 100%;
    display: block;
}
input[type="text"],
input[type="submit"],
input[type="button"],
input[type="password"],
/*input[type="date"],
input[type="time"],*/
button,
textarea,
select {
    font-size: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textareat:focus {
    outline-color: var(--color-primary);
}

a {
    color: var(--color-primary);
    word-break: break-word;
}
a:visited {

}

hr {
    border: 1px solid var(--color-medium);
    margin: 2em 0;
}
hr.-thin {
    border: 1px solid var(--color-light);
    margin: 1em 0;
}
@media screen and (min-width: 768px) {
    
}
/* --------------------------------
Main
-------------------------------- */
.wrapper{
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.section {
    padding: 24px 0;
}
.container {
    margin: 0 16px;
}
.main_content h1:not([class]) {
    font-weight: 500;
    margin: 0 0 1em;
    position: relative;
    padding-bottom: 8px;
    font-size: 2.4rem;
}
.main_content h1:not([class])::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    content: '';
    border-radius: 2px;
    background-image: linear-gradient(to left, var(--color-secondary) 0%, var(--color-primary) 100%);
}
.main_content h2:not([class]) {
    font-weight: 500;
    margin: 2em 0 1em;
    position: relative;
    padding-left: 12px;
    font-size: 2rem;
}
.main_content h2:not([class])::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%;
    content: '';
    border-radius: 2px;
    background-image: linear-gradient(to top, var(--color-secondary) 0%, var(--color-primary) 100%);
}
.main_content p {
    margin: 1em auto 0;
}
.image img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {
    .wrapper{
        padding-top: 0;
    }
    .section {
        padding: 48px 0;
    }
    .container {
        margin: 0 32px;
    }
    .column_content {
        display: flex;
        min-height: calc(100vh - 80px);
    }
    .main_content {
        width: 100%;
        padding-top: 64px;
    }
    .main_content h1:not([class]) {
        padding-bottom: 12px;
        font-size: 3.2rem;
    }
    .main_content h1:not([class])::after {
        height: 6px;
        border-radius: 3px;
    }
    .main_content h2:not([class]) {
        padding-left: 16px;
        font-size: 2.4rem;
    }
    .main_content h2:not([class])::after {
        width: 6px;
        border-radius: 3px;
    }
}

/* --------------------------------
Header
-------------------------------- */
.header {
    background: var(--color-wh);
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.header_inner {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
}
.header .logo {
    height: 40px;
}
.header .logo img {
    height: 100%;
    width: auto;
}
.pc_menu {
    display: none;
}
.sp_menu_btn {
    display: block;
    height: 64px;
    width: 64px;
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: opacity .3s;
    text-decoration: none;
}
.sp_menu_btn span {
    display: block;
    height: 4px;
    width: 32px;
    border-radius: 1px;
    background: var(--color-bk);
    margin: 18px auto 0;
    transition: transform .3s ,width .3s;
    border-radius: 2px;
}
.sp_menu_btn span:nth-child(2) {
    margin-top: 8px;
    width: 40px;
}
.sp_menu_btn span:nth-child(3) {
    margin-top: 8px;
}
.sp_menu_btn.active span:nth-child(1) {
    width: 20px;
    transform: translate(12px,6px) rotate(45deg);
}
.sp_menu_btn.active span:nth-child(3) {
    width: 20px;
    transform: translate(12px,-6px) rotate(-45deg);
}
@media screen and (min-width: 768px) {
    .header_inner {

    }
    .pc_menu {
        display: block;
    }
    .pc_menu .btn {
        width: auto;
        height: 40px;
        border-radius: 20px;
        margin-left: 8px;
        padding: 8px 16px;
    }
    .pc_menu .btn i {
        margin-right: 8px;
    }
    .sp_menu_btn {
        display: none;
    }
}
@media screen and (min-width: 1200px) {

}

.page_login .sp_menu_btn,
.page_signup .sp_menu_btn,
.page_finish .sp_menu_btn{
    display: none;
}



/* --------------------------------
Menu
-------------------------------- */
.global_menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(120%);
    transition: transform .6s;
    background: #fff;
    overflow: hidden;
    z-index: 9998;
    padding: 64px 0 0;
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
}
.global_menu.active {
    transform: translateX(0);
}
.global_menu_scroll {
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: calc(100vh - 64px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 80px;
}
.global_menu_inner  {
    padding: 24px 16px;
}
.global_menu_inner + .global_menu_inner {
    border-top: solid 2px var(--color-gl);
}
.global_menu_title {
    font-size: 1.8rem;
    color: var(--color-gd);
    letter-spacing: .1em;
}
.global_menu_list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.global_menu_list + .global_menu_list {
    border-top: solid 1px var(--color-gl);
    padding-top: 16px;
}
.global_menu_item {
    
}
.global_menu_item + .global_menu_item {
    margin-top: 4px;
}
.global_menu_item a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: var(--color-bk);
    font-feature-settings: "palt";
}
.global_menu_item i {
    margin-right: 8px;
}
.sp_menu {
    text-align: center;
}

.sp_menu .btn {
        width: auto;
        height: 48px;
        border-radius: 24px;
        margin: 0;
        padding: 12px 16px;
        font-weight: 700;
    }
.sp_menu .btn i {
    margin-right: 8px;
}

@media screen and (min-width: 768px) {
    .global_menu {
        display: block;
        height: auto;
        position: static;
        overflow: visible;
        z-index: auto;
        width: 280px;
        padding: 64px 0 0;
        flex-shrink:0;
        box-shadow: none;
        transform: translateX(0);
        transition: none;
        background: var(--color-light);
        box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px inset;
    }
    .global_menu_scroll {
        position: sticky;
        top: 64px;
        left: 24px;
        height: auto;
        padding: 0;
    }
    .global_menu_title {
        font-size: 1.7rem;
    }
    .global_menu_item a {
        padding: 4px 8px;
        transition: color .3s;
    }
    .global_menu_item a:hover {
        color: var(--color-primary);
    }
    .sp_menu {
        display: none;
    }
}
@media screen and (min-width: 1200px) {

}



/* --------------------------------
Footer
-------------------------------- */
.footer {
    background: #333;
    margin-top: auto;
    height: 80px;
}
.footer_inner {
    padding: 14px 16px;
}
.footer .copy {
    text-align: center;
    color: var(--color-wh);
    font-size: 1.2rem;
    line-height: 1em;
    margin-top: 1em;
}
.footer .copy small {
    font-size: 1.2rem;
    line-height: 1em;
}
.footer_menu {
    text-align: center;
}
.footer_menu a {
    display: inline-block;
    color: var(--color-wh);
    padding: 0 8px;
    text-decoration: none;
    border-left: solid var(--color-wh) 1px;
    border-right: solid var(--color-wh) 1px;
    transition: opacity .3s;
}
.footer_menu a + a {
    border-right: solid var(--color-wh) 1px;
    border-left: none;
}
@media screen and (min-width: 768px) {
    .footer_menu a:hover {
        color: var(--color-primary);
    }
}



/* --------------------------------
Btn
-------------------------------- */
a.btn,
input.btn{
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-wh);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 4px;
    line-height: 1.6;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: rgba(var(--color-primary-rgb), .5) 0 0 8px;
}

a.btn.-small {
    padding: 4px 8px;
}

a.btn.-gray,
input.btn.-gray{
    background: var(--color-dark);
    box-shadow: rgba(var(--color-dark-rgb), .5) 0 0 8px;
}
a.btn.-pink,
input.btn.-pink{
    background: var(--color-secondary);
    box-shadow: rgba(var(--color-secondary-rgb), .5) 0 0 8px;
}

a.btn.-red,
input.btn.-red{
    background: var(--color-error);
    box-shadow: rgba(var(--color-error-rgb), .5) 0 0 8px;
}


a.btn.-border {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid;
}



.btn_wrapper {
    margin: 1em 0 0;
}
.btn_wrapper .btn {
    margin: 0 0 0.5em;
}
.input_icon {
    display: inline-block;
    position: relative;
}
.input_icon .btn {
    padding-right: 32px;
}
.input_icon i {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    color: var(--color-wh);
    height: 16px;
}

@media screen and (min-width: 768px) {
    
}
@media screen and (min-width: 1200px) {

}
/* --------------------------------
Link
-------------------------------- */
.link_wrapper {
    margin: 1em 0 0;
}
a.link_arrow {
    position: relative;
    display: inline-block;
    padding-left: 16px;
}
.link_arrow::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0.3em;
    left: 0;
    line-height: 1;
}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 1200px) {

}
/* --------------------------------
Tag
-------------------------------- */
.tag {
    background: var(--color-primary);
    display: inline-block;
    padding: 0 4px;
    color: var(--color-wh);
    border-radius: 4px;
    font-size: 1.4rem;
    margin: 0 4px;
}
.tag.-gray {
    background: var(--color-dark);
}
@media screen and (min-width: 768px) {
    .tag {
        font-size: 1.5rem;
    }

}
@media screen and (min-width: 1200px) {

}

/* --------------------------------
Box
-------------------------------- */
.box {
    border-radius: 4px;
    border: solid 2px var(--color-medium);
    overflow: hidden;
}
.box_header {
    padding: 8px;
    background: var(--color-light);
    
}
.box_body {
    padding: 8px;
}
@media screen and (min-width: 768px) {
    .box {
        border-radius: 8px;
    }
    .box_header {
        padding: 16px;
        font-weight: 700;
        
    }
    .box_body {
        padding: 16px;
        
    }

}
@media screen and (min-width: 1200px) {

}


/* --------------------------------
text
-------------------------------- */
.note_box {
    padding: 8px;
    background: var(--color-light);
    border-radius: 4px;
    margin-top: 1em;
}



@media screen and (min-width: 768px) {
    .note_box {
        padding: 16px;
        border-radius: 8px;
    }
}
@media screen and (min-width: 1200px) {

}



/* --------------------------------
Table
-------------------------------- */
.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.4rem;
}


.table img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}
.table th,
.table td,
.table caption {
    padding: 8px;
    border-bottom: var(--color-medium) solid 1px;
}
.table th {
    background: var(--color-light);
}
.table_wrapper .table_scroll_note {
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.4rem;
}
.table_scroll {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.table.-stripe tr:nth-of-type(odd) {
    background: var(--color-light);
}
.table.-stripe tr:first-child th {
    background: var(--color-medium);
    border-bottom: var(--color-dark) solid 1px;
}
.table_vertical {
    border-bottom: solid 2px var(--color-dark);
}
.table_vertical .thead {
    display: none;
}
.table_vertical .body {
    border-top: solid 2px var(--color-dark);
}
.table_vertical th,
.table_vertical td {
    display: block;
    width: 100%;
}
.table_vertical td {
    display: flex;
}
.table_vertical td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
    width: 30%;
    min-width: 30%;
    text-align: left;
}
.-label_w_100 td:before {
    width: 100px;
    min-width: 100px;
}
.table_vertical .table_link {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.table_datail {
    
    border-bottom: 1px solid var(--color-medium);
    margin-bottom: 16px;
}
.table_datail caption {
    background: var(--color-medium);
    text-align: left;
    border-bottom: 2px solid var(--color-dark);
}
.table_datail tr:nth-of-type(even) {
    background: var(--color-light);
}
@media screen and (min-width: 768px) {
    .table {
        font-size: 1.6rem;
    }
    .table th,
    .table td,
    .table caption {
        padding: 12px;
    }
    .table img {
        width: 120px;
        height: 120px;
    }
    .table_wrapper .table_scroll_note {
        display: none;
    }
    .table_vertical th,
    .table_vertical td {
        display: table-cell;
        width: auto;
    }
    .table_vertical td:before {
        content: none;
    }
    .table_vertical .table_link {
        display: block;
    }
    .table_vertical {
        border: none;
    }
    .table_vertical .body {
        border: none;
    }
    .table_vertical .thead {
        display: table-row;
    }
}
@media screen and (min-width: 1200px) {

}

/* --------------------------------
Form
-------------------------------- */
.field_item.-column {
    
}
.field_item.-row_both {
    display: flex;
    align-items: center;
}
.field_item.-row_both .field_text,
    .field_item.-row_both .field_select{
        margin-top: 0;
    }


.field_item {
    margin-top: 1em;
}
.field_item label {
    display: block;
}
.field_text {
    display: block;
    border: var(--color-medium) 1px solid;
    box-shadow: rgba(var(--color-bk-rgb), .1) 0 0 4px inset;
    width: 100%;
    padding: 12px;
    margin: 8px 0 0;
    height: 100%;
    box-sizing: border-box;
    border-radius: 4px;
}
.field_select_wrapper {
    position: relative;
    display: inline-block;
}
.field_select_wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    pointer-events: none;
    top: 18px;
    right: 8px;
    
}
.field_select {
    display: inline-block;
    min-width: 100px;
    border:var(--color-medium) 1px solid;
    background: var(--color-light);
    padding: 12px 32px 12px 12px;
    margin: 8px 0 0;
    height: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: rgba(var(--color-bk-rgb), .1) 0 0 4px;
}

.field_date {
    display: inline-block;
    min-width: 100px;
    border: var(--color-medium) 1px solid;
    box-shadow: rgba(var(--color-bk-rgb), .1) 0 0 4px inset;
    width: auto;
    padding: 12px;
    margin: 8px 0 0;
    height: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--color-wh);
    height: 44px;
    font-size: 1.6rem;
    line-height: 44px;
}
.field_time {
    display: inline-block;
    min-width: 100px;
    border: var(--color-medium) 1px solid;
    box-shadow: rgba(var(--color-bk-rgb), .1) 0 0 4px inset;
    width: auto;
    padding: 12px;
    margin: 8px 0 0;
    height: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--color-wh);
    height: 44px;
    box-sizing: border-box;
    font-size: 1.6rem;
    line-height: 44px;
}


.field_checkbox_wrapper {
    margin: 8px 16px 0 0;
    display: inline-block
}
.field_radio_wrapper {
    margin: 8px 16px 0 0;
    display: inline-block
}


.field_select_size {
    border: var(--color-medium) 1px solid;
    box-shadow: rgba(var(--color-bk-rgb), .1) 0 0 4px inset;
    padding: 12px;
    margin: 8px 0 0;
    height: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 1.8rem;
    width: 100%;
    font-feature-settings: "palt";
}


.error_text {
    color: var(--color-error);
}


.pager {
    margin: 1em 0;
}
.pager input[type="submit"]{
    display: inline-block;
    color: var(--color-wh);
    text-decoration: none;
    border-radius: 4px;
    line-height: 1.6;
    border: none;
    cursor: pointer;
    text-align: center;
    background: var(--color-dark);
    box-shadow: rgba(var(--color-dark-rgb), .5) 0 0 8px;
    margin: 8px 8px 0 0;
}
@media screen and (min-width: 768px) {
    .field_item.-row {
        display: flex;
        align-items: center;
    }
    .field_item.-row .field_text,
    .field_item.-row .field_select,
    .field_item.-row .field_date,
    .field_item.-row .field_time {
        margin-top: 0;
    }
    .field_select_wrapper::after {
        top: 8px;
    }
    .field_select_size {
        width: auto;
    }
}

/* --------------------------------
Login Signup
-------------------------------- */
.page_login,
.page_signup{
    background: var(--color-light);
}
.page_login h1,
.page_signup h1 {
    text-align: center;
}

.page_login .main_content h1::after,
.page_signup .main_content h1::after {
    content: none;
}
.page_login hr {
    margin: 2em 0;
}
.login_form,
.signup_form {
    padding: 16px;
    background: var(--color-wh);
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
    border-radius: 16px;
}

.login_form .btn_wrapper,
.signup_form .btn_wrapper {
    margin-top: 2em;
}
.login_form .btn,
.signup_form .btn {
    padding: 12px 16px;
    width: 100%;
}
.login_form .btn_wrapper.-row,
.signup_form .btn_wrapper.-row {
    display: flex;
}
.login_form .btn_wrapper.-row .btn + .btn,
.signup_form .btn_wrapper.-row .btn + .btn{
    margin-left: 16px;
}

.signup_form_img img {
    height: 64px;
    margin: 0 auto 2em auto;
            object-fit: contain;
}

@media screen and (min-width: 768px) {
    .login_form {
        padding: 24px;
        max-width: 400px;
        margin: 0 auto;
    }
    .signup_form {
        padding: 24px;
        max-width: 560px;
        margin: 0 auto;
    }
    
    .signup_form_img img {
        height: 80px;
    }
}




/* --------------------------------
QR
-------------------------------- */
.my_qr_img {
    border:#AAAAAA solid 10px;
    padding: 5%;
    margin: 2em auto;
    width:70%;
}
.event_qr_img {
    border: #AABBFF solid 10px;
    padding: 5%;
    margin: 2em auto;
    width:70%;
}
.cheki_qr_img {
    border: #f6c2ff solid 10px;
    padding: 5%;
    margin: 2em auto;
    width:70%;
}

@media screen and (min-width: 768px) {
    .my_qr_img {
        padding: 5%;
        width:60%;
        max-width: 300px;
    }
    .event_qr_img {
        padding: 5%;
        width:60%;
        max-width: 300px;
    }
    .cheki_qr_img {
        padding: 5%;
        width:60%;
        max-width: 300px;
    }
}
@media screen and (min-width: 1200px) {

}

/* --------------------------------
Favorite
-------------------------------- */
.favorite {
    margin-top: 2em;
}

.favorite_group {
    position: relative;
    margin-top: 24px;
}
.favorite_group_img {
    position: relative;
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
    border-radius: 8px;
    overflow: hidden;
}
.favorite_group_img::before{
    content: "";
    padding-top: 50%;
    display: block;
}
.favorite_group_img img {
    width: 100%;
    height: 100%;
    max-width: 100%!important;
    max-height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
}

.favorite_unit {
    position: relative;
    
}
.favorite_unit_name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 4px 0;
    background: rgba(var(--color-wh-rgb), .5);
    font-size: 1.8rem;
    font-weight: 500;
}

.favorite_tag {
    position: absolute;
    left: 10px;
    top: -6px;
    background: var(--color-primary);
    padding: 4px;
    border-radius: 4px 0 0 0;
    color: var(--color-wh);
    z-index: 2;
    font-size: 1.2rem;
}
.favorite_tag::before {
    position: absolute;
    content: '';
    top: 0;
    right: -4px;
    border: none;
    border-bottom: solid 6px #49b1ff;
    border-right: solid 4px transparent;
}
.favorite_tag::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 16px solid var(--color-primary);
    border-right: 16px solid var(--color-primary);
    border-bottom: 8px solid transparent;
}
.favorite_tag_best {
    position: absolute;
    left: 48px;
    top: -6px;
    background: var(--color-secondary);
    padding: 4px;
    border-radius: 4px 0 0 0;
    color: var(--color-wh);
    z-index: 2;
    font-size: 1.2rem;
}
.favorite_tag_best::before {
    position: absolute;
    content: '';
    top: 0;
    right: -4px;
    border: none;
    border-bottom: solid 6px #ff58d1;
    border-right: solid 4px transparent;
}
.favorite_tag_best::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 16px solid var(--color-secondary);
    border-right: 16px solid var(--color-secondary);
    border-bottom: 8px solid transparent;
}

.favorite_talent_list {
    display: flex;
    flex-wrap: wrap;
}
.favorite_talent {
    width: 48%;
    position: relative;
    margin-top: 16px;
}
@media screen and (max-width: 1199px) {
    .favorite_talent_list .favorite_talent:nth-of-type(even) {
        margin-left: 4%;
    }
}
.favorite_talent_img,
.favorite .-notselect {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
}
.favorite_talent_img::before{
    content: "";
    padding-top: 100%;
    display: block;
}
.favorite_talent_img img {
    width: 100%;
    height: 100%;
    max-width: 100%!important;
    max-height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
}
.favorite_talent_name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 4px 0;
    font-weight: 500;
    background: rgba(var(--color-wh-rgb), .5);
}

.favorite_member {
    display: flex;
    flex-wrap: wrap;
}
.favorite_member .favorite_talent {
    width: 48%;
}
@media screen and (max-width: 1199px) {
    .favorite_member .favorite_talent:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .favorite_member .favorite_talent:nth-of-type(even) {
        margin-left: 4%;
    }
}

.favorite input {
    display: none;
}
.favorite label {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: block;
}
.favorite label::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    height: 32px;
    width: 32px;
    border-radius: 4px;
    background: var(--color-wh);
    border: solid 2px #49b1ff;
    z-index: 2;
}
.favorite input[type="radio"] + label::before {
    border-radius: 50%;
}
.favorite label::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 14px;
    height: 12px;
    width: 20px;
    border-left: 4px solid var(--color-wh);
    border-bottom: 4px solid var(--color-wh);
    transform: rotate(-45deg);
    z-index: 2;
    display: none;
}
.favorite input[type="radio"] + label::after {
    top: 14px;
    left: 14px;
    height: 20px;
    width: 20px;
    border: none;
    background: var(--color-primary);
    transform: none;
    border-radius: 50%;
}
.favorite label .favorite_group_img::after,
.favorite label .favorite_talent_img::after,
.favorite .-notselect label div::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: solid 2px var(--color-primary);
    border-radius: 8px;
    z-index: 3;
    display: none;
}
.favorite input[type="checkbox"]:checked + label::before {
    background: var(--color-primary);
}
.favorite input[type="checkbox"]:checked + label::after {
    display: block;
}
.favorite input[type="radio"]:checked + label::after {
    display: block;
}
.favorite input:checked + label .favorite_group_img::after,
.favorite input:checked + label .favorite_talent_img::after,
.favorite .-notselect input:checked + label div::after {
    display: block;
}
.favorite_talent.-notselect {
    width: 100%;
    margin-left: 0;
}
.-notselect label {
    padding: 12px 12px 12px 48px;
}
@media screen and (min-width: 768px) {
    .favorite {
        margin-top: 4em;
    }
    .favorite_tag {
        left: 20px;
        top: -8px;
        padding: 6px;
        border-radius: 4px 0 0 0;
        font-size: 1.4rem;
    }
    .favorite_tag::before {
        right: -6px;
        border-bottom: solid 8px #49b1ff;
        border-right: solid 6px transparent;
    }
    .favorite_tag::after {
        border-left: 20px solid var(--color-primary);
        border-right: 20px solid var(--color-primary);
        border-bottom: 12px solid transparent;
    }
    .favorite_tag_best {
        left: 72px;
        top: -8px;
        padding: 6px;
        border-radius: 4px 0 0 0;
        font-size: 1.4rem;
    }
    .favorite_tag_best::before {
        right: -6px;
        border-bottom: solid 8px #ff58d1;
        border-right: solid 6px transparent;
    }
    .favorite_tag_best::after {
        border-left: 20px solid var(--color-secondary);
        border-right: 20px solid var(--color-secondary);
        border-bottom: 12px solid transparent;
    }
    .favorite_unit_name {
        font-size: 2.4rem;
        padding: 8px 0;
    }
    .favorite_talent {
        margin-top: 32px;
    }
    .favorite_talent_name {
        font-size: 1.8rem;
        padding: 8px 0;
    }
    .favorite_member .favorite_talent {
        margin-top: 32px;
    }
    .favorite label::before {
        top: 12px;
        left: 12px;
        height: 40px;
        width: 40px;
    }
    .favorite label::after {
        top: 20px;
        left: 20px;
        height: 16px;
        width: 24px;
        border-left: 5px solid var(--color-wh);
        border-bottom: 5px solid var(--color-wh);
    }
    .favorite input[type="radio"] + label::after {
        top: 20px;
        left: 20px;
        height: 24px;
        width: 24px;
    }
    .-notselect label {
        padding: 20px 20px 20px 64px;
    }
}
@media screen and (min-width: 1200px) {
    .favorite_talent {
        width: 22.6%;
        margin-left: 3.2%;
    }
    .favorite_talent_list .favorite_talent:nth-of-type(4n+1) {
        margin-left: 0;
    }
    .favorite_member .favorite_talent {
        width: 22.6%;
    }
    .favorite_member .favorite_talent:nth-of-type(-n+4) {
        margin-top: 0;
    }
    .favorite_member .favorite_talent:nth-of-type(4n+1) {
        margin-left: 0;
    }
}

/* --------------------------------
Reserve
-------------------------------- */
.reserve_list {
    margin: 2em 0 4em;
    list-style: none;
    padding: 0;
}
.reserve_list li {
    padding: 8px;
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}
.reserve_list li + li {
    margin-top: 16px;
}
.reserve_list li .date {
    display: block;
    font-size: 1.4rem;
    margin-top: 4px;
}
.reserve_list li .title {
    margin-bottom: 4px;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-primary);
}
.reserve_list li .text {
    font-size: 1.3rem;
}
.reserve_list .reserve_radio {
    padding: 0;
    display: block;
}
.reserve_list .reserve_radio label {
    padding: 8px;
    display: block;
    display: flex;
    align-items: center;
}
.reserve_left {
    text-align: center;
}
.reserve_right {
    width: 100%;
    border-left: solid 1px var(--color-medium);
    padding-left: 8px;
    margin-left: 8px;
}
.enter_list {
    margin: 2em 0 4em;
    list-style: none;
    padding: 0;
}
.enter_list li {
    padding: 0;
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}
.enter_list li a {
    padding: 8px;
}
.enter_list li .title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-primary);
}
.enter_list li + li {
    margin-top: 16px;
}
@media screen and (min-width: 768px) {
    .reserve_list li {
        padding: 16px;
    }
    .reserve_list li .title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    .reserve_list li .date {
        font-size: 1.6rem;
        margin-top: 8px;
    }
    .reserve_list li .text {
        font-size: 1.5rem;
    }
    .reserve_left {
        min-width: 128px;
    }
    .reserve_right {
        padding-left: 16px;
        margin-left: 16px;
    }
    .reserve_list .reserve_radio {
        padding: 0;
    }
    .reserve_list .reserve_radio label {
        padding: 16px;
    }

}
@media screen and (min-width: 1200px) {

}

/* --------------------------------
Group
-------------------------------- */
.group_list {
    margin-top: 2em;
    list-style: none;
    padding: 0;
}
.group_list li {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.group_list li + li {
    border-top: var(--color-medium) solid 1px;
}
.group_list img {
    width: 180px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .group_list li {
        padding: 12px;
    }
    .group_list img {
        width: 240px;
        height: 120px;
    }

}
@media screen and (min-width: 1200px) {

}

/* --------------------------------
Place
-------------------------------- */
.place_list {
    margin-top: 2em;
    list-style: none;
    padding: 0;
}
.place_list li {
    padding: 8px;
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.place_list li + li {
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .place_list li {
        padding: 12px;
    }
}
@media screen and (min-width: 1200px) {

}



/* --------------------------------
Mypage
-------------------------------- */
.page_mypage .footer {
    padding-bottom: 180px;
}

.point_card {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(var(--color-bk-rgb), .2) 0 0 8px;
    height: 100px;
}
.point_card .image {
    width: 24%;
    margin-right: 16px;
    max-width: 72px;
}
.point_card .member_level {
    color: var(--color-wh);
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 500;
}
.point_card dl {
    display: flex;
    align-items: flex-start;
    color: var(--color-wh);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 4px;
}
.point_card dt {
    width: 96px;
    display: flex;
    align-items: center;
    margin-top: 2px;
}
.point_card dt i {
    margin-right: 8px;
}
.point_card dt img {
    margin-right: 6px;
    width: 18px;
}
.point_card dd {
    font-size: 1.4rem;
}
.point_card dd span {
    font-size: 1.8rem;
    font-weight: 500;
}

.balloon_wrapper {
    display: flex;
    align-items: center;
}
.balloon {
    padding: 8px;
    background: var(--color-light);
    border-radius: 8px;
    position: relative;
    margin-left: 24px;
    width: calc(100% - 160px);
}
.balloon::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 20px 12px 0;
    border-color: transparent var(--color-light) transparent transparent;
    margin: auto;
}
.icon_img {
    margin: 8px;
}
.icon_img_list {
    display: flex;
    flex-wrap: wrap;
}
.icon_img_list .icon_img {
    width: calc(100% / 3 - 16px);
}
.icon_img img {
    border-radius: 50%;
    width: 100%;
}

.news_item {
    border-radius: 4px;
    border: solid 2px var(--color-medium);
    padding: 16px 12px;
}
.news_item pre {
    white-space: pre-wrap;
    margin: 0;
}

.movie_list_wrapper {
    overflow: scroll;
    padding: 0 0 8px;
}
.movie_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.movie_item {
    min-width: 64%;
    margin-bottom: 8px;
}
.movie_item a {
    text-decoration: none;
    transition: opacity .3s;
}
.movie_list .movie_item + .movie_item {
    margin-left: 16px;
}
.movie_item_thumb img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: solid 2px #fff;
    box-shadow: 0 0 4px rgb(0 0 0 / 20%);
    border-radius: 4px;
}
.movie_item_title {
    margin-top: 8px;
    text-align: center;
}

.system_requests a {
    text-decoration: none;
    color:#333;
}
.system_request_border {
    margin:10px;
    border: var(--color-secondary) solid 5px;
    border-radius: 5px;
    padding: 5px;
}
.system_request_text {
    font-size: 80%;
    font-weight: bolder;
}

@media screen and (min-width: 768px) {
    .balloon {
        padding: 16px;
        width: auto;
    }
    .icon_img_list .icon_img {
        width: auto;
    }
    .news_item {
        border-radius: 8px;
        padding: 20px 16px;
    }
    .movie_item_title {
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 1000px) {
    .page_mypage .footer {
        padding-bottom: 0;
    }
    .page_mypage .main_content {
        position: relative;
    }
    .point_card {
        right: 32px;
        bottom: 32px;
        width: auto;
        padding: 24px;
        border-radius: 8px;
        height: auto;
    }
    .point_card dl {
        font-size: 1.6rem;
    }
    .point_card dd span {
        font-size: 2rem;
    }
    .movie_list {
        flex-wrap: wrap;
    }
    .movie_item {
        width: 32%;
        min-width: 0;
        margin-bottom: 24px;
    }
    .movie_item a:hover {
        opacity: .7;
    }
    .movie_list .movie_item + .movie_item {
        margin-left: 2%;
    }
    .movie_list .movie_item:nth-of-type(3n+1) {
        margin-left: 0;
    }
    .movie_item_thumb img {
        border: solid 4px #fff;
        box-shadow: 0 0 8px rgb(0 0 0 / 20%);
        border-radius: 8px;
    }
}

/* --------------------------------
Monthly
-------------------------------- */
.monthly_datail {
    list-style: none;
    padding: 0;
    margin: 0;
}
.monthly_datail li + li {
    border-top: 1px solid var(--color-medium);
    margin-top: 8px;
    padding-top: 8px;
}
.monthly_datail li .date {
    display: block;
    color: #666;
    margin-right: 16px;
}


@media screen and (min-width: 768px) {
    .monthly_datail li {
        display: flex;
        justify-content: space-between;
        
    }
}
@media screen and (min-width: 1200px) {

}


/* --------------------------------
Cheki
-------------------------------- */
.reserve_cheki_item {
    padding: 16px 0;
    border-bottom: #DDDDDD solid 1px;
    display: flex;
    align-items: center;
}
.reserve_cheki_talent {
    display: flex;
    align-items: center;
    margin-left: 16px;
}
.reserve_cheki_talent + .reserve_cheki_talent {
    margin-top: 16px;
}
.reserve_cheki_cancel {
    margin-left: auto;
    min-width: 72px;
}
.reserve_cheki_img {
    margin-right: 8px;
}
.reserve_cheki_qr {
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 104px;
}
@media screen and (min-width: 768px) {
    
}






/* --------------------------------
Main
-------------------------------- */
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 1200px) {

}




/* --------------------------------
調整用Class
-------------------------------- */

.-min80 {
    min-width: 80px;
}
.-min120 {
    min-width: 120px;
}
.-min160 {
    min-width: 160px;
}
.-min200 {
    min-width: 200px;
}
.-min240 {
    min-width: 240px;
}
.-min320 {
    min-width: 320px;
}
.-min400 {
    min-width: 400px;
}
.-min480 {
    min-width: 480px;
}
.-min560 {
    min-width: 560px;
}
.-min640 {
    min-width: 640px;
}
.-min720 {
    min-width: 720px;
}
.-min800 {
    min-width: 800px;
}

.-max40 {
    max-width: 40px;
}
.-max80 {
    max-width: 80px;
}
.-max120 {
    max-width: 120px;
}
.-max160 {
    max-width: 160px;
}
.-max200 {
    max-width: 200px;
}
.-max240 {
    max-width: 240px;
}
.-max320 {
    max-width: 320px;
}
.-max400 {
    max-width: 400px;
}
.-max480 {
    max-width: 480px;
}
.-max560 {
    max-width: 560px;
}
.-max640 {
    max-width: 640px;
}
.-max720 {
    max-width: 720px;
}
.-max800 {
    max-width: 800px;
}



.-mt0 {
    margin-top: 0!important;
}
.-mt05em {
    margin-top: .5em;
}
.-mt1em {
    margin-top: 1em;
}
.-mt2em {
    margin-top: 2em;
}
.-mt3em {
    margin-top: 3em;
}
.-mt4em {
    margin-top: 4em;
}

.-mb0 {
    margin-bottom: 0!important;
}
.-mb1em {
    margin-bottom: 1em;
}
.-mb05em {
    margin-bottom: .5em;
}
.-mb1em {
    margin-bottom: 1em;
}
.-mb2em {
    margin-bottom: 2em;
}
.-mb3em {
    margin-bottom: 3em;
}
.-mb4em {
    margin-bottom: 4em;
}

.-mr1em {
    margin-right: 1em;
}
.-mr05em {
    margin-right: .5em;
}
.-mr1em {
    margin-right: 1em;
}
.-mr2em {
    margin-right: 2em;
}
.-mr3em {
    margin-right: 3em;
}
.-mr4em {
    margin-right: 4em;
}

.-ml1em {
    margin-left: 1em;
}
.-ml05em {
    margin-left: .5em;
}
.-ml1em {
    margin-left: 1em;
}
.-ml2em {
    margin-left: 2em;
}
.-ml3em {
    margin-left: 3em;
}
.-ml4em {
    margin-left: 4em;
}


.-m05em {
    margin-left: .5em;
    margin-right: .5em;
}
.-m1em {
    margin-left: 1em;
    margin-right: 1em;
}
.-m2em {
    margin-left: 2em;
    margin-right: 2em;
}



.-p05em {
    padding: .5em;
}

.-w10 {
    width: 10%;
}
.-w20 {
    width: 20%;
}
.-w30 {
    width: 30%;
}
.-w40 {
    width: 40%;
}
.-w50 {
    width: 50%;
}
.-w60 {
    width: 60%;
}
.-w70 {
    width: 70%;
}
.-w80 {
    width: 80%;
}
.-w90 {
    width: 90%;
}
.-w100 {
    width: 90%;
}


.-ta_left {
    text-align: left;
}
.-ta_center {
    text-align: center;
}
.-ta_right {
    text-align: right;
}



.-fs_small {
    font-size: 70%;
    font-feature-settings: "palt";
}
.-fs_large {
    font-size: 150%;
}

.-fc_red {
    color: var(--color-error);
}

.-bg_light {
    background: var(--color-light);
}
.-bg_medium {
    background: var(--color-medium);
}

.-inline {
    display: inline-block;
}
.-d_flex {
    display: flex;
}
.-ai_center {
    align-items: center;
}
.-jc_center {
    justify-content: center;
}

.-pc {
    display: none;
}
.-sp {
        display: block;
    }
@media screen and (min-width: 768px) {
    .-pc {
        display: block;
    }
    .-sp {
        display: none;
    }

}