@charset "utf-8";
/*-------------------------------------------------
固有設定 myStyle
-------------------------------------------------*/
body {
    min-width: 1120px;
    word-break: break-all;
    font-size: 13px;
}
img {
    vertical-align: middle;
}
/* 最小幅設定 */
nav#accountArea > div,
div#layout > div {
    width: 1120px;
    margin: 0 auto;
    overflow: auto;
}
nav#chArea ul {
    width: 1120px;
    margin: 0 auto;
}
div#layout > div {
    padding: 20px 0 5px 0;
    display: block;
    min-height: 1%;
    overflow: visible;
}
div#layout > div:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/*-------------------------------------------------
共通
-------------------------------------------------*/
.dotLineGray {
    border-bottom: 1px dotted #ccc;
}
.solidLineGray {
    border-bottom: 1px solid #ccc;
}
.linkList {
    margin-bottom: 20px;
}
#home .linkList {
    margin-bottom: 16px;
}
.linkList li {
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid #eee;
}
.linkList li a {
    background: url(../../img/user/arrowBlue.png) no-repeat left center;
    padding: 0 0 0 20px;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
/*Firefoxだけに適用されるCSSハック*/
@-moz-document url-prefix() {
    .linkList li a {
        position: relative;
        display: block;
        max-height: 2.8em;
    }
    .linkList li a:before,
    .linkList li a:after {
        background: #fff;
        position: absolute;
    }
    .linkList li a:before {
        content: "…";
        top: 18px;
        right: 3px;
        padding: 0 3px;
    }
    .linkList li a:after {
        content: "";
        height: 100%;
        width: 100%;
    }
} /*IE10以降に適用されるCSSハック*/
@media all and (-ms-high-contrast: none) {
    .linkList li a {
        position: relative;
        display: block;
        max-height: 2.8em;
    }
    .linkList li a:before,
    .linkList li a:after {
        background: #fff;
        position: absolute;
    }
    .linkList li a:before {
        content: "…";
        top: 18px;
        right: 3px;
        padding: 0 3px;
    }
    .linkList li a:after {
        content: "";
        height: 100%;
        width: 100%;
    }
}

.linkList li:last-child a {
    border-bottom: none;
}

a.arrowBlue {
    background: url(../../img/user/arrowBlue.png) no-repeat left center;
    padding: 0 0 0 10px;
}
/*-------------------------------------------------
form要素まわり
-------------------------------------------------*/
.komoku {
    margin: 15px 0 5px 0;
}
.form .komoku {
    margin-top: 0;
}
.moreBtn {
    font-size: 12px;
    padding: 3px 10px;
    cursor: pointer;
    border: 1px solid #bbb;
    border-radius: 4px;
    display: inline-block;
    color: #5e5e5e;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
    background: linear-gradient(to bottom, #fff, #e3e3e3);
}
.moreBtn.deactive {
    text-shadow: none;
    background: #e3e3e3;
    opacity: 0.5;
}
.moreBtn.cBox {
    display: block;
}
/*-------------------------------------------------
header
-------------------------------------------------*/
header {
    min-width: 1120px;
    background: #fff;
    padding: 10px 0;
}
header > div {
    width: 1120px;
    margin: 0 auto;
}
.header__flexContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header__flexItem {
    padding: 5px 0;
}
/* header左エリア */

header .logo img {
    vertical-align: middle;
    max-width: 400px;
}
header h2 {
    font-size: 12px;
    line-height: 1.2em;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    max-width: 132px;
    transition: all 0.5s ease-in;
}
header h2.overTxt {
    max-width: 131.8px;
    max-height: 30px;
}
header h2:after {
    position: absolute;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 30%
    );
    content: "…";
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    padding: 2px 0 2px 10px;
    opacity: 0;
    transition: all 0.5s ease-in;
}
header h2.overTxt:after {
    opacity: 1;
}
header h2 img {
    border: 1px solid #ccc;
    margin-right: 5px;
}
/* header右エリア */
.utility__flexContainer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header ul {
    display: flex;
    border-left: 1px solid rgba(0, 0, 0, 0.3);
    height: 30px;
    padding-left: 15px;
}
header ul li {
    margin-right: 10px;
}
header ul li:last-child {
    margin-right: 0px;
}
header ul li#commentIcon,
header ul li#messageIcon,
header ul li#inquiryIcon {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
header ul li a.btn {
    display: block;
    text-decoration: none !important;
    border: 1px solid #b0b0b0;
    border-radius: 4px;
    height: 28px;
    line-height: 28px;
    padding: 0 1em;
    background: linear-gradient(to bottom, #fff, #f0f0f0);
}
header ul li a.btn:hover {
    opacity: 0.85;
}
header .search {
    display: flex;
    height: 27px;
    padding-top: 3px;
    padding-right: 15px;
}
header .search input[type="text"] {
    width: 180px;
    border: 1px solid #b0b0b0;
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: #fff;
    height: 15px;
    line-height: 15px;
    padding: 4px;
    float: left;
}
header .search input[type="button"] {
    height: 25px;
    line-height: 25px;
    padding: 0;
    width: 40px;
    font-size: 12px;
    text-indent: -9999px;
    border: 1px solid #b0b0b0;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    background: url(../../img/user/iconSearch.png) no-repeat center center
        #f0f0f0;
    float: left;
}
/*-------------------------------------------------
項目を囲む枠
-------------------------------------------------*/
.nameTagList {
    display: table;
    border-collapse: separate;
    border-spacing: 0 5px;
}
.nameTagList dl {
    display: table-row;
}
.nameTagList dt,
.nameTagList dd {
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px;
}
.nameTagList dt {
    border: 1px solid #ccc;
    color: #999;
    font-size: 0.9em;
    border-radius: 3px;
    text-align: center;
    word-break: break-all;
    white-space: nowrap;
    background: #fff;
}
#terminal {
    background: #efefef;
    padding: 5px;
    margin-bottom: 15px;
}
#terminal h5 {
    margin: 5px 5px 0 5px;
}
#terminal .nameTagList {
    font-size: 0.8em;
    line-height: 1.2em;
}
#terminal .nameTagList dt {
    padding: 2px 5px 0 5px;
}
/*-------------------------------------------------
nav#accountArea
-------------------------------------------------*/
nav#accountArea {
    background-color: #a1a1a1;
    border-top: 1px solid #969696;
    display: none;
}
nav#accountArea > div > ul {
    margin: 15px 0;
    overflow: hidden;
}
nav#accountArea > div > ul li {
    line-height: 1.2em;
    white-space: nowrap;
}
nav#accountArea > div > ul > li {
    float: left;
    margin-right: 53px;
    border-left: 1px solid #bdbdbd;
    padding-left: 20px;
}
nav#accountArea > div > ul > li > span {
    display: inline-block;
    width: 20px;
    height: 15px;
}
nav#accountArea > div > ul > li.account > span {
    background: url(../../img/user/iconAccount.png) 0px 0px;
}
nav#accountArea > div > ul > li.myPlayL > span {
    background: url(../../img/user/iconAccount.png) -20px 0px;
}
nav#accountArea > div > ul > li.movie > span {
    background: url(../../img/user/iconAccount.png) -40px 0px;
}
nav#accountArea > div > ul > li.movieG > span {
    background: url(../../img/user/iconAccount.png) -60px 0px;
    margin-right: 5px;
}
nav#accountArea > div > ul > li.support > span {
    background: url(../../img/user/iconAccount.png) -80px 0px;
}
nav#accountArea > div > ul > li > ul {
    margin-top: 10px;
}
nav#accountArea > div > ul > li > ul > li {
    margin-bottom: 6px;
}
nav#accountArea > div > ul > li > ul > li:last-child {
    margin-bottom: 0;
}
nav#accountArea ul li a:link {
    color: #fff;
    text-decoration: none;
}
nav#accountArea ul li a:visited {
    color: #fff;
    text-decoration: none;
}
nav#accountArea ul li a:hover {
    color: #fff;
    text-decoration: underline;
}
nav#accountArea ul li a:active {
    color: #fff;
    text-decoration: none;
}
#accountArea .iconNew {
    display: inline-block;
    background: #f00;
    line-height: 1;
    padding: 4px 8px 2px 8px;
    position: relative;
    margin-top: 7px;
    border: 1px solid #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9em;
    color: #fff;
}
#accountArea .iconNew:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 15px;
    margin-left: -4px;
    width: 0;
    height: 0;
    border-bottom: 7px solid #fff;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid transparent;
}
#accountArea .iconNew:after {
    content: "";
    position: absolute;
    top: -9px;
    left: 15px;
    margin-left: -3px;
    width: 0;
    height: 0;
    border-bottom: 6px solid #f00;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid transparent;
}
/*-------------------------------------------------
nav#chArea
-------------------------------------------------*/
nav#chArea {
    clear: both;
    padding: 5px 0;
    background: #444;
}
nav#chArea ul li {
    border-left: 1px solid rgba(0, 0, 0, 0.3);
    float: left;
    margin: 5px 0;
}
nav#chArea ul li a {
    display: block;
    padding: 8px 10px;
    margin: 0 10px;
    font-weight: bold;
    position: relative;
    border-radius: 2px;
    line-height: 1;
    font-size: 1.2em;
    height: 16px;
}
nav#chArea ul li.home a {
    background: url(../../img/user/iconHome.png) no-repeat center center;
    text-indent: -9999px;
    width: 20px;
}
nav#chArea ul li a:link {
    color: #fff;
    text-decoration: none;
}
nav#chArea ul li a:visited {
    color: #fff;
    text-decoration: none;
}
nav#chArea ul li a:hover {
    color: #fff;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.2);
}
nav#chArea ul li a:active {
    color: #fff;
    text-decoration: none;
}

