@import url(https://fonts.googleapis.com/css?family=Nunito);
@charset "UTF-8";

html {
    position: relative;
    min-height: 100%;
}

html body {
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #232323;
    line-height: 1.5;
    background-color: #f4f4f4;
    margin: 10px 0 70px;
}

* {
    box-sizing: border-box;
}

ul {
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: #232323;
}

.m-form-control {
    width: 100%;
    height: 38px;
    padding: 7px 15px;
    border-radius: 8px;
    border: 1px solid #959595;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .m-form-control {
        height: 46px;
        padding: 5px 10px;
        font-size: 16px;
    }
}

.m-form-control:focus-visible {
    outline: none;
}

.m-form-control:focus {
    border-color: #232323;
}

textarea.m-form-control {
    resize: vertical;
    height: auto;
}

.save-btn {
    margin: auto;
    display: block;
    /* width: 115px; */
    /* font-family: "Poppins", sans-serif; */
    font-family: 'Noto Sans JP';
    color: #FFF;
    border: none;
    /* background: #5f8bff; */
    font-size: 18px;
    font-weight: 600;
    /* border-radius: 5px;
    padding: 5px 0; */
    background: #3D3D3D;
    border-radius: 24px;
    font-size: 15px;
    padding: 12px 0;
    width: 160px;
    letter-spacing: 1px;
}

.update-btn {
    margin: auto;
    display: block;
    width: 115px;
    /* font-family: "Poppins", sans-serif; */
    font-family: 'Noto Sans JP';
    /* color: #000; */
    border: none;
    /* background: #93CDDCFF;
    font-size: 18px;
    border-radius: 5px;
    padding: 5px 0; */
    font-weight: 600;
    border-radius: 24px;
    font-size: 15px;
    padding: 12px 0;
    width: 160px;
    letter-spacing: 1px;
    color: #3D3D3D;
    background: #fff;
    border: solid 1px #3D3D3D;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

@media screen and (max-width: 768px) {
    .switch {
        width: 50px;
        height: 25px;
    }

    .switch .slider::before {
        height: 20px;
        width: 20px;
        left: 0px;
        bottom: 3px;
    }
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

#toast-container>.toast-success {
    background-color: green;
}

#toast-container>.toast-warning {
    background-color: goldenrod;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.loader {
    display: none;
    border: 4px solid #d8e2ff;
    border-top: 4px solid #5f8bff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: fixed;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    z-index: 99999;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.dropzone .dz-preview:hover .dz-details {
    display: none;
}

.profile-photo:not(img):before,
#profile_photo:not(.dz-started):before {
    content: "";
    background-image: url(../images/no_images.png);
    background-size: 100%;
    width: 150px;
    height: 150px;
    display: block;
}

#profile_photo.dz-started:before {
    display: none;
}

.profile-photo:not(img):before {
    position: absolute;
}

.profile-photo:before,
#profile_photo.dz-started:before {
    display: none;
}

.dropzone .dz-preview:hover .dz-image img {
    filter: unset;
    transform: scale(1.0, 1.0);
}

header {
    padding: 50px 0;
    text-align: center;
    height: 165px;
}

@media screen and (max-width: 768px) {
    header {
        padding: 20px 0;
        height: 105px;
    }
}

header .mark {
    position: relative;
    background: transparent;
}

header .mark .logo {
    font-family: "Noto Serif", serif;
    font-size: 40px;
    font-weight: 700;
}

header .mark .logo a {
    color: inherit;
    text-decoration: none;
}

header .mark::before {
    position: absolute;
    content: "";
    width: calc(50% - 75px);
    height: 1px;
    top: 50%;
    left: 0;
    background-color: #e0e0e0;
}

header .mark::after {
    position: absolute;
    content: "";
    width: calc(50% - 75px);
    height: 1px;
    top: 50%;
    right: 0;
    background-color: #e0e0e0;
}

