@charset "utf-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Round|Material+Icons+Sharp|Material+Icons+Two+Tone);
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,100,0,0);



html {
    height: 100%;
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    min-width: 100%;
    height: 100%;
    color: #000000;
    font-size: 1.4rem;
    line-height: 1.4;
    background: #F5F6F8;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    -webkit-text-size-adjust: none;
    overflow: scroll;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

h1 {
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: bold;
}

h3 {
    font-size: 1.4rem;
    line-height: 2.1rem;
    font-weight: bold;
}

p {
    font-size: 1.4rem;
}



ul {
    list-style-type: none;
}

img {
    border: none;
    max-width: 100% !important;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    color: #1558d6;
    text-decoration: underline;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}


input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
}

button {
    font-size: 1.4rem;
    background: transparent;
    cursor: pointer;
}

button:focus {
    outline: 0;
}

::placeholder {
    color: #D9D9D9;
}

@media screen and (min-width:600px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}



/* --------------------------------------------- */
/* スプラッシュ */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 999999;
    background: #F5F5F5;
}

.splash_logo {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
}

.splash_logo img {
    width: 125px;
}

.logo-fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* --------------------------------------------- */
.container {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100svh;
}

@media screen and (min-width: 769px) {
    .container {
        display: flex;
        justify-content: space-between;
    }
}


/* メーン */
main {
    margin: 0;
    padding: 0 0 56px 0;
    width: 100%;
}

@media screen and (min-width: 769px) {
    main {
        margin-left: 220px;
        padding: 0;
        width: calc(100% - 220px);
    }
}

@media screen and (min-width: 769px) {
    main.center {
        margin-left: 0;
        padding: 0;
        width: 100%;
    }
}


/* コンテンツラップ */
.contentsWrap {
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-width: 480px;
}

.contentsWrap.gapTop {
    padding-top: 52px;
}

.contentsWrap.gapSide {
    padding-right: 16px;
    padding-left: 16px;
}

@media screen and (min-width: 767px) {
    .contentsWrap.gapSide {
        padding-right: 0;
        padding-left: 0;
    }
}

.contentsWrap.gapBottom {
    padding-bottom: 52px;
}


/* ナビ menu - PC表示では左サイドバー、モバイルでは下部バー */
.gMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: 240px;
    height: 100%;
    background: #000000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    border-radius: 0;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-tap-highlight-color: transparent;
    transform: none;
    -webkit-transform: none;
    transition: none;
    animation: none;
    opacity: 1;
    visibility: visible;
}

.gMenu *,
.gMenu *::before,
.gMenu *::after {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* モバイル用gMenu - 下部バーとして表示 */
@media (max-width: 768px) {
    .gMenu {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        width: 100%;
        height: 64px;
        border-radius: 0;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
        z-index: 9999;
        transform: none;
        -webkit-transform: none;
        will-change: auto;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        background: #000000 !important;
        -webkit-tap-highlight-color: transparent !important;
        transition: none;
    }

    .gMenu.scroll-hidden,
    body.gmenu-scroll-hidden .gMenu {
        transform: translateY(calc(100% + env(safe-area-inset-bottom, 0px))) !important;
        -webkit-transform: translateY(calc(100% + env(safe-area-inset-bottom, 0px))) !important;
    }

    .gMenu__btns li,
    .gMenu__btns li:active,
    .gMenu__btns li:focus-within {
        background: transparent !important;
        box-shadow: none !important;
    }

    .gMenu__btns li button,
    .gMenu__btns li button:active,
    .gMenu__btns li button:focus,
    .gMenu__btns li button:focus-visible {
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    body,
    body.has-stars {
        transform: none;
        -webkit-transform: none;
    }
}

/* iPhone Safari用のSafe Area対応 */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .gMenu {
            padding-bottom: max(env(safe-area-inset-bottom, 0px), 20px);
            height: auto;
            min-height: 64px;
        }
    }
}

/* --- */
.gMenu__logo {
    margin: 32px 0 24px 0;
    padding: 0;
    transition: all 0.3s ease;
}

.gMenu__logo a {
    margin: 0;
    padding: 0;
    display: block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gMenu__logo a:hover {
    transform: scale(1.1);
}

.gMenu__logo a img {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 125px;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
}

@media screen and (max-width: 769px) {
    .gMenu__logo {
        display: none;
    }
}

/* --- */
.gMenu__btns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    max-width: 600px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-around;
}

