body {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
    background-image: url(/img/parts/00135.jpg);
    background: #d2d2d2;
}

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

a:hover {
    color: #00BCD4;
}

.link_p a {
    color: #007bbb;
}
.link_p a:hover {
    color: #00BCD4;
}


.header {
  height: 80px;
    padding: 20px;
    margin: 0px auto;
    border-top: 10px double #0020ff;
    background: #000840;
}
.header a{
  color:#fff;
}

.header .header_main {
    max-width: 1280px;
    margin: 0px auto;
}

.header div.header_logo {
  display: none;
  vertical-align: bottom;
}

.header h1 {
    margin: 0;
    display: inline-block;
}

.header h1 a {
    color: #fff;
    text-decoration: none;
}




.header div.logout {
    margin: 0;
    float: right;
}

div.logout button {
    font-size:14px;
    color:#555555;
    background: #dfdfdf;
    border-radius: 4px;
    padding: 6px 10px;
    border:none;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
/*
background: #ffaaaa;
background: -moz-linear-gradient(top, #ffaaaa 0%, #ff5e5e 100%);
background: -webkit-linear-gradient(top, #ffaaaa 0%,#ff5e5e 100%);
background: linear-gradient(to bottom, #ffaaaa 0%,#ff5e5e 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffaaaa', endColorstr='#ff5e5e',GradientType=0 );
*/
}

div.logout button:hover {
    color:#222222;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.4);
    position:relative;
    top:-1px;

background: #ffdddd;
background: -moz-linear-gradient(top, #ffdddd 0%, #ff9191 100%);
background: -webkit-linear-gradient(top, #ffdddd 0%,#ff9191 100%);
background: linear-gradient(to bottom, #ffdddd 0%,#ff9191 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffdddd', endColorstr='#ff9191',GradientType=0 );
}

div.header_menu {
  float: right;
}

div.counsel_menu {
  display: inline-block;
}
div.counsel_menu p {
  padding: 6px 10px;
  margin: 0px;
}
/*ハンバーガーメニューCSS------------------------------------------------------------*/

  #nav {
  position: relative;
}
#nav a{
  color:#fff;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
@media screen and (max-width: 767px) {
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
  margin-top:1px;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 50%;/*右側に隙間を作る（閉じるカバーを表示）*/
  height: 100%;
  background: ##333333;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
#nav #nav-content ul li {
    width: 100%;
    font-size: 18px;
    display: block;
}
}
/*ハンバーガーメニューCSSend---------------------------------------------------------*/

#nav {
  margin: 0 auto;
  max-width: 1280px;
  position: fixed;
  z-index: 999;
}

#nav ul {
  padding:0;
  margin:0;
  list-style-type: none;
}
#nav ul li {
  width:60%;
  float:left;
  padding:0;
  margin:0;
  text-align:center;
}
#nav ul li a {
  width:auto;
  color:#fff;
  font-size:18px;
  font-weight:bold;
  text-shadow:0 -1px 0px #333,0 1px 0px #555;
  padding:10px 0;
  text-decoration:none;
  display:block;
  background:#000000bf;
  box-shadow: 1px 0px 0px rgba(225,225,225,0) inset,
       -1px 0px 0px rgba(225,225,225,0) inset,
        0px 1px 1px rgba(0,0,0,0.1) inset,
        0px -1px 1px rgba(0,0,0,0.3) inset,
        0px 1px 3px #fff;
}

#nav ul li a:hover {
  background:#555;
  background-image: -moz-linear-gradient(top, #555 0%, #444 50%, #333 50%, #444 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #555), color-stop(0.50, #444), color-stop(0.50, #333), color-stop(1, #444));
  box-shadow: 1px 0px 0px rgba(225,225,225,0) inset,
			 -1px 0px 0px rgba(225,225,225,0) inset,
			  0px 1px 1px rgba(0,0,0,0.1) inset,
			  0px -1px 1px rgba(0,0,0,0.3) inset,
			  0px 1px 3px #666;
}

#main {
    margin: 0px;
    background:#212121;
    background-size: 100%;
    clear: both;
}

#main #main_content {
  margin: 0 auto;
}

#footer {
    background-color: #000840;
    padding: 20px 0px;
    border-top: 5px solid #0020ff;
}

#footer #footer_main {
  max-width: 1280px;
  margin: auto;
  color:#fff;
}

#footer ul {
    list-style: none;
    text-align: center;
}

#footer ul li {
    display: inline-block;
}

#footer_title {
    display: inline-block;
    float: left;
}
#footer_title p {
    margin: 0px 0px 0px 100px;
}

#footer_nav {
    width: 70%;
    margin: auto;
    margin-top: 40px;
    font-size: 16px;
}
#footer_nav a{
  color: #fff;
}
/* footer_banner */
#footer_banner {
    text-align: center;
    width: 100%;
    margin: auto;
}
#footer_banner img {
    width: 440px;
    border-radius: 16px;
}
.footer_banner_title{
  color:#fff;
}
@media screen and (max-width: 440px) {
  #footer_banner img {
      width: 320px;
      border-radius: 8px;
  }
}

#copyright {
    text-align: center;
}

#copyright p {
  margin: 0px;
  background: #333333;
  color: #cccccc;
}

div#pagetop_btn {
  height: 0px;
  position: relative;
}
#pagetop_btn img {
  position: absolute;
  top: 0;
  height: 100px;
  left: 0;
  right: 0;
  bottom: 60px;
  margin: auto;
}

h2 {
  display: inline-block;
border-bottom: 4px solid #0020ff;
}

div#h2_icon {
  display:none;
}
div#h2_icon img {
  width: 50px;
}

h4 a {
    color: #fff;
}

input#search {
  border-radius: 10px;
}

input#search_submit {
    border-radius: 4px;
    border: 1px solid #cccccc;
    background: #F3F3F3;
}
input#search_submit:hover {
    background: #cccccc;
}

p.done {
    color: #efefef;
    background: #2196F3;
    text-align: center;
    border-radius: 2px;
        text-shadow: 1px 1px 1px #cccccc;
}

p.undone {
    color: #333333;
    background: #cccccc;
    text-align: center;
    border-radius: 2px;
        text-shadow: 1px 1px 1px #aaaaaa;
}

p.btn {
width:200px;
height: 60px;
border:1px solid #cccccc;
padding:1px;
border-radius:4px;
}

p.btn.btn_off {
top: -6px;
box-shadow: 0px 6px 0px #929292;
position: relative;
}
p.btn.btn_on {
top: -6px;
box-shadow: 0px 6px 0px #00a02b;
position: relative;
}

p.btn input {
  width:200px;
  height: 60px;
  font-size: 24px;
  border-radius:2px;
  border:none;
  font-weight:bold;
  -webkit-appearance: none;
}
input.btn_off {
background: #E5E5E5;
      color: #fefefe;
}
input.btn_off:hover,
input.btn_off:focus {
background: #cccccc;
    color: #333333;
}
input.btn_on {
background:#00da39;
  color:#eeeeee;
}
input.btn_on:hover,
input.btn_on:focus {
background:#00f941;
    color: #333333;
}

.status p.done,
.status p.undone {
  width:100px;
}
.status_title p.done,
.status_title p.undone {
  width:56px;
}
.moviecontent_main p.done,
.moviecontent_main p.undone {
  width:100px;
}
.movie_contentpage_status p.done {
    width: 100px;
    height: 40px;
    line-height: 32px;
    font-size: 18px;
    border: 4px groove #002bff;
    box-sizing: border-box;
}

.movie_contentpage_status p.undone {
    width: 100px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
}
img.thumbnail_img {
    width: 480px;
    height: 270px;
}