/*footer {*/
/*    padding: 10px 0 20px;*/
/*    height: 50px;*/
/*}*/
/*footer .social-btns {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    max-width: 1170px;*/
/*    margin: auto;*/
/*    border-top: 1px solid #DDD;*/
/*    border-bottom: 1px solid #DDD;*/
/*    padding: 20px 0;*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*    footer .social-btns {*/
/*        padding: 10px 0;*/
/*    }*/
/*}*/
/*footer .social-btns__item {*/
/*    margin: 0 10px;*/
/*    height: 70px;*/
/*}*/
/*footer .social-btns__item img {*/
/*    height: 100%;*/
/*    width: auto;*/
/*    -o-object-fit: cover;*/
/*    object-fit: cover;*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*    footer .social-btns__item {*/
/*        height: 45px;*/
/*    }*/
/*}*/
/*footer .footer-links {*/
/*    max-width: 850px;*/
/*    margin: auto;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    padding: 50px 0 0;*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*    footer .footer-links {*/
/*        padding: 20px 10px 20px;*/
/*        flex-direction: column;*/
/*    }*/
/*}*/
/*footer .footer-links__left {*/
/*    font-size: 14px;*/
/*    color: #676767;*/
/*}*/
/*footer .footer-links__right {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*    footer .footer-links__right {*/
/*        margin-top: 20px;*/
/*    }*/
/*}*/
/*footer .footer-links__right ul {*/
/*    display: flex;*/
/*    padding: 0;*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*    footer .footer-links__right ul {*/
/*        flex-direction: column;*/
/*    }*/
/*}*/
/*footer .footer-links__right ul li {*/
/*    padding: 0 10px;*/
/*    position: relative;*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*    footer .footer-links__right ul li {*/
/*        padding: 0;*/
/*    }*/
/*}*/
/*footer .footer-links__right ul li a {*/
/*    font-size: 14px;*/
/*    color: #676767;*/
/*}*/
/*footer .footer-links__right ul li::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 1px;*/
/*    height: 16px;*/
/*    top: 6px;*/
/*    right: -2px;*/
/*    transform: rotate(20deg);*/
/*    background-color: #AAA;*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*    footer .footer-links__right ul li::before {*/
/*        display: none;*/
/*    }*/
/*}*/
/*footer .footer-links__right ul li:last-child::before {*/
/*    display: none;*/
/*}*/

main.login-page {
    display: flex;
    align-items: center;
}

main.login-page .card-header {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    background: #D9D9D9;
}

main.login-page .card .col-form-label {
    font-size: 16px;
}

main.login-page .card .m-form-control {
    height: 38px;
}

main.login-page .card button {
    padding: 8px 30px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

main.login-page .card .forgot-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #1d68a7;
    text-decoration: underline;
}

