/* button 

http://www.webdesignerwall.com/demo/css-buttons.html

usage:

html ex:
<div>
  <input class="btn pink" type="btn" value="Input Element" /> 
  <button class="btn pink">btn Tag</btn>
  <span class="btn pink">Span</span> 
  <div class="btn pink">Div</div> 
  <p class="btn pink">P Tag</p> 
  <h3 class="btn pink">H3</h3> 
</div>

color:
  black, gray, orange, red, blue, rosy, green, pink

style
  round, square

size:
  medium, big, exbig

---------------------------------------------- */
.btn {
  display: inline-block;
  zoom: 1; /* zoom and 
display = ie7 hack for display:inline-block */
  *display: inline;
  vertical-align: baseline;
  margin: 1px;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  padding: .4em .5em .275em;
  text-shadow: 0 -1px 1px rgba(0,0,0,.3);
  -webkit-border-radius: .5em; 
  -moz-border-radius: .5em;
  border-radius: .5em;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
  box-shadow: 0 1px 2px rgba(0,0,0,.2);

/* white */
  color: #606060;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top,  #fff,  #ededed);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.btn:hover {
  text-decoration: none;

/* white */
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
  background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}

.round {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
.square {
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}
.medium {
  font-size: 20px;
  padding: .4em 1.5em .42em;
}
.big {
  font-weight: bold;
  font-size: 24px;
  padding: .5em 2em .55em;
}
.exbig {
  font-weight: bold;
  font-size: 30px;
  padding: .5em 2em .55em;
}
.wide {
  font-size: 20px;
  padding: .4em 1.5em .42em;
  width:94%;
  margin:0 3% 0 3%;
display:inline;
}

/* color styles 
---------------------------------------------- */

/* commit */
.commit {
  color: #fff;
  border: solid 1px #980c10;
  background: #d81b21;
  background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
  background: -moz-linear-gradient(top,  #ed1c24,  #aa1317);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
.commit:hover {
  color: #eee;
  background: #b61318;
  background: -webkit-gradient(linear, left top, left bottom, from(#c9151b), to(#a11115));
  background: -moz-linear-gradient(top,  #c9151b,  #a11115);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151b', endColorstr='#a11115');
}

/* black */
.black {
  color: #fff;
  border: solid 1px #333;
  background: #333;
  background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#000));
  background: -moz-linear-gradient(top,  #666,  #000);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
}
.black:hover {
  color: #fff;
  background: #000;
  background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
  background: -moz-linear-gradient(top,  #444,  #000);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#000000');
}

/* gray */
.gray {
  color: #fff;
  border: solid 1px #555;
  background: #6e6e6e;
  background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
  background: -moz-linear-gradient(top,  #888,  #575757);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.gray:hover {
  color: #fff;
  background: #616161;
  background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
  background: -moz-linear-gradient(top,  #757575,  #4b4b4b);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}

/* white */
.white {
  color: #606060;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top,  #fff,  #ededed);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.white:hover {
  color: #606060;
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
  background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}

/* orange */
.orange {
  color: #fff;
  border: solid 1px #da7c0c;
  background: #f78d1d;
  background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
  background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
  color: #fff;
  background: #f47c20;
  background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
  background: -moz-linear-gradient(top,  #f88e11,  #f06015);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}

/* red */
.red {
  color: #fff;
  border: solid 1px #980c10;
  background: #d81b21;
  background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
  background: -moz-linear-gradient(top,  #ed1c24,  #aa1317);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
.red:hover {
  color: #eee;
  background: #b61318;
  background: -webkit-gradient(linear, left top, left bottom, from(#c9151b), to(#a11115));
  background: -moz-linear-gradient(top,  #c9151b,  #a11115);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151b', endColorstr='#a11115');
}

/* blue */
.blue {
  color: #fff;
  border: solid 1px #0076a3;
  background: #0095cd;
  background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  background: -moz-linear-gradient(top,  #00adee,  #0078a5);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.blue:hover {
  color: #fff;
  background: #007ead;
  background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
  background: -moz-linear-gradient(top,  #0095cc,  #00678e);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}

/* rosy */
.rosy {
  color: #fff;
  border: solid 1px #b73948;
  background: #da5867;
  background: -webkit-gradient(linear, left top, left bottom, from(#f16c7c), to(#bf404f));
  background: -moz-linear-gradient(top,  #f16c7c,  #bf404f);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f16c7c', endColorstr='#bf404f');
}
.rosy:hover {
  color: #fff;
  background: #ba4b58;
  background: -webkit-gradient(linear, left top, left bottom, from(#cf5d6a), to(#a53845));
  background: -moz-linear-gradient(top,  #cf5d6a,  #a53845);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#cf5d6a', endColorstr='#a53845');
}

/* green */
.green {
  color: #fff;
  border: solid 1px #538312;
  background: #64991e;
  background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
  background: -moz-linear-gradient(top,  #7db72f,  #4e7d0e);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}
.green:hover {
  color: #fff;
  background: #538018;
  background: -webkit-gradient(linear, left top, left bottom, from(#6b9d28), to(#436b0c));
  background: -moz-linear-gradient(top,  #6b9d28,  #436b0c);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b9d28', endColorstr='#436b0c');
}

/* pink */
.pink {
  color: #000;
  border: solid 1px #d2729e;
  background: #f895c2;
  background: -webkit-gradient(linear, left top, left bottom, from(#feb1d3), to(#f171ab));
  background: -moz-linear-gradient(top,  #feb1d3,  #f171ab);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb1d3', endColorstr='#f171ab');
}
.pink:hover {
  color: #000;
  background: #d57ea5;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4aacb), to(#e86ca4));
  background: -moz-linear-gradient(top,  #f4aacb,  #e86ca4);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4aacb', endColorstr='#e86ca4');
}

h1,h2,h3,h4,h5,h6,ul,li{
  margin:0;
  padding:0;
}

.clear{
   clear:both;
}

/*index26*/

.toroku26{
  /*background: -webkit-gradient(linear, left top, left bottom, from(#c3f0ff), to(#8be2fe));
  background: -moz-linear-gradient(top, #c3f0ff, #8be2fe);*/
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.toroku26 img{
  width:90%;
  padding: 0;
}

/*-----------------------------
ダウンロードボタン
-----------------------------*/

.download_button{
  height: 25px;
  width: 70%;
  margin: 0 auto;
  background-color: #e1002a;
  background: -webkit-gradient(linear,left top,left bottom, from(#fda5d1),  to(#f91487));
  background: -moz-linear-gradient(top, #fda5d1, #f91487);
  border: solid 1px #f91487;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #fdd6ea inset;
}

.download_button a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 25px;
  text-shadow: 0 2px 0 #f91487;
}

.manage_body{
  padding: 10px;
}

.content_title{
  font-size: 1.2rem;
  padding: 10px 0;
}

/* TABLE detail START */
table.manage_detail {
  width: 320px;
  border: 1px #A3A3A3 solid;
  border-collapse: collapse;
  border-spacing: 0;
}

table.manage_detail th {
  padding: 5px;
  border: #A3A3A3 solid;
  border-width: 0 0 1px 1px;
  background: #E3E3E3;
  font-weight: bold;
  line-height: 120%;
  text-align: right;
  white-space: nowrap; 
}
table.manage_detail th.error {
  padding: 5px;
  border: #A3A3A3 solid;
  border-width: 0 0 1px 1px;
  background: #FF6666;
  font-weight: bold;
  line-height: 120%;
  text-align: right;
  white-space: nowrap; 
}
table.manage_detail td {
  padding: 5px;
  border: 1px #A3A3A3 solid;
  border-width: 0 0 1px 1px;
}

table.manage_detail td.inner {
  text-align:center;
  padding:0;
  border:none;
  white-space:nowrap;
}

/* TABLE detail END */

/* TABLE LIST START */
table.manage_list {
  width: 320px;
  border-color: #A3A3A3;
  border-style: solid;
  border-width: 1px;
  border-collapse: collapse;
  border-spacing: 0;
}

table.manage_list th {
  padding: 3px;
  background: #e3e3e3;
  font-weight: normal;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  border-color: #A3A3A3;
  border-style: solid;
  border-width: 1px;
  text-decoration: none;
}

table.manage_list th a:link,a:visited {
  text-decoration: none;
}

table.manage_list tr:hover td {
  background: #efefef;
}

table.manage_list td {
  padding: 3px;
  border-color: #A3A3A3;
  border-style: solid;
  border-width: 1px;
}

/* TABLE LIST END */
div.pagination {
  padding: 3px;
  margin: 15px;
  text-align:center;
}
 
div.pagination a {
  border: 1px solid #dedfde;
  margin-right:3px;
  padding:6px 9px;
  background-color:#ffffff;
  background-position:bottom;
  text-decoration: none;

  color: #da063c;  
}

div.pagination span {
  margin-right:3px;
  padding:6px 9px;

  background-position:bottom;
  background-color:#ffffff;
  border: 1px solid #dedfde;
  background-image:none;
  background-color:#da063c;
  color: #fff;
}

div.pagination a:hover, div.meneame a:active {
  border: 1px solid #000;
  background-image:none;
  background-color:#da063c;
  color: #fff;
}
/**************************/
/* PHP Rails scaffold.css */
/**************************/

/*
http://predic8.com/iphone-css-layout-theme.htm
http://connecre.com/connelog/connelog00000172.php
*/


/* HTML BASIC START */

body { margin: 0; padding: 0 }

a: {
  text-decoration: none;
}


.b {font-weight:bold;}

.cWhite {color:#fff;}
.cBlue {color:#00adee;}

.m0 {margin:0;}
.m5 {margin:5px;}
.m10 {margin:10px;}
.mT5 {margin-top:5px;}
.mT10 {margin-top:10px;}
.mB5 {margin-bottom:5px;}
.mB10 {margin-bottom:10px;}
.mL5 {margin-left:5px;}
.mL10 {margin-left:10px;}
.mR5 {margin-right:5px;}
.mR10 {margin-right:10px;}

.p0 {padding:0;}
.p5 {padding:5px;}
.p10 {padding:10px;}
.pT5 {padding-top:5px;}
.pT10 {padding-top:10px;}
.pB5 {padding-bottom:5px;}
.pB10 {padding-bottom:10px;}
.pL5 {padding-left:5px;}
.pL10 {padding-left:10px;}
.pR5 {padding-right:5px;}
.pR10 {padding-right:10px;}

.nb {white-space:nowrap;}

.aL {text-align:left;}
.aC {text-align:center;}
.aR {text-align:right;}

/* HTML BASIC END */

* {
  word-break: break-all;
  -webkit-touch-callout:none;
  -webkit-tap-highlight-color:rgba(255,255,0,0.4);
  -webkit-text-size-adjust:none;
}

body {
  color: #333333;
  font-size: 15px;
  line-height: 1.3;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3"; /* iPhoneバンドル */
  -webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
}


/* clearfix */
:after { display: block; clear: both; }

em{ color: #db0000;}

p { margin: 0 0 10px 0; padding: 0; }

form { margin-top: 0px; margin-bottom: 0px; }

h1 {
background:#384841;
/*
  clear:both;
  margin:0 0 7px;
  padding:7px 0 5px 7px;
  box-shadow: 1px 1px 2px #BCBBBB;
  -webkit-box-shadow: 1px 1px 2px #962929;
  -moz-box-shadow: 1px 1px 2px #962929;
  background: linear-gradient(#b4bfce, #6d83a1) repeat scroll 0 0 transparent;
*/
  margin: 0px;
  height: 34px;
  font-size: 18px;
  color: white;
  padding: 9px 0 0 0;
  text-align: center;
}

h2{
  text-align: left;
  font-size: 17px;
  margin-left: 12px;
  padding: 10px 0;
  margin: 0;
}

.btn-left {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  padding:7px;
}

.btn-left a{
  background:#fff ;
  border-radius: 4px;
  font: bold 12px Arial;
  text-align: center;
  line-height: 28px;
  color: #384841;
  white-space: nowrap;
  overflow: hidden;
  -webkit-tap-highlight-color: white;
  padding: 8px 5px;
  text-decoration: none;
  min-width: 30px;
  width: auto !important;
  width: 30px;
}

.btn-right {
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  padding:7px;
}

.btn-right a{
  background: -moz-linear-gradient(#e66a6a, #f39797);
  background: -webkit-gradient(linear, 0 0%, 0 100%, from(#e66a6a), to(#f39797));

  box-shadow: 1px 1px 1px 0px #db5e5e inset;
  text-shadow: 0px -1px 1px #9b5353;
  border: 1px solid #932121;
  border-radius: 4px;
  font: bold 12px Arial;
  text-align: center;
  line-height: 28px;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  -webkit-tap-highlight-color: white;
  padding: 8px 5px;
  text-decoration: none;
  min-width: 30px;
}

input[type="checkbox"],
input[type="radio"],
select { display:inline; vertical-align: baseline ;margin-right: 5px ;}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999 ;
}

input[type="text"],
input[type="password"] {
  color: #5a5c63;
  font-size: 100% ;
  width: 100% ;
  padding: 3px ;
}
select {
  color: #5a5c63;
  font-size: 100% ;
  padding: 3px ;
}
textarea {
  color: #5a5c63;
  font-size: 100% ;
  width: 100% ;
  height: 100px ;
  padding: 3px ;
  margin-bottom: 10px ;
}

#footer {
  text-align:center;
}

table.detail{
  border-spacing: 0 3px;
  width: 100%;
  padding: 0 10px 0 10px;
  empty-cells:show;
}

table.detail th{
  text-align: left;
  border-color:#878787;
  border-style:solid;
  border-width:1px 0 1px 1px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding:0 10px 0 10px;
  background-color: #fff;
  padding: 10px;
}

table.detail td{
  border-color:#878787;
  border-style:solid;
  border-width:1px 1px 1px 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #fff;
  
}

table.detail input[type="text"],
table.detail input[type="password"]
{
  border:0;
}

/* TABLE LIST START */
table.list {
  width: 100%;
  border-color: #A3A3A3;
  border-style: solid;
  border-width: 0px 1px 1px 1px;
  border-collapse: collapse;
  border-spacing: 0;
  font-size:70%;
}

table.list th {
  padding: 1px;
  border-top: 2px #627EB7 solid;
  border-bottom: 2px #000000 solid;
  border-left: 1px #FFFFFF solid;
  background: #e3e3e3;
  font-weight: normal;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
}

table.list th a:link {
  text-decoration: none;
}

table.list th a:visited {
  text-decoration: none;
}

table.list tr:hover td {
  background: #f5d4cc;
/*  color: #FFFFFF; */
}

table.list td {
  padding: 1px;
  border: 1px #eeeeee solid;
  border-width: 0 0 1px 1px;
}

table.list td.manage {
  padding: 1px;
/*
  border: 1px #A3A3A3 solid;
  border-width: 0 0 1px 1px;
*/
  white-space: nowrap;
}

/* TABLE LIST END */

/* TABLE LIST_IMAGE START */
table.list_image {
  border-collapse: collapse;
  border-spacing: 0;
  font-size:85%;
}

table.list_image th {
  padding: 5px;
/*
  border-bottom: 1px #aaaaaa solid;
*/
  font-weight: normal;
  line-height: 120%;
  text-align: center;
}

table.list_image tr:hover td.item {
  background: #f5d4cc;
}

table.list_image td.item {
  padding: 5px;
}

table.list_image td.manage {
  padding: 5px;
  border-top: 1px #A3A3A3 solid;
  text-align: center;
}

/* TABLE LIST_IMAGE END */


/* LIST LINK START */
ul.link {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}

ul.link li{
  border-color:#878787;
  border-style:solid;
  border-width:0 0 1px 0;
  background-color: white;
/*  font-weight: bold; */
}

ul.link li.arrow,
ul.link li.icon_arrow{
  background-image: url("/images/sp/arrow.png");
  background-position: right center;
  background-repeat: no-repeat;
}

ul.link li.arrow a,
ul.link li.arrow a:active{
  background: none;
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: black;
}

ul.link li.icon_arrow a,
ul.link li.icon_arrow a:active{
  background: none;
  padding: 5px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: black;
}

ul.link li.arrow_blue{
  background-image: url("/images/sp/arrow_blue.png");
  background-position: right center;
  background-repeat: no-repeat;
}

/*
blue from(#058cf5), to(#015fe6)
red from(#ff3333), to(#990000)
*/
/*
ul.link li.arrow a:hover,
ul.link li.icon_arrow a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#058CF5), to(#015FE6));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#058CF5, #015FE6);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#058CF5', endColorstr='#015FE6');
  color: white;
  text-shadow: 0px -1px 1px #000;
  background: url("/images/sp/arrow.png") right center no-repeat,
}
/*
ul.link li.arrow.blue a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#00adee), to(#0078a5));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#00adee, #0078a5);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
  color: white;

  text-shadow: 0px -1px 1px #000;
  background: url("/images/sp/arrow.png") right center no-repeat,
}
*/

ul.link li span.right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}

ul.link li.title{
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
}

ul.link li img.icon{
  background: none;
  padding: 0 10px 0 0;
  width: 35px;
  height: 35px;
  text-decoration: none;
  vertical-align: -12px;
}
/* LIST LINK END */

/* LIST TEXT START */
ul.text {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}

ul.text li{
  border-color:#878787;
  border-style:solid;
  border-width:1px 0 1px 0;
  margin-bottom: -2px;
}

ul.text li span.right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}
/* LIST TEXT END */

/* LIST RADIUS START */
ul.radius {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}

ul.radius li{
  padding: 10px;
  margin:10px;
  border-style:solid;
  border-width: 1px;
  -webkit-border-radius: .5em;
  -moz-border-radius: .5em;
  border-radius: .5em;
}

ul.radius li span.right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}
/* LIST RADIUS END */


ul.link li.arrow2 a,
ul.link li.arrow2 a:active{
  background-image: url("/images/sp/arrow.png");
  background-position: right center;
  background-repeat: no-repeat;
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: black;
}


/*-----------------------
コミック詳細ページ
-----------------------*/

.book_info{
  width: 95%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.book_image{
  width:100px;
}

.book_info table{
  border-collapse:collapse;
  width:100%;
}

.book_info table tr{
  border-bottom: solid 1px #bdbdbd;
}

.book_info table th{
  height: 30px;
  width: 60px;
  padding-right: 5px;
}

table.book_info table{
  font-size: 14px;
}

.series{
  width: 95%;
  border: solid 1px #962929;
  border-radius: 3px;
  margin: 0 auto;
}

h2.series_title{
  background-color: #962929;
  color: #fff;
  padding :5px 0 5px 10px;
  margin: 0 auto;
}

p.outline{
  padding: 5px 10px 5px 10px;
}

.series_list{
  background: #ffffff;
background: -webkit-gradient(linear, left top, left bottom ,from(#ffffff), to(#d8fafb));
  background: -moz-linear-gradient(top ,  #ffffff,#d8fafb);
  padding: 7px 0;
  border-bottom: solid 1px #d5d5d5;
}

/*一覧ページ*/

.ichiran_list{
  width: 100%;
  padding: 3px 0;
  background: #e49898;
  background: -webkit-gradient(linear, left top, left bottom ,from(#ffffff), to(#e6e6e6));
  background: -moz-linear-gradient(top ,  #ffffff,#e6e6e6);
  padding: 7px 0;
  border-top: solid 1px #d5d5d5;
  border-bottom: solid 1px #b0b0b0;
}


/*---------------------------
__footer
---------------------------*/
#footer{
  padding:5px 0 5px 0;
  color: #fff;
  font-weight: bold;
  /*text-shadow:1px 1px 0 #fff0f0;*/
  background-color: #384841;
}

#footer-base {
	margin: 0;
	padding: 2px 0;
	text-align: center;
	background-color: #674C3B;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
        font-size: 13px;
}

#footer-base #footer-nav {
	display: table;
	height: 14px;
	margin: 3px auto 3px;
	padding: 5px;
	width: 97%;
	background-color: #674C3B;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	color: #FFFFFF;
}


#footer-base small {
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-moz-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-webkit-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}


/*着うた.Net*/
#header26{
  width:100%;
  height:auto;
  position:relative;
}

h1#top26{
  width:100%;
  height:auto;
  margin:0;
  padding:0;
  background:#4D4D4D;
  color: #FFFFFF;
  font-size:25px;
  border-top: solid 1px #b46d0f;
  border-bottom: solid 1px #005e61;
  text-align: left;
}

h1#top26 img{
  width: 100%;
}

.header26_b{
  padding: 0;
  list-style: none;
  height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
}

.header26_b li{
  margin-left: 7px;
  float: left;
}

.title_26{
  color:#FFFFFF;
  font-size:16px;
  background: #4D4D4D;
  padding: 5px 0 5px 10px;
  border-top: solid 1px #0c0a58;
  border-bottom: solid 1px #0c0a58;
}

.headline{
  text-align:center;
}

.title_26 img{
  vertical-align: bottom;
}

.title_26_2{
  color:#0c0a58;
  font-size:16px;
  background: #9bfafd;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff),color-stop(0.7, #ffffff),color-stop(0.7, #9bfafd), to(#9bfafd));
  background: -moz-linear-gradient(top, #ffffff,#ffffff 70%,#9bfafd 70%, #9bfafd);
  padding: 0;
/*  border-top: solid 1px #0c0a58;*/
  border-bottom: solid 1px #0c0a58;
}

.title_26 img{
  vertical-align: bottom;
}

ul.link li.list_26{
  margin-bottom: 0;
  background: #ffffff;
/*
  background: -webkit-gradient(linear, left top, left bottom, from(#ffcd58), to(#ffb83a));
  background: -moz-linear-gradient(top, #ffcd58, #ffb83a);
*/
  border-top: none;
  border-bottom: solid 1px #fd3ba7f;
}

ul.link li.list_26 a{
  color: #666666;
}

ul.link li.list_26:nth-child(2n+1){
  background: #ffffff;
}

ul.link li.list_26:nth-child(2n){
  background: #f6f6f6;
}

ul.link li.list_26 .list_title{
  color: #fff;
}

.rank{
  vertical-align: middle;
}

ul.link li.list_more26{
  background: #ffcd58;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffcd58), to(#ffb83a));
  background: -moz-linear-gradient(top, #ffcd58, #ffb83a);
  color: #081b37;
  border-top: none;
  border-bottom: solid 1px #f57900;
  /*text-align: center;*/
  padding: 0;
}

ul.link li.list_more26 a{
   color: #fff;
}

#menu{
  width:90%;
  margin: 10px auto;
  border :solid 2px #0c0a58;
  border-radius: 6px;
}

#menu ul li a{
  padding: 10px 12px;
  line-height: 1;
}

#menu ul li:nth-child(1){
  border-radius: 5px 5px 0 0;
}

#menu ul li:last-child{
  border-radius: 0 0 5px 5px;
}

/*---------------------------
TOPデザイン
---------------------------*/

#container{
  background-color: #FFFFFF;
}

h2.fast_title{
  margin: 0;
  padding: 0;
  height: 30px;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-indent: 10px;
  line-height: 30px;
  background: #fecb31;
  border-top: 2px solid #c16f0d;
  border-bottom: 2px solid #c16f0d;
}

h2.title_26,
h3.title_26{
  margin: 0;
  padding: 0;
  height: 30px;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-indent: 10px;
  line-height: 30px;
  background: #4D4D4D;
  border-top: 2px solid #4364a8;
  border-bottom: 2px solid #4364a8;
}

.au_login{
  text-align: center;
}

.description{
  margin: 10px auto;
  text-align: left;
  width: 80%;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: solid 2px #f45657;
  line-height: 22px;
  list-style: none;
}

/*
ul.menu_list li.list_26{
/*  height: 35px;*/
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  background: #fff;
  border-top: none;
  border-bottom: 1px dotted #666;
  
}

ul.menu_list li.list_26 a,
ul.menu_list li.list_26 a:active{
  height: 35px;
  text-indent: 4px;
  line-height: 35px;
  color: #ffa729;
  padding: 0;
  background: #FFFFFF
}
*/

#footer{
  padding:5px 0 0 0;
  color: #ffffff;
  font-weight: bold;
  /*text-shadow:1px 1px 0 #fff0f0;*/
  background-color: #45d8dd;
  height: 35px;
  line-height: 30px;
  border-bottom: solid 4px #219fa3;
}

#footer-base {
	margin: 0;
	padding: 2px 0;
	text-align: center;
	background-color: #674C3B;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
        font-size: 13px;
}

#footer-base #footer-nav {
	display: table;
	height: 14px;
	margin: 3px auto 3px;
	padding: 5px;
	width: 97%;
	background-color: #674C3B;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #fcb8d3;
	border-bottom-color: #fcb8d3;
	color: #ffffff;
}

#footer-base small {
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-moz-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-webkit-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/*---------------------------
未ログイン時サイト説明
---------------------------*/

.description_2{
  width: 93%;
  margin: 0 auto;
  border: solid 2px #a7a7a7;
  border-radius: 17px 7px; 
  background: #ffffff;
}

.description_2 h2{
  background-color: #FF9559;
  color: #FFFFFF;
  margin: 0;
  padding: 10px 0 8px 15px;
  border-radius: 15px 5px 0 0;
  line-height: 1.1em;
  text-align: center;
}

.description_2 ul{
  margin: 10px 10px 10px 15px;
  padding-left: 20px;
  list-style-type: decimal;
}

.description_2 ul li{
  color: #ff5092;
  padding: 7px 0;
  font-size: 14px;
}

.dotted{
  border-bottom: dotted 1px #ff5092;
}

.description_2 p{
  background-color: #FF9559;
  margin: 0;
  text-align: right;
  border-radius: 0 0 15px 5px;
}

.description_2 a{
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  padding: 5px 15px 5px 0;
}

#menu{
  width:90%;
  margin: 10px auto;
  border :solid 1px #666;
  border-radius: 6px;
}

#menu ul li a{
  padding: 8px 10px;
  line-height: 1;
  font-size:14px;
  background: #FFFFFF
}

#menu ul li:nth-child(1){
  border-radius: 5px 5px 0 0;
}

#menu ul li:last-child{
  border-radius: 0 0 5px 5px;
}








div.infoback{
width:100%;
background-image:url(/images/diet_logo.jpg);
background-size:auto 100%;
}

a.kkbtn{
display:block;
margin:20px auto;
background-color:#333;
color:#fff;
font-size:large;
padding:20px;
width:80%;
text-align:center;
text-decoration:none;
border-radius:8px;
}
a.kkbtn:hover {
background-color: #000;
}

a.kkbtn2{
display:block;
margin:20px auto;
background-color:#B20000;
color:#fff;
font-size:medium;
padding:10px;
width:50%;
text-align:center;
text-decoration:none;
border-radius:8px;
}
a.kkbtn:hover {
background-color: #000;
}

.textbox1{
padding:10px;
}
a.nosee{
display:block;
width:70%;
margin:20px auto;
border-radius:15px;
border:1px solid #e5e5e5;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a7b1b2+0,e5e5e5+100 */
background: #a7b1b2; /* Old browsers */
background: -moz-linear-gradient(top,  #e5e5e5 0%, #FFFFF0 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #e5e5e5 0%, #FFFFF0 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #e5e5e5 0%, #FFFFF0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#FFFFF05',GradientType=0 ); /* IE6-9 */
color:#ffffff;
text-decoration:none;
text-align:center;
padding:20px 10px;
font-size:large;
}

.newslist{
 padding:10px;
}

.newslist h5{
margin:10px 0;
font-size:large;
color:#f44;
}

.bn_box{display:flex;
justify-content: space-around;
padding:20px;
text-align:center;
background-color:#e5e5e5;
margin-bottom:20px;}
.bn_box div{}

.bn_box2{
padding:20px;
text-align:center;
margin-bottom:20px;}

.au span{
font-size:x-large;
font-weight:bold;
color:#FF5C26;}
.docomo span{
font-size:x-large;
font-weight:bold;
color:#B20000;}
.softbank span{
font-size:x-large;
font-weight:bold;
color:;}

.warning{
font-size:medium;
color:#f00;
text-align:center;
font-weight:bold;
background-color:#BBBBBB;
padding:10px;
margin-bottom:20px;
}




.text_top{
	text-align: center;
	font-size:12px;
	color:#333;
	background-color:#F0D0BF;
	width:95%;
	margin:10px auto;
	padding:10px;
	box-sizing: border-box;
	
}
.top_headbtn{width:;100%;
margin:10px auto;
	display: flex;
	padding:0;
}
.top_headbtn li{
	width:48%;
	list-style: none;
	margin:0 auto;
	padding:0;
}
.top_headbtn li a{
	background-color:#777777;
	color:#FFFFFF;
	text-decoration: none;
	display:block;
	padding:10px;
	font-size:16px;
	border-radius: 10px;
	width:80%;
	margin:0 auto 10px;
	text-align: center;
	box-sizing: border-box;
}

.registbtn{}
.registbtn a{
	background-color:#FC4C49;
	color:#FFFFFF;
	text-decoration: none;
	display:block;
	padding:20px;
	font-size:30px;
	border-radius: 10px;
	width:80%;
	margin:20px auto;
	text-align: center;
	box-sizing: border-box;
}





.back_img01{
	background-image: url("images/diet_img01.jpg");
	background-size: ;
	background-position: center center;
	padding:20px;
}
.back_img02{
	background-image: url("images/diet_img02.jpg");
	background-size: ;
	background-position: center center;
	padding:20px;
}
.text_middle{
	text-align: center;
	font-size:12px;
	color:#333;
	background-color:#ffffff;
	width:95%;
	margin:10px auto;
	padding:10px;
	box-sizing: border-box;	
}

.middle_menu{}
.middle_menu h5{
	background-color:#888888;
	color:#FFFFFF;
	font-size:16px;	
	padding:5px 10px;
	text-align:left;
	margin-bottom:5px;
}
.middle_menu ul{
	background-color:#CCCCCC;
	color:#333333;
	display:block;
	padding:10px;
	font-size:12px;
	border-radius: 10px;
	width:98%;
	margin:5px auto 10px;
	box-sizing: border-box;
}
.middle_menu ul li{
	list-style: none;
	display: inline;
}
.middle_menu ul li a{
	text-decoration: none;
	color:#333333;
	display: inline;
}




.caution { color: #F00; font-weight: bold; }
.fs_big { color: #F00; font-weight: bold; font-size: xx-large; }
.list1 { text-align: center; font-size: 0; }
.list1 li { display: inline-block; font-size: small; width: 33%; }
.list2 li a { display: block; font-size: 0; }
.list2 li.secession a { font-size: x-small; }
.list2 li a .img { display: inline-block; width: 16%; margin: 0 2%; text-align: center; font-size: small; vertical-align: top; }
.list2 li a .text { display: inline-block; width: 80%; font-size: small; color: #000; vertical-align: top; }
.list2 li a .text .title { font-weight: bold; }
.toTopPage { width: 200px; line-height: 30px; margin: 10px 10px 10px auto; text-align: center; background: #282828; background: -moz-linear-gradient(top, #AAA 0%, #282828 72%); background: -webkit-linear-gradient(top, #AAA 0%,#282828 72%); background: linear-gradient(to bottom, #AAA 0%,#282828 72%); border-radius: 5px; -o-border-radius: 5px; -ms-border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
.toTopPage:hover { background: #333; background: -moz-linear-gradient(top, #BBB 0%, #333 72%); background: -webkit-linear-gradient(top, #BBB 0%,#333 72%); background: linear-gradient(to bottom, #BBB 0%,#333 72%); border-radius: 5px; -o-border-radius: 5px; -ms-border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
.toTopPage a { display: block; color: #FFF; }
.toTopPage:hover a { text-decoration: none; }
.copyright { background: #000; color: #FFF; text-align: center; }
.formPage { background: #FFF; margin-bottom: 10px; padding-bottom: 5px 5px 15px ; }
.question p:first-child { font-weight: bold; }
.question h3 { font-size: 1em; color: #444; padding-top: 4px; }
.question p { color: #FFF; background: #333;}
.question ul li { position: relative; }
.question label { display: block; color: #434343; padding: 15px 5px; border-top: 1px solid #aaa; background: #cccccc; }
.question ul li:first-child label { border-top: none; }
.question ul li:last-child label { border-bottom: 1px solid #AAA; }
.question textarea { width: 96%; height: 150px; margin-top: 4px; margin-left: 2%; border-color: #AAA; }
.question ul li input[type="radio"] { opacity: 0; position: absolute; top: -3px; left: -3px; }
.question ul li input[type="radio"]:checked + label { color: #F2F2F2; background:#777; }
.question ul li input[type="checkbox"] { opacity: 0; position: absolute; top: -3px; left: -3px; }
.question ul li input[type="checkbox"]:checked + label{ color: #F2F2F2; background:#777; }
.question select { -webkit-appearance: button; -moz-appearance: button; appearance: button; font-size: 1em; background: url("../img/underArrow.png") no-repeat,#F2F2F2; background-position: 95% 50%; width: 100%; padding: 12px 5px; border: none; border-bottom: 1px solid #aaa; border-radius: 0px; }
.formPage input[type="submit"] {
	appearance: button;
	-moz-appearance: button;
	-webkit-appearance: button;
	font-size: 1em;
	color: #FFF;
	text-shadow: 1px 1px #757575;
	background: rgba(191,191,191,1);
	background: -moz-linear-gradient(top, rgba(191,191,191,1) 0%, rgba(158,158,158,1) 49%, rgba(166,166,166,1) 50%, rgba(171,171,171,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(191,191,191,1)), color-stop(49%, rgba(158,158,158,1)), color-stop(50%, rgba(166,166,166,1)), color-stop(100%, rgba(171,171,171,1)));
	background: -webkit-linear-gradient(top, rgba(191,191,191,1) 0%, rgba(158,158,158,1) 49%, rgba(166,166,166,1) 50%, rgba(171,171,171,1) 100%);
	background: -o-linear-gradient(top, rgba(191,191,191,1) 0%, rgba(158,158,158,1) 49%, rgba(166,166,166,1) 50%, rgba(171,171,171,1) 100%);
	background: -ms-linear-gradient(top, rgba(191,191,191,1) 0%, rgba(158,158,158,1) 49%, rgba(166,166,166,1) 50%, rgba(171,171,171,1) 100%);
	background: linear-gradient(to bottom, rgba(191,191,191,1) 0%, rgba(158,158,158,1) 49%, rgba(166,166,166,1) 50%, rgba(171,171,171,1) 100%);
	box-shadow: 1px 1px 1px #CCC;
	border: none;
	border-top: 1px solid #AAA;
	border-bottom: 1px solid #AAA;
	padding: 12px;
	width: 100%;
}
.questionNom { display: block; font-size: 1em; margin-top: 16px; padding: 5px 2px; border-bottom: 2px groove #EEE; border-top: 2px groove #EEE; box-sizing: border-box; }
.questionNom span{ color: #C20000; text-shadow: 1px 1px rgba(255, 231, 231, 0.59); }



@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

h1.dctitle{
	background-color:#EEF3F9;
	color:#333;
	font-size:x-large;
	font-weight:100;
	padding:20px;
	text-align:center;
}

.dctext01{
	margin:30px auto;
	font-size:;
	width:90%;
	text-align:center;
}
.dcprice{
	background-color:#EEF3F9;
	width:80%;
	max-width:600px;
	margin:30px auto;
	padding:20px;
}
.dcpricespan01{
	background-color:#F7600F;
	color:#FFFFFF;
	padding:3px 10px;
}
.dcpricediv01{
	font-size:40px;
	padding:10px 10px 0;
	text-align:center;
}
.dcpricediv02{
	font-size:20px;
	padding:10px 10px 0;
	text-align:center;
}
hr.dcline{
	background-color:#999;
}
.dcpassarea{
	width:70%;
	max-width:400px;
	margin:30px auto;
	font-size:14px;
}
.dcpassarea div{
	font-size:20px;
		width:100%;
	max-width:400px;
	margin:10px auto;
	font-weight:800;
}

.dcpass{
	height:50px;
		width:100%;
	max-width:600px;
	font-size:30px;
	text-align:center;
	margin:auto auto 10px;
	display:block;
	border:2px solid #333;
	background-color:#FFFFE0;
letter-spacing: 60px;
	box-sizing: border-box;
}

.dcpassbtn{
background-color:#FE6B37;
	color:#FFFFFF;
	padding:20px;
	font-size:25px;
	width:70%;
	max-width:500px;
	margin:50px auto;
	border:none;
	border-radius:3px;
	display:block;
	cursor: pointer;
	cursor: hand;
	text-align:center;
	text-decoration:none;
}

.dcmemo{
	padding:20px;
	font-size:;	
}
.dcmemo span{
	font-size:;
	font-weight:bold;
	
}



@charset "utf-8";
/* CSS Document */
*{margin:0;padding:0;}
h3.top_title{
	text-align:center;
	font-size:x-large;
	font-weight:100;
margin-top:20px;

}
ul.titlelist{
	margin:0;
	padding:0;
}
ul.titlelist li{
	list-style: none;
	margin:20px 0;
	padding:15px;
	text-align:center;
	background-color:#384841;
	color:#fff;
}
ul.titlelist li a{
	color:#fff;
	text-decoration:none;
display: block;
}

.registbtn{}
.registbtn a{
	background-color: #674C3B;
	color:#fff;
	text-align: center;
	text-decoration:none;
	display: block;
	border-radius:8px;
	width:70%;
	margin:10px auto;
	padding:20px;
	font-size:x-large;
}

.nekotext{
width:90%;
margin:20px auto;
border:1px solid #333;
color:#333;
padding:10px;

}


.confrimtext{
text-align:center;
margin:20px auto;
}
.confrimtext p{
color:#f00;
}
.confrimtext a{
background-color:#fff;
color:#8b0000;
font-size:large;
text-decoration:none;
}


.confrimtext02{
text-align:center;
margin:20px auto;
}
.confrimtext02 h3{
margin-bottom:30px;
}
.confrimtext02 a{
	background-color:#384841;
padding:10px;
display:block;
width:70%;
margin:20px auto;
color:#fff;
font-size:large;
text-decoration:none;
border:ipx solid #ccc;
border-radius:10px;
}

a.nosee02{
	background-color:#384841;
padding:10px;
display:block;
width:70%;
margin:20px auto;
color:#fff;
font-size:large;
text-decoration:none;
border:ipx solid #ccc;
border-radius:10px;
text-align:center;
}



/* 追加LP　ねこのいる生活CSS  */

.nekotext2{
width:90%;
margin:20px auto;
color:#333;
padding:10px;

}


ul.titlelist_nekokatu{
	margin:0;
	padding:0;
}
ul.titlelist_nekokatu li{
	list-style: none;
	margin:20px 0;
	padding:15px;
	text-align:center;
	background-color:#ED8B30;
	color:#fff;
}
ul.titlelist_nekokatu li a{
	color:#fff;
	text-decoration:none;
display: block;
}

ul.link li.list_26_nekokatu{
  margin-bottom: 0;
  background: #ffffff;
/*
  background: -webkit-gradient(linear, left top, left bottom, from(#ffcd58), to(#ffb83a));
  background: -moz-linear-gradient(top, #ffcd58, #ffb83a);
*/
  border-top: none;
  border-bottom: solid 1px #fd3ba7f;
}

ul.link li.list_26_nekokatu a{
  color: #666666;
}

ul.link li.list_26_nekokatu:nth-child(2n+1){
  background: #ffffff;
}

ul.link li.list_26_nekokatu:nth-child(2n){
  background: #f6f6f6;
}

ul.link li.list_26_nekokatu .list_title{
  color: #fff;
}

#footer_nekokatu{
  padding:5px 0 5px 0;
  color: #fff;
  font-weight: bold;
  /*text-shadow:1px 1px 0 #fff0f0;*/
  background-color: #8DA1A0;
text-align:center;
}

#footer-base_nekokatu {
	margin: 0;
	padding: 2px 0;
	text-align: center;
	background-color: #ED8B30;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
        font-size: 13px;
}

#footer-base_nekokatu #footer-nav {
	display: table;
	height: 14px;
	margin: 3px auto 3px;
	padding: 5px;
	width: 97%;
	background-color: #ED8B30;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	color: #FFFFFF;
}


#footer-base_nekokatu small {
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-moz-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-webkit-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}



/* 追加LP　猫の秘密CSS  */


ul.titlelist_nekomitu{
	margin:0;
	padding:0;
}
ul.titlelist_nekomitu li{
	list-style: none;
	margin:20px 0;
	padding:15px;
	text-align:center;
	background-color:#F3EEEB;
	color:#333;
}
ul.titlelist_nekomitu li a{
	color:#333;
	text-decoration:none;
display: block;
}

ul.link li.list_26_nekomitu{
  margin-bottom: 0;
  background: #F3EEEB;
  border-top: none;
  border-bottom: solid 1px #fd3ba7f;
}

ul.link li.list_26_nekomitu a{
  color: #666666;
}

ul.link li.list_26_nekomitu:nth-child(2n+1){
  background: #F3EEEB;
}

ul.link li.list_26_nekomitu:nth-child(2n){
  background: #F3EEEB;
}

ul.link li.list_26_nekomitu .list_title{
  color: #fff;
}

#footer_nekomitu{
  padding:5px 0 5px 0;
  color: #333;
  font-weight: bold;
  /*text-shadow:1px 1px 0 #333;*/
  background-color: #F3EEEB;
text-align:center;
}

#footer-base_nekomitu {
	margin: 0;
	padding: 2px 0;
	text-align: center;
	background-color: #212121;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
        font-size: 13px;
}

#footer-base_nekomitu #footer-nav {
	display: table;
	height: 14px;
	margin: 3px auto 3px;
	padding: 5px;
	width: 97%;
	background-color: #212121;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	color: #fff;
}


#footer-base_nekomitu small {
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-moz-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-webkit-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}