.gMenu__btns li {
    position: relative;
    margin: 0;
    padding: 0;
    width: 25%;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gMenu__btns li:hover {
    transform: translateY(-5px);
}

.gMenu__btns li .search,
.gMenu__btns li .nice,
.gMenu__btns li .accounts,
.gMenu__btns li .loggedin,
.gMenu__btns li .post {
    position: relative;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    outline: none;
    border: none;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

.gMenu__btns li button:focus,
.gMenu__btns li button:active {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.gMenu__btns li .icon-text {
    display: block;
    margin-top: 4px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-align: center;
    width: 100%;
}

.gMenu__btns li button:hover {
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.gMenu__btns li button:hover .icon-text {
    opacity: 1;
}

.gMenu__btns li .search::before,
.gMenu__btns li .nice::before,
.gMenu__btns li .accounts::before,
.gMenu__btns li .post::before {
    display: block;
    font-family: "Material Icons";
    line-height: 1;
    font-size: 2.4rem;
    margin-bottom: 2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gMenu__btns li button:hover::before {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.gMenu__btns li .search::before {
    content: "\f02f";
}

.gMenu__btns li .nice::before {
    content: "\e87d";
}

.gMenu__btns li .accounts::before {
    content: "\f02e";
}

.gMenu__btns li .post::before {
    content: "\e838";
    /* ランキング用の王冠アイコン */
    font-size: 2.6rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #AAAAAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.gMenu__btns li .post:hover::before {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.gMenu__btns li .loggedin::after {
    position: absolute;
    top: -5px;
    right: 25%;
    font-family: "Material Icons";
    content: "\e86c";
    color: #00FF9C;
    line-height: 1;
    font-size: 1.2rem;
    background: #000000;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 0 0 2px #333333;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 156, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(0, 255, 156, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 156, 0);
    }
}

.gMenu__btns li .logout {
    display: none;
}

/* モバイル用のログインボタン調整 - 非表示に変更 */
@media screen and (max-width: 768px) {
    .gMenu__btns li:last-child {
        display: none;
    }

    /* モバイルでgMenu用のスペースを確保 */
    body {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .container {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }

    .contentsWrap {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}

.gMenu__btns li .caution {
    opacity: .5;
}

@media screen and (min-width: 769px) {
    .gMenu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: 0 !important;
        margin: 0 !important;
        width: 240px !important;
        height: 100% !important;
        border-radius: 0 !important;
        border-top-right-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
        background: #000000 !important;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5) !important;
    }

    .gMenu__btns {
        flex-direction: column;
        padding-top: 20px;
        height: auto;
    }

    .gMenu__btns li {
        padding: 16px;
        width: 100%;
        margin-bottom: 8px;
        position: relative;
        overflow: hidden;
    }

    .gMenu__btns li:hover {
        transform: translateX(8px);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }

    .gMenu__btns li::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: all 0.5s ease;
    }

    .gMenu__btns li:hover::before {
        left: 100%;
    }

    .gMenu__btns li .search,
    .gMenu__btns li .nice,
    .gMenu__btns li .accounts,
    .gMenu__btns li .post,
    .gMenu__btns li .notCreatorPost {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 1.6rem;
        text-align: left;
        flex-direction: row;
        width: 100%;
    }

    .gMenu__btns li .icon-text {
        margin-top: 0;
        margin-left: 16px;
        font-size: 1.6rem;
        text-align: left;
    }

    .gMenu__btns li button:hover .icon-text {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .gMenu__btns li .search::before,
    .gMenu__btns li .nice::before,
    .gMenu__btns li .accounts::before,
    .gMenu__btns li .post::before {
        display: inline-block;
        margin-right: 0;
        margin-bottom: 0;
        font-size: 2.4rem;
    }

    .gMenu__btns li button:hover::before {
        transform: scale(1.1) translateX(-2px);
    }

    .gMenu__btns li .post::after {
        opacity: 0;
    }

    .gMenu__btns li .loggedin::after {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .gMenu__btns li .caution {
        opacity: .5;
    }

    /* パソコン用ログインボタンの修正 */
    .gMenu__btns li:last-child {
        display: block;
    }

    .gMenu__btns li .logout {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto 0;
        padding: 12px 0;
        height: auto;
        width: 80%;
        text-align: center;
        border-radius: 100px;
        border: none;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-weight: 500;
        letter-spacing: 0.05em;
        position: relative;
        overflow: hidden;
    }

    .gMenu__btns li .logout::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: all 0.5s ease;
    }

    .gMenu__btns li .logout:hover::before {
        left: 100%;
    }

    .gMenu__btns li .logout:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.5);
    }

    .gMenu__btns li .logout.wh {
        color: #000000;
        background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    }

    .gMenu__btns li .logout.dppl {
        color: #FFFFFF;
        background: #111111;
        border: 1px solid #333333;
    }

    .gMenu__btns li .logout.blue {
        color: #FFFFFF;
        background: #111111;
        border: 1px solid #333333;
    }

    .gMenu__btns li .logout .icon-text {
        margin: 0;
        padding: 0;
        font-size: 1.4rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-align: center;
        width: auto;
    }
}





















/* 年齢確認 */
.age_confirmation-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0;
    padding: 0 5%;
    width: 100%;
}

.age_confirmation {
    margin: 0 auto;
    padding: 0;
    max-width: 480px;
    text-align: center;
}

.age_confirmation .btn-primary {
    margin: 0 auto;
    width: 75%;
}

.age_confirmation .logo {
    display: block;
    margin: -50px auto 0 auto;
    padding: 0 0 32px 0;
    width: 25%;
}

.age_confirmation p {
    padding: 0 0 18px 0;
}


/* ログイン・新規 */
.entrance-wrap {
    margin: 0;
    padding: 46px 5% 0 5%;
    width: 100%;
}

.entrance {
    margin: 0 auto;
    padding: 0;
    max-width: 480px;
    text-align: center;
}

.entrance .logo {
    display: block;
    margin: 0 auto;
    padding: 0 0 16px 0;
    width: 50%;
}

.entrance .title {
    position: relative;
    margin: 24px 0 16px 0;
    text-align: center;
    font-size: 1.2rem;
}

.entrance .title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background: #515C6F;
}

.entrance .title::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background: #515C6F;
}

.entrance .input00 {
    margin: 0 0 8px 0;
}

.entrance .selectbox00 {
    margin: 0 0 8px 0;
}

.entrance .checkbox00 {
    justify-content: center;
    margin: 12px auto 12px auto;
}

.entrance button {
    margin: 0 0 12px 0;
}




/* ----------------------------- */
.forgetCheck {
    margin: 0 0 0 0;
    padding: 24px;
    text-align: left;
    background: #FFFFFF;
    border-radius: 8px;
}

.forgetCheck p {
    margin: 0 0 16px 0;
    padding: 0 0 16px 0;
    color: #9982F2;
    font-weight: 700;
    border-bottom: solid 1px #DDDDDD;
}

.forgetCheck p:last-child {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border-bottom: none;
}

.forgetCheck p span {
    display: block;
    margin: 0 0 0 0;
    color: #000000;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 400;
}





/* ----------------------------- */
.suppl {
    margin: 24px 0 0 0;
    padding: 0;
    font-size: 1.2rem
}

.suppl a {
    margin: 4px;
}











/* ----------------------------- */
.navBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0;
    max-width: 480px;
    height: 52px;
    background: #F5F6F8;
    z-index: 99999;
}