.contentpage_categoryall .status {
    padding: 10px;
    border-bottom: 2px solid #CCCCCC;
    margin-bottom: 10px;
}
.content_status img.thumbnail_img {
  width: 360px;
  height: 202.5px;
}

.content_status .status {
    margin: 0px 0px 10px 20px;
    padding: 10px 0px;
    border-top: 2px solid #CCCCCC;
    width: 30%;
    display: inline-block;
    vertical-align: top;
}

.status h4 {
  margin: 2px 0px;
  color: #fff;
}
.status p.user_release_date {
  margin:2px 0px;
      color: #777777;
}
.status_title p.user_release_date {
      color: #777777;
}

ul.error_list {
    border: 1px solid #FF0000;
    background-color: #FFCCCC;
    padding-top: 10px;
    padding-bottom: 10px;
}

ul.error_list li {
    color: #FF0000;
}

/* success_list */
ul.success_list {
    border: 1px solid #0000FF;
    background-color: #CCCCFF;
    padding-top: 10px;
    padding-bottom: 10px;
}

ul.success_list li {
    color: #0000FF;
}


/* testcalendar　css */
table.testcalendar {
  border: solid 1px;
  border-collapse: collapse;
  border-color: grey;
}

div.titleYm{
  text-align: center;
}

.testcalendar tr td {
  height: 100px;
  width: 100px;
  vertical-align: top;
  word-break:break-all;
}

table.testcalendar tr.calendarweek {
  background-color:#EEEEEE;
}

div td.calendar_date_today {
  background-color:#FFFF99;
}

td.calendar_date_exist {
  background-color:#FFDDDD;
}

td.calendarweek6 div.calendarday,
th.calendarweek6 {
  color:#337BFB;
}

td.calendarweek0 div.calendarday,
th.calendarweek0 {
  color:#FE0000;
}

p.outputYm {
    margin: 5px;
}

p.outputYm button {
    padding: 6px 6px 6px 6px;
}

p.outputYm button.lastmonthbutton {
    margin-right: 10px;
}

p.outputYm button.nextmonthbutton {
    margin-left: 10px;
}

tr td div.calendartext {
    font-size: 8px;
}

tr td div.calendarbutton {
  text-align: center;
}

tr td div.calendarbutton button {
    padding: 6px 6px 6px 6px;
    background-color: #efefef;
    border-radius: 0.5em;
}

div.calendar_accent p {
    font-size: 14px;
}

div.calendar_accent p span {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 3px 3px 0 3px;
    position: relative;
    top: 2px;
}

@media screen and (max-width: 767px) {
table.testcalendar {
  width: 100%;
  border:none;
}

table.testcalendar tr td {
  width:100%;
  float:left;
  border-color: #F8F8F8;
  border-bottom:none;
  height: 100%;
}
table.testcalendar tr.calendarweek {
  display:none;
}
table.testcalendar tr td.calendarnone {
  display:none;
}

table.testcalendar {
  border-left: none;
  border-right: none;
}

table.testcalendar tr {
  border-left: none;
  border-right: none;
}

table.testcalendar tr td {
  border-left: none;
  border-right: none;
}

div td.calendar_date_none {
  height: 50px;
}

tr td div.calendarbutton button {
  width: 80%;
  padding: 12px 6px 12px 6px;
  font-size: 18px;
  font-weight: bold;
}

tr td div.calendartext {
    font-size: 12px;
}

}

/* calendar */
div.calendar_main {
  padding: 40px 0px 120px;
}
div.calendar_main iframe  {
  width: 98%;
  height: 800px;
  background:#fff;
}
div.calendar_sub_area {
    margin: auto;
    text-align: center;
    font-weight: bold;
}

/* mailform　css */
div.mailform-body {
  max-width:768px;
  margin-left: auto;
  margin-right: auto;
}

div.mailform-body-head {
  text-align: center;
}

h2.mailform-h2 {
    text-align: center;
    background-color: #EEEEEE;
    border: solid 1px #333333;
}

div.mailform-title {
    text-align: center;
    color: red;
}

p.mailform-submit {
    text-align: center;
}

p.mailform-submit input {
    margin: 5px;
    width: 100px;
    height: 50px;
}

table.mailform_table {
  width:768px;
    border: solid 1px;
 border-collapse: collapse;
 border-color: grey;
 margin-left: auto;
 margin-right: auto;
}
table.mailform_table th {
  width:30%;
  text-align:left;
  padding:10px;
    border: solid 1px;
 border-collapse: collapse;
 border-color: grey;
 background-color:#eeeeee;
}
table.mailform_table td {
  width:70%;
  padding:10px;
    border: solid 1px;
 border-collapse: collapse;
 border-color: grey;
}
table.mailform_table td li {
list-style-type: none;
}
table.mailform_table td ol {
padding:4px;
text-align: left;
}

@media screen and (max-width: 767px) {
  div.mailform-body {
  }

  table.mailform_table {
    width:95%;
    border: none;
    text-align: center;
  }
  table.mailform_table tr {
    width:95%;
    display: block;
    margin-left: auto;
    margin-right: auto;

  }
  table.mailform_table th {
    width:95%;
    display: block;
    text-align: center;

  }
  table.mailform_table td {
    width:95%;
    display: block;
  }
.header .header_sentence a{
  color: #fff;
  font-size:30px;
  font-weight: bold;
}
.header .header_sentence{
  position: absolute;
  top: 45%;
  left:10%;
}
.contentmypage div.header_sentence,
#page_04 .header .header_sentence{
  left:10%;
}
}

/* contentpage　css */
div.content_main {
  padding: 0px 0px 120px;
}
div.moviecontent_main {
  padding: 40px 0px 120px;
}
div.content_main_head {
  text-align: center;
  /*background: rgba(255, 255, 255, 0.55);*/
  margin: 0px 0px 20px;
  padding: 30px 0px 60px 0px;
}
p.admin_button {
  width: 320px;
  height: 24px;
  margin: auto;
  background: #6bcefb;
  border: 6px solid #9E9E9E;
  border-radius: 6px;
  font-weight: bold;
}
p.admin_button a {
  display: block;
}
div.content_main_head img {
  max-width: 640px;
      width: 90%;
      margin: 5px auto;
}
div.content_main_head img:hover {
  -webkit-filter: grayscale(100%);
      -moz-filter: grayscale(100%);
      -o-filter: grayscale(100%);
      -ms-filter: grayscale(100%);
      filter: grayscale(50%);
      transition: 0.2s linear;
}

div.content_title_link a {
      color: #007bbb;
      font-weight: bold;
}
div.content_title_link a:hover {
    color: #00BCD4;
}

div.content_title {
  border-bottom: 4px solid #0020ff;
  margin: 0px 30px 60px;
}

div.contentpage_categoryall {
  text-align: left;
      vertical-align: middle;
      margin-left: 70px;
}

div.contentpage_categoryall div.contentpage_categorytitile {
    width: 100%;
    max-width:20%;
    border-bottom: none;
    vertical-align: top;
    margin-bottom: 50px;
}

div.contentpage_categoryall div.contentpage_categorytitile a {
  text-shadow: 0px 2px 4px #ACACAC;
  color: #F3F3F3;
  font-size: 24px;
  -webkit-transition: text-shadow 0.2s ease;
  -moz-transition: text-shadow 0.2s ease;
  -o-transition: text-shadow 0.2s ease;
  transition: text-shadow 0.2s ease;
  font-weight: bold;
}

div.contentpage_categoryall div.contentpage_categorytitile:hover a {
  color: #FCFCFC;
  text-shadow: 0px 3px 2px #000;
  font-weight: bold;
}

