/*=======================================================================*/
/*
form.css
フォーム パーツ系CSS
*/
/*=======================================================================*/


label {
	margin-right: 20px;
	display: inline-block;
	margin-bottom: 20px;
/*	margin-top: -10px;	*/
	position: relative;
}


body.confirm label {
	margin-bottom: 0;
}


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*=======================================================================*/
/* ラジオボタン */
/*=======================================================================*/

.radio-input{
	position: absolute;
	left: -9999px;
	vertical-align: middle;
}

.radio-parts {
	margin-top: -5px;
	padding-left: 30px;
	position:relative;
	margin-right: 20px;
	transition: .4s;
	float: none;
	line-height: 2.0em;

}

.radio-parts::before {
	content: "";
	display: block;
	position: absolute;
	top: -2px;
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #999;
	border-radius: 50%;
	transition: .4s;
}

.radio-input:checked + .radio-parts::before {
	/* border: 2px solid rgba(234,96,158,1); */
}

.radio-input:checked + .radio-parts {
	color: rgba(0,131,143,1);
}

.radio-input + .radio-parts::after {
	background: rgba(234,96,158,0);
	transform: scale(0,0);
	transition: .4s;
}

.radio-input:checked + .radio-parts::after {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 4px;
	width: 16px;
	height: 16px;
	background: rgba(0,172,193,1);
	border-radius: 50%;
	transform: scale(0.8,0.8);
}

body.confirm .radio-parts {
	padding-left: 0;
	font-weight: bold;
}

body.confirm .radio-parts::before {
	display: none;
}

body.confirm .radio-input:checked + .radio-parts::after {
	display: none;
}

/*=======================================================================*/
/* チェックボックス */
/*=======================================================================*/

input[type="checkbox"] {

}

.checkbox-input {
	position: absolute;
	left: -9999px;
	vertical-align: middle;
}

.checkbox-parts {
	padding-left: 30px;
	position:relative;
	margin-right: 20px;
	transition: .4s;
	vertical-align: middle;
}

.checkbox-parts::before {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 16px;
	height: 16px;
	border: 2px solid #BDBDBD;
	border-radius: 2px;
}

.checkbox-input:checked + .checkbox-parts {
	color: rgba(0,131,143,1);
}

.checkbox-input:checked + .checkbox-parts::before {
}

.checkbox-input:checked + .checkbox-parts::after {
	content: "";
	display: block;
	position: absolute;
	top: -7px;
	left: 5px;
	width: 8px;
	height: 17px;
	transform: rotate(40deg);
	border-bottom: 4px solid rgba(0,172,193,1);
	border-right: 4px solid rgba(0,172,193,1);
}


body.confirm .checkbox-input:checked + .checkbox-parts::before {
	background: none;
	border: none;
}

/* 無料お試しのみ */

#freeChk .checkbox-input:checked + .checkbox-parts {
	color: rgba(225,54,98,1);
}

#freeChk .checkbox-input:checked + .checkbox-parts::after {
	content: "";
	display: block;
	position: absolute;
	top: -7px;
	left: 5px;
	width: 8px;
	height: 17px;
	transform: rotate(40deg);
	border-bottom: 4px solid rgba(247,105,91,1);
	border-right: 4px solid rgba(247,105,91,1);
}

/* お届け先が異なる場合チェック */
.KeizokuChk .checkbox-parts {
	font-size: 1.1em;
}


/*=======================================================================*/
/* テキスト・テキストエリア */
/*=======================================================================*/

input[type="text"],
textarea,
input[type="email"],
input[type="tel"],
input[type="password"] {
	padding: 7px 5px;
	border: 2px solid #CCC;
	border-radius: 5px;
/*	margin: -10px 0 5px 0;	*/
	margin: 0 0 5px 0;
	font-size: 1em;
	outline: none;
	font-family: 'Noto Sans Japanese';
}

input.inptErr[type="text"],
input.inptErr[type="email"],
input.inptErr[type="tel"],
input.inptErr[type="password"] {
	border: 2px solid #d32f2f;
}

textarea {
	min-height: 100px;
	font-size: 1em;
	font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
    font-family: 'Noto Sans Japanese';
}

/* */

#kanji_sei,
#kanji_mei,
#kana_sei,
#kana_mei {
	width: 42%;
}

/* フォーカス */

input {
	transition: all 0.3s;
}

