@charset "UTF-8";

body {
    margin: 0;
    font-family: sans-serif;
    padding: 0;
    overflow-x: hidden;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    /*overflow: hidden;*/
}

/***********************************************************
                汎用
************************************************************/
.util-login-return-link {
    text-align: center;
}





.input-name-area {
    display: flex;
}

.input-name-text {
    margin-right: 15px;
    font-size: 16px;
}

.input-post-text {
    font-size: 16px;
}


.util-page-title-area {
    margin-top: 30px;
    border-bottom: 1px solid lightskyblue;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
}

.util-apge-title {
    text-align: left;
    font-size: 42px;
    font-weight: 600;
    padding-bottom: 10px;
}
.user-icon {
    width: 36px;
    height: 36px;
    background: #2f6f9f;
    border-radius: 50%;
    position: relative;
    margin-left: 10px;
  }
  
  /* 頭 */
  .user-icon::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 12px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
  }
  
  /* 胴体 */
  .user-icon::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 10px;
    width: 16px;
    height: 13px;
    background: white;
    border-radius: 50% 50% 0 0;
  }

.header-member-menu{
    margin-top: 10px;
}
.header-member-menu a{
    text-decoration: none;
    color: #646970;
}

  .icon-stack {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
  }
  
  .icon-stack .fa-briefcase {
    font-size: 20px;
    color: #333;
  }
  
  .icon-stack .play-icon {
    position: absolute;
    top: 59%;
    left: 52%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: white;
  }
.member-menu-flex{
    display: flex

}

.member-menu-text{
    padding-left: 5px;
}

.member-menu-text-contact{
    font-size: 12px;
}

/***********************************************************
                ヘッダ
************************************************************/
.header-admin-area-inner {
    min-height: 100px;
    background: linear-gradient(.25turn, #1F2E55, 50%, #4B85BB);
}


.menu-toggle {
    position: fixed;
    top: 40px;
    left: 10px;
    z-index: 1001;
    font-size: 24px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
}

.container {
    display: flex;
    transition: all 0.3s ease;
    position: relative;
}

/* 左：通常状態 */
.left {
    width: 200px;
    background: #f4f4f4;
    overflow-y: auto;
    padding: 20px;
    z-index: 100;
    margin-left: 0;
    /* デフォルトで表示 */
    padding-right: 0;
}

/* 右：通常状態 */
.right {
    flex: 1;
    background: white;
    overflow-y: auto;
    height: 100vh;
    transition: all 0.3s ease;
    z-index: 50;
}

/* PC表示時のメニュー非表示状態 */
.container.show-menu .left {
    margin-left: 0;
    visibility: visible;
    overflow-y: auto;
}

.container:not(.show-menu) .left {
    margin-left: -220px;
    visibility: hidden;
    overflow-y: hidden;
}

.header-search-box {
    display: flex;
    align-items: center;
    width: 300px;
    background-color: white;
    border-radius: 3px;
    padding: 5px 10px;
    position: relative;
    height: 25px;
}

.header-search-box form {
    display: flex;
    width: 100%;
    align-items: center;
}

.header-search-box input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #333;
    width: 100%;
    padding-right: 10px;
}

.header-search-box input::placeholder {
    color: #aaa;
}

.header-search-box button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-search-box button i {
    color: #666;
    font-size: 16px;
}

.header-admin-area-inner-up {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}
.header-admin-area-inner-logo-area{
    max-width: 150px;
    margin-left: 50px;
}
.header-admin-area-inner-search-area{
    margin-right: 20px;
    display: flex;
    padding-top: 10px;
}