div.contentpage_categoryall div.contentpage_categorytitile p.categorytitile_mark {
  width: 200px;
  height: 200px;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #00ffff;
  border-radius: 100px;
  vertical-align: top;
}
div.contentpage_categoryall.category_id_new div.contentpage_categorytitile p.categorytitile_mark {
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap;
    background-image: url(/img/parts/new.png);
    background-color: transparent;
    border-radius: 0px;
}



div.contentpage_categoryall img {
  width: 256px;
  height: 144px;
}
img.thumbnail_img:hover {
  -webkit-filter: grayscale(100%);
      -moz-filter: grayscale(100%);
      -o-filter: grayscale(100%);
      -ms-filter: grayscale(100%);
      filter: grayscale(50%);
      transition: 0.2s linear;
}

div.contentpage_categoryall div.status {
    width:20%;
    border-bottom: none;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

div.movie_contentpage_movie {
  background: #333333;
  text-align: center;
}
div.movie_contentpage_movie h4 {
  color: #fff;
  background: #444444;
}
div.movie_contentpage_movie iframe {
  width: 800px;
  height: 600px;
  margin-bottom: 40px;
}
div.movie_contentpage_status{
  padding: 20px 0px;
}
div.movie_contentpage_categoryall {
    text-align: center;
    vertical-align: middle;
        border-top: 1px solid #cccccc;
}
div.movie_contentpage_categoryall div {
    text-align: left;
}

div.movie_contentpage_categoryall img {
  width: 256px;
  height: 144px;
  border-top: 1px solid #cccccc;
    padding-top: 10px;
}

div.movie_contentpage_categoryall div.status {
    width: 22%;
    border-bottom: none;
    display: inline-block;
    vertical-align: top;
    margin: 0px 0px 10px 20px;
}

div.status_title h4 {
    display: inline-block;
    margin: 4px 0px 4px 0px;
    color: #33b9ff;
    font-weight: bold;
}
div.status_title h4:hover {
    color: #007bbb;
}
div.status_title p {
    display: inline-block;
    margin: 4px 0px 4px 0px;
    color:#fff;
    text-shadow: 0px 1px 1px #000;
}
div.status_title p.p_category {
padding:0px 6px;
border-radius:6px;
}
.content_title h2 {
    display: inline-block;
    border: none;
    color: #fff;
}

.content_title_nav {
    display: inline-block;
    float: right;
    margin: 0px 50px;
}

.content_title_nav ul {
    list-style: none;
}

.content_title_nav ul li {
    display: inline-block;
    width: 100px;
}

.nav_menu_icon1{
  color: #da0000;
  display: none;
}

.nav_menu_icon2{
  color: #020e88;
  display:none;
}

ul.content_title_nav_submenu {
    position: absolute;
    padding: 15px 0px 0px;
    background: #f3f3ee;;
}

ul.content_title_nav_menu li ul#content_title_nav_submenu1,
ul.content_title_nav_menu li ul#content_title_nav_submenu2,
ul.content_title_nav_menu li ul#content_title_nav_submenu3 {
    display: none;
    z-index: 1;
        text-shadow: 1px 1px 1px #cccccc;
}
/*
ul.content_title_nav_menu li:hover ul.content_title_nav_submenu {
    display: block;
    box-shadow: 0px 10px 12px 4px #999999;
}
*/

ul.content_title_nav_menu li ul#content_title_nav_submenu1 a,
ul.content_title_nav_menu li ul#content_title_nav_submenu2 a,
ul.content_title_nav_menu li ul#content_title_nav_submenu3 a {
  color: #888401
}

.content_title_nav ul.content_title_nav_submenu li {
    display: block;
    width: auto;
    padding: 4px 15px;
}

div.categorystatus,
div.tagstatus  {
    display: inline-block;
    width: 15%;
    text-align: center;
        background-image: url(/img/parts/background.jpg);
    margin: 10px 4px;
    border-radius: 4px;
    font-weight: bold;
}
div.categorystatus:hover,
div.tagstatus:hover{
    background-image:url(/img/parts/background_hover.jpg);
}

div.tagstatus {
    display: inline-block;
    width: auto;
    padding: 5px;
}

div.content_select_head h5,
div.contentmypage_select_head h5 {
  width:9%;
  display: inline-block;
  vertical-align: top;
}

div.content_select_head,
div.contentmypage_select_head{
  text-align: center;
}

div.content_category,
div.content_tag,
div.contentmypage_category,
div.contentmypage_tag {
  width: 90%;
  display: inline-block;
  text-align: left;
  border-bottom: 1px solid #cccccc;
margin-bottom: 10px;
padding-bottom: 10px;
}

.content_category p,
.contentmypage_category p,
.content_tag p,
.contentmypage_tag p,
.tagstatus p {
    padding: 16px 0px;
    margin: 0px;
}
.movie_contentpage_status .tagstatus p {
    padding: 0px;
}
.movie_contentpage_status h4.movie_contentpage_status_tag {
  margin-bottom: 0px;
}
.content_category a,
.contentmypage_category a{
  color: #fff;
  text-shadow: 0px 1px 1px #000;
}

.status_ratio {
  display: inline-block;
}
.status_ratio p {
  font-weight: bold;
      font-size: 26px;
      padding: 10px;
      margin: 10px;
}

div.content_head1 p,
div.content_head1 form,
div.contentmypage_head1 p,
div.contentmypage_head1 form {
    display:inline-block;
}
div.content_head1,
div.contentmypage_head1 {
    text-align:center;
}
div.content_head2,
div.contentmypage_head2 {
    text-align:center;
}
div.content_head2 p,
div.contentmypage_head2 p {
    display:inline-block;
    width:25%;
    border:1px solid #aaaaaa;
    margin: 0px 20px;
    background: #E7E7E7;
    padding: 10px;
    border-radius: 6px;
    color: #000;
}
div.content_head2 a,
div.contentmypage_head2 a {
    color: #007bbb;
        font-weight: normal;
}
#main_content div.content_head2 a:hover,
#main_content div.contentmypage_head2 a:hover {
    color: #00BCD4;
}

.moviecontent_paging {
  padding: 10px;
  border-top: 2px solid #cccccc;
}
.moviecontent_paging a {
    width: 24px;
    display: inline-block;
    text-align: center;
    border:2px solid #cccccc;
    margin-bottom: 6px;
}
.moviecontent_paging a:hover {
    background: #cccccc;
}
.moviecontent_paging strong a {
    background: #aaaaaa;
}
.moviecontent_paging a.btn_prev,
.moviecontent_paging a.btn_next {
    width: auto;
        padding: 0px 4px;
}

/* contentmypage */
div.contentmypage_main {
  padding: 40px 0px 120px;
}
div.contentmypage_status{
  margin: 10px;
}
div.contentmypage_status a{
  color:#fff;
}
div.contentmypage_status .status_title{
  margin-bottom: 8px;
      border-bottom: 1px solid #cccccc;
}

/*mypage*/
/* user_content_status */
div.user_content_status h3 {
    display: inline-block;
    margin: 4px 0px 4px 0px;
}
div.user_content_status p {
    display: inline-block;
    margin: 4px 0px 4px 0px;
}

