/* 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;
}

h1,h2,h3,h4,h5,h6,ul,li{
  margin:0;
  padding:0;
}

/*index28*/

.toroku{
  text-align: center;
  padding: 26px 0;
}

.toroku img{
  width:100%;
}

.button_grid{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 94%;
  margin: 0 auto;
}

.button_grid .toroku{
  flex: 0 0 calc(100% / 2 - 4px);
}

.toroku_freetext {
    margin: 2px 0px -6px 11px;
    width: 100%;
    text-align: left;
    font-size: 10px;
    color: #ffffff;
}

/*-----------------------------
ダウンロードボタン
-----------------------------*/

.download_button{
  height: 40px;
  width: 75%;
  margin: 0 auto;
  background-color: 0080ff;
  background: -webkit-gradient(linear,left top,left bottom, from(#ebebeb),  to(#f8f8f8));
  background: -moz-linear-gradient(top, #ebebeb, #f8f8f8);
  border: solid 1px #d2d2d2;
  border-radius: 16px;
  box-shadow: 0 -1px 2px #d2d2d2 inset;
}

.download_button a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #000;
  font-weight: bold;
  line-height: 39px;
  text-shadow: 0 1px 0 #d2d2d2;
}

/*-----------------------------
退会確認ボタン
-----------------------------*/

.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;
}.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: #962929;  
}

div.pagination span {
  margin-right:3px;
  padding:6px 9px;

  background-position:bottom;
  background-color:#ffffff;
  border: 1px solid #dedfde;
  background-image:none;
  background-color:#962929;
  color: #fff;
}

div.pagination a:hover, div.meneame a:active {
  border: 1px solid #000;
  background-image:none;
  background-color:#962929;
  color: #fff;
}
.retire_wrap{
  margin: 13px 7px;
  color: #232323;
}

.retire_text{
  font-size: 0.75rem;
}
.attention{
  color: #cc0000;
}

.retire_title{
  text-align: center;
  font-size: 1rem;
  margin: 15px 0 7px;
  padding: 0;
}

.retire_course{
  display: block;
  width: 75%;
  margin: 18px auto;
  padding: 8px 0;
  background: #1857b7;
  border-radius: 5px;
  color: #ffffff;
  font-size: 0.9rem;
  text-align: center;
}

.retire_after{
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.retire_button1,
.retire_button2,
.retire_button3{
  display: block;
  width: 50%;
  margin: 16px auto;
  padding: 8px 0;
  border-radius: 3px;
  font-size: 0.9rem;
  text-align: center;
}
.retire_button1{
  border: solid 2px #F2B700;
  color :#F2B700;
}
.retire_button2{
  border: solid 2px #ff5b65;
  color :#ff5b65;
}
.retire_button3{
  border: solid 2px #911616;
  color :#911616;
}

.reason{
  line-height: 1.5rem;
}

.anke{
  margin: 18px 12px;
  font-size: 0.85rem;
  color: #000000;
}
.anke dt{
  margin-bottom: 6px;
  font-size: 1rem;
}
.anke dd{
  margin: 0 0 12px 7px;
}

/*********************************
form内
*********************************/
.retire_wrap select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  outline: none;
  padding: 4px 9px;
  background: transparent;
  border: solid 1px #606060;
  border-radius: 2px;
}
.retire_wrap input[type="text"],
.retire_wrap textarea{
  border: solid 1px #606060;
}
.retire_wrap input[type="text"]{
  padding: 4px 0;
}

.retire_wrap input[type='radio'],
.retire_wrap input[type='checkbox'] {
  display: none;
}
.retire_wrap input[type='radio'] + label,
.retire_wrap input[type='checkbox'] + label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-right: 10px;
}
.retire_wrap input[type='radio'] + label:before,
.retire_wrap input[type='radio'] + label:after,
.retire_wrap input[type='checkbox'] + label:before,
.retire_wrap input[type='checkbox'] + label:after {
  content: '';
  font-family: helvetica;
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  bottom: 0;
  text-align: center;
  position: absolute;
}
.retire_wrap input[type='radio'] + label:before,
.retire_wrap input[type='checkbox'] + label:before {
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #232323;
  transition: all 0.3s ease-in-out;
}
.retire_wrap input[type='radio'] + label:after,
.retire_wrap input[type='checkbox'] + label:after {
  color: #ffffff;
}
.retire_wrap input[type='radio']:checked + label:before,
.retire_wrap input[type='checkbox']:checked + label:before {
  box-shadow: inset 0 0 0 10px #ff5b65;
  border: none;
}
 