main.login-page .card .forgot-link a {
    color: #0070c0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

main.login-page .card .forgot-link a:hover {
    opacity: .8;
}

main.login-page .card .save-btn {
    width: 47%;
    transition: 0.3s ease-in-out;
    background: #3D3D3D;
    border-radius: 24px;
    padding: 14px 0;
    letter-spacing: 1px;
    height: auto;
    border: none;
    font-size: 15px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    main.login-page .card .save-btn {
        width: 70%;
    }
}

main.login-page .card .btn {
    width: 44%;
    transition: 0.3s ease-in-out;
    background: #3D3D3D;
    border-radius: 24px;
    padding: 14px 0;
    letter-spacing: 1px;
    height: auto;
    border: none;
    font-size: 15px;
    color: #fff;
}

main.login-page .card .btn_back {
    width: 44%;
    transition: 0.3s ease-in-out;
    background: #fff;
    border-radius: 24px;
    padding: 14px 0;
    letter-spacing: 1px;
    height: auto;
    border: none;
    font-size: 15px;
    color: #3D3D3D;
    border: solid 1px #3D3D3D;
}

@media screen and (max-width: 768px) {
    main.login-page .card .btn {
        width: 65%;
    }
}

main.login-page .card .btn:hover {
    opacity: .8;
}

main.login-page .card .btn_back:hover {
    opacity: .8;
    background: #3D3D3D;
    color: #fff;
}

main.login-page.buy-page {
    flex-direction: column;
    justify-content: center;
}

main.login-page.buy-page p:first-child {
    font-size: 20px;
    margin-bottom: 20px;
}

main.login-page.buy-page p:first-child a {
    text-decoration: underline;
    color: #55acee;
}

main.login-page.buy-page p:first-child a:hover {
    color: #3490dc;
}

main.login-page.buy-page p:last-child {
    text-align: center;
    line-height: 1.75;
    font-size: 16px;
    color: #424242;
}

main {
    max-width: 800px;
    margin: auto;
    min-height: calc(100vh - 165px - 335px);
}

@media screen and (max-width: 768px) {
    main {
        min-height: calc(100vh - 105px - 335px);
    }
}

main .login-menu {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 15px;
    align-items: center;
}

main .login-menu__item {
    display: flex;
    align-items: center;
}

main .login-menu__item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

main .login-menu__item a span {
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    main .login-menu__item a img {
        width: 25px;
    }
}

main .login-menu__item.l-child {
    margin-right: 30px;
}

@media screen and (max-width: 768px) {
    main .login-menu__item.l-child {
        margin-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    main {
        padding: 0 10px;
    }
}

main .section-con {
    background-color: #FFF;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 40px;
}

@media screen and (max-width: 768px) {
    main .section-con {
        padding: 25px 10px;
    }
}

main .section-con .section-inner-con {
    max-width: 610px;
    margin: auto;
    display: none;
}

main .section-con.sns-section .section-inner-con {
    max-width: unset;
}

main .section-con .section-enable-flag {
    display: flex;
    align-items: center;
}

main .section-con .section-enable-flag label {
    font-size: 20px;
    font-weight: 500;
    margin-left: 25px;
}

@media screen and (max-width: 768px) {
    main .section-con .section-enable-flag label {
        font-size: 18px;
    }

    main .section-con .section-enable-flag label:first-child {
        margin-left: 0;
    }

    main .section-con .section-enable-flag label:last-child {
        width: calc(100% - 60px);
        margin-left: 10px;
    }
}

main .section-con.active .section-enable-flag {
    margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
    main .section-con.active .section-enable-flag {
        margin-bottom: 15px;
    }
}

main .section-con.active .section-inner-con {
    display: block;
}

main .photo-section {
    padding: unset;
}

main .photo-section__top-part {
    height: 175px;
    /* background-image: linear-gradient(to top, #b1c6ff, #FFF, #FFF); */
    border-radius: 10px 10px 0 0;
    position: relative;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    /*background-position: center center !important;*/
    background: #7e7e7e;
}

main .photo-section__top-part .profile-photo {
    position: absolute;
    left: 70px;
    bottom: -45px;
    border: 2px solid #e1e1e1;
    width: 154px;
    height: 154px;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    main .photo-section__top-part .profile-photo {
        left: calc(50% - 77px);
    }
}

main .photo-section__top-part .profile-photo img {
    width: 150px;
    height: 150px;
    /*border-radius: 50%;*/
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    position: relative;
    color: #FFF;
}

main .photo-section__top-part--lbl {
    position: absolute;
    bottom: 0;
    left: 40px;
    background: #323232;
    color: #FFF;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    main .photo-section__top-part--lbl {
        left: 5px;
    }
}

main .photo-section__top-part--dropzone {
    position: absolute;
    left: calc(50% - 77px);
    bottom: -50px;
}

main .photo-section__top-part--dropzone .dropzone-trigger {
    background: #323232;
    position: absolute;
    top: calc(50% - 5px);
    right: -15px;
    padding: 0px 5px 5px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
}

main .photo-section__top-part--dropzone .dropzone {
    width: 154px;
    height: 154px;
    border-radius: 50%;
    border-color: #e1e1e1;
    padding: 0;
}

main .photo-section__top-part--dropzone .dropzone .dz-preview {
    margin: 0;
    border-radius: 50%;
}

main .photo-section__top-part--dropzone .dropzone .dz-preview .dz-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

main .photo-section__top-part--dropzone .dropzone .dz-preview .dz-image img {
    width: 150px;
    height: 150px;
    /*border-radius: 50%;*/
    -o-object-fit: cover;
    object-fit: cover;
}

main .photo-section__top-part--dropzone .dropzone input#photo_path {
    display: none;
}