input[type="text"]:focus,
textarea:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus {
	border: 2px solid #0097A7;
	background: #E0F7FA;
    font-family: 'Noto Sans Japanese';
}

input.inptErr[type="text"]:focus,
textarea.inptErr:focus,
input.inptErr[type="email"]:focus,
input.inptErr[type="tel"]:focus,
input.inptErr[type="password"]:focus {
	border: 2px solid #d32f2f;
}

/* プレースホルダー */

input::-webkit-input-placeholder {
	color: #ccc;
	font-size: 1em;
    font-family: 'Noto Sans Japanese';
}
input:-moz-placeholder {
	color: #ccc;
	font-size: 1em;
    font-family: 'Noto Sans Japanese';
}

input:-ms-input-placeholder {
	color: #ccc;
	font-size: 1em;
    font-family: 'Noto Sans Japanese';
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }

/* 郵便番号 */

.post {
	width: 8em;
	margin: -10px 5px 0 0 !important;
}

.post1 {
	width: 6em;
	margin: -10px 5px 5px 0 !important;
}

.post2 {
	width: 8em;
	margin: -10px 0 5px 5px !important;
}

/* 紹介メディア */

#media_detail input["text"] {
	
}

.haisou_free_txt {
	width: 20%;
	margin: -10px 10px 5px 0 !important;
}

/*=======================================================================*/
/* セレクトボックス */
/*=======================================================================*/

.sBox {
	padding: 5px 10px;
}

.chosen-container {
    width: 200px !important;
}

.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 3px 0 0 8px;
	height: 30px;
	border: 1px solid #aaa;
	border-radius: 5px;
	background-color: #fff;
	background: -webkit-gradient(linear,left top,left bottom,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),to(#f4f4f4));
	background: linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0,0,0,.1);
	box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0,0,0,.1);
	color: #444;
	text-decoration: none;
	white-space: nowrap;
	line-height: 24px;
}

.chosen-container-single .chosen-single div b {
	display: block;
	width: 100%;
	height: 100%;
	background: url(chosen-sprite.png) no-repeat 0 5px;
}

select {
	margin: -10px 0 0 0;
}
/*
select::-ms-expand {
	display: none;
}

select:-moz-focusring { 
	color: transparent; 
}
*/
label.table {
	display: table;
	float: left;
}

.select-wrap {
	position:relative;
	overflow:hidden;
	display:inline-block;
	min-width:20%;
	min-width:12em;
	background-color:#ffffff;
	background-image:-webkit-linear-gradient(top, #ffffff 0%, #dfe0d9 100%);
	background-image:-moz-linear-gradient(top, #ffffff 0%, #dfe0d9 100%);
	background-image:linear-gradient(top, #ffffff 0%, #dfe0d9 100%);
	border:1px solid #c0c0c0;
	color:#333;
	display: table-cell;
}


.select-wrap.entypo-down-open-mini.inptErr {
	background-color:#ffffff;
	background-image:-webkit-linear-gradient(top, #ffffff 0%, #ffcdd2 100%) !important;
	background-image:-moz-linear-gradient(top, #ffffff 0%, #ffcdd2 100%) !important;
	background-image:linear-gradient(top, #ffffff 0%, #ffcdd2 100%) !important;
	border:2px solid #b71c1c;
}

.select-wrap select {
	font-family: 'Noto Sans Japanese';
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	position:relative;
	z-index:2;
	display:block;
	width: 20%;/* fallback non calc support */
	width:-webkit-calc(100% + 5em);
	width: calc(100% + 5em);
	margin:0;
	padding:5px 20px 5px 10px;
	background:transparent;
	border:0;
	outline:none;
	font-size:16px;
	font-size:1rem;
	line-height:1.5;
}

.entypo-down-open-mini:before{
	content: "\f107";
	font-family: FontAwesome;
	position:absolute;
	z-index:1;
	top:50%;
	right:12px;
	right:.75rem;
	margin-top:-8px;
	margin-top:-.5rem;
	font-size:20px;
	font-size:1rem;
	line-height:1;
	color:#333;
}


.byear {
	min-width:15%;
	min-width:8em;
}

.bmonth {
	min-width:10%;
	min-width:6em;
}

.bdate {
	min-width:10%;
	min-width:6em;
}


.BlrthLBL {
	margin: 0 0 0 10px;
}