/*Radio Specific styles*/
.retire_wrap input[type='radio'] + label:before {
  border-radius: 50%;
}
.retire_wrap input[type='radio']:checked + label:after {
  content: '\2022';
  position: absolute;
  top: 0px;
  font-size: 19px;
  line-height: 18px;
}
 
.retire_wrap input[type='checkbox'] + label:before {
  border-radius: 3px;
}
.retire_wrap input[type='checkbox']:checked + label:after {
  content: "\2713";
  font-size: 14px;
  line-height: 18px;
}/**************************/
/* 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
-webkit-touch-callout:none; /* リンク長押しのポップアップを無効化 */
-webkit-user-select:none; /* テキスト長押しの選択ボックスを無効化 */
 }

a {
  text-decoration: none;
}
ul{
  list-style: 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: 16px;
  line-height: 1.3;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3"; /* iPhoneバンドル */
  -webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
}


/* clearfix */
.clearfix:after {
    content:" ";
    display:block;
    clear:both;
}

em{ color: #db0000;}

p { margin: 0 0 10px 0; padding: 0; }

form { margin-top: 0px; margin-bottom: 0px; }

h1 {
  background: #1d1d2d;
  margin: 0px;
  height: 34px;
  font-size: 18px;
  color: #ffffff;
  padding: 9px 0 0 0;
  text-align: center;
}

h2{
  text-align: left;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.btn-left {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  padding:7px;
}

.btn-left a{
  background: #ec008c;
  border-radius: 1px;
  font: bold 12px Arial;
  text-align: center;
  line-height: 28px;
  color: #ffffff;
  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 ;
}

.detail{
  border-spacing: 0 3px;
  width: 100%;
  padding: 0 10px 0 10px;
  empty-cells:show;
}

.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;
}

.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;
  
}

.detail input[type="text"],
.detail input[type="password"]
{
  border:0;
}

/* TABLE LIST_IMAGE END */


/* LIST LINK START */
.link {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}

.link li{
  border-color:#878787;
  border-style:solid;
  border-width:0 0 1px 0;
  background-color: white;
}

.link .arrow{
  background-image: url("/images/sp/arrow.png");
  background-position: right center;
  background-repeat: no-repeat;
}

.link .arrow a{
  background: none;
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: black;
}

.link li .right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}

/* LIST LINK END */

/* LIST TEXT START */
.text {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}

.text li{
  border-color:#878787;
  border-style:solid;
  border-width:1px 0 1px 0;
  margin-bottom: -2px;
}

.text li .right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}
/* LIST TEXT END */

/* LIST RADIUS START */
.radius {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}

.radius li{
  padding: 10px;
  margin:10px;
  border-style:solid;
  border-width: 1px;
  -webkit-border-radius: .5em;
  -moz-border-radius: .5em;
  border-radius: .5em;
}

.radius li .right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}
/* LIST RADIUS END */

.link .list_more{
  text-align:center;
  border-bottom:none;
  padding-top:10px;
}

.link .arrow2 a{
  background-image: url("/images/sp/arrow.png");
  background-position: right center;
  background-repeat: no-repeat;
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: black;
}

.content_title{
  padding:11px 0 11px 10px;
  background: #ee821f;
  color: #ffffff;
  font-size: 1rem;
}

.more{
  width: 40%;
  margin: 9px auto;
}

.more a{
  display: block;
  padding: 6px;
  background: #fc2e86;
  text-align: center;
  color: #ffffff;
}

ul.radius li {
    font-size: 12px;
}
ul.radius p {
    font-size: 12px;
    margin: 0 0 10px 0;
    padding: 0;
}

div.qa {
    margin: 15px 20px 10px 20px;
    font-size: 80%;
}
div.qa h3 {
    color: #000000;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 0px 5px 5px;
    margin: 10px 0px 10px 0px;
    border-left: 5px solid #b3b3b3;
    border-bottom: 1px dashed #b3b3b3;
}

/*---------------------------
__footer
---------------------------*/
#footer{
  padding:20px 0;
  background: #c41e89;
  color: #ffffff;
  font-weight: bold;
}

#footer-base {
	margin: 0;
	padding: 2px 0;
	text-align: center;
	background-color: #1ec5aa;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
        font-size: 13px;
}