/*mypage*/
div.mypage_main {
  padding: 40px 0px 120px;
}
ul.mypage_list li {
  display: inline-block;
  width: 150px;
  text-align: center;
  padding: 10px 0px;
  background-image: url(/img/parts/background.jpg);
  border-radius: 5px;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  margin: 4px 0px;
}
ul.mypage_list li:hover {
  background-image: url(/img/parts/background_hover.jpg);
  color:#FCFCFC;
}
ul.mypage_list li.select_mypage {
  background-image: url(/img/parts/background_1.jpg);
box-shadow: 0px 1px 20px #000;
  font-weight: bold;
      color: #000;
          text-shadow: 1px 1px 1px #fff;
}
ul.mypage_list li.upgrade_list {
      background-image: url(/img/parts/background_3.jpg);
}
ul.mypage_list li.upgrade_list:hover  {
      background-image: url(/img/parts/background_hover_1.jpg);
}
table.user_status_table {
    border-collapse: collapse;
    border-spacing: 0;
    margin:40px auto;
    width:860px;
    background: #f5f5f5;
}
table.user_status_table a {
  color: #007bbb;
}
table.user_status_table a:hover {
    color: #00BCD4;
}
table.user_status_table th,
table.user_status_table td {
  border-bottom:1px solid #bfbfbf;
  color:#000;
}
table.user_status_table th {
  width:40%;
  letter-spacing: 4px;
}
table.user_status_table th.table_required {
    background: #FFDFDF;
}
table.user_status_table th span {
color:#FA3636
}

table.user_status_table td {
  width:60%;
  text-align: center;
  background: #f0f0f0;
  text-shadow: 2px 2px 1px #cccccc;
}
table.user_status_table input,
table.user_status_table select {
  margin: 10px 0px;
  height: 26px;
}
table.user_status_table p {
  margin: 0px;
  font-size: 12px;
}

table.user_status_table tr.table_title,
table.user_status_table tr.table_title td {
      background-image: url(/img/parts/background_2.jpg);
}
table.user_status_table tr.table_subtitle,
table.user_status_table tr.table_subtitle td {
  background:#dfdfdf;
}

table.user_password_table {
    border-collapse: collapse;
    border-spacing: 0;
    margin:40px auto;
    width:860px;
    background: #6EACB9;
}
table.user_password_table th,
table.user_password_table td {
  border:1px solid #bfbfbf;
}
table.user_password_table th {
  width:50%;
  letter-spacing: 4px;
      background-image: url(/img/parts/background_2.jpg);
      color: #000;
}
table.user_password_table td {
  width:50%;
  text-align: center;
  background: #f0f0f0;
}

td.birthday_td input {
  width:10%;
}
td.birthday_td select {
  width:15%;
}

div.submit {
  text-align: center;
}
div.submit input  {
  margin: 5px 20px;
  width:100px;
  height:40px;
  font-size:18px;
  font-weight:bold;
  color:#333333;
  background:#00FF7F;
  border:2px outset #dddddd;
  border-radius: 6px;
}
.mypage_main div.submit input  {
  width:200px;
  height:40px;
  font-size:18px;
}
div.submit input:hover  {
  border: 1px outset;
      color: #777777;
      box-shadow: 0px 2px 2px rgba(0,0,0,0.4);
      position: relative;
      top: -1px;
}

/* mypage 紹介リンク */
div.invite_url {
    text-align: center;
    margin: auto;
    max-width: 400px;
    background: #f5f5f5;
}
div.invite_url h4 {
    margin: 0px;
    background: #e4de00;
    color: #fff;
}
div.invite_url ul {
  background: #f5f5f5;
  padding: 16px 0px;
  margin: 0px;
}
div.invite_url li {
    display: inline-block;
    border: 1px outset #dddddd;
    padding: 0px 6px;
    border-radius: 4px;
    background: #00FFFF;
}





/*contact*/
div.contactform_main{
  padding: 40px 0px 120px;
  /*text-align: center;*/
}
div.contactform_main_text {
  display: inline-block;
  margin: 0px 30px 0px 30px;
}
div.contactform_main_text a {
  color: #007bbb;
  font-weight: bold;
}
table.contactform_table,
table.counselform_table {
    border-collapse: collapse;
    border-spacing: 0;
    margin:40px auto;
    width:860px;
        background-image: url(/img/parts/background_2.jpg);
}
table.contactform_table th,
table.contactform_table td,
table.counselform_table th,
table.counselform_table td {
  border-bottom:1px solid #bfbfbf;
}
table.contactform_table th,
table.counselform_table th {
  width:40%;
  letter-spacing: 4px;
  padding: 20px 0px;
  color: #000;
}
table.contactform_table td,
table.counselform_table td {
  width:60%;
  text-align: center;
  background: #f0f0f0;
  padding: 20px 0px;
}

div.contactform_submit,
div.counselform_submit {
  text-align: center;
}
div.contactform_submit input,
div.counselform_submit input {
  margin: 5px 20px;
  width:100px;
  height:40px;
  font-size:18px;
  font-weight:bold;
  color:#333333;
}
input#confirm_button {
  background:#00FFFF;
  border:2px outset #dddddd;
  border-radius: 6px;
}
input#reset_button {
  background:#eeeeee;
  border:2px outset #dddddd;
  border-radius: 6px;
}
input#confirm_button:hover {
  border: 1px outset;
      color: #777777;
      box-shadow: 0px 2px 2px rgba(0,0,0,0.4);
      position: relative;
      top: -1px;
}
input#reset_button:hover {
  border: 1px outset;
      color: #777777;
      box-shadow: 0px 2px 2px rgba(0,0,0,0.4);
      position: relative;
      top: -1px;
}
input#submit_button {
  background:#00FF7F;
  border:2px outset #dddddd;
  border-radius: 6px;
}
input#revise_button {
  background:#eeeeee;
  border:2px outset #dddddd;
  border-radius: 6px;
}
input#submit_button:hover {
  border: 1px outset;
      color: #777777;
      box-shadow: 0px 2px 2px rgba(0,0,0,0.4);
      position: relative;
      top: -1px;
}
input#revise_button:hover {
  border: 1px outset;
      color: #777777;
      box-shadow: 0px 2px 2px rgba(0,0,0,0.4);
      position: relative;
      top: -1px;
}

/*mypage-counsel*/
div.edit_counsel_main_table {
  margin: 0px 2px;
  overflow-x:scroll;
}
@media screen and (max-width: 750px) {
  div.edit_counsel_main_table {
    font-size: 12px;
  }
}
.edit_counsel_main_table table {
    border-collapse: collapse;
    display: block;
  width: auto;
  overflow-x: auto;
  white-space: nowrap;
}
.edit_counsel_main_table table td {
    border: 1px solid #666666;
    padding: 2px;
}
.edit_counsel_main_table table th {
    border: 1px solid #666666;
    padding: 2px;
    text-align: left;
        background-image: url(/img/parts/background_2.jpg);
        color: #424242;
}
/*input*/
/* 全体 */
.edit_counsel_main_table table input {

}
/* 金額 */
.edit_counsel_main_table table input.max_w_169 {
    max-width: 169px;
}
/* ラジオボタン */
.edit_counsel_main_table table input.w_auto {
    width: auto;
}
/* 複数項目 */
.edit_counsel_main_table table input.max_w_45p {
    max-width: 40%;
}

/*apply*/
div.applyform_main{
  padding: 40px 0px 120px;
  text-align: center;
}
div.applyform_submit {
  text-align: center;
}
div.applyform_submit input {
  margin: 5px 20px;
  width:100px;
  height:40px;
  font-size:18px;
  font-weight:bold;
  color:#333333;
}
input.input_w300 {
  width:300px;
}

/*singin*/
div.signin_main {
    padding: 40px 0px 120px;
    text-align: center;
}
div.signin_main table {
    margin: auto;
}
div.signin_main a {
    color: #007bbb;
}
div.signin_main a:hover {
    color: #00BCD4;
}
div.signin_main p.or_button a {
  color: #3b3b3b;
}
div.signin_main p.or_button a:hover {
  color: #00BCD4;
}
p.or_button a{
  display: inline-block;
  background: #ffb200;
  padding: 4px;
  margin: 2px;
  border-radius: 4px;
  border: 2px ridge #cccccc;
  font-weight: bold;
  color: #3b3b3b;
}
/*passwordreset*/
div.passwordreset_main {
      padding: 40px 0px 120px;
      text-align: center;
}
div.passwordreset_main table {
    margin: auto;
}

