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

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

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

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

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

/* TABLE detail END */

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

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

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

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

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

/* TABLE LIST END */
div.pagination {
  padding: 3px;
  margin: 15px;
  text-align:center;
}
 
div.pagination a {
  border: 1px solid #dedfde;
  margin-right:3px;
  padding:6px 9px;
  background-color:#ffffff;
  background-position:bottom;
  text-decoration: none;

  color: #da063c;  
}

div.pagination span {
  margin-right:3px;
  padding:6px 9px;

  background-position:bottom;
  background-color:#ffffff;
  border: 1px solid #dedfde;
  background-image:none;
  background-color:#da063c;
  color: #fff;
}

div.pagination a:hover, div.meneame a:active {
  border: 1px solid #000;
  background-image:none;
  background-color:#da063c;
  color: #fff;
}
/**************************/
/* PHP Rails scaffold.css */
/**************************/

/*
http://predic8.com/iphone-css-layout-theme.htm
http://connecre.com/connelog/connelog00000172.php
*/


/* HTML BASIC START */

body {
  margin: 0;
  padding: 0;
/*  background:#000;*/
}

ul,ol{
  list-style:none;
}

a {
  text-decoration: none;
}


.b {font-weight:bold;}

.cWhite {color:#fff;}
.cBlue {color:#00adee;}

.m0 {margin:0;}
.m5 {margin:5px;}
.m10 {margin:10px;}
.mT5 {margin-top:5px;}
.mT10 {margin-top:10px;}
.mB5 {margin-bottom:5px;}
.mB10 {margin-bottom:10px;}
.mL5 {margin-left:5px;}
.mL10 {margin-left:10px;}
.mR5 {margin-right:5px;}
.mR10 {margin-right:10px;}

.p0 {padding:0;}
.p5 {padding:5px;}
.p10 {padding:10px;}
.pT5 {padding-top:5px;}
.pT10 {padding-top:10px;}
.pB5 {padding-bottom:5px;}
.pB10 {padding-bottom:10px;}
.pL5 {padding-left:5px;}
.pL10 {padding-left:10px;}
.pR5 {padding-right:5px;}
.pR10 {padding-right:10px;}

.nb {white-space:nowrap;}

.aL {text-align:left;}
.aC {text-align:center;}
.aR {text-align:right;}

/* HTML BASIC END */

* {
  word-break: break-all;
  -webkit-touch-callout:none;
  -webkit-tap-highlight-color:rgba(255,255,0,0.4);
  -webkit-text-size-adjust:none;
}

body {
  color: #333333;
  font-size: 15px;
  line-height: 1.3;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3"; /* iPhoneバンドル */
  -webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
}


/* clearfix */
:after { display: block; clear: both; }

em{ color: #db0000;}

p { margin: 0 0 10px 0; padding: 0; }

form { margin-top: 0px; margin-bottom: 0px; }

h1 {
    background: #016cff;
    margin: 0px;
    height: 43px;
    font-size: 13px;
    color: white;
    padding: 13px 0 0 0;
    text-align: center;
}


h2{
  text-align: left;
  font-size: 17px;
  margin-left: 12px;
  padding: 10px 0;
  margin: 0;
}

.btn-left {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  padding:7px;
}

.btn-left a {
    background: #fff;
    border-radius: 4px;
    font: bold 12px Arial;
    text-align: center;
    line-height: 28px;
    color: #2774dd;
    white-space: nowrap;
    overflow: hidden;
    -webkit-tap-highlight-color: white;
    padding: 8px 5px;
    text-decoration: none;
    min-width: 30px;
    width: auto !important;
    width: 30px;
    border: solid 2px #1854a7;
}

.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;
}
.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;
}

/* 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,
.link .icon_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 .icon_arrow a{
  background: none;
  padding: 5px 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;
}

.link .title{
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
}

.link li .icon{
  background: none;
  padding: 0 10px 0 0;
  width: 35px;
  height: 35px;
  text-decoration: none;
  vertical-align: -12px;
}
/* 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 */


.series_list{
  background: #fafafa;
  border-bottom: solid 1px #878787;
  padding: 7px 4px;
  color: #242424;
}

/*一覧ページ*/

.ichiran_list{
  width: 100%;
  padding: 3px 0;
  background: #fafafa;
  padding: 7px 0;
  border-bottom: solid 1px #878787;
}


/*---------------------------
__footer
---------------------------*/
#footer {
    padding: 15px 0 15px 0;
    color: #ffffff;
    font-weight: bold;
    /* text-shadow: 1px 1px 0 #fff0f0; */
   background-color: #016cff;
}