@media screen and (min-width: 769px) {
    .navBar {
        left: 220px;
    }

    .navBar.center {
        left: 0;
    }
}

.nb-tra {
    background: transparent;
}

.navBar__btns {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 16px 0 8px;
    width: 100%;
    height: 52px;
}

.navBar__btns .outline {
    text-shadow: .5px .5px 0 #000, .5px -.5px 0 #000, -.5px .5px 0 #000, -.5px -.5px 0 #000;
}

.navBar__btns .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0;
    padding: 0;
    text-align: center;
}

.navBar__btns .title .name {
    display: block;
    line-height: 1.4;
    font-size: 1.4rem;
}

.navBar__btns .title .sub {
    display: block;
    font-size: 1rem;
}

.navBar__btns-box {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navBar__btns-box button {
    position: relative;
    margin: 0;
    padding: 0;
    color: #000000;
}

.navBar__btns-box button::after {
    margin: 0;
    line-height: 1;
}

.navBar__btns-box .back::after {
    font-family: "Material Icons";
    content: "\e408";
    font-size: 3rem;
}

@media screen and (min-width: 767px) {
    .navBar__btns-box .back::after {
        position: relative;
        left: -16px;
    }

    .navBar__btns-box .irreg::after {
        left: 0;
    }
}

.navBar__btns-box .more::after {
    margin-left: 8px;
    font-family: "Material Icons";
    content: "\e5d3";
    font-size: 2.5rem;
}

.navBar__btns-box .reply::after {
    margin-left: 8px;
    font-family: "Material Icons";
    content: "\e15e";
    font-size: 2.5rem;
}

.navBar__btns-box .settings::after {
    margin-left: 8px;
    font-family: "Material Icons";
    content: "\e8b8";
    font-size: 2.5rem;
}

.navBar__btns-box .notification::before {
    margin-left: 8px;
    font-family: "Material Icons";
    content: "\e7f4";
    font-size: 2.5rem;
}

.navBar__btns-box .notification.alerts::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-family: "Material Icons";
    content: "\e000";
    color: #FF0000;
    font-size: 1.1rem;
    background: #FFFFFF;
    border-radius: 50%;
    z-index: 9999;
}









/* ----------------------------- */
.disp-select {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    padding: 0;
    max-width: 480px;
    height: 48px;
    text-align: center;
    background: #00000033;
    z-index: 99999;
    transition: 0.5s;
}

.ds-fixed {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

.ds-dark {
    background: #000000 !important;
}

.disp-select .follow,
.disp-select .search,
.disp-select p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 40%;
    border-right: solid 1px #FFFFFF;
}

.disp-select .cpl {
    border-right: none;
}

.disp-select .search {
    width: 20%;
    border-right: none;
}

.disp-select p button {
    position: relative;
    color: #FFFFFF;
    line-height: 1.2;
}

.disp-select p button:first-child {
    margin-right: 6px;
}

.disp-select p .one,
.disp-select p .many {
    margin-right: 6px;
    padding: 0;
}

.disp-select p .one::after {
    color: #9982F2;
    content: "\eb36";
    font-family: "Material Icons";
    font-size: 2.5rem;
}

.disp-select p .many::after {
    color: #9982F2;
    content: "\e871";
    font-family: "Material Icons";
    font-size: 2.5rem;
}

.disp-select p .current {
    opacity: .3;
}

.disp-select p button span {
    display: block;
    color: #FFFFFF;
    font-size: 1rem;
    z-index: 99999;
}


/* ----------------------------- */

.searchSelect {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.searchSelect button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 50%;
    height: 55px;
    text-align: center;
    background: #EEEEEE;
}

.searchSelect button.current {
    color: #FFFFFF;
    background: #4f1787;
}

.searchSelect button span {}

.searchSelect .current span::after {
    display: block;
    content: "\e5c5";
    font-family: "Material Icons";
    font-size: 3rem;
    line-height: .5;
}


/* ----------------------------- */
.creator {
    position: relative;
    margin: 0;
    padding: 0;
}

.creator__mv {
    margin: 0;
    padding: 0;
}

.creator__mv img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    /* object-position: top; */
}

/* --- */
.creator__sl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin: 4px 16px 0 16px;
    padding: 0;
}

.creator__sl a {
    margin: 0;
    padding: 4px 0 4px 8px;
    line-height: 1;
}

.creator__sl a img {
    margin: 0;
    padding: 0;
    width: 15px;
}

.creator__sl a img.mail {
    width: 21px;
}

/* --- */
.creator__face {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0;
    width: 106px;
    height: 106px;
}

.creator__face img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

/* --- */
.creator__name {
    display: block;
    margin: 32px 0 12px 0;
    padding: 0;
    text-align: center;
}

.creator__name .title {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.creator__name .acc {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}

/* --- */
.creator__vd {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    padding: 0 16px;
}

.creator__vd .num {
    margin: 0;
    padding: 0 0;
    text-align: center;
    width: 60px;
}

.creator__vd .num span:first-child {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
}

.creator__vd .num span:last-child {
    display: block;
    margin: 4px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 1rem;
}

/* --- */
.creator__btn {
    margin: 0 auto 12px auto;
    padding: 0;
    text-align: center;
}

.creator__btn .follow {
    margin: 0;
    padding: 0;
    width: 90px;
    height: 31px;
    color: #9982F2;
    font-size: 1.2rem;
    line-height: 1;
    background: #FFFFFF;
    border: solid 1px #9982F2;
    border-radius: 50px;
}

.creator__btn .follow.following {
    color: #FFFFFF;
    background: #9982F2;
}

/* --- */
.creator__expl {
    margin: 0 0 16px 0;
    padding: 0 16px;
    font-size: 1.2rem;
}


/* --- */
.salesPlan {
    margin: 0;
    padding: 0 16px;
}

.salesPlan ul {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    border-radius: 8px;
}

.salesPlan ul li {
    margin: 0;
    padding: 0;
}

.salesPlan ul .salesPlan-open {
    margin: 0;
    padding: 8px;
    background: #FFFFFF;
    border-radius: 0 0 8px 8px;
}

.salesPlan ul .salesPlan-open p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    color: #4F1787;
    font-size: 1.2rem;
}

