@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding: 0;
	color:#8f8d8a;

}


a {
	text-decoration: none;
}


#head {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	padding:10px;
	padding-left:0;
	padding-right:0;
	background: -moz-linear-gradient(90deg, rgba(236,159,95,1) 0%, rgba(230,110,11,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(236,159,95,1) 0%, rgba(230,110,11,1) 100%);
  background: linear-gradient(90deg, rgba(236,159,95,1) 0%, rgba(230,110,11,1) 100%);
}


#navi {
	clear: both;
	float: left;
	margin-left:0;
	margin-right:5%;
	width: 25%;
     vertical-align: middle;
	display: block;
	padding:0;
	text-align:center;
}

#navi_box {
  padding:10px;
  padding-left:0;
  display:block;
}

#nav-drawer {
  position: relative;
}


.nav-unshown {
  display:none;
}

#nav-open {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  padding:0;
  margin-top:5px;

}


#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 3px;
  background: #696969;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}


#nav-close {
  position:absolute;
  display: none;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 60px;
  height:auto;
  transition: .6s ease-in-out;
  padding:0px;
  padding-right:0;
}

#nav-close span:before,
#nav-close span:after {
	display: block;
	position:fixed;
  height: 4px;
  width: 30px;
  border-radius:3px;
	content: "";
	top: 35px;
	left: 20px;
  background: #696969;
}
#nav-close span:before {
	transform: rotate(-45deg);
}
#nav-close span:after {
	transform: rotate(45deg);

}


#nav-content {
  position:fixed;
  overflow: auto;
  top: 0px;
  left: 0;
  z-index: 999;
  width: 70%;
  height: 100%;
  background: #fff;
  transition: .6s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
    background-color:#f5f5f5;

}

#nav-content:before {
	content:"";
	position:absolute;
	top:28px;
	left:30%;
	font-size:18px;
	color:#6e6e6e;
	font-weight:900;

}
#nav-input:checked ~ #nav-close {
  display: block;
}


#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);

}


#nav-content ul{
	position:absolute;
	top:70px;
	list-style:none;
	text-align:left;
	padding:0;
	margin:0;
	width:100%;

}




#nav-content ul li{
	padding:20px;
	margin:0;
	border-bottom:#999 solid thin;

}


#nav-content ul li:first-child {
	border-top:#999 solid thin;
	
}

#nav-content ul li a {
	text-decoration: none;
	display:block;
	width:100%;
	padding:0;
	margin:0;
	color:#6e6e6e;
	


}

#nav-content ul li a:after {
  position: absolute;
  right:8px;
  content:url(../img/navi_icon.png);


}



#h1_div {
	clear: none;
	float: left;
	margin-left: 0;
	margin-right:0;
	width: 70%;
	display: block;
	text-align:right;
  vertical-align: middle;

}

h1 {
	padding:0;
	padding:10px;
	padding-right:20px;
	margin:0;
    margin-top:5px;
	color:#FFF;
	font-size:24px;
	}
	


#content {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	color:#333;
	display: block;
  background-color:#ded9d3;
}

h2 {
	padding:20px;
	padding-top:5px;
	padding-bottom:5px;
	color:#606060;
	
}

.content_box {
	width:90%;
	margin-left:5%;
	margin-bottom:10px;
	padding-bottom:0px;
	background-color:#FFF;
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
	font-size:14px;

}

.content_box:first-child {
	margin-top:30px;

}

.content_box:last-child {
	margin-bottom:30px;

}

.content_box dl {
	padding:0;
	margin:0;
	
}

.content_box dl dt {
	text-align:left;
	padding:10px;
	padding-left:20px;
	padding-top:15px;
	letter-spacing:0.1rem ;
	position:relative;
	font-size:15px;
	font-weight:normal;
}

.content_box dl dd{
	padding:0;
	padding-top:10px;
	padding-bottom:15px;
	margin:0;
	text-align:center;
}

.content_box dl dt:before {
	position:absolute;
	left:10px;
	top:10px;
	display:block;
}


.content_box_2 {
	background-color:#FFF;
	padding:0px;
  	font-size:15px;
}

h3 {
	margin:0;
	padding:10px;
	padding-top:15px;
	padding-left:30px;
	padding-bottom:0;
	text-align:left;
	font-size:16px;
	font-weight:700;
	position:relative;
}


	
.content_box_2  ul{
	list-style:none;
	padding:0;
	margin:0;
	margin-top:10px;
	border-top:#CCC medium solid;
}


.content_box_2  ul li{
	padding:10px;
	padding-left:0;
	padding-right:0;
	margin:0;
}

.content_box_2  ul li:nth-child(odd){
	background-color:#f5f5f5;


}


