/* 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;
}

ul{
  list-style: none;
}

.clear{
   clear:both;
}

/*-----------------------------
ƒ_ƒEƒ“ƒ[ƒhƒ{ƒ^ƒ“
-----------------------------*/

.download_button{
  height: 30px;
  width: 70%;
  margin: 0 auto;
  background-color: #962929;
  background: -webkit-gradient(linear,left top,left bottom, from(#e5241f),  to(#bb1813));
  background: -moz-linear-gradient(top, #e5241f, #bb1813);
  border: solid 1px #bb1813;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #e5514c inset;
}

.download_button a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  text-shadow: 0 2px 0 #bb1813;
}


/*-----------------------------
î•ñ•ÏXƒ{ƒ^ƒ“
-----------------------------*/

.jyoho_button{
  height: 32px;
  width: 50%;
  margin: 0 auto;
  background-color: #d2d2d2;
  background: -webkit-gradient(linear,left top,left bottom, from(#ebebeb),  to(#c5c5c5));
  background: -moz-linear-gradient(top, #e5241f, #bb1813);
  border: solid 1px #acacac;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #9f9f9f inset;
}

.jyoho_button a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  text-shadow: 0 2px 0 #acacac;
}

/*-----------------------------
‘Þ‰ïŠm”Fƒ{ƒ^ƒ“
-----------------------------*/

.taikai_no{
  height: 30px;
  width: 60%;
  margin: 0 auto;
  background-color: #091980;
  background: -webkit-gradient(linear,left top,left bottom, from(#8edef8),  to(#091980));
  background: -moz-linear-gradient(top, #8edef8, #091980);
  border: solid 1px #091980;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #509aff inset;
}

.taikai_no a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  text-shadow: 0 2px 0 #091980;
}

.taikai_yes{
  height: 30px;
  width: 60%;
  margin: 0 auto;
  background-color: #850404;
  background: -webkit-gradient(linear,left top,left bottom, from(#f69c66),  to(#850404));
  background: -moz-linear-gradient(top, #f69c66, #850404);
  border: solid 1px #850404;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #ff5050 inset;
}

.taikai_yes a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  text-shadow: 0 2px 0 #850404;
}


/*index20*/

.toroku20{
  background: #ffffff;
  /*background: -webkit-gradient(linear, left top, left bottom, from(#c3f0ff), to(#8be2fe));
  background: -moz-linear-gradient(top, #c3f0ff, #8be2fe);*/
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.toroku20 img{
  width:90%;
  padding: 0;
}

.toroku20 a{
  color:#fff;
  font-size:30px;
  font-weight: bold;
}

#top_button{
  width: 100%;
  height: 25px;
  list-style: none;
  background: #FFF;
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
}

#top_button li{
  display: table-cell;
  height: 25px;
  box-sizing: border-box;
  text-align: center;
  line-height: 25px;
  background: #FFFFFF;
  background: -webkit-gradient(linear, left top, left bottom ,from(#FFFFFF), to(#FFFFFF));
  background: -moz-linear-gradient(top , #FFFFFF, #FFFFFF);
  border: solid 1px #111111;
}

#top_button li img{
  vertical-align: text-bottom;
}

#top_button li a{
  display: block;
  font-size: 12px;
  color:#000000;
  font-weight: bold;
  text-decoration: none;
}

.list_more20 img{
  width:90%;
}

.list_more20{
  text-align: left;
  padding: 5px 7px 5px 0;
}

.list_more20 a,
.list_more20 a:active{
  color: #101924;
  text-decoration: none;
}

.banner{
  width: 97%;
  margin: 10px auto;
}

.banner_button{
  margin: 5px 0;
}

.banner_group{
  display: table;
  table-layout: fixed;
  width: 100%;
}

.banner_group .banner_button2{
  display: table-cell;
  text-align: center;
}*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

a{
	text-decoration: none;
}

.barh1{
	display: table;
	border-top:5px solid #ffbc5c;
	border-bottom:1px solid #ccc;
}

.barh1 li a{
	display: block;
	font-size:10px;
	color:#5f5f5f;
	text-align: center;
	padding:10px 0;
}

.logo{
	display: table-cell;
	width:60%;
	vertical-align: middle;
	padding-left: 10px;
}

.left{
	vertical-align: middle;
	display: table-cell;
	width:20%;
	border-left:1px solid #ccc;
}

.right{
	vertical-align: middle;
	display: table-cell;
	width:20%;
	border-left:1px solid #ccc;
}

.toptext{
	height:20px;
	line-height: 20px;
	background-color:#ffbc5c;
	text-align: center; 
	font-size:12px;
	color:#5f5f5f;
}

.tab{
	display: flex;
	justify-content: center;
	background-color:#eaeaea;
	padding-top:8px;
	border-top:1px solid #ccc;
}

.tab li{
	margin:0 3px;
	width:25%;
	border-bottom:none;
	background-color: #fff;
	border-radius: 5px 5px 0 0;
}

.tab li a{
	display: block;
	padding:3px 0;
	text-align: center;
	font-size:14px;
	color:#5f5f5f;
	font-weight: bold;
}

.tab li .tab1{
	border-top:5px solid #ffbc5c;
	border-left:1px solid #ffbc5c;
	border-right:1px solid #ffbc5c;
	border-radius: 5px 5px 0 0;
	background-color:#ffbc5c;
}

.tab li .tab2{
	border-top:5px solid #1e4fcc;
	border-left:1px solid #1e4fcc;
	border-right:1px solid #1e4fcc;
	border-radius: 5px 5px 0 0;
}

.tab li .tab3{
	border-top:5px solid #1eb5cc;
	border-left:1px solid #1eb5cc;
	border-right:1px solid #1eb5cc;
	border-radius: 5px 5px 0 0;
}

.tab li .tab4{
	border-top:5px solid #ee558f;
	border-left:1px solid #ee558f;
	border-right:1px solid #ee558f;
	border-radius: 5px 5px 0 0;
}

.topnav{
	display: flex;
	justify-content: center;
	border-top:5px solid #ffbc5c;
}

.topnav li{
	width:34%;
	border-bottom:1px solid #ccc;
	border-right:1px solid #ccc;
}

.topnav li a{
	display: block;
	text-align: center;
	font-size:12px;
	color:#5f5f5f;
	height:50px;
	line-height: 50px;
}

.topnav .rightnone{
	border-right:none;
}

.topnav .bottomnone{
	border-bottom:none;
}

.headimgbox{
	background-color: #eaeaea;
	padding-bottom:10px;
}

.toroku{
	display: block;
	text-align: center;
	background-color:#6cbb49;
	color:#fff;
	padding:15px 0;
	font-size:20px;
	margin:10px auto 0;
	font-weight: bold;
	border-radius: 20px;
	width:95%;

}

.search {
	width:95%;
	margin:0 auto 10px;
	height: 30px;
	padding:5px 0;
}

.search form{
	margin:0;
     padding:0;
     border:0;
     outline:0;
     font-size:100%;
     vertical-align:baseline;
     background:transparent;
}

.search .seaarea{
	vertical-align:middle; 
    position:relative; 
    top:-1px; 
	width:85%;
	height: 30px;
	line-height: 30px;
	border:1px solid #ccc;
	border-right: none;
	border-radius: 5px 0 0 5px;
	text-indent: 0.5em;
}

.search .seabutton{
	background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
	width:15%;
	height: 30px;
	line-height: 30px;
	background-color: #5f5f5f;
	border:1px solid #5f5f5f;
	color:#fff;
}

.img-list{
	width:95%;
	margin:10px auto;
}

.img-list img{
	padding:5px;
}

.img-list .sample td{
	padding:5px;
}

.img-list .sample a{
	font-size:12px;
	background-color:#ff6b43;
	text-align: center;
	display: block;
	padding:5px;
	color:#fff;
}

.glay{
	background-color: #eaeaea;
	padding-bottom:10px;
}

.more{
	display: block;
	height: 30px;
	line-height: 30px;
	text-align: right;
	padding-right:5px;
	border-bottom:1px solid #ccc;
	color:#5f5f5f;
	font-size:12px;
	background-color: #fff;
}

.h2bar{
	height:40px;
	line-height: 40px;
	font-size:18px;
	font-weight: bold;
	color:#5f5f5f;
	padding-left:5px;
	border-top:5px solid #ffbc5c;
}

.iconcolor{
	color:#ffbc5c;

}

.title{
	font-size:12px;
	color:#5f5f5f;
	text-align: center;
}

.menu{
	display: flex;
	flex-wrap: wrap;
	border-top:1px solid #ccc;
}

.menu li{
	width: 50%;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
}

.menu li a{
	display: block;
	font-size: 12px;
	color:#5f5f5f;
	padding:8px 0 8px 5px;
}

.menu .menu-right{
	border-right: none;
}

.genrelist{
	border-top: 1px solid #ccc;
}

.genrelist li{
	border-bottom: 1px solid #ccc;
}

.genrelist li a{
	display: inline-block;
	width:95%;
	padding:8px 0;
	text-indent: 0.5em;
	color:#5f5f5f;
}

.genrelist li i{
	display: inline-block;
	width:5%;
	color:#5f5f5f;
}

.menu2 li{
	border-bottom: 1px solid #ccc;
}

.menu2 li a{
	display: inline-block;
	width:95%;
	font-size: 12px;
	color:#5f5f5f;
	padding:8px 0 8px 5px;
}

.copy{
	text-align: center;
	background-color: #ffbc5c;
	padding:10px 0;
	color:#5f5f5f;
	font-size:12px;
}

.footmenu{
	display: flex;
	justify-content: center;
}

.footmenu li{
	width:33%;
}

.footmenu li a{
	color:#5f5f5f;
	font-size:12px;
	padding:5px;
	display: block;
	text-align: center;
}@charset "utf-8";

::selection {background: #EBD25D;color: #ffffff; /* Safari */}
::-moz-selection {background: #EBD25D;color: #ffffff; /* Firefox */}
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	
	font-size: 100%;
	vertical-align: baseline;
}
article, main, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{


}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
input, textarea {
	margin: 0;
	padding: 0;
}
ol, ul{
	list-style:none;
}
table {
	border-collapse: collapse;
	border-spacing:0;
}
caption, th{
	text-align: left;
}
.clearfix {zoom:1;}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.both {
	clear:both;
}
.inline_block {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
img {
	max-width:100%;
}
table {
	width:100%;
}
a:focus {
	outline: none;
}

.fade-in {
	transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
}

.fade-up {
	transition: opacity 0.7s;
	-moz-transition: opacity 0.7s;
	-webkit-transition: opacity 0.7s;
	-o-transition: opacity 0.7s;
	transition: transform 0.7s;
	-moz-transition: transform 0.7s;
	-webkit-transition: transform 0.7s;
	-o-transition: transform 0.7s;
}

/* ã‚ˆãä½ƒ\ã?SS start

a img:hover {
	opacity:0.75;
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
}

ãƒœãƒƒã‚ƒbã‚ƒPã‚ƒIã‚Aã‚ƒNãƒƒEã‚[ {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

ãƒ?‚­ã‚ƒPãƒˆã‚·ãƒvãƒ‰ã‚¦ {
	text-shadow: 1px 1px 3px #000;
}

ãƒ?‚­ã‚ƒPãƒˆã‚·ãƒvãƒ‰ã‚¦ {
	text-shadow: 1px 1px 3px #000;
}

ãƒœãƒƒã‚ƒbã‚ƒPã‚ƒLãƒvãƒ‰ã‚¦ {
	box-shadow: 1px 1px 3px #000;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
}

ãƒœãƒƒã‚ƒbã‚ƒPã‚ƒLãƒvãƒ‰ã‚¦å†?? {
	box-shadow: inset 1px 1px 3px #000;
	-moz-box-shadow: inset 1px 1px 3px #000;
	-webkit-box-shadow: inset 1px 1px 3px #000;
}

è§’äƒNƒN {
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}

ãƒˆãƒ©ãƒƒEã‚ƒNã‚ƒLãƒƒ@ãƒƒE {
	transition: 1.5s;
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-o-transition: 1.5s;
}

é€æ? {
	opacity:0.25;
	-moz-opacity:0.25;
	filter: alpha(opacity=25);
}

èƒŒæ™¯ãƒ‡ãƒ\é€æ? {
	background-color:rgba(255,255,255,0.2);
}

ã‚[ãƒƒDãƒ??ã‚ƒLãƒƒ@ãƒƒE {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
	background-image: -moz-linear-gradient(top, #ffffff, #000000);
	background-image: -ms-linear-gradient(top, #ffffff, #000000);
	background-image: -o-linear-gradient(top, #ffffff, #000000);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#000000));
	background-image: -webkit-linear-gradient(top, #ffffff, #000000);
	background-image: linear-gradient(top, #ffffff, #000000);
}

ã‚ƒPãƒžã?å¯ƒZå¿
@media screen and (max-width: 480px){

}
@media screen and (max-width: 320px){

}

æ™‚ã??ƒXƒ\ã?SS3 end */
æ™‚ã??ƒXƒ\ã?SS3 end */.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: #bb1813;  
}

div.pagination span {
  margin-right:3px;
  padding:6px 9px;

  background-position:bottom;
  background-color:#ffffff;
  border: 1px solid #dedfde;
  background-image:none;
  background-color:#bb1813;
  color: #fff;
}

div.pagination a:hover, div.meneame a:active {
  border: 1px solid #000;
  background-image:none;
  background-color:#bb1813;
  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", "ƒqƒ‰ƒMƒmŠpƒS ProN W3"; /* iPhoneƒoƒ“ƒhƒ‹ */
  -webkit-text-size-adjust: none; /* •¶Žš‚ÌŠg‘åk¬‚ð–h‚® */
}


/* 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: #66e428;
  background: linear-gradient(to bottom, #67a24a,#66e428);

/*
  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: 42px;
  font-size: 18px;
  text-shadow: 0px 1px 1px #285a0f;
  border-bottom: 1px solid #285a0f;
  color: #fff;
  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: #bc56bb;
  background: linear-gradient(to bottom, #bc56bb, #f17ff0);
  box-shadow: 1px 1px 1px 0px #f0c4ef inset;
  text-shadow: 0px -1px 1px #af54ae;
  border: 1px solid #af54ae;
  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;
  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 */

#top{
  width:100%;
  height:auto;
  background:none;
  margin:0;
  padding:0;
  border:none;
}



.naiyo{
  font-size: 13px;
  line-height:15px;
}


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: 5px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: #555555;
}

/*-----------------------
ƒ‰ƒ“ƒLƒ“ƒO
-----------------------*/
.rank1,
.rank2,
.rank3{
  padding: 1px 0;
  font-size: 16px;
  font-weight: bold;
}

.ranking{
  background-color: #e8f7e9;
}

.ranking a{
  text-decoration: none;
}

.rank1{
  color: #c8a826;
  text-shadow: 1px 1px 0 #604807;
  background: -webkit-gradient(linear, left top, left bottom ,from(#e2db93),color-stop(0.3, #fdfad5),color-stop(0.4, #ffffff), color-stop(0.55, #f2ecaa),color-stop(0.7, #f2ecaa), to(#e2df8e));
  background: -moz-linear-gradient(top ,  #e2db93, #fdfad5 30%, #ffffff 40%, #f2ecaa 55%, #f2ecaa 70%, #e2df8e);
  border:solid 1px #74744d;
  border-radius: 3px;
}

.rank2{
  color: #b3b3b3;
  text-shadow: 1px 1px 0 #505050;
  background: -webkit-gradient(linear, left top, left bottom ,from(#d6d6d6),color-stop(0.3, #f6f6f6),color-stop(0.4, #ffffff), color-stop(0.55, #f0f0f0),color-stop(0.7, #f0f0f0), to(#cecece));
  background: -moz-linear-gradient(top ,  #d6d6d6, #f6f6f6 30%, #ffffff 40%, #f0f0f0 55%, #f0f0f0 70%, #cecece);
  border:solid 1px #717171;
  border-radius: 3px;
}

.rank3{
  color: #af6719;
  text-shadow: 1px 1px 0 #603107;
  background: -webkit-gradient(linear, left top, left bottom ,from(#e2b893),color-stop(0.3, #fdecd5),color-stop(0.4, #ffffff), color-stop(0.55, #f2d8aa),color-stop(0.7, #f2d8aa), to(#e2b58e));
  background: -moz-linear-gradient(top ,  #e2b893, #fdecd5 30%, #ffffff 40%, #f2d8aa 55%, #f2d8aa 70%, #e2b58e);
  border:solid 1px #745e4d;
  border-radius: 3px;
}

.rank_title{
  color: #e51111;
  font-size: 11px;
  line-height: 15px;
}

/*-----------------------
ƒWƒƒƒ“ƒ‹
-----------------------*/
ul.genre li{
  width:50%;
  float:left;
  font-size: 11px;
  box-sizing: border-box;
}

ul.genre li:nth-child(2n){
  border-left: solid 1px #363636;
}

/*-----------------------
ƒRƒ~ƒbƒNÚ×ƒy[ƒW
-----------------------*/

.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 #ff488d;
  border-radius: 3px;
  margin: 0 auto;
}

h2.series_title{
  background-color: #ff488d;
  color: #fff;
  padding :5px 0 5px 10px;
  margin: 0 auto;
}

p.outline{
  padding: 5px 10px 5px 10px;
}

.series_list{
  backgorund-color: #ffffff;
  padding: 7px 0;
  border-bottom: solid 1px #d5d5d5;
  color: #2d2d2d
}

/*-----------------------------
ˆê——ƒy[ƒW
-----------------------------*/

.ichiran_list{
  width: 100%;
  padding: 3px 0;
/*
  background: #ffffff;
  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;
  color: #4c4c4c;
}

.ichiran_wrap:nth-child(2n+1){
background-color: #ffffff;
}

.ichiran_wrap:nth-child(2n){
background-color: #fef5f6;
}

/*-----------------------------
ƒ_ƒEƒ“ƒ[ƒhƒy[ƒW
-----------------------------*/

.book_info .download_info{
  font-size: 13px;
}

.book_info .download_info th{
  font-weight: bold;
  color: #4382ec;
  width: 60px;
}

.attention{
 width: 90%;
 border: solid 2px #ff488d;
 border-radius: 3px;
 padding: 5px;
 margin:10px auto 10px auto;
}

.download_back{
  border-top: solid 1px #ff488d;
  border-bottom: solid 1px #ff488d;
  background: #ffdbe9;
}

.download_back a{
 text-decoration: none;
 display: block;
 color: #ff488d;
 padding: 8px;
}

.download_back a:link,
.download_back a:vitited{
 color: #319733;
}

/*---------------------------
__footer
---------------------------*/
#footer{
  padding:5px 0 5px 0;
  color: #ffffff;
  font-weight: bold;
  /*text-shadow:1px 1px 0 #fff0f0;*/
  background-color: #55be21;
}

#footer-base {
	margin: 0;
	padding: 2px 0;
	text-align: center;
	background-color: #ffffff;
/*
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #6f6f6f;
*/
        font-size: 13px;
}

#footer-base #footer-nav {
	display: table;
	height: 14px;
	margin: 3px auto 3px;
	padding: 5px 0;
	width: 100%;
	background-color: #f7a0f6;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #6f6f6f;
	border-bottom-color: #6f6f6f;
	color: #ffffff;
}

#footer-base #footer-nav a{
        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);
}

/*index20*/
#header20{
  width:100%;
  height:auto;
  position:relative;
}

h1#top20{
  width:100%;
  height:auto;
  margin:0;
  padding:0;

  text-align: left;
  background:#ffffff;

  color: #ffffff;
  font-size:30px;
  border: none;
  text-align: center;
}

h1#top20 img{
  width:100%;
  height:auto;
}

.header_right{
  margin: 0;
  padding: 0;
  list-style: none;
  height: 55px;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.header_left{
  margin: 0;
  padding: 0;
  list-style: none;
  height: 55px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
/*
.header20_b li{
  margin-left: 2px;
  float: left;
}
*/

.top_logo img{
  width: 100%;
}


h2.title_20,
h3.title_20{
  line-height:1;
  color:#ffffff;
  background: #61cb2d;
/*
background: -webkit-gradient(linear, left top, left bottom, from(#ffd674), to(#b02121));
  background: -moz-linear-gradient(top, #ffd674, #b02121);
*/
  padding: 10px 0 10px 5px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  text-shadow: 0 1px 0 #101924;
  box-shadow: 0 1px 0 #ffffff inset, 0 -1px 0 #ffffff inset;
}


h2.title_20a{
  line-height:1;
  color:#ffffff;
  background: #2d5dd3;
  padding: 10px 0 10px 5px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  text-shadow: 0 1px 0 #101924;
  box-shadow: 0 1px 0 #ffffff inset, 0 -1px 0 #ffffff inset;
}
h2.title_20b{
  line-height:1;
  color:#ffffff;
  background: #4d4ddb;
  padding: 10px 0 10px 5px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  text-shadow: 0 1px 0 #101924;
  box-shadow: 0 1px 0 #ffffff inset, 0 -1px 0 #ffffff inset;
}
h2.title_20c{
  line-height:1;
  color:#ffffff;
  background: #f585aa;
  padding: 10px 0 10px 5px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  text-shadow: 0 1px 0 #101924;
  box-shadow: 0 1px 0 #ffffff inset, 0 -1px 0 #ffffff inset;
}
h2.title_20d{
  line-height:1;
  color:#ffffff;
  background: #ff4242;
  padding: 10px 0 10px 5px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  text-shadow: 0 1px 0 #101924;
  box-shadow: 0 1px 0 #ffffff inset, 0 -1px 0 #ffffff inset;
}
h2.title_20e{
  line-height:1;
  color:#ffffff;
  background: #000000;
  padding: 10px 0 10px 5px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  text-shadow: 0 1px 0 #000000;
  box-shadow: 0 1px 0 #ffffff inset, 0 -1px 0 #ffffff inset;
}
h2.title_20f{
  line-height:1;
  color:#ffffff;
  background: #a0522d;
  padding: 10px 0 10px 5px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  text-shadow: 0 1px 0 #a0522d;
  box-shadow: 0 1px 0 #ffffff inset, 0 -1px 0 #ffffff inset;
}



/*content2*/
ul.link li.list_20{
  margin-bottom: 0;
  background: #daf3dc;
  border-bottom: dashed 1px #6d6d6d;
}

ul.link li.list_20 a table{
  color: #555;
  text-shadow: 1px 1px 1px #ffffff;
}

ul.link li.list_20 img{
  border: solid 1px #ffffff;
  box-shadow: 0 0 2px #6d6d6d;
}

.list_title{
  font-size:17px;
  line-height: 18px;
  color: #e51111;
  text-shadow: 1px 1px 0 #bdbdbd;
  
}

ul.link li.list_20_2{
  margin-bottom: 0;
  background-color: #f3f3f3;
  border-top: solid 1px #ffffff;
  border-bottom: solid 1px #949494;
}

ul.link li.list_20_2 a,
ul.link li.list_20_2 a:active{
  padding: 8px 12px;
  color:#2a2a2a;
}
ul.link li.list_more20{
  background: #ffffff;
  /*background: -webkit-gradient(linear, left top, left bottom, from(#fff),color-stop(0.2, #fff), to(#fae2e8));
  background: -moz-linear-gradient(top, #fff,#fff 20%, #fae2e8);*/
  color: #555555;
  /*border-top: solid 1px #2d2d2d;*/
  border-bottom: solid 1px #878787;
  text-align: right;

  background-image: url("/images/sp/arrow.png");
  background-position: right center;
  background-repeat: no-repeat;
  padding: 7px 20px;
  display: block;
  width: auto;
  text-decoration: none;
}

ul.link li.list_more20 a{
  color: #555555;
  font-weight: bold;
}

ul.link li.menu_list a,
ul.link li.menu_list a:active{
  padding: 10px 15px;
}

.muryo{
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background-color: #f00;
  line-height: 20px;
  text-decoration: none;
  
}

/*
ul.list_color li:nth-child(2n+1){
background-color: #ffffff;
}

ul.list_color li:nth-child(2n){
background-color: #f7f7f7;
}
*/

/*---------------------------
__ƒŠƒXƒg‚Ìƒ^ƒCƒgƒ‹ãE“_–Å
---------------------------*/
/*Šî–{Ý’è*/
.meisaku{
  display:inline-block;
  color: #fff;
  font-size: 0.9em;
  font-weight: bold;
  background: #2a26da;
  line-height: 1;
  padding: 6px 10px;
  margin-bottom:4px;
  text-shadow: none;
}

.wadai{
  display:inline-block;
  color: #fff;
  font-size: 0.9em;
  font-weight: bold;
  background: #f690ad;
  line-height: 1;
  padding: 6px 10px;
  margin-bottom:4px;
  text-shadow: none;
}

/*“_–Å‚ÌÝ’è*/
.blinking{
    -webkit-animation:blink 1s ease infinite alternate;
    -moz-animation:blink 1s ease infinite alternate;
    animation:blink 1s ease infinite alternate;
}
@-webkit-keyframes blink{
    0% {color:rgba(255,255,255,0);}
    100% {color:rgba(255,255,255,1);}
}
@-moz-keyframes blink{
    0% {color:rgba(255,255,255,0);}
    100% {color:rgba(255,255,255,1);}
}
@keyframes blink{
    0% {color:rgba(255,255,255,0);}
    100% {color:rgba(255,255,255,1);}
}


/*--------------------------------------
ƒƒOƒCƒ“‰æ–Ê
--------------------------------------*/
.au,
.docomo,
.softbank,
.credit{
  padding: 0;
  margin: 10px 0 0 0;
}

.au span{
  color: #EB5505;
  font-size: 24px;
  font-weight: bold;
}

.docomo span{
  color: #C03;
  font-size: 24px;
  font-weight: bold;
}

.softbank span{
  color: #B7BBBE;
  font-size: 24px;
  font-weight: bold;
}

.credit span{
  color: #585658;
  font-size: 18px;
  font-weight: bold;
}