.salesPlan ul .salesPlan-open p::after {
    content: '全てのプランを見る';
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.salesPlan ul .salesPlan-open p::before {
    font-family: "Material Icons";
    content: "\e145";
    font-size: 2.5rem;
}

.salesPlan ul .salesPlan-open p.remove::after {
    content: '閉じる';
}

.salesPlan ul .salesPlan-open p.remove::before {
    font-family: "Material Icons";
    content: "\e15b";
    font-size: 2.5rem;
}

/* --- */
.salesPlan__item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 8px;
    border-bottom: solid 1px #F5F6F8;
}

.salesPlan__item .type {
    margin: 0;
    padding: 0 8px 0 0;
    width: 66px;
}

.salesPlan__item .type .subsc {
    margin: 0 0 4px 0;
    padding: 2px 0;
    width: 50px;
    color: #FFFFFF;
    text-align: center;
    font-size: 1rem;
    background: #FF90D8;
    border-radius: 2px;
}

.salesPlan__item .type .subscNo1 {
    margin: 0 0 4px 0;
    padding: 2px 0;
    width: 50px;
    color: #FF90D8;
    text-align: center;
    font-size: 1rem;
    background: #FFFFFF;
    border: solid 1px #FF90D8;
    border-radius: 2px;
}

.salesPlan__item .type .single {
    margin: 0 0 4px 0;
    padding: 2px 0;
    width: 50px;
    color: #FFFFFF;
    text-align: center;
    font-size: 1rem;
    background: #9E63F1;
    border-radius: 2px;
}

.salesPlan__item .type .singleNo1 {
    margin: 0 0 4px 0;
    padding: 2px 0;
    width: 50px;
    color: #9E63F1;
    text-align: center;
    font-size: 1rem;
    background: #FFFFFF;
    border: solid 1px #9E63F1;
    border-radius: 2px;
}

.salesPlan__item .type p:last-child {
    margin: 0 0 0 0;
}

.salesPlan__item .desc {
    margin: 0;
    padding: 0;
    width: calc(100% - (66px + 80px));
}

.salesPlan__item .desc .title {
    margin: 0 0 4px 0;
    padding: 0;
    color: #9981F2;
    font-size: 1.4rem;
    font-weight: 700;
}

.salesPlan__item .desc .price {
    margin: 0 0 4px 0;
    padding: 0;
}

.salesPlan__item .desc .price .typeSG,
.salesPlan__item .desc .price .typeSS {
    margin: 0 8px 0 0;
    padding: 0;
    font-weight: 700;
}

.salesPlan__item .desc .price .typeSS::before {
    content: '¥';
}

.salesPlan__item .desc .price .typeSS::after {
    content: '/月';
    margin-left: 3px;
    font-size: .8rem;
    font-weight: 400;
}

.salesPlan__item .desc .price .typeSG::before {
    content: '¥';
}

.salesPlan__item .desc .price .num {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-weight: 700;
}

.salesPlan__item .desc .price .num::before {
    content: '投稿';
    margin-right: 3px;
    font-size: .8rem;
    font-weight: 400;
}

.salesPlan__item .desc .price .num::after {
    content: '件';
    margin-left: 3px;
    font-size: .8rem;
    font-weight: 400;
}

.salesPlan__item .desc .expl {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

.salesPlan__item .button {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 0 0 8px;
    width: 80px;
}

.salesPlan__item .button .join {
    margin: 0;
    padding: 8px;
    width: 100%;
    color: #FFFFFF;
    line-height: 1;
    font-size: 1.2rem;
    background: #D4D4D4;
    border-radius: 100px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}

.salesPlan__item .button .joining {
    background: #9982F2;
}

.salesPlan__item .button .edit {
    margin: 0;
    padding: 8px;
    width: 100%;
    color: #4F1787;
    line-height: 1;
    font-size: 1.2rem;
    background: #FFFFFF;
    border: solid 1px #4F1787;
    border-radius: 100px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}







/* ----------------------------- */
.planType_SG,
.planType_SG_DL,
.planType_SS,
.planType_TP,
.planType_UV {
    display: inline-block;
    margin: 0 0 8px 0;
}

.planType_SG::before,
.planType_SG_DL::before,
.planType_SS::before,
.planType_TP::before,
.planType_UV::before {
    margin: 0 4px 0 0;
    padding: 1px 8px 3px 8px;
    color: #FFFFFF;
    font-size: 1.2rem;
    border-radius: 2px;
}

.planType_SG::before {
    content: '単品';
    background: #9982F2;
}

.planType_SG_DL::before {
    content: '単品 DL可';
    background: #9982F2;
}

.planType_SS::before {
    content: 'サブスク';
    background: #4F1787;
}

.planType_UV::before {
    content: '見放題プラン';
    /* Unlimited view */
    background: #FF6500;
}

.planType_TP::before {
    content: '対象投稿';
    /* Target Posts */
    background: #50B498;
}




















/* ----------------------------- */
.lead {
    margin: 0;
    padding: 0 0 16px 0;
}

.lead.box {
    padding: 16px;
    background: #FFFFFF;
    border-radius: 8px;
}

.lead__title {
    margin: 0 0 8px 0;
    font-size: 1.6rem;
}

.lead__class {
    margin: 0 0 0 0;
    padding: 14px 0 16px 0;
    color: #4f1787;
    text-align: center;
    font-size: 1.8rem;
    background: #9982F233;
    border-radius: 8px;
}

.lead__class span {
    margin: 0 4px;
    font-weight: 700;
}

.lead__class span:first-child,
.lead__class span:last-child {
    font-size: 1.4rem;
    font-weight: 400;
}

.lead__stitle {
    margin: 0 0 16px 0;
    padding: 0;
    font-size: 1.4rem;
}

.lead__text {
    line-height: 1.6;
    font-size: 1.2rem;
}













/* ----------------------------- */
.summary {
    margin: 0;
    padding: 0;
}

.summary ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 16px;
    background: #FFFFFF;
    border-bottom: solid 1px #F5F6F8;
}

