/* 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;
}

/*-----------------------------
ダウンロードボタン
-----------------------------*/

.download_button{
  height: 30px;
  width: 60%;
  margin: 0 auto;
  background-color: #72c52e;
  background: -webkit-gradient(linear,left top,left bottom, from(#f78eac),  to(#ea6288));
  background: -moz-linear-gradient(top, #f78eac, #ea6288);
  border: solid 1px #ea6288;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #f7acc1 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 #ea6288;
}


/*-----------------------------
退会確認ボタン
-----------------------------*/

.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;
}

/*ミュージックチャンス*/
.toroku7{
  background-color: #000;
  border-bottom: solid 2px #ffffff;
}

.toroku7 img{
  width:93%;
  padding:18px 0px 32px 0px;
}

/*トップバナー*/
.banner_box{

 padding: 25px 10px 7px 10px;
 
}

.banner_box2 {
    padding: 17px 10px 20px 10px;
}

.top_banner{
  width: 100%;
  margin: 0 auto;
  padding: 4px 0;
display: none !important;
}

/*
.top_banner img{
  border: 1px solid #a9a9a9;
}
*/

.banner_list{
  display: table;
  table-layout: fixed;
  width: 95%;
  margin: 0 auto;
  padding: 3px 0;
}

.banner_list .banner_part{
  display: table-cell;
  text-align: center;
}

.banner_list .banner_part:nth-child(1){
  text-align: left;
}

.banner_list .banner_part:nth-child(2){
  text-align: right;
}


/*検索*/

dl.search2{
	position:relative;
        padding:10px;
}
dl.search2 dt{
	margin-right:0px;
	padding:8px;
	background-color:#fff;
	border:1px solid #aaa;
}
dl.search2 dt input{
	width:100%;
	height:24px;
	line-height:24px;
	background:none;
	border:none;
}
dl.search2 dd{
	position:absolute;
	top:0;
	right:0;
        padding:10px;
} 
dl.search2 dd button{
	display:block;
	width:100px;
	height:42px;
	color:#fff;
	line-height:40px;
	text-align:center;
	background-color:#000;
	border:1px solid #000;
}

.toroku_cp {
    text-align: center;
    margin: auto;
    width: 100%;
    padding: 30px 0px 55px 0px;
}


.float {
  animation: float_5707 4s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes float_5707 {
  0% { transform: translateY(0) }
  25% { transform: translateY(-6px) }
  50% { transform: translateY(0) }
  100% { transform: translateY(0) }
}/**************************/
/* 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: #000;
  font-size: 15px;
  line-height: 1.3;
  background: #fff;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3"; /* iPhoneバンドル */
  -webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
}


/* clearfix */
.clearfix:after { display: block; clear: both; }

em{ color: #db0000;}

p { margin: 0 0 10px 0; padding: 0; }

form { margin-top:0px; margin-bottom: 0px; background-color: ; }

h1 {
  background: -webkit-gradient(linear, left top, left bottom ,from(#0dcfe7), to(#0bd6f3));
  background: -moz-linear-gradient(top , #0dcfe7,#0bd6f3);

/*
  clear:both;
  margin:0 0 7px;
  padding:7px 0 5px 7px;
  box-shadow: 1px 1px 2px #BCBBBB;
  -webkit-box-shadow: 1px 1px 2px #BCBBBB;
  -moz-box-shadow: 1px 1px 2px #BCBBBB;
  background: linear-gradient(#b4bfce, #6d83a1) repeat scroll 0 0 transparent;
*/
  margin: 0px;
  height: 34px;
  font-size: 21px;
  color: #fff;
  text-shadow: 0 1px 0 #08646f;
  padding: 9px 0 0 0;
  text-align: center;
  border-bottom: solid 1px #fff;
}

h2{
  text-align: left;
  font-size: 17px;
  margin-left: 12px;
  padding: 8px 0 0 8px;
  margin: 0;
}

.btn-left {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  padding:7px;
}

.btn-left a{
  background: -moz-linear-gradient(#ffb657, #ffd8a5);
  background: -webkit-gradient(linear, 0 0%, 0 100%, from(#ffb657), to(#ffd8a5));
  background-color: #ffd8a5;
  box-shadow: 1px 1px 1px 0px #ffd8a5 inset;
  text-shadow: 0 -1px 0 #d49748;
  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;
  border: 1px solid #e6962e;
  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(#8aa1bf, #4a6c9b);
  background: -webkit-gradient(linear, 0 0%, 0 100%, from(#8aa1bf), to(#4a6c9b));

  box-shadow: 1px 1px 1px 0px #333 inset;
  text-shadow: 0px -1px 1px #000;
  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;
  border: 1px solid #3e444c;
  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 ;
  background-color:#fff9ef;
}
select {
  color: #5a5c63;
  font-size: 100% ;
  padding: 3px ;
}
textarea {
  color: #5a5c63;
  font-size: 100% ;
  width: 100% ;
  height: 100px ;
  padding: 3px ;
  margin-bottom: 10px ;
  background-color: #fdf6ee;

}

#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:1px 0 1px 0;
  background-color: white;
  margin-bottom: -2px;
/*  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: #fff;
}

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;
}

/*
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.red a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#ff3333), to(#990000));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#ff3333, #990000);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3333', endColorstr='#990000');
  color: white;
  text-shadow: 0px -1px 1px #000;
  background: url("/images/sp/arrow.png") right center no-repeat,
}

ul.link li.arrow.orange a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#faa51a), to(#f06015));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#faa51a, #f06015);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f06015');
  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.arrow.rosy a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#f16c7c), to(#bf404f));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#f16c7c, #bf404f);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f16c7c', endColorstr='#bf404f');
  color: white;
  text-shadow: 0px -1px 1px #000;
  background: url("/images/sp/arrow.png") right center no-repeat,
}

ul.link li.arrow.green a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#7db72f), to(#4e7d0e));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#7db72f, #4e7d0e);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
  color: white;
  text-shadow: 0px -1px 1px #000;
  background: url("/images/sp/arrow.png") right center no-repeat,
}

ul.link li.arrow.pink a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#feb1d3), to(#f171ab));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#feb1d3, #f171ab);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb1d3', endColorstr='#f171ab');
  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: 1px;
  height: auto;
  width: auto;
  list-style: none;
  background-color:#000;
  color:#fff;
}

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;
}

/*---------------------------
__footer
---------------------------*/
#footer{
  padding:5px 0 5px 0;
  color: #ffffff;
  font-weight: bold;
  background-color: #0ecee5;
}

#footer-base {
	margin: 0;
	padding: 3px 10px;
	text-align: left;
	background-color: #000;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
        font-size: 14px;
        color: #fff;
}

#footer-base #footer-nav {
	display: table;
	height: 14px;
	margin: 4px auto 3px;
	padding: 5px;
	width: 100%;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	color: #FFFFFF;
        text-align: left;
}

#footer-base #footer-nav a{
        color: #fff;
　　text-decoration: none;
}

#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);
}

/*---------------------------
__Q&A
---------------------------*/

.QandA {
	padding:0px 0px 20px 0px;
}

.Question {
	border-bottom:#666 1px dotted;
	padding:10px 10px 15px 10px;
}

.Question {
padding: 10px 10px 15px;
border-bottom-color: rgb(102, 102, 102);
border-bottom-width: 1px;
border-bottom-style: dotted;
}

/*ミュージックチャンス*/
#header7{
  width:100%;
  height: auto;
  position:relative;
  background: -webkit-gradient(linear, left top, left bottom ,from(#fdffe6), to(#dffff0));
  background: -moz-linear-gradient(top , #fdffe6,#dffff0);
 
}

#header7 #top{
  text-align: left;
}

#header7 #top img{
  width: 100%;
}

.header7_b{
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 7px;
  top:8px;
}

.header7_b li{
  margin-left: 2px;
  float:left;
}

h2.title_7{
  padding:6px 0 3px 10px;
  background: ##0fc0ca;
  background: -webkit-gradient(linear, left top, left bottom ,from(#08ddff),color-stop(0.9,#0fbdc5), to(#0ec8d9));
  background: -moz-linear-gradient(top , #08ddff,#0fbdc5 90%,#0ec8d9);
  color: #ffffff;
/*
  border-top: solid 1px #e35598;
  border-bottom: solid 1px #e35598;
*/
}

ul.link li.list_7{
  background: -webkit-gradient(linear, left top, left bottom ,from(#000), to(#000));
  background: -moz-linear-gradient(top ,  #000,#000);
  color: #1a1a1a;
}


.button_icon{
  width:70px;
  height:70px;
  padding-right:10px;
  float:left;
}

.button_text{
  width:70%;
  float:left;
}

.button_icon2{
  margin-bottom: 3px;
}

.tieup{
  font-size:13px;
}

ul.link_yoko_7{
  background: -webkit-gradient(linear, left top, left bottom ,from(#000), to(#000));
  background: -moz-linear-gradient(top , #000, #000);
  margin:0;
  padding:0;
  width: 100%;
  display: table;
  table-layout: fixed;
}

ul.link_yoko_7 li.yoko{
  display: table-cell;
  border:none;
  margin:0;
  padding: 0 1%;
  font-size:12px;
  text-align:center;
  color: #1a1a1a;
  background: none;
}

ul.link_yoko_7 li.yoko a,
ul.link_yoko_7 li.yoko a:active{
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: #fff;
}

ul.link li.list_more7{
  background: #156c04;
  background: -webkit-gradient(linear, left top, left bottom ,from(#ffb329), to(#f9b00c));
  background: -moz-linear-gradient(top ,  #ffb329,#f9b00c);
/*
  text-shadow:0 0 3px #ffc1f1;
*/
}

ul.link li.list_more_7 a{
  color: #1a1a1a;
  padding: 10px 15px 10px 0;
}



/*--------------------------------------
ログイン画面
--------------------------------------*/
.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;
}

svg {
	width: 100%;
	height: auto;
        position: absolute;
        top: 0px;
}
.line01,
.line03,
.line04{    
	stroke:#333;
	fill:#333;
	fill-opacity: 0;
	stroke-width:1;
	stroke-dasharray: 8000;
	stroke-dashoffset:8000;
	-webkit-animation: LINE 8s ease-in 0s forwards;
	animation: LINE 8s ease-in 0s forwards;
}
	
	.line02{
		
	stroke:#CF1417;
	fill:#CF1417;
	fill-opacity: 0;
	stroke-width:1;
	stroke-dasharray: 8000;
	stroke-dashoffset:8000;
	-webkit-animation: LINE 8s ease-in 0s forwards;
	animation: LINE 8s ease-in 0s forwards;
		
	}
@keyframes LINE{
	0%{stroke-dashoffset:8000;fill-opacity: 0;}
	30% {fill-opacity: 0;}
	35% {fill-opacity: 1;}
	100%{stroke-dashoffset:0;fill-opacity: 1;}
}
@-webkit-keyframes LINE{
	0%{stroke-dashoffset:8000;fill-opacity: 0;}
	30% {fill-opacity: 0;}
	35% {fill-opacity: 1;}
	100%{stroke-dashoffset:0;fill-opacity: 1;}
}



  /* 点滅 */
.blinking {
    -webkit-animation: blink 1.5s ease-in-out infinite alternate;
    -moz-animation: blink 1.5s ease-in-out infinite alternate;
    animation: blink 1.5s ease-in-out infinite alternate;
    position: absolute;
    top: 45%;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}



/*=== 画像の表示エリア ================================= */
.slide {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 300px;
  height     : 300px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 25s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 5s }
.slide img:nth-of-type(3) { animation-delay: 10s }
.slide img:nth-of-type(4) { animation-delay: 15s }
.slide img:nth-of-type(5) { animation-delay: 20s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { opacity: 0; transform: rotate(-180deg)}
   2% { opacity: 1; transform: rotate(0deg)   }
  18% { opacity: 1; transform: rotate(0deg)   }
  20% { opacity: 0; transform: rotate(180deg) }
 100% { opacity: 0; transform: rotate(180deg) }
}



.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: #0061de;  
}

div.pagination span {
  margin-right:3px;
  padding:6px 9px;

  background-position:bottom;
  background-color:#ffffff;
  border: 1px solid #dedfde;
  background-image:none;
  background-color:#0061de;
  color: #fff;
}

div.pagination a:hover, div.meneame a:active {
  border: 1px solid #000;
  background-image:none;
  background-color:#0061de;
  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: #000;
    font-size: 15px;
    line-height: 1.3;
    background: url(/images/bg_2023_0410.jpg) center no-repeat;
    background-size: cover;
    font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
    -webkit-text-size-adjust: none;
}


/* clearfix */
.clearfix:after { display: block; clear: both; }

em{ color: #db0000;}

p { margin: 0 0 10px 0; padding: 0; }

form { margin-top:0px; margin-bottom: 0px; background-color: ; }

h1 {
    margin: 0px 0px 20px 0px;
    height: 34px;
    font-size: 19px;
    color: #fff;
    text-shadow: 0 1px 0 #801411;
    padding: 9px 0 0 0;
    text-align: center;
    border-bottom: solid 1px #175a23;
    background: #005559;
}

h2 {
    text-align: left;
    font-size: 17px;
    margin-left: 12px;
    padding: 8px 0 0 8px;
    margin: 0px 0px 15px 0px;
}


.btn-left {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  padding:7px;
}

.btn-left a {
    background: rgb(0, 0, 0);
    box-shadow: 0;
    /* text-shadow: 0 -1px 0 #d49748; */
    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;
    border: 1px solid #ffffff;
    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(#8aa1bf, #4a6c9b);
  background: -webkit-gradient(linear, 0 0%, 0 100%, from(#8aa1bf), to(#4a6c9b));

  box-shadow: 1px 1px 1px 0px #333 inset;
  text-shadow: 0px -1px 1px #000;
  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;
  border: 1px solid #3e444c;
  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 ;
  background-color:#fff;
}
select {
  color: #5a5c63;
  font-size: 100% ;
  padding: 3px ;
}
textarea {
  color: #5a5c63;
  font-size: 100% ;
  width: 100% ;
  height: 100px ;
  padding: 3px ;
  margin-bottom: 10px ;
  background-color: #fdf6ee;

}

#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: 85%;
    list-style: none;
    text-align: center;
    margin: 20px auto ;
}



ul.link li {
    border-color: #005559;
    border-style: solid;
    border-width: 0px 0 1px 0;
    background-color: white;
    margin-bottom: -2px;
    /* 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: #000;
}

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;
}

/*
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.red a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#ff3333), to(#990000));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#ff3333, #990000);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3333', endColorstr='#990000');
  color: white;
  text-shadow: 0px -1px 1px #000;
  background: url("/images/sp/arrow.png") right center no-repeat,
}

ul.link li.arrow.orange a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#faa51a), to(#f06015));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#faa51a, #f06015);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f06015');
  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.arrow.rosy a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#f16c7c), to(#bf404f));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#f16c7c, #bf404f);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f16c7c', endColorstr='#bf404f');
  color: white;
  text-shadow: 0px -1px 1px #000;
  background: url("/images/sp/arrow.png") right center no-repeat,
}

ul.link li.arrow.green a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#7db72f), to(#4e7d0e));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#7db72f, #4e7d0e);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
  color: white;
  text-shadow: 0px -1px 1px #000;
  background: url("/images/sp/arrow.png") right center no-repeat,
}

ul.link li.arrow.pink a:hover{
  background: url("/images/sp/arrow.png") right center no-repeat, -webkit-gradient(linear, 0 0%, 0 100%, from(#feb1d3), to(#f171ab));
  background: url("/images/sp/arrow.png") right center no-repeat, -moz-linear-gradient(#feb1d3, #f171ab);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb1d3', endColorstr='#f171ab');
  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: 1px;
    height: auto;
    width: auto;
    list-style: none;
    background-color: #fff;
    color: #000;
}

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;
    position: relative;
}

/*---------------------------
__footer
---------------------------*/
#footer {
    padding: 9px 0 5px 0;
    color: #fff;
    background-color: #f66000;
    font-size: 14px;
    font-weight: 300;
}

#footer-base {
    margin: 0;
    padding: 3px 10px;
    text-align: center;
    background-color: #fc2713;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #CCCCCC;
    font-size: 11px;
    color: #fff;
}

#footer-base #footer-nav {
    display: table;
    height: 14px;
    margin: 16px auto 16px;
    padding: 0px;
    width: 100%;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    color: #000000;
    text-align: center;
}

#footer-base2 {
    margin: 0;
    padding: 3px 10px;
    text-align: center;
    /* background-color: #000; */
    /* border-top-width: 1px; */
    /* border-top-style: solid; */
    /* border-top-color: #000000; */
    font-size: 14px;
    color: #fff;
}


#footer-base2 #footer-nav2 {
    display: table;
    height: 14px;
    margin: 16px auto 16px;
    padding: 0px;
    width: 100%;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    color: #000000;
    text-align: center;
}


#footer-base2 #footer-nav2 a {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
}
#footer-base3 {
    margin: 0;
    padding: 3px 10px;
    text-align: center;
    /* background-color: #000; */
    /* border-top-width: 1px; */
    /* border-top-style: solid; */
    /* border-top-color: #000000; */
    font-size: 14px;
    color: #fff;
}


#footer-base3 #footer-nav3 {
    display: table;
    height: 14px;
    margin: 16px auto 16px;
    padding: 0px;
    width: 100%;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    color: #000000;
    text-align: center;
}


#footer-base3 #footer-nav3 a {
    color: #000;
    text-decoration: none;
    font-size: 10px;
}


#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);
}

/*---------------------------
__Q&A
---------------------------*/

.QandA {
	padding:0px 0px 20px 0px;
}

.Question {
	border-bottom:#666 1px dotted;
	padding:10px 10px 15px 10px;
}

.Question {
padding: 10px 10px 15px;
border-bottom-color: rgb(102, 102, 102);
border-bottom-width: 1px;
border-bottom-style: dotted;
}

/*ミュージックチャンス*/
#header7{
  width:100%;
  height: auto;
  position:relative;
  background: -webkit-gradient(linear, left top, left bottom ,from(#fdffe6), to(#dffff0));
  background: -moz-linear-gradient(top , #fdffe6,#dffff0);
 
}

#header7 #top{
  text-align: left;
}

#header7 #top img{
  width: 100%;
}

.header7_b{
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 7px;
  top:8px;
}

.header7_b li{
  margin-left: 2px;
  float:left;
}

h2.title_7 {
    padding: 11px 0 7px 10px;
    background: ##0fc0ca;
    background: -webkit-gradient(linear, left top, left bottom ,from(#f8ed56),color-stop(0.9,#f9ef56), to(#f8ee55));
    background: -moz-linear-gradient(top , #08ddff,#0fbdc5 90%,#0ec8d9);
    color: #000000;
    background-color: #f9ee55;
    font-size: 18px;
    margin: 0;
}


h2.title_72 {
    padding: 11px 0 20px 8px;
    background: ##0fc0ca;
    background: -webkit-gradient(linear, left top, left bottom ,from(#000),color-stop(0.9,#000), to(#000));
    background: -moz-linear-gradient(top , #08ddff,#0fbdc5 90%,#0ec8d9);
    color: #ffffff;
    background-color: #000;
    font-size: 18px;
    /* text-align: center; */
}

ul.link li.list_7{
  color: #1a1a1a;
}


.button_icon{
  width:70px;
  height:70px;
  padding-right:10px;
  float:left;
}

.button_text{
  width:70%;
  float:left;
}

.button_icon2{
  margin-bottom: 3px;
}

.tieup{
  font-size:13px;
}

ul.link_yoko_7{
  background: -webkit-gradient(linear, left top, left bottom ,from(#000), to(#000));
  background: -moz-linear-gradient(top , #000, #000);
  margin:0;
  padding:0;
  width: 100%;
  display: table;
  table-layout: fixed;
}

ul.link_yoko_7 li.yoko{
  display: table-cell;
  border:none;
  margin:0;
  padding: 0 1%;
  font-size:12px;
  text-align:center;
  color: #1a1a1a;
  background: none;
}

ul.link_yoko_7 li.yoko a,
ul.link_yoko_7 li.yoko a:active{
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: #fff;
}

ul.link li.list_more7{
  background: #156c04;
  background: -webkit-gradient(linear, left top, left bottom ,from(#ffb329), to(#f9b00c));
  background: -moz-linear-gradient(top ,  #ffb329,#f9b00c);
/*
  text-shadow:0 0 3px #ffc1f1;
*/
}

ul.link li.list_more_7 a{
  color: #1a1a1a;
  padding: 10px 15px 10px 0;
}



/*--------------------------------------
ログイン画面
--------------------------------------*/
.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;
}

svg {
    width:70%;
    height: auto;
    position: absolute;
    top: 13%;
    left: 0;
    right: 0;
    margin: auto;
}
.line01,
.line04{    
	stroke:#ff00b1;
	fill:#ff00b1;
	fill-opacity: 0;
	stroke-width:1;
	stroke-dasharray: 8000;
	stroke-dashoffset:8000;
	-webkit-animation: LINE 8s ease-in 0s forwards;
	animation: LINE 8s ease-in 0s forwards;
}

.line03 {
    stroke: #fff;
    fill: #fff;
    fill-opacity: 0;
    stroke-width: 1px;
    stroke-dasharray: 8000;
    stroke-dashoffset: 8000;
    -webkit-animation: LINE 8s ease-in 0s forwards;
    animation: LINE 8s ease-in 0s forwards;
}
	
.line02 {
    stroke: #ff00b1;
    fill: #ffffff00;
    fill-opacity: 0;
    stroke-width: 3px;
    stroke-dasharray: 8000;
    stroke-dashoffset: 8000;
    -webkit-animation: LINE 8s ease-in 0s forwards;
    animation: LINE 8s ease-in 0s forwards;
}
@keyframes LINE{
	0%{stroke-dashoffset:8000;fill-opacity: 0;}
	30% {fill-opacity: 0;}
	35% {fill-opacity: 1;}
	100%{stroke-dashoffset:0;fill-opacity: 1;}
}
@-webkit-keyframes LINE{
	0%{stroke-dashoffset:8000;fill-opacity: 0;}
	30% {fill-opacity: 0;}
	35% {fill-opacity: 1;}
	100%{stroke-dashoffset:0;fill-opacity: 1;}
}



  /* 点滅 */
.blinking {
    -webkit-animation: blink 1.5s ease-in-out infinite alternate;
    -moz-animation: blink 1.5s ease-in-out infinite alternate;
    animation: blink 1.5s ease-in-out infinite alternate;
    position: absolute;
    top: 77%;
    width: 93%;
    right: 0;
    left: 0;
    margin: auto;
}

.blinking2 {
    -webkit-animation: blink 1.5s ease-in-out infinite alternate;
    -moz-animation: blink 1.5s ease-in-out infinite alternate;
    animation: blink 1.5s ease-in-out infinite alternate;
     margin: 28px 0px 30px 0px;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}



/*=== 画像の表示エリア ================================= */
.slide {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 300px;
  height     : 300px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 25s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 5s }
.slide img:nth-of-type(3) { animation-delay: 10s }
.slide img:nth-of-type(4) { animation-delay: 15s }
.slide img:nth-of-type(5) { animation-delay: 20s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { opacity: 0; transform: rotate(-180deg)}
   2% { opacity: 1; transform: rotate(0deg)   }
  18% { opacity: 1; transform: rotate(0deg)   }
  20% { opacity: 0; transform: rotate(180deg) }
 100% { opacity: 0; transform: rotate(180deg) }
}




.fixed-bg {
  min-height: 100vh;
  background-attachment: fixed;
  background-size:  100%;
  background-position: center;
}
 
.bg01 {
  background-image: url(/images/bg1.png);

}
 
.bg02 {
  background-image: url(/images/bg2.png);
}

.bg03 {
  background-image: url(/images/bg3.png);
}

.bg04 {
  background-image: url(/images/bg4.png);
}

.bg05 {
  background-image: url(/images/bg5.png);
}

.bg06 {
  background-image: url(/images/bg6.png);
}



#wrapper {
    
}

#wrapper:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background: url(/images/bg_2023_0410.jpg)  center no-repeat;
  background-size:cover;
}

/*--------------------------------------
ログイン画面
--------------------------------------*/
.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;
}



.header7_b{
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 7px;
  top:8px;
}

.header7_b li{
  margin-left: 2px;
  float:left;
}



/*--------------------------------------
登録ボタンボックス
--------------------------------------*/

.regist_text{
 border-width:1px;
 border-style:solid;
 border-radius:5px;
 box-sizing:border-box;
}

.regist_text.docomo{
  margin: 10px 0px 0px 0px;
  border-color:#C30E39;
}

.regist_text.au{
	
  border-color: #E85D2C;
  margin: 10px 0px 0px 0px;
  }
  
 .regist_text.sb{
  border-color: #757778;
  margin: 10px 0px 0px 0px;
 } 


.center{
text-align: center;
}

.content_margin{
margin:15px 20px;
}


.regist_text p{
	font-size: 90%;
	line-height: 1.5em;
	margin: 0px 0px 14px 0px;
}
	
.sm_txt {
    font-size: 11px;
    color: #000;
}


 .yohaku{
 margin: 16px auto;
 display: block;
 font-size: 16px;
 }

.ui-btn{
	display: block;
	text-align: center;
	cursor: pointer;
	position: relative;
	margin: .5em 5px;
	padding: 0;
 
 }
 

 .ui-btn-up-c{
 	background-image: none;
 	background: #fff;
 	transition: all .3s;
        border: 1px solid #ccc /*{c-bup-border}*/;
        color: #444 /*{c-bup-color}*/;
} 


.ui-btn-inner{
	border-top: 0px;
}

.ui-btn-inner{
	padding: .6em 25px;
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
    position: relative;
    zoom: 1;
    }	

.ui-btn-corner-all{
	border-radius: 1em /*{global-radii-buttons}*/;
	-webkit-border-radius: 1em /*{global-radii-buttons}*/;
       text-decoration: none;
}


a.color{
	color: #E6A001!important;
	font-weight: 300;
	text-decoration: underline;
}

.regist_sublink{
	text-align: right!important;
	display: block;
}

.fa{
	display: inline-block;
	ont: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.f_aside{
}

.f_aside_list_li {
   width:50%;
   border-bottom:1px solid rgba(255,255,255,.45);
   -webkit-box-flex:2;
   ms-flex-positive:2;
   flex-grow:2;
}

.f_aside_list_link {
  display: block;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
 border-left: 1px solid rgba(225,225,225,.45);
}

/*f_entry*/

#f_entry {
	position: fixed;
	left: 0;
	bottom: -70px;
	width: 100%;
	z-index: 999;
	background: #000;
	height: 110px;
	-webkit-align-items: center;
	align-items: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.fixed #f_entry {
	bottom: 0;
}

#f_entry .btn {
	border: 4px solid #fff900;
}

.flex {
	display: -webkit-flex;
	display: flex;
}


/*btn*/

.btn {
	width: 80%;
	margin: 0 auto;
	background: #ff0000;
	font-weight: 900;
	text-align: center;
	font-size: 28px;
	line-height: 35px;
	height: 35px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-o-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 5px;
	letter-spacing: 1px;
	text-indent: 1px;
	box-shadow:0px 5px 15px -4px rgba(89,89,89,0.2);
}

.btn a {
	color: #fff;
	display: block;
}

.btn.gray {
	background: #cecece;
	color: #a1a0a0;
}

.btn.gray a {
	color: #a1a0a0;
}



.contents {
    top: 0px;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.genkin_p1 {
    position: absolute;
    top: 3%;
    left: 3%;
    margin: auto;
    width: 45%;
}
.genkin_p2 {
    position: absolute;
    top: 3%;
    right: 3%;
    margin: auto;
    width: 45%;
}
.genkin_p3 {
    position: absolute;
    top: 52%;
    right: 3%;
    margin: auto;
    width: 45%;
}
.genkin_p4 {
    position: absolute;
    top: 52%;
    left: 3%;
    margin: auto;
    width: 45%;
}


/* 02.テープ */
.heading02{
	position:relative;
	margin:0 -1px;
	font:bold 25px/1.6 Arial, Helvetica, sans-serif;
	text-align:center;
	color:#000;
	background:#f0e800;
	-webkit-transform: rotate(-3deg) skew(-3deg);
	-moz-transform: rotate(-3deg) skew(-3deg);
	-o-transform: rotate(-3deg) skew(-3deg);
	-ms-transform: rotate(-3deg) skew(-3deg);
	transform: rotate(-3deg) skew(-3deg);
	text-shadow:1px 1px 0 rgba(255,255,255,1);
	box-shadow:	0 1px 2px 0 rgba(0,0,0,0.2),
				30px 0 0 0 #f0e800,
				-30px 0 0 0 #f0e800;
}


.sraidertaitle {
    font-weight: bold;
    color: #fff;
    font-size: 19px;
    padding: 11px;
}


.taitle12 {
    color: #fff;
    text-align: left;
    padding-left: 11px;
}



/* 04.吹き出し */
.heading04 {
    position: relative;
    margin: 0 8px;
    padding: 6px 10px;
    color: #000000;
    border: #000000 solid 3px;
    border-radius: 5px;
    background: #fff;
    box-shadow: -7px -5px 0 0 #e8e8e8 inset, 2px 3px 0 0 #000000;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.heading04:before {
    content: " ";
    position: absolute;
    top: 100%;
    left: 14px;
    width: 0;
    height: 0;
    border-width: 20px;
    border-style: solid;
    border-color: transparent;
    border-top-color: #000;
    margin-bottom: 30px;
}
.heading04:after{
	content:" ";
	position:absolute;
	bottom:-27px;
	left:18px;
	width:0;
	height:0;
	border-width:14px;
	border-style:solid;
	border-color:transparent;
	border-top-color:#e8e8e8;
}

.top_btn {
    position: absolute;
    top: 62%;
    right: 0;
    left: 0;
    margin: auto;
    width: 86%;
}


.top_yaji {
    position: absolute;
    top: 53%;
    right: 0;
    left: 0;
    margin: auto;
    width: 13%;
}
.star7 {
  animation: r7 1s linear infinite;
}
 
@keyframes r7 {
  0%   { transform: rotateY(0deg);}
  100% { transform: rotateY(360deg);}
}

@keyframes rotate-y{
  0%{transform:rotateY(0deg);}
  100%{transform:rotateY(360deg);}
}
@-webkit-keyframes rotate-x{
  0%{-webkit-transform:rotateY(0deg);}
  100%{-webkit-transform:rotateY(360deg);}
}
.rotate-y{
  animation:rotate-y 2s infinite;
  -webkit-animation:rotate-y 2s infinite;
}

.sentaku {
    text-align: center;
    border: solid 1px #005559;
    margin: 10px;
    padding: 30px;
}



.shake {
  animation: shake_2004 5.875s ease infinite;
  transform-origin: 50% 50%;
}

@keyframes shake_2004 {
  0% { transform:rotate(-12deg) }
  3.40426% { transform:rotate(12deg) }
  4.25532% { transform:rotate(24deg) }
  7.65957% { transform:rotate(-24deg) }
  8.51064% { transform:rotate(-24deg) }
  11.91489% { transform:rotate(24deg) }
  12.76596% { transform:rotate(24deg) }
  16.17021% { transform:rotate(-24deg) }
  17.02128% { transform:rotate(-24deg) }
  20.42553% { transform:rotate(24deg) }
  21.2766% { transform:rotate(24deg) }
  24.68085% { transform:rotate(-24deg) }
  25.53191% { transform:rotate(-24deg) }
  28.93617% { transform:rotate(24deg) }
  31.91489% { transform:rotate(0deg) }
  100% { transform:rotate(0deg) }
}


/* 05.アメリカンな(?)吹き出し */

.heading05 {
    position: relative;
    text-align: center;
    padding: 5px 20px;
    font: bold 18px/1.6 Arial, Helvetica, sans-serif;
    color: #fff;
    background: #000;
    /* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #999; */
    border-top: #fff solid 3px;
    border-bottom: #fff solid 3px;
    background-image: -webkit-gradient(linear, left top, right bottom, from( rgba(255, 255, 255, 0.0)), color-stop(0.4, rgba(255, 255, 255, 0.0)), color-stop(0.4, rgba(0, 0, 0, 0.1)), color-stop(0.6, rgba(0, 0, 0, 0.1)), color-stop(0.6, rgba(255, 255, 255, 0.0)), to(rgba(255, 255, 255, 0.0)));
    background-image: -webkit-linear-gradient(top -45deg,transparent 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%,transparent 60%);
    background-image: -moz-linear-gradient(top -45deg, transparent 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, transparent 60% );
    background-image: -o-linear-gradient(top -45deg, transparent 40%,rgba(0, 0, 0, 0.1) 40%,rgba(0, 0, 0, 0.1) 60%, transparent 60%);
    background-image: linear-gradient(to bottom -45deg, transparent 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, transparent 60% );
    background-size: 4px 4px;
}

.heading05:before{
 content:" ";
position:absolute;
top:100%;
left:24px;
width:0;
height:0;
border-width:12px;
border-style:solid;
border-color:transparent;
border-top-color:#fff;
}

.heading05:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 28px;
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    border-color: transparent;
    border-top-color: #000;
    z-index: 1;
}
.col_3 {
    margin-top: 15px;
    width: 95%;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    color: #FFF;
    text-align: center;
    margin-bottom: 15px;
    margin: 15px auto;
}
.col_3 a {
    color: #fff;
    text-decoration: none;
}

.col_3 > div {
    width: 25%;
    height: 200px;
    padding: 22px;
    background: #ffffff;
    margin: 0px 0px;
    border: solid 1px #010e34;
    font-size: 12px;
    /* vertical-align: middle; */
    /* display: table-cell; */
    color: #000;
    padding: 20px 30px;
}

@media screen and (max-width: 1090px) {
	.col_3 > div{
		width: 33.33333%;
	}
}
@media screen and (max-width: 480px) {
.col_3 > div {
    width: 45.333%;
    height: auto;
    padding: 7px 0px;
    margin-bottom: 4px;
    background: #005559;
    margin: 10px auto;
    border: none;
    border-radius: 50px;
}

	}


div.qa {
    margin: 15px 20px 10px 20px;
    font-size: 80%;
    color: #000 !important;
}