.header-admin-area-inner-dw{
    border-top: 1px solid white;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-admin-area-inner-dw a{
    color: white;
}
.header-admin-area-inner-dw-flex{
    display: flex;
    justify-content: center;
}


.header-admin-area-inner-dw-text{
    margin-left: 10px;
    margin-right: 80px;
}
.user-menu-wrapper{
    position: relative;
    display: inline-block;
}

/* ▼ 860px以下：レイヤー重ね式に切り替え */
@media (max-width: 860px) {
    .container {
        display: block;
    }

    .left {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 250px;
        height: calc(100% - 100px);
        background: #f4f4f4;
        z-index: 100;
        margin-left: 0;
        visibility: hidden;
        transition: left 0.3s ease, visibility 0.3s ease;
    }

    .right {
        width: 100%;
        height: 100vh;
        transition: all 0.3s ease;
        padding-top: 100px;
        position: relative;
    }

    /* メニュー表示時の変化 */
    .container.show-menu .left {
        left: 0;
        visibility: visible;
        overflow-y: auto;
    }

    .container:not(.show-menu) .left {
        left: -100%;
        visibility: hidden;
        overflow-y: hidden;
    }

    /* オーバーレイ効果 */
    .container.show-menu .right::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
        pointer-events: none;
        transition: background-color 0.3s ease;
    }

    .header-admin-area-inner {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: #06236F 0% 0% no-repeat padding-box;
        z-index: 101;
    }

    .header-admin-area-inner-up {
        padding-top: 40px;
       
    }

    .header-admin-area-inner-dw-flex{
        display: none;
    }
}


@media (max-width: 600px) {
    .header-search-box{
        display: none;
    }
}

@media (max-width: 520px) {
    .header-search-box{
        width: 200px;
    }

    .header-search-box input{
        font-size: 12px;
    }

    .header-admin-area-inner-search-area{
        margin-right: 10px;
    }

    .header-admin-area-inner-logo-area{
        margin-left: 50px;
    }

    .header-search-box {
       
        width: 200px;
       
        height: 25px;
    }

   
}


@media (max-width: 460px) {
    
   

    .header-admin-area-inner-logo-area{
        margin-left: 50px;
    }
}



/***********************************************************
                 フッター
************************************************************/
.footer-inner-flex-right-text a{
    color: white;
}