.summary ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

.summary ul li .title {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.summary ul li .num {
    margin: 0 0 0 16px;
    padding: 0;
    font-weight: 700;
}

.summary ul li .num::after {
    content: '件';
    margin-left: 3px;
    font-size: 1rem;
    font-weight: 400;
}

.summary ul li .movie {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 16px;
    padding: 0;
    font-size: 1.2rem;
}

.summary ul li .movie::before {
    display: inline-block;
    font-family: "Material Icons";
    content: "\e41b";
    margin: 0 8px 0 0;
    width: 12px;
    line-height: 1;
    font-size: 1.75rem;
}

.summary ul li .photo {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 16px;
    padding: 0;
    font-size: 1.2rem;
}

.summary ul li .photo::before {
    display: inline-block;
    font-family: "Material Icons";
    content: "\e251";
    margin: 0 8px 0 0;
    width: 12px;
    line-height: 1;
    font-size: 1.75rem;
}

/* ----------------------------- */
.sort {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 16px 0;
    padding: 0 16px;
}

.sort.full {
    padding: 0 0;
}

.sort .input {
    position: relative;
    display: block;
    margin: 0 0 8px 0;
    padding: 0;
    width: 100%;
}

.sort .input input {
    margin: 0;
    padding: 0 1em;
    width: 100%;
    height: 45px;
    background: #FFFFFF;
    border: solid 1px #EEEEEE;
    font-size: 1.4rem;
    border-radius: 8px;
    transition: 0.5s;
}

.sort .input input:focus {
    outline: none;
    border: solid 1px #9982F2;
}

.sort .input .btnSearch {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.sort .input .btnSearch::after {
    font-family: "Material Icons";
    content: "\e8b6";
    color: #c0c0c0;
    font-size: 2em;
}

.sort__selectTwo {
    display: flex;
    position: relative;
    width: calc(40% - 4px);
    border-radius: 6px;
    overflow: hidden;
    background: #EEEEEE;
    border: solid 4px #EEEEEE;
}

.sort__selectThree {
    display: flex;
    position: relative;
    width: calc(60% - 4px);
    border-radius: 6px;
    overflow: hidden;
    background: #EEEEEE;
    border: solid 4px #EEEEEE;
}

.sort__selectTwo button,
.sort__selectThree button {
    flex: 1;
    padding: 6px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1;
    font-size: 1.2rem;
}

.sort__selectTwo button:hover,
.sort__selectThree button:hover {
    background: rgba(0, 0, 0, 0);
}

.sort__selectTwo-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: #FFFFFF;
    transition: transform 0.3s ease;
    border-radius: 8px;
    z-index: 0;
}

.sort__selectThree-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.3333%;
    background-color: #FFFFFF;
    transition: transform 0.3s ease;
    border-radius: 8px;
    z-index: 0;
}

.sort .btn {
    margin: 0 !important;
    padding: 0 !important;
    height: 45px;
    color: #FFFFFF;
    background: #9982F2;
    border: solid 1px #EEEEEE;
    font-size: 1.4rem;
    border-radius: 8px;
    transition: 0.5s;
}





/*
.postSort {
    margin: 0;
    padding: 0;
}
.postSort ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 12px 8px 20px 8px;
    background: #FFFFFF;
}
.postSort ul.tra {
    background: transparent;
}
.postSort ul li {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    text-align: center;
}
.postSort ul li.divider {
    display: block;
    width: 1px;
    background: #515C6F;
}
.postSort ul li button {
    margin: 0;
    padding: 0 4px;
    font-size: 1.2rem;
}
.postSort ul li .current {
    position: relative;
    color: #4F1787;
    font-weight: 700;
    font-size: 1.3rem;
}
.postSort ul li .current::after {
  content: '';
  width: 12px;
  height: 2px;
  display: inline-block;
  background: #4F1787;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 6px)
}
.postSort ul li button.btn {
    margin: 0;
    padding: 0 2px;
    color: #FFFFFF;
    background: #000000;
}
 */