nav#chArea ul li.home a:hover {
    background: url(../../img/user/iconHome.png) no-repeat center center
        rgba(0, 0, 0, 0.2);
}
nav#chArea ul li a.active {
    background-color: rgba(0, 0, 0, 0.4);
}
nav#chArea ul li.home a.active {
    background: url(../../img/user/iconHome.png) no-repeat center center
        rgba(0, 0, 0, 0.4);
}
nav#chArea .guest {
    display: inline-block;
    font-weight: normal;
    font-size: 0.5em;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    line-height: 1;
    padding: 0.3em 0.2em;
    color: #fff;
    width: 7em;
    text-align: center;
    vertical-align: middle;
}
#guestCh,
.newsHeaderArea {
    text-align: center;
    background: #ff7373;
    color: #fff;
    position: relative;
}
#guestCh .close,
.newsHeaderArea .close {
    font-weight: bold;
    display: inline-block;
    width: 13px;
    height: 13px;
    background: #fff;
    color: #f00;
    border-radius: 7px;
    vertical-align: middle;
    cursor: pointer;
    font-size: 0.8em;
    line-height: 13px;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 10px;
}
/*-------------------------------------------------
#layout
-------------------------------------------------*/
#layout {
    background-color: #f0f0f0;
}
#sidebar {
    float: left;
    width: 180px;
    overflow: visible;
}
#home #sidebar {
    width: 320px;
}
#content {
    overflow: visible;
}
#content.right {
    width: 920px;
    float: right;
}
#home #content.right {
    width: 780px;
}
#content.center {
    width: 1120px;
    margin: 0 auto;
}
/*-------------------------------------------------
#sidebar
-------------------------------------------------*/
#sidebar ul.ctg {
    border-top: 1px solid #e1e1e1;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}