/*ソート・絞り込み(学習済み,ID,新着)*/
.id_getuser_status_default .getuser_status_default {
font-weight:bold;
    color: #3b3b3b;
    padding: 0px 2px;
    border-radius: 2px;
}
.id_getuser_status_1 .getuser_status_1 {
font-weight:bold;
    color: #3b3b3b;
    padding: 0px 2px;
    border-radius: 2px;
}
.id_getuser_status_0 .getuser_status_0 {
font-weight:bold;
    color: #3b3b3b;
    padding: 0px 2px;
    border-radius: 2px;
}
.id_sort_user_release_date.id_sort_asc .user_release_date .sort_asc {
font-weight:bold;
    color: #3b3b3b;
    padding: 0px 2px;
    border-radius: 2px;
}
.id_sort_user_release_date.id_sort_desc .user_release_date .sort_desc {
font-weight:bold;
    color: #3b3b3b;
    padding: 0px 2px;
    border-radius: 2px;
}
.id_sort_sort_id.id_sort_asc .sort_id .sort_asc {
font-weight:bold;
    color: #3b3b3b;
    padding: 0px 2px;
    border-radius: 2px;
}
.id_sort_sort_id.id_sort_desc .sort_id .sort_desc {
font-weight:bold;
    color: #3b3b3b;
    padding: 0px 2px;
    border-radius: 2px;
}


/*カテゴリーカラー設定*/
/* selectカテゴリー */
.content_category #selected_category,
.contentmypage_category #selected_category {
    top: -10px;
    left: -8px;
    box-shadow: 8px 10px #b7b7b7;
    position: relative;
    background-image:url(/img/parts/background_1.jpg);
}
.content_category #selected_category a,
.contentmypage_category #selected_category a {
  font-weight: bold;
  color: #000;
  text-shadow: 0px 1px 1px #fff;
}
/* 各カテゴリー */
#main_content .category_id_1 .contentpage_categorytitile_new,
.content_category .category_id_1,
.contentmypage_category .category_id_1,
.contentmypage_main .category_id_1 p.p_category {
background-image: url(/img/parts/1.png);
}
#main_content .category_id_2 .contentpage_categorytitile_new,
.content_category .category_id_2,
.contentmypage_category .category_id_2,
.contentmypage_main .category_id_2 p.p_category {
background-image: url(/img/parts/2.png);
}
#main_content .category_id_3 .contentpage_categorytitile_new,
.content_category .category_id_3,
.contentmypage_category .category_id_3,
.contentmypage_main .category_id_3 p.p_category {
background-image: url(/img/parts/3.png);
}
#main_content .category_id_4 .contentpage_categorytitile_new,
.content_category .category_id_4,
.contentmypage_category .category_id_4,
.contentmypage_main .category_id_4 p.p_category {
background-image: url(/img/parts/4.png);
}
#main_content .category_id_5 .contentpage_categorytitile_new,
.content_category .category_id_5,
.contentmypage_category .category_id_5,
.contentmypage_main .category_id_5 p.p_category {
    background: #F3C0AB;
}
#main_content .category_id_6 .contentpage_categorytitile_new,
.content_category .category_id_6,
.contentmypage_category .category_id_6,
.contentmypage_main .category_id_6 p.p_category {
background-image: url(/img/parts/5.png);
}
#main_content .category_id_7 .contentpage_categorytitile_new,
.content_category .category_id_7,
.contentmypage_category .category_id_7,
.contentmypage_main .category_id_7 p.p_category {
background-image: url(/img/parts/6.png);
}
#main_content .category_id_8 .contentpage_categorytitile_new,
.content_category .category_id_8,
.contentmypage_category .category_id_8,
.contentmypage_main .category_id_8 p.p_category {
background-image: url(/img/parts/7.png);
}
#main_content .category_id_9 p.categorytitile_mark,
.content_category .category_id_9,
.contentmypage_category .category_id_9,
.contentmypage_main .category_id_9 p.p_category {
    background: #9ACDE7;
}
#main_content .category_id_10 p.categorytitile_mark,
.content_category .category_id_10,
.contentmypage_category .category_id_10,
.contentmypage_main .category_id_10 p.p_category {
    background: #FCEDAA;
}
#main_content .category_id_11 .contentpage_categorytitile_new,
.content_category .category_id_11,
.contentmypage_category .category_id_11,
.contentmypage_main .category_id_11 p.p_category {
background-image: url(/img/parts/8.png);
}
#main_content .category_id_12 p.categorytitile_mark,
.content_category .category_id_12,
.contentmypage_category .category_id_12,
.contentmypage_main .category_id_12 p.p_category {
    background: #9ACDE7;
}
#main_content .category_id_13 .contentpage_categorytitile_new,
.content_category .category_id_13,
.contentmypage_category .category_id_13,
.contentmypage_main .category_id_13 p.p_category {
  background-image: url(/img/parts/9.png);
}
#main_content .category_id_14 p.categorytitile_mark,
.content_category .category_id_14,
.contentmypage_category .category_id_14,
.contentmypage_main .category_id_14 p.p_category {
    background: #F3C0AB;
}
#main_content .category_id_15 p.categorytitile_mark,
.content_category .category_id_15,
.contentmypage_category .category_id_15,
.contentmypage_main .category_id_15 p.p_category {
    background: #9ACDE7;
}
#main_content .category_id_16 p.categorytitile_mark,
.content_category .category_id_16,
.contentmypage_category .category_id_16,
.contentmypage_main .category_id_16 p.p_category {
    background: #FCEDAA;
}
#main_content .category_id_17 p.categorytitile_mark,
.content_category .category_id_17,
.contentmypage_category .category_id_17,
.contentmypage_main .category_id_17 p.p_category {
    background: #F3C0AB;
}
#main_content .category_id_18 p.categorytitile_mark,
.content_category .category_id_18,
.contentmypage_category .category_id_18,
.contentmypage_main .category_id_18 p.p_category {
    background: #9ACDE7;
}
#main_content .category_id_19 p.categorytitile_mark,
.content_category .category_id_19,
.contentmypage_category .category_id_19,
.contentmypage_main .category_id_19 p.p_category {
    background: #FCEDAA;
}
#main_content .category_id_20 p.categorytitile_mark,
.content_category .category_id_20,
.contentmypage_category .category_id_20,
.contentmypage_main .category_id_20 p.p_category {
    background: #F3C0AB;
}
#main_content .category_id_21 p.categorytitile_mark,
.content_category .category_id_21,
.contentmypage_category .category_id_21,
.contentmypage_main .category_id_21 p.p_category {
    background: #9ACDE7;
}
/*タグカラー設定*/
/* selectタグ */
.content_tag #selected_tag,
.contentmypage_tag #selected_tag {
    background: #6FACBA;
    top: -10px;
    left: -8px;
    box-shadow: 8px 10px #007692;
    position: relative;
}
.content_tag #selected_tag p,
.contentmypage_tag #selected_tag p {
  font-weight: bold;
      color: #FCFCFC;
}

/*レスポンシブ用*/
@media screen and (max-width: 1280px) {

  div.contentpage_categoryall img {
      width: 192px;
      height: 108px;
  }

  div.contentpage_categoryall {
      margin-bottom: 30px;
  }
  div.contentpage_categoryall.category_id_new div.contentpage_categorytitile p.categorytitile_mark {
      background-size: cover;
  }
  div.contentpage_categoryall div.contentpage_categorytitile p.categorytitile_mark {
      width: 150px;
      height: 150px;
      font-size: 20px;
  }


}