#content .list_dl {
	padding:0;
	margin:0;
	margin-left:10%;
	padding-bottom:10px;
	width:80%;
}

#content .list_dl dt{
  width: 50%;
  float: left;
  padding: 5px;
  text-align:left;
  line-height:20px;
}

#content .list_dl_dt_time {
	text-align:left;
	padding:10px;
	padding-left:20px;
	margin:0;
	margin-bottom:5px;
	font-size:16px;
	font-weight:700;
	color:#ffbf7f;
}


#content .list_dl dd{ffbf7f
	text-align:left;
	margin-left: 40%;
  padding: 5px;
  line-height:20px;
  text-align:right;
}

#content .list_dl_2{
	background-color:#CCC;
}



#content .list_dl dd{
	text-align:left;
	margin-left: 40%;
  padding: 5px;
  line-height:20px;
  text-align:right;
}

#content .profile_dl {
	padding-bottom:0;
}


#content .profile_dl dt{
	background-color:#f5f5f5;
	
}



#content .profile_dl dd{
	text-align:left;
	padding-left:40px;
	padding-right:40px;
	
}

.form_group {
	padding:0;
	margin:0;

}

.affiliate_ul {
	padding:10px;
	margin:0;
	list-style:none;
	display:block;
	text-align:center;
	
}

.top_link a {
	font-weight:900;
	line-height:30px;
	color:#FFF;
	display:block;
	text-align:center;
	
}

.content_box .history_dl {
	padding-bottom:10px;

}


.content_box .history_dl .history_dt {
	display:block;
	background-color:#f5f5f5;
	margin-bottom:10px;
	font-weight:900;
	color:#8ebb54;
	
}

.content_box .history_dl dd {
	margin:0;
	padding:5px;
	padding-top:10px;
	padding-left:20px;
	text-align:center;
}

.content_box .history_dl .history_dd {
	text-align:left;
	background-color:#f5f5f5;
	margin-top:10px;
	padding-right:20px;
	display:inline-block;
	width:50%;
	font-size:15px;
	
}

.content_box .history_dl dd ul {
	list-style:none;
	padding:0;
	margin:0;
	text-align:center;
}

.history_dl ul li{
	padding:0;
	margin:0;
	text-align:center;
	display:block;
	
}



#footer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	background: -moz-linear-gradient(90deg, rgba(236,159,95,1) 0%, rgba(230,110,11,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(236,159,95,1) 0%, rgba(230,110,11,1) 100%);
  background: linear-gradient(90deg, rgba(236,159,95,1) 0%, rgba(230,110,11,1) 100%);
}

.footer_p {
	text-align:center;
	padding:10px;
	color:#FFF;
	
}

.footer_p  a{
	color:#FFF;

}


/*span*/


    
.text_box_span {
	font-size:30px;
	font-weight:700;
	color:#8ebb54;

}
   
  
.span_gtb {
	font-size:14px;
	font-weight:700;
	margin-left:5px;
		margin-right:10px;

}


.tuki {
	margin-left:5px;
	margin-right:5px;
	color:#333;
	font-size:13px;
}

.niti {
	margin-left:5px;
	margin-right:5px;
	color:#333;
	font-size:13px;
}

.goukei {
	margin-right:5px;
	font-size:13px;
	color:#333;
	font-weight:100;
	
}

.money_top {
	font-size:16px;
	font-weight:900;
	margin-right:5px;
	color:#8ebb54;
}

.money {
	font-size:16px;
	font-weight:600;
	margin-right:5px;
	color:#333;
}


.span_gtb_2 {
	font-size:12px;
	width:20px;
	display:inline-block;
	padding-left:5px;
	color:#333;
	
}

.apri_span {
	padding:10px;
	margin:0;
	margin-top:5px;
	border-radius:3px;
	background-color:#8ebb54;
	color:#FFF;
	display:block;
	text-align:center;
	
}

.qr_span {
	margin:0;
	padding:10px;
	padding-top:0;
		display:block;

	text-align:center;
}

.checkbox_span {
	padding-left:10px;
	font-size:15px;
}

.rate_p {
	text-align:center;
	padding:10px;
	
}

.deposit_span {
	text-align:center;
	padding:0;
	margin:0;
	display:block;
	
}

.affiliate_span {
	font-size:20px;
	font-weight:900;
	
}

.list_number {
	display:inline-block;
	text-align:center;
	margin:0;
	margin-right:12px;
	padding:5px;
	border-bottom-right-radius:5px;
	border-top-right-radius:5px;
	background-color:#666;
	color:#FFF;

}

.history_span {
	padding:5px;
	margin:0;
	font-size:15px;
	color:#333;
	font-weight:normal;
	
}

.month_span {
	font-size:18px;
	font-weight:900;
	color:#8ebb54;
}