#sidebar ul.ctg li {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-top: none;
}
#sidebar ul.ctg li:first-child span {
    display: block;
    padding: 10px 10px 10px 15px;
    border-left: 4px solid #7d7d7d;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4em;
    font-weight: bold;
}
#sidebar ul.ctg li a {
    display: block;
    padding: 10px 10px 10px 25px;
    background: url(../../img/user/arrowBlue.png) no-repeat 8px center;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4em;
    font-weight: bold;
}
#sidebar ul.ctg.faq li a {
    font-size: 12px;
    line-height: 1.4em;
    font-weight: normal;
}
#sidebar ul.ctg li a:hover {
    background-color: #f7f7f7;
}
#sidebar ul.ctg li a.active {
    background-color: #eee;
}
#sidebar ul.account {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    padding-top: 20px;
}
#sidebar ul.account li a {
    display: block;
    line-height: 1.4em;
    margin-bottom: 15px;
}
/*-------------------------------------------------

contents

-------------------------------------------------*/
#content > section {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 15px 0 15px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}
button {
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka",
        Verdana, Arial, Helvetica, sans-serif;
    cursor: pointer;
}
button.submit {
    border: 1px solid #c6c6c6;
    line-height: 1em;
    padding: 5px 20px;
    font-weight: bold;
    border-radius: 3px;
    background: linear-gradient(to bottom, #fff, #f0f0f0);
}
/* タイトル */
h3 {
    clear: both;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    margin-bottom: 15px;
    padding-left: 40px;
}
h3 span.sub {
    font-size: 11px;
}
h3 span.icon {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    left: 0px;
}
h3 span.icon.new {
    background: url(../../img/user/iconTit.png) no-repeat 0px 0px;
}
h3 span.icon.recommend {
    background: url(../../img/user/iconTit.png) no-repeat -30px 0px;
}
h3 span.icon.folder {
    background: url(../../img/user/iconTit.png) no-repeat -60px 0px;
}
h3 span.icon.ch {
    background: url(../../img/user/iconTit.png) no-repeat -90px 0px;
}
h3 span.icon.info {
    background: url(../../img/user/iconTit.png) no-repeat -120px 0px;
}
h3 span.icon.person {
    background: url(../../img/user/iconTit.png) no-repeat -150px 0px;
}
h3 span.icon.play {
    background: url(../../img/user/iconTit.png) no-repeat -180px 0px;
}
h3 span.icon.favorite {
    background: url(../../img/user/iconTit.png) no-repeat -210px 0px;
}
h3 span.icon.inquiry {
    background: url(../../img/user/iconTit.png) no-repeat -240px 0px;
}
h3 span.icon.message {
    background: url(../../img/user/iconTit.png) no-repeat -270px 0px;
}
h3 span.icon.dlList {
    background: url(../../img/user/iconTit.png) no-repeat -300px 0px;
}
h3 span.icon.cList {
    background: url(../../img/user/iconTit.png) no-repeat -330px 0px;
}
h3 span.icon.unview {
    background: url(../../img/user/iconTit.png) no-repeat -360px 0px;
}
h3 span.icon.timetable {
    background: url(../../img/user/iconTit.png?2022090600) no-repeat -390px 0px;
}
h4 {
    clear: both;
    color: #333;
    font-weight: bold;
    border-left: 4px solid #4b4b4b;
    padding: 2px 0px 0px 10px;
    font-size: 15px;
    max-height: 20px;
    line-height: 20px;
    margin-bottom: 15px;
}
.movieList.hr140.new h4 {
    font-size: 13px;
    padding: 0 0 0 6px;
    max-height: 16px;
    line-height: 16px;
}
h4 .sub {
    font-size: 12px;
}
a h4 {
    text-decoration: none;
    display: block;
    overflow: hidden;
}
a:hover h4 {
    color: #333;
}
a.bgBlue {
    clear: both;
    margin-top: 10px;
    text-align: center;
    font-size: 11px;
    color: #333;
    background: #f9f9f9;
    border: 1px solid #e4e4e4;
    padding: 2px 4px;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    line-height: 1.4em;
}
a.bgBlue:hover {
    background: #e4e4e4;
}
h5 {
    clear: both;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
}
h5 span.sub {
    font-size: 10px;
    font-weight: normal;
}
/* お知らせリスト */
.infoList {
    max-height: 114px;
    overflow: auto;
    margin-bottom: 15px;
}
.infoList li {
    clear: both;
    line-height: 1.4em;
    padding-bottom: 5px;
    overflow: auto;
}
.infoList li span.date {
    float: left;
    margin-right: 10px;
}
.infoList li span.all {
    background: #3898c3;
    color: #fff;
    width: 30px;
    display: inline-block;
    text-align: center;
    font-size: 10px;
    margin-left: 5px;
}
.infoList li span.ch {
    background: #7d7d7d;
    color: #fff;
    width: 30px;
    display: inline-block;
    text-align: center;
    font-size: 10px;
    margin-left: 5px;
}
.infoList li span.content {
    float: left;
    width: 780px;
}
#home .infoList li span.content {
    width: 640px;
}
.infoList a {
    display: block;
}
/* 動画リスト 共通設定 */
.movieList:after {
    content: "";
    clear: both;
    display: block;
}
.movieList li {
    float: left;
    font-size: 12px;
    position: relative;
}
.movieList a {
    display: block;
    text-decoration: none;
    line-height: 1.6em;
}
.movieList span.thumb {
    position: relative;
    background-color: #000;
    text-align: center;
    margin: 0 auto 5px auto;
    overflow: hidden;
    display: block;
}
.thumb .table {
    display: table;
    width: 100%;
    height: 100%;
}
.thumb .tc {
    display: table-cell;
    vertical-align: middle;
}
.movieList li span.thumb .icon {
    display: none;
}
.movieList li.lock span.thumb .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    background: url(../../img/user/iconLock.png) no-repeat center center;
}
.movieList span.thumb .time {
    position: absolute;
    background: #000;
    text-decoration: none;
    color: #fff;
    bottom: 0px;
    right: 0px;
    padding: 3px 5px 1px 5px;
    line-height: 1em;
    height: 12px;
    white-space: nowrap;
    font-size: 10px;
    border-radius: 3px 0 0 0;
}
.movieList span.tit {
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    max-height: 2.6em;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.movieList.vr200 span.tit {
    display: block;
    overflow: visible;
    max-height: none;
}
/*Firefoxだけに適用されるCSSハック*/
@-moz-document url-prefix() {
    .movieList span.tit {
        position: relative;
        display: block;
    }
    .movieList span.tit:before,
    .movieList span.tit:after {
        background: #fff;
        position: absolute;
    }
    .movieList.vr200 span.tit:before,
    .movieList.vr200 span.tit:after {
        display: none;
    }
    .movieList span.tit:before {
        content: "…";
        top: 19px;
        right: 1px;
        padding: 0 3px;
    }
    .movieList span.tit:after {
        content: "";
        height: 100%;
        width: 100%;
    }
    /*検索結果一覧への対応*/
    .movieList.search li:nth-child(2n + 1) span.tit:before,
    .movieList.search li:nth-child(2n + 1) span.tit:after {
        background: #f9f9f9;
    }
}
/*IE10以降に適用されるCSSハック*/
@media all and (-ms-high-contrast: none) {
    .movieList span.tit {
        position: relative;
        display: block;
    }
    .movieList span.tit:before,
    .movieList span.tit:after {
        background: #fff;
        position: absolute;
    }
    .movieList.vr200 span.tit:before,
    .movieList.vr200 span.tit:after {
        display: none;
    }
    .movieList span.tit:before {
        content: "…";
        top: 19px;
        right: 1px;
        padding: 0 3px;
    }
    .movieList span.tit:after {
        content: "";
        height: 100%;
        width: 100%;
    }
    /*検索結果一覧への対応*/
    .movieList.search li:nth-child(2n + 1) span.tit:before,
    .movieList.search li:nth-child(2n + 1) span.tit:after {
        background: #f9f9f9;
    }
}
.linkList .titG:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../../img/user/iconTitG.png) center center;
    vertical-align: middle;
    margin-right: 3px;
}
.titG:after {
    content: "｜";
    color: #666;
}
.movieList span.mInfo,
.movieList span.date,
.movieList span.playTimes,
.movieList span.name {
    display: block;
    color: #999999;
    overflow: hidden;
    max-height: 16px;
    line-height: 1.6em;
}
/* 動画リスト 横並び */
/* チャプター表示126px */
.movieList.chap126 li {
    margin: 0 35px 20px 0;
    position: relative;
    border: 1px solid #fff;
}
.movieList.chap126 li a {
    width: 120px;
    padding: 3px;
    min-height: 126px;
}
.movieList.chap126 li:hover {
    background: #eef7f3;
}
.movieList.chap126 li.bkColor {
    background: #cae6db;
}
.movieList.chap126 li.bkColor:hover {
    background: #cae6db;
}
.movieList.chap126 li:last-child {
    margin-right: 0;
}
.movieList.chap126 span.tit {
    font-size: 12px;
}
.movieList.chap126 span.thumb {
    width: 120px;
    height: 67px;
}
.movieList.chap126 span.thumb img {
    max-width: 122px;
    max-height: 69px;
}
.movieList.chap126 span.tit {
    max-height: 48px;
    margin-bottom: 0px;
}
.movieList.chap126 li .iconNext {
    position: absolute;
    display: block;
    width: 15px;
    height: 28px;
    background: url(../../img/user/iconNext.png) left top no-repeat;
    top: 20px;
    right: -27px;
}
/* 動画リスト TOP新着 */
/* 幅290px */
.movieList.hr290 li {
    width: 288px;
}
.movieList.hr290 span.thumb {
    width: 288px;
    height: 162px;
    overflow: hidden;
}
.movieList.hr290 span.thumb img {
    max-width: 290px;
    max-height: 164px;
}
/* 動画リスト TOP右カラム5つ横並び */
/* 幅164px */
.movieList.hr140 li {
    width: 140px;
    margin: 0 12px 15px 0;
}
.movieList.hr140 span.thumb {
    width: 140px;
    height: 79px;
}
.movieList.hr140 span.thumb img {
    max-width: 142px;
    max-height: 81px;
}
/* 動画リスト 横並び */
/* 幅164px */
.movieList.hr164 li {
    width: 164px;
    margin: 0 16px 15px 0;
}
.movieList.hr164 span.thumb {
    width: 164px;
    height: 93px;
}
.movieList.hr164 span.thumb img {
    max-width: 166px;
    max-height: 95px;
}
/* 動画リスト 横並び */
/* 幅215px */
.movieList.hr210 li {
    width: 210px;
    min-height: 210px;
    margin: 0 16px 20px 0;
}
.movieList.hr210 span.thumb {
    width: 210px;
    height: 118px;
}
.movieList.hr210 span.thumb img {
    max-width: 212px;
    max-height: 120px;
}
/* 動画リスト 縦並び */
/* 幅200px */
.movieList.vr200 {
    margin-bottom: 20px;
}
.movieList.vr200 > li {
    /* margin-bottom:15px; */
    width: 100%;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
}
.movieList.vr200 > li:nth-child(odd) {
    background: #f9f9f9;
}
.movieList.vr200 > li.checked {
    background: #ffc;
}
.movieList.vr200 > li.flexbox {
    display: flex;
    flex-direction: row;
}
.movieList.vr200 > li.flexbox .input-radio-area {
    display: flex;
    align-items: center;
    min-width: 24px;
    width: 24px;
}
.movieList.vr200 > li.flexbox .thumb-area {
    min-width: 200px;
    width: 200px;
    margin-right: 10px;
}
.movieList.vr200 > li.flexbox .info-area {
    min-width: 0;
}
.movieList.vr200 span.thumb {
    float: left;
    width: 200px;
    height: 113px;
}
.movieList.vr200 .thumb .txt {
    width: 200px;
    height: 113px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    font-size: 1.2em;
    line-height: 1.8;
}
.movieList.vr200 span.tc {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 200px;
    height: 113px;
}
.movieList.vr200 span.thumb img {
    max-width: 202px;
    max-height: 115px;
}
.movieList.vr200 .info {
    padding: 0 0 0 215px;
}
/* チェックボックスつき */
.movieList.vr200.checkBox .info {
    padding: 0 0 0 250px;
}
/* 公開非公開アイコンつき */
.movieList.vr200.openStatusIcon .info {
    padding: 0 0 0 250px;
}
.movieList.vr200.openStatusIcon .info table td {
    padding: 0 0 0 15px;
}
.movieList.vr200 span.tit {
    font-size: 15px;
    line-height: 1.4em;
    max-height: none;
}
/* 動画リスト 縦並び */
/* 幅100px */
.movieList.vr100 li {
    margin-bottom: 15px;
    font-size: 11px;
    width: 100%;
}
.movieList.vr100 span.thumb {
    float: left;
    width: 100px;
    height: 57px;
}
.movieList.vr100 span.tc {
    display: table-cell;
    vertical-align: middle;
    width: 100px;
    height: 57px;
}
.movieList.vr100 span.thumb img {
    max-width: 102px;
    max-height: 59px;
}
.movieList.vr100 .info {
    padding: 0 0 0 110px;
}
/* 動画リスト 縦並び 検索結果用*/
/* 幅100px */
.movieList.vr100.search li {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    box-sizing: border-box;
}
.movieList.vr100.search span.tit {
    margin: 0 0 10px 0;
}
.movieList.vr100.search li:nth-child(odd) {
    background: #f9f9f9;
}
.movieList.vr100.search {
    margin-bottom: 20px;
}
.movieList .file {
    height: 100%;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #ddd;
}
.movieList .file.txt {
    background-image: url(../../img/user/iconTxt_40.png);
}
.movieList .file.pdf {
    background-image: url(../../img/user/iconPdf_40.png);
}
.movieList .file.mp3 {
    background-image: url(../../img/user/iconMp3_40.png);
}
.movieList .file.doc,
.movieList .file.docx {
    background-image: url(../../img/user/iconDoc_40.png);
}
.movieList .file.xls,
.movieList .file.xlsx {
    background-image: url(../../img/user/iconXls_40.png);
}
.movieList .file.zip {
    background-image: url(../../img/user/iconZip_40.png);
}
.movieList .file.ppt,
.movieList .file.pptx {
    background-image: url(../../img/user/iconPpt_40.png);
}
.movieList .file.img {
    background-image: url(../../img/user/iconImg_40.png);
}
/* 動画リスト 右端マージン解除 */
ul.movieList.hr164 li:nth-child(5n),
ul.movieList.hr140 li:nth-child(5n),
ul.movieList.hr210 li:nth-child(4n),
ul.movieList.box2 li:nth-child(2n),
ul.movieList.box3 li:nth-child(3n) {
    margin-right: 0px;
}
ul.movieList.hr164 li:nth-child(5n + 1),
ul.movieList.hr140 li:nth-child(5n + 1),
ul.movieList.hr210 li:nth-child(4n + 1),
ul.movieList.box2 li:nth-child(2n + 1),
ul.movieList.box3 li:nth-child(3n + 1) {
    clear: both;
}
#favorite input[type="checkbox"] {
    display: inline;
    border: none;
    position: static;
    filter: alpha(opacity=100);
    opacity: 1;
    margin: 0 10px 0 0;
}
#favorite .movieList input[type="checkbox"] {
    clear: both;
    float: left;
    margin: 40px 10px 0 0;
}
/*-------------------------------------------------
footer
-------------------------------------------------*/
footer {
    clear: both;
    text-align: center;
    font-size: 10px;
    color: #797979;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    height: 40px;
    line-height: 40px;
    background: #fff;
}
/*-------------------------------------------------
ログイン前レイアウト
-------------------------------------------------*/
body#login,
#login header {
    min-width: 485px;
}
/* 最小幅設定 */
#login header > div,
#login div#layout > div {
    width: 485px;
    margin: 0 auto;
}
#login div#layout > div {
    padding: 50px 0;
}
#login input[type="text"],
#login input[type="url"],
#login [type="password"],
#login input[type="file"],
#login input[type="email"],
#login select,
#login textarea {
    width: 433px;
}
#login input.mSize {
    width: 198px;
    display: inline-block;
    margin-right: 5px;
}
#login input.sSize {
    width: 78px;
    display: inline-block;
    margin-right: 5px;
}
#login h2 {
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}
#login header ul {
    border-left: none;
    margin-top: 20px;
    height: auto;
    padding-left: 0;
}
#login #layout ul {
    margin-left: 13px;
    padding-left: 3px;
}
#login #layout ul li {
    list-style: disc inside;
    line-height: 1.4em;
    text-indent: -15px;
    margin-bottom: 10px;
}
#login #birthday.errorLine {
    background: none;
}
#login #birthday.errorLine input[type="text"] {
    background-color: #ffeee6;
    border: 1px solid #ff7e3e;
}
#login header hgroup,
#login header hgroup > * {
    float: none;
    display: block;
}
#login .header__flexContainer {
    justify-content: center;
    position: relative;
}
#login .utility {
    position: absolute;
    top: 100%;
    right: 0;
}
#login h3 {
    padding: 10px;
    margin: -16px -16px 5px -16px;
    background: #999;
    color: #fff;
    border-radius: 6px 6px 0 0;
}
.loginType {
    border-radius: 6px;
    position: relative;
    margin-bottom: 20px;
    padding: 15px 15px 0 15px;
    background: #fff;
    border: 1px solid #999;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.centerBlock {
    margin-left: auto;
    margin-right: auto;
}
table.gray {
    border: 1px solid #ccc;
    width: 100%;
    line-height: 1.4em;
}
table.gray td,
table.gray th {
    border: 1px solid #ccc;
    padding: 0.5em 1em;
    vertical-align: middle;
}
table.gray th {
    background: #efefef;
}
table.gray .basicBtn.edit,
.basicBtn.del {
    margin-bottom: 0;
}