@media screen and (max-width: 970px) {
  .content_main div.contentpage_categoryall div.status:nth-child(5){
    display:none;
  }
  div.contentpage_categoryall img {
      width: 256px;
      height: 144px;
  }

  div.contentpage_categoryall div.status {
      width: 26%;
  }

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

  div.contentpage_categoryall_more {
      display: none;
  }

  div.contentpage_categoryall img {
      width: 192px;
      height: 108px;
  }

  div.contentpage_categoryall div.contentpage_categorytitile {
      margin-right: 20px;
  }

  div.contentpage_categoryall div.contentpage_categorytitile p.categorytitile_mark {
      width: 125px;
      height: 125px;
      font-size: 16px;
  }

  #nav ul li {
      font-size: 18px;
  }
  #nav ul li {
    width: 18%;
}
  #footer_title {
      display: block;
      width: 100%;
  }
  #footer_title p {
      margin: auto;
  }
}
@media screen and (max-width: 650px) {
  div.contentpage_categorytitile_new{
    width: 100%;
  }
  .content_main div.contentpage_categoryall div.status:nth-child(4){
    display: none;
  }
  div.contentpage_categoryall {
      margin-left: 0px;
  }
  div.contentpage_categoryall div.contentpage_categorytitile {
      display: block;
  }
  div.contentpage_categoryall div.contentpage_categorytitile p.categorytitile_mark {
      width: 100%;
      height: 50px;
      border-radius: 0px;
      margin-bottom: 20px;

  }
  div.contentpage_categoryall.category_id_new div.contentpage_categorytitile p.categorytitile_mark {
      overflow: auto;
      text-indent: 200%;
      white-space: normal;
      background-image: url(/img/parts/new_mobile.png);
      background-color: #ccc0;
      border-radius: 0px;
  }
  div.contentpage_categoryall div.contentpage_categorytitile {
      width: 95%;
      max-width: none;
      margin: auto;
  }
  div.contentpage_categoryall div.status {
      width: 40%;
      text-align: center;
  }
  div.contentpage_categoryall div.status p.done,
  div.contentpage_categoryall div.status p.undone {
      margin: 16px auto;
  }
  div.contentpage_categoryall img {
      width: 140px;
      height: 78.7px;
  }

  div.contentpage_categoryall_more {
      display: block;
      margin:auto
  }
  div.contentpage_categoryall_more {
      display: block;
      width: 95%;
      height: 26px;
      border-radius: 1px 1px 18px 18px;
  }
  #main_page div.header{
    height: 200px;
    border-style: none;
    background-image: url("/img/parts/top_header2.jpg");
  }
  #main_page div.header_sentence{
    display: none;
  }
  #page_01 div.header{
    height: 200px;
    border-style: none;
    background-image: url("/img/parts/page1_header2.jpg");
  }
  #page_02 div.header{
    height: 200px;
    border-style: none;
    background-image: url("/img/parts/page2_header2.jpg");
  }
  #page_03 div.header{
    height: 200px;
    border-style: none;
    background-image: url("/img/parts/page3_header2.jpg");
  }
  #page_04 div.header{
    height: 200px;
    border-style: none;
    background-image: url("/img/parts/page4_header2.jpg");
  }
  #footer_nav {
      font-size: 14px;
  }
}

/*レスポンシブ動画ページ*/
@media screen and (max-width: 1200px) {

  div.movie_contentpage_categoryall div.status {
      width: 30%;
  }

}

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

  .content_status img.thumbnail_img {
      width: 240px;
      height: 135px;
  }
  div.content_head2, div.contentmypage_head2 {
      font-size: 12px;
  }

  div.movie_contentpage_categoryall img {
    width: 240px;
    height: 135px;
  }

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

  .content_status .status {
      width: 90%;
      text-align: center;
  }

  .content_status img.thumbnail_img {
    width: 360px;
    height: 202.5px;
  }

  .content_status p.done,
  .content_status  p.undone {
      margin: 16px auto;
  }
  .content_status .status {
      margin: 0px 10px 10px 10px;
  }
  div.content_head2 p, div.contentmypage_head2 p {
      display: block;
      width: 80%;
      margin: 10px auto;
  }
  div.content_select_head h5, div.contentmypage_select_head h5 {
      width: 100%;
      display: block;
  }
  div.content_category, div.content_tag, div.contentmypage_category, div.contentmypage_tag {
      display: block;
      margin: 0px auto 10px;
  }
  div.categorystatus {
      display: block;
      width: 100%;
  }

  div.movie_contentpage_categoryall img {
    width: 360px;
    height: 202.5px;
  }
  div.movie_contentpage_categoryall div.status {
  width: 95%;
      text-align: center;
          margin: 0px auto 10px;
  }
  .movie_contentpage_categoryall p.done,
  .movie_contentpage_categoryall p.undone {
    margin: 16px auto;
  }
  div.movie_contentpage_categoryall div {
      text-align: center;
  }

  div.movie_contentpage_status {
      text-align: center;
  }
  div.movie_contentpage_status p {
      margin: 16px auto;
  }
  div.movie_contentpage_status .tagstatus p {
      margin: 0px;
  }
  div.movie_contentpage_status p.btn {
      margin: 16px auto;
  }
}

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

  div.movie_contentpage_movie iframe {
      width: 480px;
      height: 270px;
  }

}

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

  div.movie_contentpage_movie iframe {
      width: 320px;
      height: 180px;
  }

}



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

  .content_status img.thumbnail_img {
      width: 240px;
      height: 135px;
  }


  div.movie_contentpage_categoryall img {
    width: 240px;
    height: 135px;
  }

}

/*レスポンシブ動画マイページ*/

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

  div.contentmypage_status .status_title{
    /*font-size: 12px;*/
    margin-bottom: 16px;
  }


  div.movie_contentpage_categoryall img {
    width: 240px;
    height: 135px;
  }
  div.status_title h4 {
      width: 100%;
  }
}
@media screen and (max-width: 380px) {

  ul.mypage_list {
    text-align: center;
    padding: 0px;
  }

}

/*レスポンシブマイページ*/

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

  table.user_status_table {
      width: 600px;
  }

  table.user_status_table th {
      width: 100%;
      display: block;
  }

  table.user_status_table td {
      width: auto;
      display: block;
  }
  table.user_status_table th, table.user_status_table td {
      border-bottom: none;
  }
  table.user_status_table {
      background: #cccccc;
  }

  table.user_password_table {
      width: 600px;
  }
  table.user_password_table th {
      width: 100%;
      display: block;
      border: none;
  }
  table.user_password_table td {
      width: auto;
      display: block;
  }



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

  table.user_status_table {
      width: 320px;
  }

  table.user_password_table {
      width: 320px;
  }

  td.birthday_td select {
      width: 20%;
  }

}

/*レスポンシブコンタクトページ*/

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

  table.contactform_table,
  table.counselform_table {
      width: 600px;
  }

  table.contactform_table th,
  table.counselform_table th {
      width: 100%;
      display: block;
      border: none;
  }

  table.contactform_table td,
  table.counselform_table td {
      width: auto;
      display: block;
  }

}

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

  table.contactform_table,
  table.counselform_table {
      width: 320px;
  }

}

/*サブメニュー用*/
#nav_menu_cb1,
#nav_menu_cb2,
#nav_menu_cb3 {
    display: none;
}
/*
#nav_menu_cb1:checked ~ li.content_title_nav_menu_title ul#content_title_nav_submenu1 {
    display: block;
    box-shadow: 0px 10px 12px 4px #999999;
}
#nav_menu_cb2:checked ~ li.content_title_nav_menu_title ul#content_title_nav_submenu2 {
    display: block;
    box-shadow: 0px 10px 12px 4px #999999;
}
#nav_menu_cb3:checked ~ li.content_title_nav_menu_title ul#content_title_nav_submenu3 {
    display: block;
    box-shadow: 0px 10px 12px 4px #999999;
}
*/
@media screen and (max-width: 850px) {

  .content_title_nav {
    margin: 0px;
    width: 100%;
  }
  .content_title_nav ul li {
      width: 30%;
  }
}
@media screen and (max-width: 500px) {
  .content_title_nav ul li {
      width: 80%;
      padding: 10px 0px;
  }
}

