@charset "UTF-8";

*{
	margin: 0;padding:0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family:'Lucida Grande','Hiragino Kaku Gothic ProN',
  Meiryo, sans-serif;
	color: #000;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
	color:#E6E6E6;
}

textarea{
  background: none;
  color:#a08976;
}

hr.lap-1 {
  width:100%;
  height:1px;
  border:0;

  background: #29abe2; /* Old browsers */
  background: -moz-linear-gradient(left,  #29abe2 0%, #22b573 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  #29abe2 0%,#22b573 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  #29abe2 0%,#22b573 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#29abe2', endColorstr='#22b573',GradientType=1 ); /* IE6-9 */
}


.cf:before,
.cf:after{
  content:"";
  display: table;
}
.cf:after{
  clear:both;
}
/*IE6,7対策 （haslayout対策）*/
.cf{
  *zoom:1;
}

.fixed {
    position: fixed;
    top: 30px;
    z-index: 2000;
}



/*コマンド系*/

.f-left{
  float: left;
}

.f-right{
  float: right;
}

.block{
	display: block;
}

.big-bold{
  font-weight: bold;
  font-size: 24px;
}

.m-auto{
	margin: 0 auto;
}

.d-none{
  display: none;
}

.text-center{
  text-align: center;
}

.text-left{
  text-align: left;
}

.text-right{
  text-align: right;
}

.width-100{
  width:100%;
}

.width-90{
  width:90%;
}

.width-80{
  width:80%;
}

.width-60{
  width:60%;
}

.width-50{
  width:50%;
}

.width-48{
  width:48%;
}

.width-25{
  width:25%;
}

.width-20{
  width:20%;
}

.width-10{
  width:10%;
}

.height-100{
  height: 100%;
}

.height--09em{
  height:0.9em;
}

.height--1em{
  height:1em;
}

.bottom-50{
  margin-bottom: 50px;
}

.bottom-30{
  margin-bottom: 30px;
}

.bottom-20{
  margin-bottom: 20px;
}

.bottom-15{
  margin-bottom: 15px;
}

.bottom-10{
  margin-bottom: 10px;
}

.bottom-5{
  margin-bottom: 5px;
}


.bottom-0{
  margin-bottom: 0px;
}


.top-10{
  margin-top: 10px;
}

.top-15{
  margin-top: 15px;
}

.top-20{
  margin-top: 20px;
}

.top-30{
  margin-top: 30px;
}

.top-50{
  margin-top: 50px;
}

.table {
  display: table;
  width: 100%;
}

.table > * {
  display: table-cell;
  vertical-align: middle;
  /*padding: 7px 10px;*/
}

.cell--lead{
	font-weight: bold;
}


.flex{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
	max-width: 1080px;
	text-align: center;
  margin: 0 auto;
}

.flex-center{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center; /* Safari */
  justify-content:         center;
}

.in-frame--1080{
  width: 1080px;
  margin: 0 auto;
  position: relative;
}

/*年齢認証モーダル*/
.modal { position:fixed; display:none; z-index:1044; top:40%; left:50%; width:400px; height:200px; margin:-120px 0 0 -220px; padding:20px; text-align:center; }
.modal p { margin-bottom:20px; color:#f2f2f2;}
.modal a { cursor:pointer; }