.msgList table.gray {
    border-right: none;
    border-left: none;
}
.msgList table.gray td,
.msgList table.gray th {
    border-right: none;
    border-left: none;
    padding: 1em 0.8em;
    line-height: 1.6em;
}
.msgList table.gray th {
    text-align: left;
}
.flg1 td {
    background: #ffc !important;
}
.msgDetail table.gray td {
    padding: 1em;
    line-height: 1.8em;
}
p.gray {
    color: #999999;
}
.postMsg {
    margin-left: 5px;
    background: url(../../img/user/iconMail.png) no-repeat left center;
    padding-left: 23px;
    display: inline-block;
}
span.dspLink {
    cursor: pointer;
    color: #007fbf;
    text-decoration: underline;
}
/*-------------------------------------------------
グループ動画
-------------------------------------------------*/
.groupIcon {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    background: url(../../img/user/iconGmovie.png) no-repeat 0px 0px;
}
/*-------------------------------------------------
お問い合わせ
-------------------------------------------------*/
.inquiryStatus0,
.inquiryStatus1,
.inquiryStatus2,
.inquiryStatus3 {
    background: #3898c3;
    color: #fff;
    width: 4em;
    white-space: nowrap;
    line-height: 1.2em;
    padding: 4px 10px;
    display: inline-block;
    text-align: center;
    font-size: 10px;
}
.inquiryStatus0 {
    /*送信済み（管理者未対応）*/
    background: #9c0;
}
.inquiryStatus1 {
    /*返信あり*/
    background: #ff0000;
}
.inquiryStatus2 {
    /*送信済み*/
    background: #9c0;
}
.inquiryStatus3 {
    /*解決済み*/
    background: #ccc;
}
/*-------------------------------------------------

動画の管理

-------------------------------------------------*/
.iconOpen0,
.iconOpen1,
.iconOpen2,
.iconOpen3,
.iconOpen4 {
    display: block;
    width: 38px;
    height: 36px;
    float: left;
    margin: 40px 10px 0 0;
}
.iconOpen0 {
    background: url(../../img/user/iconOpenStatus0.png) no-repeat left center;
}
.iconOpen1 {
    background: url(../../img/user/iconOpenStatus1.png) no-repeat left center;
}
.iconOpen2 {
    background: url(../../img/user/iconOpenStatus2.png) no-repeat left center;
}
.iconOpen3 {
    background: url(../../img/user/iconOpenStatus3.png) no-repeat left center;
}
.iconOpen4 {
    background: url(../../img/user/iconOpenStatus4.png) no-repeat left center;
}
/*-------------------------------------------------
FAQ
-------------------------------------------------*/
.questionTxt {
    padding: 10px 0 0 35px;
    font-size: 16px;
    margin-top: 5px;
    min-height: 25px;
    background: url(../../img/user/iconQ.png) no-repeat 2px 5px;
}
.answerTxt {
    padding: 5px 0 0 35px;
    font-size: 13px;
    min-height: 25px;
    margin-bottom: 15px;
    background: url(../../img/user/iconA.png) no-repeat 2px 5px;
}
/*-- 添付ファイル --*/
ul.fileInfo {
    overflow: auto;
    margin-bottom: 15px;
    max-height: 130px;
}
ul.fileInfo li {
    line-height: 2em;
    padding-left: 28px;
}
ul.fileInfo li img {
    vertical-align: middle;
}
ul.fileInfo li.img {
    background: url(../../img/user/iconImg.png) no-repeat left center;
}
ul.fileInfo li.txt {
    background: url(../../img/user/iconTxt.png) no-repeat left center;
}
ul.fileInfo li.pdf {
    background: url(../../img/user/iconPdf.png) no-repeat left center;
}
ul.fileInfo li.mp3 {
    background: url(../../img/user/iconMp3.png) no-repeat left center;
}
ul.fileInfo li.doc,
ul.fileInfo li.docx {
    background: url(../../img/user/iconDoc.png) no-repeat left center;
}
ul.fileInfo li.xls,
ul.fileInfo li.xlsx {
    background: url(../../img/user/iconXls.png) no-repeat left center;
}
ul.fileInfo li.zip {
    background: url(../../img/user/iconZip.png) no-repeat left center;
}
ul.fileInfo li.ppt,
ul.fileInfo li.pptx {
    background: url(../../img/user/iconPpt.png) no-repeat left center;
}
ul.fileInfo li a {
    margin-right: 5px;
}
/*-- 添付ファイル --*/
.fileUserInfo {
    overflow: auto;
    margin-bottom: 20px;
    max-height: 130px;
    background: #f0f0f0;
    padding: 10px;
}
.fileUserInfo li {
    line-height: 1.4em;
    padding-left: 28px;
    margin-bottom: 10px;
}
.fileUserInfo img {
    vertical-align: middle;
}
.fileUserInfo .img {
    background: url(../../img/user/iconImg.png) no-repeat left center;
}
.fileUserInfo .txt {
    background: url(../../img/user/iconTxt.png) no-repeat left center;
}
.fileUserInfo .pdf {
    background: url(../../img/user/iconPdf.png) no-repeat left center;
}
.fileUserInfo .mp3 {
    background: url(../../img/user/iconMp3.png) no-repeat left center;
}
.fileUserInfo .doc,
.fileUserInfo .docx {
    background: url(../../img/user/iconDoc.png) no-repeat left center;
}
.fileUserInfo .xls,
.fileUserInfo .xlsx {
    background: url(../../img/user/iconXls.png) no-repeat left center;
}
.fileUserInfo .zip {
    background: url(../../img/user/iconZip.png) no-repeat left center;
}
.fileUserInfo .ppt,
.fileUserInfo .pptx {
    background: url(../../img/user/iconPpt.png) no-repeat left center;
}
.fileUserInfo a {
    margin-right: 5px;
}
/*-------------------------------------------------
コンテンツプロパティ項目を囲む枠
-------------------------------------------------*/
.movieProperty {
    display: table;
    border-collapse: separate;
    border-spacing: 0 3px;
    margin-top: -3px;
    color: #888;
}
.movieProperty dl {
    display: table-row;
}
.movieProperty dt,
.movieProperty dd {
    display: table-cell;
    vertical-align: middle;
    padding: 3px 5px 1px 5px;
    line-height: 1.2;
    font-size: 0.9em;
}
.movieProperty dt {
    background: #eee;
    border-radius: 3px;
    text-align: center;
    word-break: break-all;
    white-space: nowrap;
}
/*-------------------------------------------------
グループコンテンツのコンテンツリスト
-------------------------------------------------*/
.contentName li {
    float: none;
    padding-left: 15px;
    line-height: 1.6;
    position: relative;
}
.contentName li:before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
/*-------------------------------------------------
バナーリスト
-------------------------------------------------*/
.banList {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    padding-top: 20px;
}
.banList li {
    margin-bottom: 20px;
}
.banList a {
    display: block;
}
.banList img {
    width: 100%;
}
.movieList .thumb .live {
    position: absolute;
    text-decoration: none;
    top: 0;
    left: 0;
    border: 1px solid #ff7e3e;
    background: #fff;
}
.movieList .thumb .live .tip,
.movieList .thumb .live .dspStatus {
    display: block;
    float: left;
    padding: 0.2em 0.4em;
    white-space: nowrap;
    line-height: 1;
}
.movieList .thumb .live .tip {
    color: #fff;
    font-size: 10px;
}
.movieList .thumb .live .dspStatus {
    font-size: 9px;
}
.movieList .thumb .live.status1 {
    border-color: #ffc733;
} /*配信前*/
.movieList .thumb .live.status2 {
    border-color: #ff7e3e;
} /*配信中*/
.movieList .thumb .live.status3 {
    border-color: #ccc;
} /*配信終了*/
.movieList .thumb .live.status4 {
    border-color: #b7c99e;
} /*待機中*/

