﻿@charset "UTF-8";

a, a:visited{text-decoration:none; color:#0071bc; outline:none;}
a:visited { color: #0071bc; }
a:hover { color: #0071bc; }
a:active { color: #0071bc; }

/*---------- タブ----------*/


/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  padding-bottom: 0px;
  width: 90%;
  margin: 80px auto 0;
	display: flex;
	flex-wrap:wrap;
	justify-content:space-around
}

/*タブのスタイル*/
.tab_item {
	width: 40%;
	background: #a6a6a6;
	color:#fff;
	font-weight: bold;
	text-align: center;
	padding: 8px 0 4px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	transition: all 0.2s ease;
}
.tabs > input:checked + label {
	background: #333;
	color: #fff;
	padding: 14px 0 10px;
	margin-top: -12px
}
.tab_item:hover {
  opacity: 0.7;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
	width:100%;
	display: none;
}
.tab_content-inn {
	width:100%;
	padding: 40px;
	overflow: hidden;
	background: #fff;
	border: 3px #333333 solid;
	border-radius: 10px;
	box-sizing: border-box
}

/*選択されているタブのコンテンツのみを表示*/
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content{
  display: block;
}


/* SP */
@media screen and (max-width:768px)   {

.tabs {
  padding-bottom: 0px;
  width: 96%;
  margin: 8% auto 0;
	justify-content:center;

}

/*タブのスタイル*/
.tab_item {
	width: 47%;
	box-sizing: border-box;
	font-size:4.3vw
}
.tab_item:first-of-type{margin-right: 1%;}

/*タブ切り替えの中身のスタイル*/
.tab_content-inn {
	width:100%;
	padding: 2% 5% 5%;
	}
}

form .formitem-wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 20px 0;
}

form .formitem-wrap .formttl{width:42%; padding-top:6px}
form .formitem-wrap .formcontents{width:55%}
form .formitem-wrap .formcontents span{font-size: 1.6rem}

form .formitem-wrap .formcontents input[type="text"],
form .formitem-wrap .formcontents input[type="password"]{
	box-sizing: border-box;
	width: 100%;
	padding: 6px 10px;
	margin-bottom: 5px;
	background: #f2f2f2;
	font-size: 18px;
	border: none;
	-webkit-appearance: none;
	//border-radius:5px;
	//box-shadow: 0 0 4px rgba(0, 0, 0, 0.32);
}

form .formitem-wrap .formcontents .formcontents-inn{
	display: flex;
	justify-content: space-between;
	align-items: center;}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

// Firefox、IE  
input[type="number"] {  
  -moz-appearance:textfield;  
}  
form .formitem-wrap .formcontents .formcontents-inn input[type="text"],
form .formitem-wrap .formcontents .formcontents-inn input[type="number"]{
	box-sizing: border-box;
	width: 30%;
	padding: 6px 10px;
	margin-bottom: 5px;
	background: #f2f2f2;
	font-size: 18px;
	border: none;
	-webkit-appearance: none;
	//border-radius:5px;
	//box-shadow: 0 0 4px rgba(0, 0, 0, 0.32);
}

form.remind .formitem-wrap .formttl{width:20%; padding-top:6px}
form.remind .formitem-wrap .formcontents{width:75%}

/*---------- submit button----------*/
.btn_wrap a,.btn_wrap a:visited{color:#fff}
p.btn{ width: 300px; margin: 60px auto ;}
p.btn button[type="button"]{
	display: block;
    width: 100%;
	padding: 10px 0;
	text-align: center;
	font-weight: bold;
	font-size:1.8rem;
    color: #FFF;
	background: #4674c1;
	cursor: pointer;
	box-shadow: 0 0 10px 0px #666; 
	/*transition: .3s;*/
	border: 2px solid #fff;
	border-radius: 10px
}
p.btn button[type="button"]:hover{ background:rgba(70,116,193,0.70); }

p.btn2{ width: 300px; margin: 60px auto ;}
p.btn2 button[type="button"]{
	display: block;
    width: 100%;
	padding: 10px 0;
	text-align: center;
	font-weight: bold;
	font-size:1.8rem;
    color: #FFF;
	background: #999;
	cursor: pointer;
	box-shadow: 0 0 10px 0px #666; 
	/*transition: .3s;*/
	border: 2px solid #fff;
	border-radius: 10px
}
p.btn2 button[type="button"]:hover{ background:rgba(153,153,153,0.70)}


form p.login_btn{ width: 300px; margin: 60px auto 30px;}
form p.login_btn button[type="submit"]{
	display: block;
    width: 100%;
	padding: 10px 0;
	text-align: center;
	font-weight: bold;
	font-size:1.8rem;
    color: #FFF;
	background: #4674c1;
	cursor: pointer;
	box-shadow: 0 0 10px 0px #666; 
	/*transition: .3s;*/
	border: 2px solid #fff;
	border-radius: 10px
}
form p.login_btn button[type="submit"]:hover{ background:rgba(70,116,193,0.70); }


form .checkbox-input{
  display: none;}
form .checkbox-parts{
  padding-left: 2.0rem;
padding-top: 0.05rem;
  position:relative;
}
form .checkbox-parts::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #333;
  border-radius: 4px;
}
form .checkbox-input:checked +.checkbox-parts::before{
background: #333
}
form .checkbox-input:checked + .checkbox-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 1px;
  width: 1.8rem;
  height: 1.8rem;
	content: "";
	background-image: url(../img/common/form_check.svg);
	background-repeat: no-repeat

}

div.kiyaku{margin: 10px 0 40px;text-align: right; padding-right: 10px}

div.remind{margin: 0px auto 10px;
	width:100%;
	padding:10px;
	box-sizing: border-box;
	text-align: left;
	background: #e6e6e6;
}
div.remind p:first-child{border-bottom: 2px #333 solid;
	padding-bottom: 5px;
	margin-bottom: 10px
}
div.remind .remind-inn{padding:5px;
	box-sizing: border-box;
}
div.remind a{
	width:100%;
	display: inline-block;
	text-align: center;
	border: 1px #ccc solid;
	box-sizing: border-box;
	padding: 10px;
	color: #333
}
div.remind p.ind1{padding-left:1em;
	text-indent:-1em;}
div.remind a span{font-size:0.7em}

div.err_mes{margin: 0px auto 50px;
	width:100%;
	padding:15px;
	color:#ff0000;
	box-sizing: border-box;
	text-align: left;
	background: #fff;
	border: #ff0000 2px solid
}
div.err_mes2{margin: 50px auto 30px;
	width:100%;
	padding:15px;
	color:#ff0000;
	box-sizing: border-box;
	text-align: left;
	background: #fff;
	border: #ff0000 2px solid
}
div.mes{margin:15px auto 50px;
	width:100%;
	box-sizing: border-box;
	text-align: left;
	background: #fff;
}
div.mes2{margin:15px auto ;
	width:100%;
	box-sizing: border-box;
	text-align: left;
}
div.mes2 p{margin: 1em 0}

div.notice{	border: #ff0000 1px solid;
	margin-top: 50px!important;
	padding: 10px 5px 5px;
	font-size:0.8em;
	text-align: center;
	position: relative
}
div.notice span{color:#0071BC}
div.notice::after{position: absolute;
	content: '';
	width:30px;
	height:30px;
	background: url(../img/common/icon_notice.svg) no-repeat;
	top:-20px;
	left:10px
}

/* SP */
@media screen and (max-width:768px)   {
form .formitem-wrap{
	display: block;
}
form .formitem-wrap .formttl{width:100%; padding-top:0px}
form .formitem-wrap .formcontents{width:100%}
	
form.remind .formitem-wrap .formttl{width:100%; padding-top:0px}
form.remind .formitem-wrap .formcontents{width:100%}

form p.login_btn{ width: 100%; margin: 8% auto }
p.btn{ width: 90%; margin: 8% auto 5%}	

div.kiyaku{padding-right: 2%}	
	
div.remind{margin: 0 auto 5%;
	width:100%;
	padding:2%;
}
div.remind .remind-inn{padding:3%;}
	
div.remind p:first-child{
	padding-bottom: 2%;
	margin-bottom: 5%
}
div.remind a{padding: 3%;}
	
div.err_mes{margin: 5% auto 10%;
	padding: 3%
	}
div.mes{margin: 5% auto 10%;
	}
div.mes2{margin: 10% auto 5%;
	text-align: left;}
div.notice{	
	text-align: left;}	
	
.tab_item:hover {
  opacity: 1;
}	
	
}