#footer-base {
	margin: 0;
	padding: 2px 0;
	text-align: center;
	background-color: #ffffff;
	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: #456e37;
	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_carrier{
  background: #ffffff;
  text-align: center;
}

.footer_list li{
  border-bottom: solid 1px #929292;
}
.footer_list li a{
  display: block;
  padding:10px 9px;
  background: #ffffff;
  font-size: .9rem;
  color: #525252;
}
.footer_list li img{
  vertical-align: center;
  width:30px;
  height:30px;
}



.header{
  width:100%;
  height:auto;
  position:relative;
}

.logo{
  width:100%;
  height:auto;
  margin:0;
  padding:0;
  border:none;
}

.logo img{
  width: 100%;
  height: auto;
}

.cont_title{
  background: #456e37;
  padding: 12px 0 12px 10px;
  border-bottom: solid 2px #4b3616;
  color:#ffffff;
  font-size:1rem;
  line-height: 1;
}

.cont_list li{
  background: #fafafa;
  border-bottom: solid 1px #979797;
}
.cont_list li a{
  display: block;
  padding: 12px 7px 12px 27px;
  background: url(/images/list_icon.png) no-repeat 6px center/ 15px;
  color: #5a5a5a;
}

.more {
    width: 76%;
    margin: 16px auto;
    background: #f6a38b;
    /* background: linear-gradient(to bottom,#ffffff,#f7f7f7); */
    border: solid 1px #ff8200;
    border-radius: 90px;
    text-align: center;
    color: #fff;
}
.more a {
    display: block;
    padding: 9px 0;
    font-size: .95rem;
    color: #ffffff;
}


.course_list{
  background: #ffffff;
}
.course_list a{
  display: block;
  padding: 9px 5px;
  color: #424242;
  border-bottom: solid 1px #c6c6c6;
}

ul.link li.list_26{
  margin-bottom: 0;
  background: #ffffff;
  background: linear-gradient(to bottom,#ffffff 0%,#f7f7f7 100%);
  border-bottom: solid 1px #878787;
}

ul.link li.list_26 a{
  padding: 9px 15px;
  font-size:0.95rem;
  color: #242424;
}

.pick_up_content{
  display:flex;
  flex-flow: row nowrap;
  justify-content:space-around;
  width:99%;
  margin:5px auto;
}

.pick_up_content li{
  width:23.5%;
  text-align:center;
}

.pick_up_content p{
  margin-bottom:2px;
}

.pick_up_content a{
  color:#242424;
  font-size:0.8rem;
  line-height:1rem;
}

.more2{
  margin-bottom: 10px;
  background: #ffffff;
  background: linear-gradient(to bottom,#ffffff 0%,#f7f7f7 100%);
  border-bottom: solid 1px #878787;
}

.more2 a{
  display:block;
  padding:7px 15px;
  font-size:0.95rem;
  color:#3bafc9;
  background:url(/images/arrow_more.png) right center no-repeat;
  background-size: 20px 20px;
}

.lp img{
  width: 100%;
}


/*--------------------------------------
登録画面の説明文設定
--------------------------------------*/
.au,
.docomo,
.softbank{
  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;
}



.list_icon{
  vertical-align: bottom;
  padding: 0;
  margin: 0px 10px 0px 0px;
}

/*--------------------------------------
登録ボタンボックス
--------------------------------------*/

.regist_text{
 border-width:1px;
 border-style:solid;
 border-radius:5px;
 box-sizing:border-box;
}

.regist_text.docomo{
  margin: 20px 0px 0px 0px;
  border-color:#C30E39;
}

.regist_text.au{
	
  border-color: #E85D2C;
  margin: 20px 0px 0px 0px;
  }
  
 .regist_text.sb{
  border-color: #757778;
  margin: 20px 0px 0px 0px;
 } 


.center{
text-align: center;
}

.content_margin{
margin:0 20px;
}


.regist_text p{
	font-size: 90%;
	line-height: 1.5em;
	margin: 0px 0px 14px 0px;
}
	
.sm_txt{
	font-size:1em;
}


 .yohaku{
 margin: 20px auto;
 display: block;
 }

.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}*/;
}


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;
}



/*--------------------------------------

バナーCSS
--------------------------------------*/

.img-wrap {
  animation: img-wrap 4s cubic-bezier(.4, 0, .2, 1)infinite;
   width: 94%;
   margin: 15px auto;
}

@keyframes img-wrap {
  0% {
    clip-path: circle(0 at 50% 50%);
    -webkit-clip-path: circle(0 at 50% 50%);
  }
  100% {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
  }
}



.contents{
height: auto;
margin: 0;
padding: 0;
position: relative;
}