.movieList .thumb .live.status1 .tip {
    background: #ffc733;
} /*配信前*/
.movieList .thumb .live.status2 .tip {
    background: #ff7e3e;
} /*配信中*/
.movieList .thumb .live.status3 .tip {
    background: #ccc;
} /*配信終了*/
.movieList .thumb .live.status4 .tip {
    background: #b7c99e;
} /*待機中*/

.movieList .thumb .live.status1 .dspStatus:before {
    content: "配信前";
} /*配信前*/
.movieList .thumb .live.status2 .dspStatus:before {
    content: "配信中";
} /*配信中*/
.movieList .thumb .live.status3 .dspStatus:before {
    content: "配信終了";
} /*配信終了*/
.movieList .thumb .live.status4 .dspStatus:before {
    content: "待機中";
} /*待機中*/

.movieList .thumb .live.status1 .dspStatus {
    color: #ffc733;
} /*配信前*/
.movieList .thumb .live.status2 .dspStatus {
    color: #ff7e3e;
} /*配信中*/
.movieList .thumb .live.status3 .dspStatus {
    color: #ccc;
} /*配信終了*/
.movieList .thumb .live.status4 .dspStatus {
    color: #b7c99e;
} /*待機中*/

.movieList.hr290 .thumb .live .tip {
    font-size: 13px;
}
.movieList.hr290 .thumb .live .dspStatus {
    font-size: 12px;
}
/*-------------------------------------------------
thumbnail内のメタデータ ※モダンコーディング用
-------------------------------------------------*/
.thumbnail .icon {
    display: none;
}
.lock .thumbnail .icon {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../../img/user/iconLock.png) no-repeat center center;
}
.thumbnail .time {
    position: absolute;
    background: #000;
    text-decoration: none;
    color: #fff;
    bottom: 0px;
    right: 0px;
    padding: 3px 5px 1px 5px;
    line-height: 1em;
    height: 12px;
    white-space: nowrap;
    font-size: 10px;
    border-radius: 3px 0 0 0;
}
/*-------------------------------------------------
iconImportant
-------------------------------------------------*/
.iconImportantSt0 {
    opacity: 0.2;
}
.iconImportantSt1 {
    fill: #ff0000;
}
.iconImportantSt2 {
    fill: #ffffff;
}

.iconImportantParent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.iconImportant {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 28px;
    height: 28px;
}
.iconImportantLeft {
    position: absolute;
    top: -7px;
    left: 188px;
    width: 28px;
    height: 28px;
}
/*-------------------------------------------------
alertImportantContent
-------------------------------------------------*/
.alertImportantContent {
    border: 2px solid #ff0000;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 3px;
    padding: 0.5em 1em;
    margin-bottom: 1em;
    color: #ff0000;
}
.alertImportantContent svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 0.25em;
}
.alertImportantContent a {
    color: #ff0000;
    font-weight: bold;
}
.alertImportantContent a:hover {
    opacity: 0.6;
}