/*iphone独自cssの除去*/
/*
* {
-webkit-appearance: none;
}
*/
div.statushead{
margin:0px 10px;
padding:4px 0px;
}

/*管理ページ*/
body#admin_layout {
    background: #54caff;
}

div#admin_main {
  padding:40px 0px 200px;
}
div#admin_main a {
    color: #007bbb;
}

td.td-id {
  width: 63px;
}

td.td-sort_id input {
  width: 60px;
}

td.td-class input {
  width:45px;
}

td.td-datetime input {
    width: 126px;
}

td.td-category_id input {
  width:30px;
}

td.td-content_lv input {
  width:30px;
}
table.contentlist_table td {
  border:1px solid #666666;
  padding:15px;
}
table.contentlist_table {
  border-collapse: collapse;
}
div.contentlist:nth-child(odd) table{
  background:#aaaaaa;
}
div.contentlist:nth-child(even) table{
  background:#cccccc;
}
table.userlist_table td {
  border:1px solid #666666;
  font-size: 8px;
}
table.userlist_table {
  border-collapse: collapse;
}
table.userlist_table a {
    color:rgb(0, 0, 238);
}
table.userlist_table tr:nth-child(odd){
  background:#aaaaaa;
}
table.userlist_table tr:nth-child(even){
  background:#cccccc;
}
table.settlementlist_table td {
  border:1px solid #666666;
  font-size: 12px;
}
table.settlementlist_table {
  border-collapse: collapse;
}
table.settlementlist_table tr:nth-child(odd){
  background:#aaaaaa;
}
table.settlementlist_table tr:nth-child(even){
  background:#cccccc;
}
table.settlementlist_table .state_key_1{
  color: #66FFFF;
}
table.settlementlist_table .state_key_2{
  color: #66FF00;
}
table.settlementlist_table .state_key_3{
  color: #222222;
}
table.settlementlist_table .state_key_4{
  color: #FF0033;
}

/*タグ非表示用*/
.content_title_nav ul li.menu_title_tag {
    display: none;
}
div.content_select_head h5.content_tag_h,
div.contentmypage_select_head h5.content_tag_h {
  display:none;
}
div.content_tag {
  display:none;
}
div.contentmypage_tag {
  display:none;
}
h4.movie_contentpage_status_tag {
  display:none;
}
div.tagstatus {
  display:none;
}
/*階層構造用*/

.nav {
  background: #ffffff;
}

ul.list,
ul.list ul {
  margin:0;
  padding:0;
  list-style-type: none;

}

ul.list ul {
  position:relative;
  margin-left:10px;
}

ul.list ul:before {
  content:"";
  display:block;
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:0;

  border-left:1px solid #ccc;
}

ul.list li  {
  position:relative;
  margin:0;
  padding:3px 12px;

  color:#333333;
  text-decoration: none;
  font-size:13px;
  font-weight:normal;
  line-height:20px;
}

ul.list li a {
  position:relative;

  color: rgb(0, 0, 238);
  text-decoration: none;
  font-size:14px;
  font-weight:bold;
  line-height:20px;
}

ul.list li a:hover,
ul.list li a:hover+ul li a {

  color: rgb(85, 26, 139);
}

ul.list ul li:before {
  content:"";
  display:block;
  position:absolute;
  top:10px;
  left: 0;
  width:8px;
  height:0;

  border-top:1px solid #333333;
}

ul.list ul li:last-child:before {
  top: 10px;
  bottom: 0;
  height: auto;
  background: #ffffff;
}
#nav_list span {
 font-weight:bold;
 color:#ff0000;
}

/*管理ページ ユーザー情報*/
table.user_login_status_table{
    border-collapse: collapse;
    margin: 0px 10px;
    font-size: 12px;
}
table.user_login_status_table th {
    border: 1px solid #666666;
}
table.user_login_status_table td {
    border: 1px solid #666666;
}
table.user_login_status_table a {
    color:rgb(0, 0, 238);
}
/* 管理ページ user_movie_data */
table.user_movie_data_table {
    border-collapse: collapse;
    margin: 0px 10px;
    font-size: 12px;
}
table.user_movie_data_table th {
    border: 1px solid #666666;
}
table.user_movie_data_table td {
    border: 1px solid #666666;
    background: #e0e0e0;
}
table.user_movie_data_table td:nth-child(4) {
    background: #dcf8ff;
    text-align:right;
}
table.user_movie_data_table td:nth-child(5) {
    background: #dcf8ff;
    text-align:right;
}
table.user_movie_data_table td:nth-child(6) {
    background: #ffefc0;
    color:#ff0000;
    text-align:right;
    font-weight:bold;
}
table.user_movie_data_table td:nth-child(7) {
    background: #ffefc0;
    color:#ff0000;
    text-align:right;
    font-weight:bold;
}

/*トップスライダー記述----------------------------------------------------------*/


.slider {
  width: 100%;
  height: 400px;
  display: flex;
  overflow-x: auto;

   -webkit-scroll-snap-points-x: repeat(300px);
      -ms-scroll-snap-points-x: repeat(300px);
          scroll-snap-points-x: repeat(300px);
  -webkit-scroll-snap-type: mandatory;
      -ms-scroll-snap-type: mandatory;
          scroll-snap-type: mandatory;
              margin: 0 auto;
}
/*スクロールバー全体*/
.slider::-webkit-scrollbar {
    height: 10px;
}

/*スクロールバーのバー以外*/
.slider::-webkit-scrollbar-track{
  background: #d6d6d6;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
.slider::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 10px;
}
.slide {
  width: 300px;
  flex-shrink: 0;
  height: 100%;
   scroll-behavior: smooth;
}

.slide p{
  font-weight:bold;
}



/*トップスライダー記述end-------------------------------------------------------*/
/*カテゴリータイトルCSS---------------------------------------------------------*/
.contentpage_categorytitile_new{
  width:95%;
  height: 50px;
    background-image: url(/img/parts/background.jpg);
}
.category_id_new .contentpage_categorytitile_new{
  background: red;
}
.contentpage_categorytitile_new h3{
  text-align: left;
  float: left;
  margin: 0px;
  padding: 0px 0px 0px 5px;
  color: #FFF;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 1px #848181,
    -2px 2px 1px #848181,
    2px -2px 1px #848181,
    -2px -2px 1px #848181;
  font-size: 24px;
}

.contentpage_categorytitile_new p{
  text-align: right;
  margin: 0px;
  padding: 10px 5px 0px 0px;
  color: #fff;
}