.stb_sb6 {
    position: absolute;
    top: 62%;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
}
.stb_sb9 {
    position: absolute;
    top: 81%;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
}
.stb_sb7 {
    position: absolute;
    top: 18%;
    /* left: 0; */
    right: 5%;
    margin: auto;
    width: 57%;
}
.double-flash {
  animation: double-flash 3s ease infinite;
  transform-origin: 50% 50%;
}

@keyframes double-flash {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


.float {
  animation: float_5310 3s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes float_5310 {
  0% { transform: translateY(0) }
  33.33333% { transform: translateY(-6px) }
  66.66667% { transform: translateY(0) }
  100% { transform: translateY(0) }
}

#container {
  position: relative;
  height: 200px;
  margin: 20px;
}

.circle {
  position: absolute;
  left: 20px;
  top: 0;
  width: 100px;
  height: 100px;
  background: #4169e1;
  border-radius: 50%;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate;
}

.text {
  animation: wobbling_x 0.7s ease-in-out infinite alternate,
    wobbling_y 1.2s ease-in-out infinite alternate;
}

@keyframes wobbling_x {
  0% {
    margin-left: 8px;
  }

  100% {
    margin-left: 0px;
  }
}

@keyframes wobbling_y {
  0% {
    margin-top: 0px;
  }

  100% {
    margin-top: 8px;
  }
}
.midashi_1 {
  position: relative;
  padding: 1rem 2rem 1rem 4em;
  background: #fff;
}

.midashi_1 span {
  position: absolute;
  top: -10px;
  left: 20px;
  display: inline-block;
  width: 52px;
  height: 50px;
  text-align: center;
  background: #fa4141;
}

.midashi_1 span:before,
.midashi_1 span:after {
  position: absolute;
  content: '';
}

.midashi_1 span:before {
  right: -10px;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #d90606;
}

.midashi_1 span:after {
  top: 50%;
  left: 0;
  display: block;
  height: 50%;
  border: 1em solid #fa4141;
  border-bottom-width: 15px;
  border-bottom-color: transparent;
}

.midashi_1 span i {
  position: relative;
  z-index: 1;
  color: #fff100;
}

/* 4カラム */
*, *:before, *:after {
	box-sizing: border-box;
}
.col_4{
margin-top: 15px;
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
color: #FFF; /* 文字の色 */
text-align: center; /* 内容は中央配置 */
}
.col_4 a {
    color: #848484;
}
.col_4 > div {
    width: 25%;
    height: 200px;
    padding: 22px;
    background: #ffffff;
    margin: 0px 0px;
    border: double #7ebdff 5px;
    font-size: 12px;
    /* vertical-align: middle; */
    /* display: table-cell; */
    color: #000;
}

@media screen and (max-width: 1090px) {
	.col_4 > div{
		width: 33.33333%;
	}
}
@media screen and (max-width: 767px) {
.col_4 > div {
    width: 100%;
    height: auto;
    padding: 5px 5px;
    margin-bottom: 4px;
}

	}

.bg4 {
    position: relative;
    margin: 60px 10px 15px;
}
ul.sample1 {
    counter-reset: li;
    font: 14px/1.6 'arial narrow', sans-serif;
    list-style: none;
    padding: 0;
    background: #fff;
}
ul.sample1 li {
    position: relative;
    font-weight: bold;
    line-height: 19px;
    padding: 7px 40px;
    margin: 10px 0;
}
ul.sample1 li a {
    color: #266e53;
}
ul.sample1 li:nth-child(4n+1){
  border:dashed 1px #FFA79F;
}
ul.sample1 li:nth-child(4n+2){
  border:dashed 1px #fbaf5d;
}
ul.sample1 li:nth-child(4n+3){
  border:dashed 1px #9FCDFF;
}
ul.sample1 li:nth-child(4n+4){
  border:dashed 1px #AFEBB6;
}
ul.sample1 li:before {
   position: absolute;
 
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f0eb';
  color: #00ACDB;
position: absolute;
    left: -1px;
    color: #fff;
    text-align: center;
    line-height: 54px;
    width: 30px;
    height: 55px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
ul.sample1 li:nth-child(4n+1):before{
  background: #FFA79F;
}
ul.sample1 li:nth-child(4n+2):before{
  background: #fbaf5d;
}
ul.sample1 li:nth-child(4n+3):before{
  background: #9FCDFF;
}
ul.sample1 li:nth-child(4n+4):before{
  background: #AFEBB6;
}
ul.sample2 {
    counter-reset: li;
    font: 14px/1.6 'arial narrow', sans-serif;
    list-style: none;
    padding: 0;
    background: #fff;
}
ul.sample2 li {
    position: relative;
    font-weight: bold;
    line-height: 19px;
    padding: 17px 40px;
    margin: 10px 0;
}
ul.sample2 li a {
    color: #266e53;
}
ul.sample2 li:nth-child(4n+1){
  border:dashed 1px #FFA79F;
}
ul.sample2 li:nth-child(4n+2){
  border:dashed 1px #fbaf5d;
}
ul.sample2 li:nth-child(4n+3){
  border:dashed 1px #9FCDFF;
}
ul.sample2 li:nth-child(4n+4){
  border:dashed 1px #AFEBB6;
}
ul.sample2 li:before {
     position: absolute;
 
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f00e';
  color: #00ACDB;
position: absolute;
    left: -1px;
    color: #fff;
    text-align: center;
    line-height: 54px;
    width: 30px;
    height: 55px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
ul.sample2 li:nth-child(4n+1):before{
  background: #FFA79F;
}
ul.sample2 li:nth-child(4n+2):before{
  background: #fbaf5d;
}
ul.sample2 li:nth-child(4n+3):before{
  background: #9FCDFF;
}
ul.sample2 li:nth-child(4n+4):before{
  background: #AFEBB6;
}
ul.sample3 {
    counter-reset: li;
    font: 14px/1.6 'arial narrow', sans-serif;
    list-style: none;
    padding: 0;
    background: #fff;
}
ul.sample3 li {
    position: relative;
    font-weight: bold;
    line-height: 19px;
    padding: 17px 40px;
    margin: 10px 0;
}
ul.sample3 li a {
    color: #266e53;
}
ul.sample3 li:nth-child(4n+1){
  border:dashed 1px #FFA79F;
}
ul.sample3 li:nth-child(4n+2){
  border:dashed 1px #fbaf5d;
}
ul.sample3 li:nth-child(4n+3){
  border:dashed 1px #9FCDFF;
}
ul.sample3 li:nth-child(4n+4){
  border:dashed 1px #AFEBB6;
}
ul.sample3 li:before {
    counter-increment: li;
    content: counter(li);
    position: absolute;
    left: -1px;
    color: #fff;
    text-align: center;
    line-height: 54px;
    width: 30px;
    height: 55px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
ul.sample3 li:nth-child(4n+1):before{
  background: #FFA79F;
}
ul.sample3 li:nth-child(4n+2):before{
  background: #fbaf5d;
}
ul.sample3 li:nth-child(4n+3):before{
  background: #9FCDFF;
}
ul.sample3 li:nth-child(4n+4):before{
  background: #AFEBB6;
}
 .bg1{
    position: relative;
    margin: 60px 10px 30px;
}
.bg2 {
    position: relative;
    margin: 0px 10px 0px;
}
<!--

#top_button{
  width: 100%;
  height: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
}

#top_button li{
  display: table-cell;
  height: 35px;
  box-sizing: border-box;
  text-align: center;
  line-height: 31px;
  background: #056966;
  border: solid 1px #1c9200;
}

#top_button li a{
  display: block;
  font-size: 13px;
  color:#ffffff;
  text-shadow: 0 1px 0 #640f0f;
  font-weight: bold;
  text-decoration: none;
}

-->
.title1 {
    position: relative;
    text-align: center;
    border: 2px solid #7ebdff;
    background: #fff;
    color: #888;
}


.title1:before,
.title1:after {
  position: absolute;
  content: '';
}

.title1:before {
    top: -40px;
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    border: 2px solid #7ebdff;
    border-radius: 50%;
    background: #fff;
}


.title1:after {
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 2px dashed #7ebdff;
    background: #fff;
}


.title1 i {
    font-size: 24px;
    font-size: 2rem;
    line-height: 60px;
    position: absolute;
    z-index: 2;
    top: -40px;
    left: calc(50% - 39px);
    width: 80px;
    height: 60px;
    text-align: center;
    color: #f6a38b;
}


.title1 span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 1rem;
}

.title1 span:before,
.title1 span:after {
  position: absolute;
  content: '';
}

.title1 span:before {
    top: -34px;
    left: calc(50% - 34px);
    width: 68px;
    height: 40px;
    border: 2px dashed #8dc5ff;
    border-radius: 50vw 50vw 0 0;
}


.title1 span:after {
    position: absolute;
    top: 4px;
    left: calc(50% - 34px);
    width: 72px;
    height: 10px;
    background: #fff;
}

.bg {
    animation: slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(
-60deg, #9eceff 50%, #50a8ff 50%);
    bottom: 0;
    left: -50%;
    opacity: .5;
    position: fixed;
    right: -50%;
    top: 0;
    z-index: -1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.content {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
}

h1 {
  font-family:monospace;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}