@charset "utf-8";

.member__headline {
    margin-bottom: 16px;
}
.member__discription {
    margin: 0 0 32px;
}
.member__order {
    justify-content: flex-end;
}

/*-------------------------------------------------------------------------
#
-------------------------------------------------------------------------*/

.member-header {
    margin-block: 0 16px;
    padding: 0 20px;
}
.member-header__between {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
}
    .member-header__between h1 {
        margin: 0;
    }
    .member-header__btn {
        padding: 0 12px;
        font-size: 12px;
    }
    .nopage {
        margin-top: 100px;
    }
    .mypage-head__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

/*-------------------------------------------------------------------------
下部固定
-------------------------------------------------------------------------*/

.member-nav {
    background-color: #fff;
    box-shadow: 0 -4px 5px rgba(38, 50, 56, .15);
    display        : flex;
    justify-content: center;
}
    .member-nav__link {
        width: 22vw;
        display       : flex;
        gap           : 3px;
        align-items   : center;
        flex-direction: column;
        padding: 7px 0 4px;
        position: relative;
        font-size: 10px;
    }
        .member-nav svg {
            width: 30px;
            height: 30px;
            fill: var(--dark-color);
        }
        .member-nav__badge {
            width: 10px;
            height: 10px;
            background-color: var(--strong-color);
            border-radius: 50%;
            position: absolute;
            top     : 10px;
            left    : 50%;
            margin: 0 0 0 7px;
        }

/*-------------------------------------------------------------------------
マイページ
-------------------------------------------------------------------------*/

.mypage-nav {
    border-bottom: 1px solid var(--border-color);
    margin: 0 0 24px;
}
    .mypage-nav__items {
        border-top: 1px solid var(--border-color);
    }
        .mypage-nav__link {
            display        : flex;
            gap            : 10px;
            align-items    : center;
            justify-content: space-between;
            padding: 14px 10px 13px 0;
        }
            :is(.mypage-nav__link, .mypage-menu__link) svg {
                width: 8px;
                height: 8px;
                fill: var(--light-text-color);
            }
.mypage-menu {
    display        : flex;
    gap            : 16px;
    align-items    : center;
    justify-content: center;
}
    .mypage-menu__link {
        display    : flex;
        gap        : 3px;
        align-items: center;
        font-size: 12px;
    }
    .mypage__banner {
        display: flex;
        justify-content: space-around;
        margin: 10px 0;
    }

/*-------------------------------------------------------------------------
見出し　戻る
-------------------------------------------------------------------------*/

.select-return {
    position: relative;
    padding: 0 0 13px;
}
    .select-return__btn {
        position: absolute;
        top     : -3px;
        left    : 10px;
        padding: 10px;
    }
        .select-return__btn svg {
            width: 12px;
            height: 12px;
            fill: var(--light-text-color);
        }

/*-------------------------------------------------------------------------
見出し　戻る
-------------------------------------------------------------------------*/

.unsubsribe-list {
    margin: 16px 0 24px;
    display: grid;
    gap    : 16px;
}
    .unsubsribe-list__items {
        display: flex;
    }
        .unsubsribe-list__items input {
            margin-top: 2px;
        }
.unsubsribe-submit {
    width: 167px;
    height: 44px;
    margin: auto;
    font-weight: bold;
}

/*-------------------------------------------------------------------------
CHAT
-------------------------------------------------------------------------*/

.chat {
    padding-bottom: 67px;
}
.chat-header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    margin: -20px 0 0;
    padding: 11px 0 10px;
    position: relative;
}
    .chat-header h1 {
        margin: 0;
    }
    .chat-header__return {
        width: 35px;
        height: 35px;
        position: absolute;
        top     : 0;
        bottom  : 0;
        left    : 10px;
        margin  : auto;
        padding: 10px;
    }
        .chat-header__return svg {
            width: 15px;
            height: 15px;
            fill: var(--light-text-color);
        }
.chat__body {
    padding: 20px;
}
    .chat__date {
        margin: 0 0 24px;
        font-weight: bold;
        text-align: center;
    }
    [class*="chat__items--"]{
        margin: 0 0 20px;
        display: flex;
        gap: 6px;
    }
    [class*="chat__items--"]:last-child {
        margin-bottom: 0;
    }
    .chat__items--user {
        display        : flex;
        justify-content: flex-end;
    }
        /* 吹き出し  */
        [class*="chat__talk--"]{
            width: 65vw;
            padding: 10px;
            border-radius: 12px;
        }
        .chat__talk--user  { background-color: #90CAF9;}
        .chat__talk--staff { background-color: var(--bg-light-gray);}

            .chat__ttl {
                margin: 0 0 10px;
                font-weight: bold;
                text-align: center;
            }
            .chat__bkn {
                display    : flex;
                gap        : 8px;
                align-items: center;
                margin: 0 0 2px;
            }
                .chat__img {
                    width: 50px;
                    height: 50px;
                }
            .chat__price {
                display: flex;
                margin: 0 0 2px;
            }
            .chat__text {
                display    : flex;
                gap        : 3px;
                align-items: center;
            }
                .chat__text svg {
                    width: 10px;
                    height: 10px;
                }
            .chat__link {
                display: block;
                margin: 16px 0 0;
                font-size  : 13px;
                font-weight: bold;
                color      : #1976D2;
                text-align: center;
            }
        /* 時間  */
        .chat__time {
            display: flex;
            align-items: flex-end;
        }
            .chat__time p {
                font-size: 12px;
            }
        /* サムネイル      */
        .chat__thum {
            width: 45px;
            height: 45px;
        }
.chat-control {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -4px 5px rgba(38, 50, 56, .15);
    display    : flex;
    gap        : 8px;
    align-items: center;
    padding: 13px 20px;
    position: fixed;
    bottom  : 0;
    left    : 0;
}
    .chat-control__add svg {
        width: 20px;
        height: 20px;
    }
    .chat-control__add input[type="file"]{
        display: none;
    }
    .chat-control__input {
        flex: 1;
        background-color: #EFF3F9;
        border-radius: 4px;
        min-height: 35px;
        padding: 0 10px;
    }
    .chat-control__send {

    }
        .chat-control__send svg {
            width: 18px;
            height: 18px;
        }
        .chat-control__send-on {
            display: none;
        }

/*-------------------------------------------------------------------------
退会
-------------------------------------------------------------------------*/

.confirm-unsubsribe__text {
    margin-block: 37px 53px;
    text-align: center;
}
.confirm-unsubsribe__list {
    display              : grid;
    gap                  : 7px;
    grid-template-columns: 1fr 1fr;
}
    .confirm-unsubsribe__list button {
        width: 100%;
    }
    .confirm-unsubsribe__btn-confirm {
        font-weight: bold;
    }

/*-------------------------------------------------------------------------
pタグのレイアウト
-------------------------------------------------------------------------*/
.nopage {
    margin-left: 20px;
}
/*-------------------------------------------------------------------------
条件絞り込みのリンク
-------------------------------------------------------------------------*/
.more-search-link {
    font-size: 14px;
    text-decoration: underline;
    position: relative;
    top: 20px;
}
/*-------------------------------------------------------------------------
会員登録
-------------------------------------------------------------------------*/
.regist__submit {
    background-color: var(--sub-color);
    margin-block: 32px 0;
    height: 44px;
}