.footer-inner {
    background: linear-gradient(.25turn, #1F2E55, 50%, #4B85BB);
    padding: 20px;
}

.footer-inner-flex {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-inner-flex-left {
    display: flex;
    flex-direction: column;
}

.footer-inner-flex-left-text {
    margin-bottom: 10px;
}

.footer-inner-flex-left-text a {
    color: white;
    text-decoration: none;
}

.footer-inner-flex-right {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
}

.footer-inner-flex-right-text {
    margin-bottom: 10px;
}

.footer-inner-flex-right-text a {
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 860px) {
    .footer-inner-flex {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner-flex-left,
    .footer-inner-flex-right {
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .footer-inner-flex-right {
        border-top: 1px solid white;
        margin-left: 65px;
    }
}
/***********************************************************
                TOP
************************************************************/
.top-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 50px;
}

.top-contens {
    margin-bottom: 50px;
}

.top-contens-title-area{
    border-bottom: 2px solid blue;
    padding-bottom: 5px;
}
.top-contens-title {
    font-size: 32px;
    font-weight: 600;
    color: black;
    text-align: center;
}

.top-contens-movie-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: calc(100% - 40px); /* コンテナの両端のマージンを考慮 */
    max-width: 1200px;
    margin: 20px auto;
    justify-content: flex-start;
}

.top-contens-movie-list-item {
    width: calc((100% - 60px) / 4); /* 4列分の幅を均等に分配 */
    max-width: 250px;
    min-width: 150px;
    box-sizing: border-box;
    background-color: #eee;
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    min-height: 100px;  /* サムネイル + タイトル2行分の高さ */
}

.top-contens-movie-list-item img {
    width: 100%;
    aspect-ratio: 9/9;
    object-fit: cover;
    display: block;
}

.top-contens-movie-list-item:hover img {
    
}

.top-contens-movie-list-item-title {
    margin-top: 5px;
    text-align: left;
    color: black;
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    height: 50px;  /* 2行分の固定の高さを確保 */
    margin-bottom: 10px;
    word-break: break-all;
    word-wrap: break-word;
}

.top-contens-movie-list-item-movie-category
{
    margin-top: 10px;
    text-align: left;
    min-height: 25px;
}

.top-contens-movie-list-item-movie-category-box
{
    display: inline-block;
    border: 1px solid black;
    padding: 2px 8px;
    font-size: 14px;
    border-radius: 4px;
    font-size: 12px;
}

.top-contens-movie-list-more{
    text-align: center;
    width: 100%;
}

.top-contens-movie-list-more-box{
    margin-top: 20px;
    border: 1px solid black;
    color: black;
    display: inline-block;
    padding: 10px;
    border-radius: 6px;
}


.top-contens-movie-list-more-box a{
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .top-contens-movie-list-item {
        width: calc((100% - 40px) / 3); /* 3列の場合 */
    }
}

@media screen and (max-width: 768px) {
    .top-contens-movie-list-item {
       width: 100%;
       max-width: 350px;
       margin-left: auto;
       margin-right: auto;
       margin-top: 30px;
    }

    .top-contens-movie-list{
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .top-contens-movie-list-item {
        width: 100%; /* 1列の場合 */
        max-width: 250px;
    }
}

@media screen and (max-width: 640px) {
    
    
    .top-contens-movie-list-item-title {
        font-size: 14px;
    }
}

/***********************************************************
                お知らせ
************************************************************/
.news-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 50px;
    color: black;
}

.news-title-area {
    border-bottom: 1px solid lightskyblue;
    font-size: 32px;
    font-weight: 600;
    display: flex;
    margin-bottom: 18px;
    text-align: left;
    margin-top: 10px;
}

.news-title-link {
    background: none;
    border: none;
    color: #234a6f;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: inline;
}
.news-title-link:hover {
    color: #1976d2;
    text-decoration: underline;
}
.news-category-area {
    margin-top: 10px;
}


.news-openday {
    font-size: 18px;
}

.news-category {
    font-size: 1rem;
    color: #234a6f;
    background: #f7fafd;
    border-radius: 8px;
    padding: 2px 12px;
    font-weight: 500;
}

.news-important {
    display: inline-block;
    background: #ffeaea;
    color: #e53935;
    border: 1.5px solid #e53935;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    vertical-align: middle;
    height: 23px;
    padding-left: 10px;
    padding-right: 10px;
}

.news-nodata-area {
    margin-top: 300px;
    text-align: center;
    font-size: 32px;
    color: black;
    font-weight: 600;
}


.news-nextbefor-button-area {
    margin-top: 30px;
    text-align: center;
}

.news-nextbefor-button-flex {
    display: flex;
    justify-content: center;
}

.news-prev-button {
    margin-left: 20px;
    margin-right: 20px;
    height: 50px;
    border-radius: 9px;
    width: 120px;
    color: black;
    font-weight: 600;
}

.news-next-button {
    margin-left: 20px;
    margin-right: 20px;
    height: 50px;
    border-radius: 9px;
    width: 120px;
    color: black;
    font-weight: 600;
}

.mypage-top-news-more {
    display: table;
    margin: 16px auto 0 auto;
    padding: 8px 28px;
    background: linear-gradient(90deg, #42a5f5 0%, #1976d2 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 22px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(25,118,210,0.07);
    transition: background 0.2s, color 0.2s;
    text-align: center;
}
.mypage-top-news-more:hover {
    background: linear-gradient(90deg, #64b5f6 0%, #1976d2 100%);
    color: #fff;
}
@media screen and (min-width: 581px) {
    .news-category-flex {
        display: flex;
    }
}

@media screen and (max-width: 640px) {
    .news-title-area {
        font-size: 24px;
    }


}



@media screen and (max-width: 580px) {

    .news-title-area {
        font-size: 20px;
    }



    .news-openday {
        margin-top: 14px;
    }

    .news-category {
        margin-left: 0px;
    }

  

    .news-nodata-area {

        font-size: 28px;

    }
}

/***********************************************************
                動画ページ
************************************************************/
.movie-sample-image {
    max-width: 100px;
    height: auto;
}
/*
.movie-main-contens {
    background-color: black;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}
*/
.movie-main-area {
    max-width: 700px;
    width: 100%;
    background-color: black;
    margin-left: auto;
    margin-right: auto;

}

.movie-main-area iframe,
.movie-main-area video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    object-fit: contain;
}

.movie-creator-name-area {
    display: flex
}

.movie-creator-name-left img {
    width: 40px;
    height: 40px;
    border-radius: 18px;
}

.movie-creator-name-right {
    margin-left: 10px;
    padding-top: 10px;
}

.movie-creator-name-right a {
    color: black;
}

.movie-sub-contens {
    margin-top: 20px;
    padding-right: 20px;
}

.movie-sub-left-area {
    padding-left: 30px;

    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.movie-sub-sub-title {
    color: #646970;
    font-size: 14px;
    font-size: 16px;
    margin-top: 3px;
}

.movie-sub-sub-category a {
    color: black;
}

.movie-sub-title {
    font-size: 32px;
    font-weight: 600;
    color: black;
    margin-top: 10px;
}

.movie-creator-introduction {
    width: 100%;
    background-color: aliceblue;
    margin-top: 50px;
    min-height: 70px;
    border-radius: 11px;
}

.movie-navigation-area{
    margin-top: 30px;
    width: 100%;
    padding-left: 0;  /* 左パディングを削除 */
    box-sizing: border-box;  /* パディングを幅に含める */
}


.navigation-prev-movie-area,
.navigation-next-movie-area {
    width: calc(50% - 10px);  /* ギャップを考慮した幅設定 */
    min-width: 0;  /* flexアイテムが親要素を超えないように */
    overflow: hidden;  /* はみ出しを防ぐ */
}

.navigation-movie-title{
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
}

.navigation-movie-thumbnail{
    width: 180px;  /* サムネイルの幅を固定 */
    flex-shrink: 0;  /* サムネイルが縮まないように */
    margin-right: 0;  /* 以前のmarginを削除 */
}

.navigation-movie-thumbnail img{
    width: 100%;
    height: auto;
    object-fit: cover;
}


.navigation-movie-thumbnail-title{
    font-size: 20px;
    line-height: 1.4;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: normal;  /* 通常の折り返し */
    overflow: visible;  /* はみ出しを表示 */
    font-weight: 400;
    margin-left: 10px;
    padding-top: 10px;
}

.movie-creator-introduction-area{
    margin-top: 50px;
    padding-left: 15px;
}


.movie-creator-introduction-content-title{
    margin-top: 20px;
    font-size: 25px;
    font-weight: 600;
    border-top: 1px solid blue;
    padding-top: 10px;
    padding-bottom: 10px;
}


.movie-creator-introduction-item{
    max-width: 200px;
    margin-right: 15px;
}




.movie-playlist-introduction-item{
    max-width: 200px;
    margin-right: 15px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.palylist-noddata-area{
    font-size: 32px;
    text-align: center;
    margin-top: 100px;
    color: #837c7c;
}


.movie-cancel-area{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    
}

.movie-cancel-title{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: black;
}

.movie-not-purchase-area{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    text-align: center;
    padding-bottom: 100px;
    border-bottom: 1px solid blue;
}

.movie-not-purchase-title{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: black;
}

.movie-not-purchase-button{
    margin-top: 30px;
    border: 1px solid black;
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    background-color: antiquewhite;
}

.movie-not-purchase-button a{
    text-decoration: none;
    font-weight: 600;
    color: black;
    background-color: antiquewhite;
}


.navigation-movie-sales-check-box{
    border: 1px solid black;
    display: inline-block;
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
    background-color: antiquewhite;
}

.movie-list-button-box{
    display: flex;
    gap: 5px;
}


/* レスポンシブ対応を強化 */
@media screen and (max-width: 860px) {
    .navigation-prev-movie-area,
    .navigation-next-movie-area {
        width: 100%;
        margin-bottom: 20px;
    }

    .navigation-movie-thumbnail{
        width: 100px;
    }

    .movie-navigation-contens{
        padding: 0 10px;  /* スマホ表示時は余白を少し狭める */
    }
}

@media screen and (min-width: 1030px) {
    .movie-navigation-contens{
        display: flex;
        gap: 20px;
        justify-content: space-between;
        max-width: 100%;  /* 最大幅を制限 */
        padding: 0 15px;  /* 左右に余白を追加 */
        box-sizing: border-box;
    }
        
    .navigation-movie-thumbnail-flex{
        display: flex;
    }
        
    .movie-creator-introduction-flex{
        display: flex;

    }
}


@media screen and (max-width: 1029px) {
   
    .navigation-prev-movie-area,
    .navigation-next-movie-area {
        width: 95%;
        padding-left: 20px;
        border-top: 1px solid black;
        padding-top: 20px;
    }
    .navigation-movie-thumbnail{
        max-width: 400px;
        width: 100%;
    }

    .navigation-next-movie-area{
        margin-top: 55px;
       
    }

    .navigation-movie-title{
        text-align: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        border-bottom: 1px solid blue;
        padding-bottom: 8px;
    }

    .navigation-movie-thumbnail-flex{
        margin-top: 24px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navigation-movie-thumbnail-title{
        font-size: 25px;
    }

    .movie-creator-introduction-item{
        margin-top: 24px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .movie-creator-introduction-content-movie-title{
        font-size: 24px;
        margin-top: 5px;
    }

    .movie-creator-introduction-area{
        border-top: 1px solid black;
        padding-top: 20px;
    }
}


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

    .movie-playlist-flex{
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
    }

}

@media screen and (max-width: 860px) {

    .movie-sub-left-area {

        width: 95%;
        padding-left: 10px;

    }

    .movie-playlist-introduction-item{
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
  
}

@media screen and (max-width: 640px) {
   

    .navigation-movie-thumbnail-title{
        font-size: 16px;
    }

        
    .movie-sub-title {
        font-size: 24px;
    }

    

    
    .movie-creator-introduction-area{
        display: none;
    }

}

@media screen and (max-width: 480px) {
    
}

/***********************************************************
                販売ページ
************************************************************/
.sales-page {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.sales-page-contents-pc {
    margin-left: 10px;
    margin-right: 10px;
}


.sales-page-contents-pc-flex {
    display: flex;
}

.sales-page-contents-pc-left {
    border: 8px solid dimgrey;
    padding: 40px;
    margin-right: 20px;
    flex: 1;
}

.sales-page-contents-pc-right {
    width: 250px;

}

.sales-title-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sales-title-area-left {
    max-width: 250px;
    min-width: 200px;
    flex-shrink: 0;
}

.sales-title-area-left img {
    width: 100%;
    height: auto;
}

.sales-title-area-right {
    flex: 1;
    min-width: 0;
    /* これが重要: flexboxの子要素が親幅を超えるのを防ぐ */
}

.sales-title-area-right-title {
    font-size: 28px;
    color: black;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
}

.sales-title-area-right-subtitle {
    margin-top: 2px;
    font-size: 12px;
    color: #646970;
}

.sales-title-area-right-category {
    margin-top: 15px;
}



.sales-title-area-right-price {
    font-size: 24px;
    margin-top: 5px;
    font-weight: 600;
    color: crimson;
}

.sales-introduction-area {
    margin-top: 50px;
}

.sales-introduction-area-title {
    font-size: 32px;
    font-weight: 600;
    color: black;
    border-bottom: 4px solid darkgreen;
    padding-bottom: 6px;
}

.sales-introduction-area-text {
    margin-top: 50px;
    margin-bottom: 30px;
}

.sales-introduction-area-text p {
    margin-top: 20px;
}

.sales-page-contents-pc-right-contents {
    border: 3px solid dimgrey;
    padding: 15px;
}

.sales-page-contents-pc-right-title {
    font-size: 14px;
    color: black;
    font-weight: 600;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 500px;
}

.sales-page-contents-pc-right-subtitle {
    font-size: 12px;
    margin-top: 5px;
    color: black;
}

.sales-page-contents-pc-right-price {
    margin-top: 10px;
    color: crimson;
    font-size: 16px;
    font-weight: 600;
}

.sales-page-contents-pc-right-card {
    margin-top: 10px;
    margin-top: 10px;
    border-bottom: 1px solid dimgrey;
    padding-bottom: 6px;
}


.sales-page-contents-pc-right-card img {
    width: 100%;
}


.sales-page-contents-pc-right-button-area {
    margin-top: 30px;
}


.sales-page-contents-pc-right-button {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    font-size: 20px;
    background-color: antiquewhite;
    color: black;
    border: 1px solid black;
    padding: 5px;
    font-weight: 600;
}

.sales-page-contents-pc-right-login-alert {
    font-size: 14px;
    color: red;
    border: 1px solid red;
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sales-sample-area {
    margin-top: 50px;
}

.sales-sample-img-area {
    display: flex;
    flex-wrap: wrap;
    /* ← これが折り返しのキー！ */
    justify-content: flex-start;
    /* 左詰めにする */
}

.sales-sample-img-area-img {
    width: 100px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    height: 100px;
    background: #eee;
}


.sales-sample-img-area-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



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

    .sales-page-contents-pc-right-sp {
        display: none;
    }

}

@media screen and (max-width: 960px) {
    .sales-page-contents-pc-right {
        display: none;
    }


    .sales-page-contents-pc-right-sp {
        display: block;
        margin-top: 30px;
    }

    .sales-page-contents-pc-right-title {
        font-size: 30px;
        max-width: 100%;
        text-align: center;
    }

    .sales-page-contents-pc-right-price {
        font-size: 26px;
        text-align: center;
    }

    .sales-page-contents-pc-right-card {
        max-width: 220px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        border-bottom: 0;
    }

    .sales-title-area {
        background-color: #dedede;
        padding: 20px;

    }

    .sales-page-contents-pc-right-button-area {
        padding-top: 30px;
        border-top: 1px solid dimgrey;

    }

    .sales-page-contents-pc-left {
        margin-right: 0;
        border: 0;
    }
}

@media screen and (max-width: 720px) {
    .sales-title-area {
        display: block;
    }

    .sales-title-area-left {
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .sales-title-area-right-title {
        margin-top: 20px;
        font-size: 18px;

    }

    .sales-title-area-right {
        text-align: center;
    }
}

.movie-thumbnail-container {
    position: relative;
    width: 100%;
       
}

.vimeo-thumbnail-overlay,
.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.vimeo-thumbnail-overlay::before,
.video-thumbnail-overlay::before {
    content: "";
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.movie-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

/***********************************************************
                履歴関連
************************************************************/
.member-all-title-area{
    max-width: 1200px;
    margin-inline-start: auto;
    margin-right: auto;
    padding-left: 20px;
    margin-top: 40px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.member-all-title-area-title{
    font-size: 24px;
    font-weight: 600;
    color: black;
    border-bottom: 1px solid blue;
    padding-bottom: 10px;
}
.member-all-title-area-item{
    max-width: 200px;
    border: 1px solid black;
    border-radius: 12px;
    padding: 10px;
}

.member-all-title-area-item a{
    text-decoration:none; 
}

.member-all-title-thumbnail{

}


.member-all-title-thumbnail img{
    width: 100%;
}

.member-all-title-area-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.member-all-title-area-item {
    width: calc((100% - 60px) / 4);
    min-width: 200px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.member-all-title-area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.member-all-title-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.member-all-title-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-all-title-area-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    height: 44px; /* line-height × 2行分 */
}

.member-all-title-area-item-creator {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    line-height: 1.4;
    max-width: 100%;
}

.member-all-title-area-item-category {
    font-size: 12px;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    word-break: break-all;
    word-wrap: break-word;
    margin-top: 5px;
}



.history-list-box{
    margin-top: 10px;
}

.history-list-box-flex{
    display: flex;
}

.history-list-box-flex-left{

}

.history-list-box-movie{
    max-width: 150px;
    min-width: 150px;
}

.history-list-box-flex-right{
    margin-left: 10px;
    padding-top: 5px;
    color: black;
}

.history-list-box-title,
.history-list-box-category {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    line-height: 1.4;
    max-width: 100%;
    white-space: normal;
    height: 2.8em; /* 1.4 × 2行分 */
    font-size: 12px;
}

.history-list-box-title{
    font-weight: 600;
}

.history-list-box-creator{
    font-size: 14px;
}

.history-list-date{
    font-size: 18px;
    font-weight: 600;
    color: black;
    margin-top: 20px;
    max-width: 500px;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.history-list-box a {
    text-decoration: none;
    display: block;
    color: black;
    transition: background 0.2s;
}
.history-list-box a:hover {
    background: #f3f3f3;
}

.history-movie-publication_ends-area{
    border: 1px solid black;
}

.history-multiple-box-line{
    background-color: rgb(137, 129, 153);
    border-radius: 12px;
    /* width: calc(100% - 24px); */
    width: 129px;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1px;
}

.palylist-edit-area{
    display: flex;
    max-width: 150px;
    justify-content: center;
    margin-top: 5px;
}
    
.palylist-edit-area-edit{
    border: 3px solid #0000ff80;
    border-radius: 6px;
    padding: 3px;
    font-size: 14px;
    color: gray;
    cursor: pointer;
}

.palylist-edit-area-delete{
    color: gray;
    border: 3px solid #ff00009c;
    border-radius: 6px;
    padding: 3px;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
}


.palylist-edit-area-movie-delete{
    color: gray;
    border: 3px solid #ff00009c;
    border-radius: 6px;
    padding: 3px;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
}


table.member-playlist-edit-table{

}

table.member-playlist-edit-table td{

}

table.member-playlist-edit-table tr:nth-child(odd) {
    background: #f7faff;
}

table.member-playlist-edit-table tr:nth-child(even) {
    background: #ffffff;
}

table.member-playlist-edit-table th{

}
.member-playlist-edit-table td:first-child {
    position: sticky;
    left: 0;
    background: #f7faff; /* 固定列の背景色（お好みで） */
    z-index: 2;
}

.member-playlist-edit-table-save-button{
    width: 150px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    border-radius: 9px;
    margin-left: 24px;
}


@media screen and (max-width: 800px) {
        
    .member-all-title-area-flex {
        
        justify-content: space-between;
        max-width: 540px;
        
    }
}

@media screen and (max-width: 560px) {
        
    .member-all-title-area-flex {
        
        justify-content: center;
        
    }
}

.movie-creator-introduction-content-movie-title {
    font-size: 16px;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    line-height: 1.4;
    height: 44px; /* line-height × font-size × 2行分 */
}

@media screen and (max-width: 640px) {
    .movie-creator-introduction-content-movie-title {
        font-size: 14px;
        height: 39px; /* 14px × 1.4 × 2行分 */
    }
}



/***********************************************************
                カテゴリーリスト
************************************************************/
.video-category-list-creator-name{
    font-size: 24px;
    margin-top: 30px;
    color: black;
    border-bottom: 1px dashed;
    padding-bottom: 5px;
}

.video-category-list-category-name{
    padding-top: 5px;
    font-size: 16px;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    line-height: 1.4;
    max-width: 100%;
    white-space: normal;
    height: 2.8em; /* 1.4 × 2行分 */
}

.video-category-list-category-count{
    font-size: 14px;
    margin-top: 10px;
    color: black;
}


/***********************************************************
                購入履歴
************************************************************/

.purchase-history-box{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    border: 1px solid black;

}

.purchase-history-box-up{
    background-color: aliceblue;
    padding-left: 10px;
    padding-right: 10px;
    color: #615c5c;
    padding-bottom: 10px;
    padding-top: 5px;
    border-bottom: 1px solid #9b8e8e;
}

.purchase-history-box-up-flex{
    display: flex;
    justify-content: space-between;
}

.purchase-history-box-date-flex{
    display: flex;
    max-width: 200px;
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
}

.purchase-history-box-up-date{

}

.purchase-history-box-up-date-title{

}

.purchase-history-box-up-date-text{

}

.purchase-history-box-up-receipt{
    padding-top: 18px;
    padding-right: 30px;
}

.purchase-history-box-up-receipt a{
    font-size: 14px;
    color: blue;
}

.purchase-history-box-dw{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.purchase-history-year-area{
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.purchase-history-year-flex{
    display: flex;
    justify-content: space-between;
}

.purchase-history-no-text{
    text-align: center;
    margin-top: 50px;
    font-size: 24px;
    color: black;
    font-weight: 600;
}

.purchase-history-year-area-year{
    padding: 5px;
}

.purchase-history-year-area-year a{
    font-size: 18px;
}


/***********************************************************
                プロフィール
************************************************************/

.profile-edit-area{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #fffafa;
    padding-bottom: 20px;
    padding-top: 20px;
}

.profile-edit-box{
   
}

.profile-edit-flex{
    margin-top: 30px;
}

.profile-edit-flex-left{
    
    width: 100%;
}               

.profile-edit-flex-right{
    width: 100%;
}   

.profile-edit-flex-left-title{
    font-size: 14px;
    color: #222;
    font-weight: 600;
}   

.profile-edit-flex-left-input{
    margin-top: 5px;
}   

.profile-edit-flex-left-input input{
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 20px;
    padding: 8px;
}           


.profile-edit-flex-left-input-readonly{
    color: black;
    margin-top: 5px;
    font-size: 18px;
    font-weight: 600;
}   

.profile-edit-button{
    margin-top: 10px;
    /* width: 400px; */
    height: 40px;
    border-radius: 8px;
    background-color: antiquewhite;
    color: black;
    font-size: 20px;
    max-width: 400px;
    width: 100%;
    cursor: pointer;
}

.profile-edit-button-area{
    text-align: center;
    margin-bottom: 100px;
}


@media screen and (min-width: 641px) {
        
    .profile-edit-flex{
        display: flex;
        margin-top: 30px;
    }

    .profile-edit-flex-right{
    
        margin-left: 36px;
    }   
}


@media screen and (max-width: 640px) {
    
}


/***********************************************************
                領収書
************************************************************/
.receipts-area {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    margin-top: 50px;
    color: black;
    font-family: 'Noto Sans JP', sans-serif;
}

.receipts-header-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.receipts-header-logo img {
    max-width: 200px;
    height: auto;
}

.receipts-header-number {
    text-align: right;
}

.receipts-header-number-text {
    font-size: 14px;
    line-height: 1.6;
}

.receipts-title {
    text-align: center;
    margin: 30px 0;
}

.receipts-title-text {
    font-size: 32px;
    font-weight: bold;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.receipts-contens {
    margin: 40px 0;
}

.receipts-contens-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.receipts-contens-box {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.receipts-contens-box-title {
    width: 100px;
    font-weight: bold;
    font-size: 14px;
}

.receipts-contens-box-text {
    flex: 1;
    font-size: 14px;
}

.receipts-company-area {
    margin-top: 50px;
    text-align: center;
}

.receipts-company-area-text {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.receipts-company-area-text-text-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.receipts-print{
    text-align: right;
    margin-top: 20px;
}

.receipts-print-text{
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.receipts-print-text:hover {
    background-color: #e5e5e5;
}

@media print {
    .receipts-print {
        display: none;
    }
    
    .receipts-area {
        padding: 0;
    }
    
    body {
        background: white;
    }
}

@media screen and (max-width: 640px) {
    .receipts-header-area {
        flex-direction: column;
        align-items: center;
    }

    .receipts-header-logo {
        margin-bottom: 20px;
    }

    .receipts-header-number {
        text-align: center;
    }

    .receipts-contens-box {
        flex-direction: column;
    }

    .receipts-contens-box-title {
        width: 100%;
        margin-bottom: 5px;
    }
}



/***********************************************************
                会社情報
************************************************************/

.top-company-box{
    max-width: 800px;
    margin-top: 50px;
    border-bottom: 1px solid black;
    padding-bottom: 30px;
    padding-left: 10px;
}

.top-company-box-flex{
    display: flex;
    color: #747272;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
}

.top-company-box-left{
    width: 200px;
    font-weight: 600;
    margin-right: 15px;
}

.top-company-googele-map{
    margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
        
    .top-company-box-flex{
      
        font-size: 14px;
    }

        
    .top-company-box-left{
        width: 100px;
    }

}