.contentpage_categorytitile_new a{
  text-decoration: none;
    line-height: 30px;
    text-align: center;
    border-top: 1px solid #6b7688;
    color: #d4d2d2;
    text-shadow: 0px 1px 0px #222;
    color: #f2f1f1;
    background: #586170;
    background: -webkit-gradient(linear, left top, left bottom, from(#586170), to(#424551));
    background: -moz-linear-gradient(top, #586170, #424551);
    background: -o-linear-gradient(top, #586170, #424551);
    background: -ms-linear-gradient(top, #586170, #424551);
    background: linear-gradient(top, #586170, #424551);
    -webkit-box-shadow: 0 1px 1px #1d1e20;
    -moz-box-shadow: 0 1px 1px #1d1e20;
    box-shadow: 0 1px 1px #1d1e20;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 29px;
    width: 119px;
    padding-left: 1px;
    font-weight: bold;
}

.contentpage_categorytitile_new a:hover { /*マウスホバー時*/
  color: #f2f1f1;
  background: #3f4551;
  background: -webkit-gradient(linear, left top, left bottom, from(#3f4551), to(#333640));
  background: -moz-linear-gradient(top,  #3f4551,  #333640);
  background: -o-linear-gradient(top,  #3f4551,  #333640);
  background: -ms-linear-gradient(top,  #3f4551,  #333640);
  background: linear-gradient(top,  #3f4551,  #333640);
}
/*カテゴリータイトルCSSend------------------------------------------------------*/
/*全てのページのmainサイズと中央揃え。ログインページは除く-------------------------*/
.calendar_main,
.contactform_main,
.content_main,
.moviecontent_main,
.contentmypage_main,
.mypage_main{
max-width: 1280px;
margin: 0 auto;
}
/*全てのページのmainサイズと中央揃え。ログインページは除くend----------------------*/
/*ログインページ装飾とサイズ・レイアウト調整--------------------------------------*/
#signin_page #nav{
  display: none;
}
/*ログインページ装飾とサイズ・レイアウト調整end-----------------------------------*/

/*TOPページ装飾とサイズ・レイアウト調整-------------------------------------------*/
/*ヘッダー部分*/
#main_page .header{
  height: 700px;
  border-style: none;
  background-image: url("/img/parts_2/top.jpg");
  position: relative;
}

#main_page .header_sentence{
  position: absolute;
  top: 45%;
  left:40%;
}
#main_page .header_sentence a{
  color: #fff;
  font-size:70px;
  font-weight: bold;
}

/*ヘッダーの下*/
#main_page .content_main{
  max-width: 1280px;
  margin: 0 auto;
}
/*TOPページ装飾とサイズ・レイアウト調整end----------------------------------------*/

/*マイページ装飾とサイズ・レイアウト調整----------------------------------------- */
#page_01 .header{
  height: 400px;
  border-style: none;
  background-image: url("/img/parts/page1_header.jpg")
}
/*マイページ装飾とサイズ・レイアウト調整end-------------------------------------- */

/*ムービーページ装飾とサイズ・レイアウト調整---------------------------------------*/
#page_02 .header{
  height: 400px;
  border-style: none;
  background-image: url("/img/parts/page2_header.jpg")
}
/*ムービーページ装飾とサイズ・レイアウト調整end------------------------------------*/

/*カレンダーページ装飾とサイズ・レイアウト調整---------------------------------------*/
#page_03 .header{
  height: 400px;
  border-style: none;
  background-image: url("/img/parts/page3_header.jpg")
}
/*カレンダーページ装飾とサイズ・レイアウト調整end------------------------------------*/

/*コンタクトページ装飾とサイズ・レイアウト調整---------------------------------------*/
#page_04 .header{
  height: 400px;
  border-style: none;
  background-image: url("/img/parts/page4_header.jpg")
}
/*コンタクトページ装飾とサイズ・レイアウト調整end------------------------------------*/

/*各ページのヘッダー文章-----------------------------------------------------------*/
/*共通*/
.header{
  position: relative;
}

.header_sentence{
  position: absolute;
  top: 45%;
  left:40%;
}
.header_sentence a{
  color: #fff;
  font-size:70px;
  font-weight: bold;
}

/*ずれてるページ用*/
.contentmypage .header_sentence,
#page_04 .header_sentence{
  left:35%;
}
/*各ページのヘッダー文章end--------------------------------------------------------*/

/*紹介リンクの文字色---------------------------------------------------------------*/
#invite_url_link h4,
#invite_url_link p{
  color:#000;
}
#page_01 .invite_url .facebook{
  background: #0056af;
}
#page_01 .invite_url .line{
  background: #3ed400;
}
/*紹介リンクの文字色end------------------------------------------------------------*/

/* 20190726 */
div#slide-4 {
    display: none;
}

.slider {
	justify-content: space-around;
}


@media screen and (max-width: 970px) {
	.slider {
		justify-content: space-between;
	}
}
/* 20190801 */
.header {
    background: #000000;
}

.header h1 {
    margin: 0;
    display: none;
}
#main_page .header_sentence a {
    display: none;
}
#main {
    margin: 0px;
    background:#c8c8c8;
    background-size: 100%;
    clear: both;
}

p.undone {
    color: #333333;
    background: #efefef;
    text-align: center;
    border-radius: 2px;
    text-shadow: 1px 1px 1px #aaaaaa;
}
#main_page .header {
    height: 400px;
    border-style: none;
    background-image: url(/img/parts_2/top.jpg);
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
#footer {
    background-color: #000000;
    padding: 20px 0px;
    border-top: 5px solid #0020ff;
}
@media screen and (max-width: 650px) {
#main_page div.header {
    height: 100px;
    border-style: none;
    background-image: url(/img/parts_2/top.jpg);
}
}
/* 20190805 */
#page_01 .header {
    background-image: url(/img/parts_2/top_my_page.jpg);
}
#page_02 .header {
    background-image: url(/img/parts_2/top_movie.jpg);
}
#page_04 .header {
    background-image: url(/img/parts_2/top_contact.jpg);
}
#page_01 .header,
#page_02 .header,
#page_04 .header {
    height: 200px;
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
#page_01 .header .header_sentence,
#page_02 .header .header_sentence,
#page_04 .header .header_sentence {
    display: none;
}

@media screen and (max-width: 650px) {
#page_01 div.header {
    background-image: url(/img/parts_2/top_my_page.jpg);
}
}
@media screen and (max-width: 650px) {
#page_02 div.header {
    background-image: url(/img/parts_2/top_movie.jpg);
}
}
@media screen and (max-width: 650px) {
#page_04 div.header {
    background-image: url(/img/parts_2/top_contact.jpg);
}
}
@media screen and (max-width: 650px) {
#page_01 div.header,
#page_02 div.header,
#page_04 div.header {
    height: 100px;
    border-style: none;
    background-size: cover;
}
}
/* 190807 */
/* userhistorylist */
div.userhistorylist table {
  margin:auto;
  background:#ffffff;
  color:#000000;
  border-collapse: collapse;
  border-spacing: 0;
  text-align:center;
}
div.userhistorylist table th {
  border:1px solid #000000;
  background:#cccccc;

}
div.userhistorylist table td {
  border:1px solid #000000;
  padding:0px 8px;
  font-size: 16px;
}
/* edit userdata */
div.update_user_lv table {
background:#ffb154;
color:#000000;
  border-collapse: collapse;
  border-spacing: 0;
  margin:auto;
}
div.update_user_lv table td {
border:1px solid #000000;
padding:6px 12px;
}
div.update_user_lv table td span {
color:#ff0000;
}

div.userdata h3 {
  text-align:center;
  color:#000000;
}
div.update_invite table {
  background:#ffffff;
color:#000000;
  border-collapse: collapse;
  border-spacing: 0;
  margin:auto;
}
div.update_invite table th {
  background:#cccccc;
  border:1px solid #000000;
  padding:6px 12px;
}
div.update_invite table td {
  border:1px solid #000000;
  padding:6px 12px;
}

/* 20191030 */
div.col4_img {
  margin:auto;
  text-align:center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div.col4_img img {
  width:40vw;
  max-width:620px;
  margin:4px;
}
div.col4_img img:hover {
    display: inline-block;
    animation: hurueru .1s  infinite;
}

@keyframes hurueru {
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(2px, 2px) rotateZ(1deg)}
    50% {transform: translate(0px, 2px) rotateZ(0deg)}
    75% {transform: translate(2px, 0px) rotateZ(-1deg)}
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