/* ----------------------------- */
/* .creatorWork */
.cw {
    position: relative;
    margin: 0;
    padding: 0 0;
    height: 100svh;
    background: #F5F6F8;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

@media screen and (min-width: 769px) {
    .cw {
        padding: 24px 0;
    }
}

.cwDesc {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}

@media screen and (min-width: 769px) {
    .cwDesc {
        border-radius: 4px 4px 0 0;
    }
}

/* --- 縦長 トップ */
.cw__mov-vertical-top {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cw__mov-vertical-top video {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    border-radius: 0 0 0 0;
}

@media screen and (min-width: 769px) {
    .cw__mov-vertical-top video {
        border-radius: 4px 4px 0 0;
    }
}

/* --- 縦長 ミドル */
.cw__mov-vertical-middle {
    display: flex;
    align-items: center;
    padding-bottom: 56px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cw__mov-vertical-middle video {
    width: 100%;
    height: 100%;
}

/* --- 横長  トップ */
.cw__mov-Landscape-top {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cw__mov-Landscape-top video {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

/* --- 横長  ミドル */
.cw__mov-Landscape-middle {
    display: flex;
    align-items: center;
    padding-bottom: 56px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cw__mov-Landscape-middle video {
    width: 100%;
    height: 100%;
}


/* --- タップで一時停止 */
.cw__movieStop {
    position: relative;
}

.cw__movieStop::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: block;
    font-family: "Material Icons";
    content: "\e037";
    color: #FFFFFF;
    font-size: 10rem;
    opacity: .5;
}

/* --- エラー表示 */
.errorView {
    position: relative;
    width: 100%;
    height: 100%;
}

.errorView__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #696969;
    background: repeating-linear-gradient(45deg,
            #696969,
            #696969 10px,
            #000000 0,
            #000000 12px);
}

@media screen and (min-width: 769px) {
    .errorView__inner {}
}

.errorView__inner-text {
    margin: 0 0 10svh 0;
    padding: 0;
    color: #FFFFFF;
}

.errorView__inner-text span {}

.errorView__inner-text span::before {
    display: block;
    font-family: "Material Icons";
    content: "\e002";
    color: #FFE31A;
    font-size: 6rem;
}


/* --- */
.cw__btns {
    position: absolute;
    right: 8px;
    bottom: 65px;
    margin: 0;
    padding: 0;
    z-index: 9999;
}

@media screen and (min-width: 769px) {
    .cw__btns {
        position: absolute;
        top: 50%;
        right: -48px;
        transform: translateY(-50%);
    }
}

.cw__btns button {
    position: relative;
    display: block;
    margin: 0 auto 16px auto;
    color: #FFFFFF;
    font-size: 3rem;
    line-height: 1;
}

@media screen and (min-width: 769px) {
    .cw__btns button {
        color: #4F1787;
    }
}

.cw__btns .vol::before {
    font-family: "Material Icons";
    content: "\e050";
    font-size: 3.75rem;
}

.cw__btns .nice::before {
    font-family: "Material Icons";
    content: "\e87d";
}

.cw__btns .comment::before {
    font-family: "Material Icons";
    content: "\e0b7";
    font-size: 2.5rem;
}

.cw__btns .bookmark::before {
    font-family: "Material Icons";
    content: "\e866";
    font-size: 3.5rem;
}

.cw__btns .share::before {
    font-family: "Material Icons";
    content: "\e15e";
}

.cw__btns .zoom::before {
    font-family: "Material Icons";
    content: "\e3c2";
}

.cw__btns .buy::before {
    font-family: "Material Icons";
    content: "\f1cc";
    font-size: 3.5rem;
}

.cw__btns .download::before {
    font-family: "Material Icons";
    content: "\e2c0";
    /* download アイコンのコード */
    font-size: 3.5rem;
}

@media screen and (min-width: 769px) {
    .cw__btns .vol::before {
        font-family: "Material Icons";
    }

    .cw__btns .nice::before {
        font-family: "Material Icons";
        content: "\e87d";
    }

    .cw__btns .comment::before {
        font-family: "Material Icons";
    }

    .cw__btns .bookmark::before {
        font-family: "Material Icons";
    }

    .cw__btns .share::before {
        font-family: "Material Icons";
    }

    .cw__btns .zoom::before {
        font-family: "Material Icons";
    }

    .cw__btns .buy::before {
        font-family: "Material Icons";
    }

    .cw__btns .download::before {
        font-family: "Material Icons";
    }
}

.cw__btns .nice span,
.cw__btns .comment span,
.cw__btns .bookmark span {
    display: block;
    line-height: 0;
    font-size: 1rem;
}

.cw__btns .face {
    position: relative;
    display: block;
    margin: 0 auto 32px auto;
    padding: 0;
    width: 40px;
}

.cw__btns .face::after {
    position: absolute;
    left: 10px;
    bottom: -14px;
    font-family: "Material Icons";
    content: "\e147";
    color: #4F1787;
    font-size: 2.25rem;
    pointer-events: none;
}

.cw__btns .face.following::after {
    content: "\e86c";
    color: #9982F2;
}

.cw__btns .face img {
    border-radius: 50%;
    border: solid 1px #FFFFFF;
}


/* クリック バブル */
.cw__btns .bubble {
    position: absolute;
    top: 40%;
    left: 43%;
    transform: translateY(-40%) translateX(-43%);
    font-size: .4rem !important;
    color: #4F1787 !important;
    opacity: 0;
    animation: bubble-animation 0.5s ease-out forwards;
}

@keyframes bubble-animation {
    0% {
        transform: scale(0) translate(0, 0);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5) translate(var(--x), var(--y));
        opacity: 0;
    }
}


/* --- */
.cw__info {
    position: absolute;
    left: 0;
    bottom: 56px;
    margin: 0 auto;
    padding: 8px;
    width: 100%;
    color: #FFFFFF;
    background: #0000004D;
    z-index: 9999;
}

@media screen and (min-width: 769px) {
    .cw__info {
        bottom: 0;
    }
}

.cw__info a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    color: #FFFFFF;
    text-decoration: none;
}

.cw__info .lead {
    margin: 0 0 8px 0;
    padding: 0;
    width: 100%;
    font-size: 1.2rem;
}

.cw__info .detail {
    margin: 0 0 12px 0;
    padding: 0;
    width: 100%;
    color: #FFFFFF;
    font-size: 1rem;
}

.cw__info .detail span {
    margin: 0 8px 0 0;
    padding: 2px 5px 3px 5px;
    background: #00000080;
    border-radius: 2px
}

.cw__info .detail span button {
    color: #FFFFFF;
    font-size: 1rem;
}

@media screen and (min-width: 769px) {
    .cw__info .detail {
        margin: 0 0 16px 0;
    }
}


/* --- */
.cw__seekbar {
    position: absolute;
    left: 0;
    bottom: 52px;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: 99999;
}

@media screen and (min-width: 769px) {
    .cw__seekbar {
        bottom: 20px;
    }
}

.cw__seekbar [type=range] {
    appearance: none;
    background: #c0c0c0;
    height: 3px;
    width: 100%;
}

.cw__seekbar [type=range]:focus,
.cw__seekbar [type=range]:active {
    outline: none;
}

.cw__seekbar [type=range]::-webkit-slider-thumb {
    appearance: none;
    cursor: pointer;
    position: relative;
    width: 14px;
    height: 14px;
    display: block;
    background: #FF0080;
    border-radius: 50%;
}

.cw__seekbar [type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 6px #FF00804D;
    transition: 0.4s;
}

.cw__seekbar [type=range]::-moz-range-thumb {
    background: #FF0080;
    border: none;
}

.cw__seekbar [type=range]:active::-moz-range-thumb {
    box-shadow: 0 0 0 6px #FF00804D;
    transition: 0.4s;
}


/* ---
.cw__seekbarFixed {
    position: fixed;
    left: 0;
    bottom: 52px;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: 99999;
}
@media screen and (min-width: 769px) {
    .cw__seekbarFixed {
        left: calc(50% - 138px);
        bottom: 20px;
        max-width: 480px;
    }
}
.cw__seekbarFixed [type=range] {
    appearance: none;
    background: #c0c0c0;
    height: 3px;
    width: 100%;
}
.cw__seekbarFixed [type=range]:focus,
.cw__seekbarFixed [type=range]:active {
    outline: none;
}
.cw__seekbarFixed [type=range]::-webkit-slider-thumb {
    appearance: none;
    cursor: pointer;
    position: relative;
    width: 16px;
    height: 16px;
    display: block;
    background-color: #FF0080;
    border-radius: 50%;
}
.cw__seekbarFixed [type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 6px #FF00804D;
    transition: 0.4s;
}
.cw__seekbarFixed [type=range]::-moz-range-thumb {
    background-color: #FF0080;
    border: none;
}
.cw__seekbarFixed [type=range]:active::-moz-range-thumb {
    box-shadow: 0 0 0 6px #FF00804D;
    transition: 0.4s;
}
 */












/* ----------------------------- */
.cwThumb {
    margin: 0;
    padding: 0;
}

.cwThumb ul {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 1px 1px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.cwThumb ul li.empty {
    margin: 0;
    padding: 0;
    width: 100%;
}

.cwThumb ul li {
    position: relative;
    width: calc(33.33333% - 1px);
}

.cwThumb ul li a {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.cwThumb ul li img {
    width: 100%;
}

.cwThumb ul li .free {
    position: absolute;
    top: 6px;
    left: 4px;
}

.cwThumb ul li .free::before {
    padding: 2px 8px;
    content: 'FREE';
    color: #FFFFFF;
    font-size: 1rem;
    background: #9982F2;
    border-radius: 20px;
}

.cwThumb ul li .lock {
    position: absolute;
    top: 6px;
    left: 4px;
}

.cwThumb ul li .lock::after {
    font-family: "Material Icons";
    content: "\e897";
    color: #FFFFFF;
    font-size: 1.5rem;
}

.cwThumb ul li .favorite {
    display: flex;
    align-items: center;
    position: absolute;
    left: 4px;
    bottom: 1px;
    color: #FFFFFF;
    font-size: 1rem;
}

.cwThumb ul li .favorite::before {
    font-family: "Material Icons";
    content: "\e87d";
    margin: 2px 2px 0 0;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.cwThumb ul li .time {
    position: absolute;
    right: 5px;
    bottom: 6px;
    padding: 1px 4px;
    color: #FFFFFF;
    font-size: 1rem;
    background: #00000066;
    border-radius: 2px;
}


/* ----------------------------- */
.cwThumbRdm {
    margin: 0;
    padding: 0;
}

.cwThumbRdm ul {
    margin: 0;
    padding: 0;
}

.cwThumbRdm ul li {
    margin: 0;
    padding: 0;
    width: 33.3333%;
}

.cwThumbRdm ul li img {
    width: 100%;
}








/* ----------------------------- */
.empty-desc {
    margin: 0;
    padding: 100px 32px;
    width: 100%;
    text-align: center;
}

.empty-desc::before {
    display: block;
    font-family: "Material Icons";
    content: "\e001";
    color: #9982F2;
    font-size: 7.5rem;
}








/* ----------------------------- */
/* cancel the membership 退会 */
.ctm {
    margin: 0;
    padding: 0;
}

.ctm_cloce {
    display: block;
    margin: 0 auto;
    padding: 0;
    color: #1558d6;
}








/* ----------------------------- */
.acct {
    margin: 0;
    padding: 0;
}

.acct__name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 16px 0;
    padding: 0 5%;
}

@media screen and (min-width: 767px) {
    .acct__name {
        padding: 0 0;
    }
}

.acct__name .face {
    position: relative;
    margin: 0;
    padding: 0;
    width: 50px;
}

.acct__name .face img {
    width: 50px;
    border-radius: 50%;
}

.acct__name .name {
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 0 16px;
    width: calc(100% - 50px);
}

.acct__name .name .user {
    display: block;
    margin: 0 0 2px 0;
    padding: 0;
    font-size: 1.7rem;
}

.acct__name .name .gcreator {}

.acct__name .name .gcreator::after {
    display: inline-block;
    content: '一般クリエーター';
    margin: -3px 0 0 8px;
    padding: 3px 8px 4px 8px;
    vertical-align: middle;
    color: #FFFFFF;
    line-height: 1;
    font-size: 1.2rem;
    background: #9982F2;
    border-radius: 3px;
}

.acct__name .name .ccreator {}

.acct__name .name .ccreator::after {
    display: inline-block;
    content: '認証クリエーター';
    margin: -3px 0 0 8px;
    padding: 3px 8px 4px 8px;
    vertical-align: middle;
    color: #FFFFFF;
    line-height: 1;
    font-size: 1.2rem;
    background: #4F1787;
    border-radius: 3px;
}

.acct__name .name .view {
    position: absolute;
    top: 0;
    right: 3rem;
}

.acct__name .name .view::after {
    display: inline-block;
    font-family: "Material Icons";
    content: "\e2db";
    color: #4F1787;
    font-size: 2.25rem;
}

.acct__name .name .edit {
    position: absolute;
    top: 0;
    right: 0;
}

.acct__name .name .edit::after {
    display: inline-block;
    font-family: "Material Icons";
    content: "\e873";
    color: #4F1787;
    font-size: 2.25rem;
}

.acct__name .name .upgrade {
    position: absolute;
    top: -0.4rem;
    right: 6.5rem;
}

.acct__name .name .upgrade::after {
    display: inline-block;
    font-family: "Material Icons";
    content: "\e8e5";
    color: #4F1787;
    font-size: 3rem;
}

.acct__name .name .acct {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}

/* --- */
.acct__si {
    position: relative;
    margin: 0 auto 24px auto;
    padding: 12px 16px;
    width: 90%;
    font-size: 1.2rem;
    background: #FFFFFF;
    border-radius: 8px;
}

@media screen and (min-width: 767px) {
    .acct__si {
        width: 100%;
    }
}

.acct__si .edit {
    position: absolute;
    top: 8px;
    right: 12px;
    margin: 0;
    line-height: 1;
    padding: 0;
    font-size: 1.2rem;
    text-decoration: none;
}

.acct__si .edit::after {
    font-family: "Material Icons";
    content: "\e3c9";
    color: #4F1787;
    font-size: 2rem;
}

.acct__si .title {
    display: inline-block;
    margin: 0 0 8px 0;
    padding: 2px 5px;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    background: #9982F2;
    border-radius: 2px;
}

.acct__si .text {
    font-size: 1.2rem;
}







/* --- */
.acct__cont {
    margin: 0 auto 0 auto;
    padding: 0;
    width: 90%;
}

@media screen and (min-width: 767px) {
    .acct__cont {
        width: 100%;
    }
}

.acct__cont-item {
    position: relative;
    margin: 0;
    padding: 0;
}

.acct__cont-item .title span {
    color: #4F1787;
    font-size: 2rem;
    font-weight: 700;
}

.acct__cont-item .title .view {
    position: absolute;
    right: 5rem;
}

.acct__cont-item .title .view::after {
    display: inline-block;
    font-family: "Material Icons";
    content: "\e8f4";
    color: #4F1787;
    font-size: 3rem;
}

.acct__cont-item .title .upgrade {
    position: absolute;
    right: 0;
}

.acct__cont-item .title .upgrade::after {
    display: inline-block;
    font-family: "Material Icons";
    content: "\f0fb";
    color: #4F1787;
    font-size: 3.25rem;
}

.acct__cont-item ul {
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 12px;
    row-gap: 10px;
    width: 100%;
}

.acct__cont-item ul li {
    position: relative;
}

.acct__cont-item ul li button {
    position: relative;
    margin: 0;
    padding: 100% 0 0 0;
    width: 100%;
    color: #9982F2;
    background: #EEEEEE;
    border-radius: 8px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}

.acct__cont-item ul li button span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 1.2;
    font-size: 1.4rem;
}

.acct__cont-item ul li button span::before {
    display: block;
    font-family: "Material Icons";
}

.acct__cont-item ul li .public span::before {
    content: "\e80b";
    font-size: 3.5rem;
}

.acct__cont-item ul li .private span::before {
    content: "\f1ca";
    font-size: 3rem;
}

.acct__cont-item ul li .nice span::before {
    content: "\e87d";
    font-size: 3rem;
}

.acct__cont-item ul li .niced span::before {
    content: "\e817";
    font-size: 3rem;
    transform: scale(-1, 1);
}

.acct__cont-item ul li .bookmark span::before {
    content: "\e866";
    font-size: 3rem;
}

/* CSP Phase 3: utility classes replacing inline style= attributes */
.is-hidden { display: none !important; }
.is-hidden-vis { display: none; visibility: hidden; }

/* Stars background positioning via CSS custom properties */
.star-pos { top: var(--top); left: var(--left); }
.shooting-star-delayed { animation-delay: 3s; }

/* Modal utility classes */
.modal-close-row { text-align: right; margin: 0; padding: 10px; }
.modal-close-link { color: #9982F2; font-weight: bold; cursor: pointer; font-size: 1em; }
.btn-purple { color: white; background-color: #9982F2; }
.preview-img { max-width: 100%; height: auto; }

/* Debug login block (shown only in APP_DEBUG=true) */
.debug-login-box { margin-bottom: 20px; padding: 15px; background: rgba(255, 0, 0, 0.1); border: 2px solid #ff0000; border-radius: 8px; }
.debug-login-title { color: #ff0000; text-align: center; margin-bottom: 10px; font-size: 0.9rem; }
.debug-login-btn { width: 100%; padding: 10px; background: linear-gradient(90deg, #ff6b6b, #ee5a24); border: none; color: white; border-radius: 6px; font-weight: bold; cursor: pointer; font-size: 14px; }
.debug-login-note { color: #ff6b6b; font-size: 0.8rem; text-align: center; margin: 5px 0 0 0; }

/* Notification list styles */
.notif-list { list-style: none; padding: 0; margin: 0; }
.notif-item { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.notif-body { margin: 8px 0 0; }

/* Creator video-edit */
.btn-draft-center { text-align: center; }

/* Ranking ad bottom wrapper */
.ad-bottom-mb { margin-bottom: 100px; }

/* Download page */
.dl-note { margin-top: 24px; font-size: 13px; color: #666; line-height: 1.5; text-align: center; }

/* Profile */
.no-posts-full { grid-column: 1 / -1; text-align: center; padding: 40px 0; color: rgba(255,255,255,0.4); font-size: 14px; }
.profile-ul { margin: 0; padding-left: 20px; }

/* Payment page thumbnail */
.payment-thumbnail { max-width: 160px; width: 160px; height: auto; object-fit: cover; }

/* Instagram */
.error-text-red { color: red; }

/* Download index */
.dl-info-link { color: #1DA1F2; }
.dl-warning-info { background-color: rgba(29, 161, 242, 0.1); border-color: rgba(29, 161, 242, 0.3); color: #1DA1F2; }
.dl-body-text { color: #e0e0e0; line-height: 1.6; margin-bottom: 15px; }
.dl-body-text-mt { color: #e0e0e0; line-height: 1.6; margin-top: 15px; }