#footer-base #footer-nav {
	display: table;
	height: 14px;
	margin: 3px auto 3px;
	padding: 5px;
	width: 97%;
	background-color: #ff7a9e;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	color: #FFFFFF;
}


#footer-base small {
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-moz-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-webkit-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

.footer_wrap{
  background: #ffffff;
  color: #ffffff;
}

.footer_list{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  border-top: solid 1px #bdbdbd;
}

.footer_list li{
  box-sizing: border-box;
  flex:1 1 calc(100% / 2);
  border-bottom: solid 1px #bdbdbd;
}
.footer_list li:nth-of-type(odd){
  border-right: solid 1px #bdbdbd;
}

.footer_list li a{
  display: block;
  padding: 7px 8px;
  color: #2e6275;
  font-size: 0.75rem;
}

.copy{
  text-align: center;
  font-size: .9rem;
  font-weight: bold;
}


.container{
  background: #1c1a28;
}

.header{
  width:100%;
  height: auto;
  position:relative;
}

.logo{
  width:100%;
  height: auto;
  margin:0;
  padding:0;
  background:none;
  border: none;
}

.content_wrap{
  margin: 18px 13px;
/*  padding: 16px 18px;*/
  border-radius: 3px;
}
.button_grid + .content_wrap{
  margin-top: 0;
}

.content_top_title {
  padding: 0;
  font-size: 1rem;
  color: #ff2883;
  margin: 0px 0px 15px 0px;
}

.content_inner{
}

.content_inner a{
  color: #212121;
}
.content_item{
  margin-bottom: 16px;
  background: #ffffff;
  border: solid 1px #dbdbdb;
}
.content_item a{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.content_img{
  width: 150px;
}

.content_img img{
  width: 150px;
  height: 150px;
}

.content_description{
  order: -1;
  flex: 0 0 calc(100% - 150px);
  box-sizing: border-box;
  padding: 8px 12px;
  color: #535353;
}
.content_description h3{
  margin: 7px 0;
  font-size: .875rem;
}
.content_description p{
  font-size: .75rem;
  color: #4f4f4f;
  line-height: 1.5;
}

.rank_caption{
  margin: 0 0 -4px 2px;
  color: #ff2883;
  font-size: .875rem;
  font-weight: bold;
}

.category_search{
  box-sizing: border-box;
  display:flex;
  flex-flow:row wrap;
  justify-content:space-between;
  align-content:space-between;
  width:94%;
  margin:22px auto;
  background: #ffffff;
  border-radius:
}
.category_search li{
  box-sizing: border-box;
  width: calc(100% / 2);
  text-align:center;
  border-bottom: solid 1px #a3a3a3;
}
.category_search li:last-of-type,
.category_search li:nth-last-of-type(2){
  border-bottom: none;
}
.category_search li:nth-of-type(odd){
  border-right: solid 1px #a3a3a3;
}
.category_search li a{ 
  display: block;
  padding: 10px 0;
  font-size: .75rem;
  color: #4f4f4f;
}

.content_title{
  padding: 12px 0 12px 8px;
  font-size: 0.875rem;
  background: #14274f;
  color: #ffffff;
}

.content_list li{
  margin-bottom: 0;
  background: #ffffff;
  border-top: none;
  border-bottom: solid 1px #9c9c9c;
}

.detail_wrap{
  padding: 16px 14px;
  text-align: center;
  font-size: .875rem;
}
.detail_content{
  margin: 0 0 18px;
}
.detail_title{
  margin-bottom: 12px;
  text-align: center;
}
.detail_img img{
  width: 200px;
  height: auto;
}
.detail_description{
  margin: 12px 0;
}

.download_btn a,
.point_btn a{
  display: block;
  width: 60%;
  margin: 6px auto;
  padding: 16px 0;
  border-radius: 4px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
}
.download_btn a{
  background: #5ed914;
}
.point_btn a{
  background: #f64545;
}

.detail_point{
  margin: 14px 0 22px;
}

.detail_point p{
  margin: 0 0 5px 0;
}

.detail_attention{
  font-size: .75rem;
}

.content_list li a{
  display: block;
  padding: 10px 12px;
  color: #757575;
}

.course_list{
  background: #ffffff;
}
.course_list a{
  display: block;
  padding: 9px 5px;
  color: #4b4b4b;
  border-bottom: solid 1px #7a7a7a;
}

/*--------------------------------------
登録画面の説明文設定
--------------------------------------*/
.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;
}