.history_btn {
	padding-bottom:20px;
	
}

.history_btn  a{
width:80%;
	display:block;
	padding:10px;
	padding-left:0;
	padding-right:0;
	margin:10px;
	margin-left:10%;
	background-color:#8ebb54;
	color:#FFF;
	font-weight:900;
	text-align:center;
	
}



/*フォーム*/

.form_calendar {
	width:100%;
	text-align:center;
	padding-top:20px;
	padding-bottom:30px;
}


select:-ms-expand {
	display: none;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-bottom: 20px;
	margin-left:25%;
	padding: 7px 30px 7px 10px;
	font-size: 93%;
	height:30px;
	width:50%;
	display:block;
    border-radius:2px;
	border: none;
	background-image:url(../img/yajirusi.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-color: #f5f5f5;
}

.form_control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-bottom: 20px;
	padding: 7px 30px 7px 10px;
	font-size: 93%;
	height:30px;
    border-radius:2px;
	border: none;
	background-color: #f5f5f5;
}

.form_textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-bottom: 20px;
	padding: 7px 30px 7px 10px;
	font-size: 93%;
	height:90px;
    border-radius:2px;
	border: none;
	background-color: #f5f5f5;
}




label {
	display:block;
	padding:5px;
	text-align:left;
	padding-left:40px;
	
}

.label_2 {
	padding:0;
}

.sbtn_calendar{
width:70px;
height:30px;
border-radius:2px;
background:#8ebb54;
color:#fff;
font-weight:bold;
font-size:14px;
border:none;
}

.btn_sub {
width:80%;
height:40px;
border-radius:2px;
background:#ffbf7f;
color:#fff;
font-weight:bold;
font-size:14px;
border:none;
}



.from_select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
		margin:0;
		margin-top:10px;
	margin-left:25%;
	padding: 7px 30px 7px 10px;
	font-size: 93%;
	height:30px;
	width:50%;
	display:block;
    border-radius:2px;
	border: none;
	background-image:url(../img/yajirusi.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-color: #f5f5f5;
}

.from_select2 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-bottom:20px;
	padding: 7px 30px 7px 10px;
	font-size: 100%;
	height:30px;
	width:20%;
	display:block;
    border-radius:2px;
	border: none;
	background-image:url(../img/yajirusi.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-color: #f5f5f5;
}


input[type=checkbox] {
  transform: scale(1.5);
}

.select_div {
	width:70%;
	margin-left:15%;
	margin-bottom:20px;
	
}

#click_display {
	padding:10px;
}

/*パンくず*/

.breadcrumb {
  margin: 0;
  padding: 10px;
  padding-bottom:0;
  list-style: none;
}

 .breadcrumb li {
  display:inline-block;
  list-style: none;
  font-size:9px;
  font-weight: bold;
  line-height:30px;
}

 .breadcrumb li:after {
  content: '>';
  padding: 0;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

 .breadcrumb li a {
  text-decoration: none;
  color: #8f8d8a;
    padding: 0;
}

/*tab*/

#tab_box {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	background-color:#ded9d3;

}


.tabs {
  width:100%;
  margin: 0 auto;
  text-align:center;
  }

.tab_item {
	padding:0;
	margin:0;
  width: 40%;
  height: 40px;
  line-height:40px;
  box-sizing:border-box;
  background-color: #fff;
  border-radius:30px;
  font-size: 18px;
  display:inline-block;
  font-weight: bold;
  transition: all 0.2s ease;
  text-align:center;
}

input[name="tab_item"] {
  display: none;
}

.tab_content {
  display: none;
  padding:0;
  margin-top:10px;
  margin-bottom:20px;
  clear: both;
  overflow: hidden;
  background-color:#ded9d3;
}


#te:checked ~ #te_content,
#ue:checked ~ #ue_content {
  display: block;
}

.tabs input:checked + .tab_item {
  box-sizing:border-box;
background:#8ebb54;
  border-radius:30px;
  color: #fff;
  

}

/*購入履歴btn*/
.content_box .history_dl label {
	text-align:center;
   width:50%;
	padding:10px;
	margin:10px;
	margin-left:20%;
	background-color:#ffbf7f;
	color:#FFF;
	font-weight:900;
	
}


.content_box .history_dl input {
    display: none;
}

.content_box .history_dl .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

.history_label_class:checked + .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

#click_display {
	display:none;
	
}


#click_display_2 {
	display:none;
	
}

/* タブレットレイアウト : 481 px ～ 700 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding: 0;
}

/* デスクトップレイアウト : 700 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 700px) {
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding: 0;
	max-width: 1200px;
}


.content_box {
	width:50%;
	margin-left:25%;
}

.content_box_2 {
	width:50%;
	margin-left:25%;
}



}