main .photo-section__bottom-part {
    padding: 70px 0 40px;
    color: #505050;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    main .photo-section__bottom-part {
        padding: 70px 10px 40px;
        font-size: 12px;
    }
}

main .photo-section__bottom-part .view-item {
    padding: 12px 0;
    border-bottom: 1px solid #e3e3e3;
}

main .photo-section__bottom-part .view-item .gmap {
    margin: 24px auto 12px;
}

main .photo-section__bottom-part .view-item .profile-name {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

main .photo-section__bottom-part .view-item .profile-name .name_kana {
    font-size: 22px;
}

@media screen and (max-width: 768px) {
    main .photo-section__bottom-part .view-item .profile-name {
        font-size: 20px;
    }
    main .photo-section__bottom-part .view-item .profile-name .name_kana {
        font-size: 18px;
    }
}

main .photo-section__bottom-part .view-item .profile-intro {
    font-size: 16px;
    white-space: pre-wrap;
}

@media screen and (max-width: 768px) {
    main .photo-section__bottom-part .view-item .profile-intro {
        font-size: 14px;
    }
}

main .photo-section__bottom-part .view-item .view-item_txt {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    main .photo-section__bottom-part .view-item .view-item_txt {
        font-size: 16px;
    }
}

main .photo-section__bottom-part .view-item:last-child {
    border-bottom: none;
}

main .photo-section__bottom-part .view-title {
    color: #AEAEAE;
    margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
    main .photo-section__bottom-part .view-title {
        font-size: 10px;
    }
}

main .sns-section.sns-profile-section {
    padding: 0 40px 0;
    margin-top: 60px;
    position: relative;
}

@media screen and (max-width: 768px) {
    main .sns-section.sns-profile-section {
        padding: 40px 0 10px;
    }
}

main .sns-section.sns-profile-section .sns-profile-top-btn {
    position: absolute;
    top: -27px;
    left: calc(50% - 140px);
    width: 280px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #FFF;
    cursor: pointer;
    background: #3D3D3D;
    border-radius: 24px;
    padding: 12px 0;
    letter-spacing: 1px;
    height: auto;
}

@media screen and (max-width: 768px) {
    main .sns-section.sns-profile-section .sns-profile-top-btn {
        display: flex;
    }
}

main .sns-section.sns-profile-section .sns-profile-top-btn .sns-arrow-down {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFF;
    margin-right: 5px;
}

main .sns-section.sns-profile-section .sns-profile-top-btn span {
    font-size: 17px;
    font-weight: bold;
}

main .sns-section .sns-section-con {
    margin-left: -40px;
    margin-right: -40px;
    max-width: unset;
}

@media screen and (max-width: 768px) {
    main .sns-section .sns-section-con {
        margin-left: 0px;
        margin-right: 0px;
    }
}

main .sns-section .sns-section-con ul {
    padding: 0;
}

main .sns-section .sns-section-con ul.profile li {
    padding: 10px 45px;
    margin-bottom: 10px;
    background: #e3e3e3;
    position: relative;
}

main .sns-section .sns-section-con ul li {
    padding: 10px 90px 10px 45px;
    margin-bottom: 10px;
    background: #e3e3e3;
    position: relative;
}

main .sns-section .sns-section-con ul li.sns-li-edit {
    background: transparent;
}

@media screen and (max-width: 768px) {
    main .sns-section .sns-section-con ul li {
        padding: 10px;
    }

    main .sns-section .sns-section-con ul li.inc-icon-profile {
        padding: 10px 40px 10px 10px;
    }

    main .sns-section .sns-section-con ul li.inc-icon {
        padding: 10px 85px 10px 35px;
    }

}

main .sns-section .sns-section-con ul li a.jp-txt .sns-item__desc--ttl {
    font-family: "Kosugi Maru", sans-serif;
}

main .sns-section .sns-section-con ul li .sns-item {
    display: flex;
}

main .sns-section .sns-section-con ul li .sns-item__img {
    height: 70px;
    margin-right: 25px;
}

@media screen and (max-width: 768px) {
    main .sns-section .sns-section-con ul li .sns-item__img {
        height: 40px;
    }
}

main .sns-section .sns-section-con ul li .sns-item__img img {
    max-height: 100%;
}

main .sns-section .sns-section-con ul li .sns-item__desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

main .sns-section .sns-section-con ul li .sns-item__desc--ttl {
    font-size: 20px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    main .sns-section .sns-section-con ul li .sns-item__desc--ttl {
        font-size: 16px;
    }
}

main .sns-section .sns-section-con ul li .sns-item__desc--info {
    color: #696969;
    word-wrap: break-word;
    max-width: 100%;
    word-break: break-word;
}

@media screen and (max-width: 768px) {
    main .sns-section .sns-section-con ul li .sns-item__desc--info {
        font-size: 14px;
    }
}

main .sns-section .sns-section-con ul li .edit-sc-item {
    position: absolute;
    right: 15px;
    top: calc(50% - 15px);
}

main .sns-section .sns-section-con ul li .edit-sc-item.arrow-item {
    top: calc(50% - 10px);
}

main .sns-section .sns-section-con ul li .edit-sc-item.arrow-item {
    top: calc(50% - 10px);
}

main .sns-section .sns-section-con ul li .edit-sc-item.arrow-item img {
    width: 25px;
}

@media screen and (max-width: 768px) {
    main .sns-section .sns-section-con ul li .edit-sc-item.arrow-item {
        top: calc(50% - 15px);
    }
}

main .sns-section .sns-section-con ul li .delete-sc-item {
    position: absolute;
    right: 55px;
    top: calc(50% - 15px);
    /*display: none;*/
}

main .sns-section .sns-section-con ul li .delete-sc-item svg {
    width: 26px;
}

main .sns-section .sns-section-con ul li:last-child {
    margin-bottom: 30px;
}

main .sns-section .new-sns-item {
    display: flex;
}

@media screen and (max-width: 768px) {
    main .sns-section .new-sns-item {
        flex-direction: column;
    }
}

main .sns-section .new-sns-item__type {
    width: 40%;
    padding: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
    main .sns-section .new-sns-item__type {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
}

main .sns-section .new-sns-item__desc {
    width: 60%;
    position: relative;
}

@media screen and (max-width: 768px) {
    main .sns-section .new-sns-item__desc {
        width: 100%;
    }
}

main .sns-section .new-sns-item__desc .m-form-control {
    padding-right: 40px;
}

@media screen and (max-width: 768px) {
    main .sns-section .new-sns-item__desc .m-form-control {
        padding-right: 10px;
        /*width: calc(100% - 40px);*/
    }
}

main .sns-section .new-sns-item__desc svg {
    position: absolute;
    right: 10px;
    top: calc(50% - 13px);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    main .sns-section .new-sns-item__desc svg {
        right: 0;
    }
}

html {
    position: relative;
    min-height: 100%;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #231F20;
}

.footer .container {
    width: auto;
    max-width: 680px;
    padding: 0 15px;
}

.footer .container p {
    color: #fff !important;
}

.footer .container .text-muted {
    margin: 13px 0;
}

.label-required {
    position: relative;
}

.label-required span {
    position: absolute;
    width: 90px;
    left: 102px;
}

.password-buttonEye {
    position: relative;
}

.drawer--right .drawer-hamburger {
    padding: 9px 5px 18px !important;
    margin-top: 16px;
    background: #000;
    border-radius: 50%;
    margin-right: 24px;
}

@media screen and (max-width: 768px) {
    .drawer--right .drawer-hamburger {
        margin-right: 16px;
    }
}

.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
    background-color: #fff;
    max-width: 20px;
    margin-left: auto;
    margin-right: auto;
}

.drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
    top: -8px;
}

.drawer-hamburger-icon:after {
    top: 8px;
}

main.inquiry-page .card-header {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    background: #D9D9D9;
}

div.sns-item__desc {
    width: 100%;
    overflow: hidden;
}

span.sns-item__desc--info {
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    span.sns-item__desc--info {
        width: 98%;
    }
}

.btn:disabled {
    pointer-events: none;
    opacity: .4;
}
.unregister-btn-wrap button {
    display: inline-block;
}