@charset "utf-8";

/*---------------------------------------------------------------------
Import CSS
---------------------------------------------------------------------*/
@import url("../../css/common/clear.css");
@import url("../../css/common/common.css");


section {
	width:100%;
	padding:0 20px;
	box-sizing:border-box;
}

.pc_only {
	display:none !important;
}

/* head_area
-------------------------------------*/

#head_area {
	margin-bottom:30px;
}

#head_area h2 {
	font-size:26px;
	font-weight:bold;
	text-align:center;
	margin-top:28px;
	line-height:1.3 !important;
}

#head_area h2:after{
	content:"";
	height:1px;
	display:block;
	border-bottom:1px solid #000;
	width:2em;
	margin:0 auto 30px;
	padding-top:30px;
	box-sizing:border-box;
}

#head_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
	margin-bottom:30px;
}

#head_area ul li {
}

#head_area ul li:nth-child(odd){
	margin-right:2em;
}

#head_area ul li a {
	text-decoration:none;
	display:inline-block;
	font-size:14px;
	letter-spacing:-.5px;
	position:relative;
	padding-right:18px;
}
#head_area ul li a:after{
}
#head_area > p {
	font-size:15px;
}


/* form_area
-------------------------------------*/

#form_area {
	margin-bottom:70px;
}
#form_area > dl {
}
#form_area > dl > dt{
	font-size:18px;
	font-weight:bold;
	position:relative;
	margin-bottom:8px;
}
#form_area dl > dt > span {
	color:#FFF;
	font-size:13px;
	font-weight:bold;
	display:inline-block;
	background:#FF4153;
	padding:1px 4px 2px;
	margin-left:6px;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */  
	position:absolute;
	top:2px;
}

#form_area > dl > dd{
	margin-bottom:30px;
	font-size:16px;
	line-height:1.6;
	font-weight:bold;
}

/*-- ▼入力欄のスタイル --*/

#form_area dl > dd input{
}

input[type="text"],
textarea {
	width:100%;
	background: #FFF;
	border: 1px #333333 solid;
	padding:1em;
	box-sizing:border-box;
	transition: all 300ms 0s ease;
	border-radius: 6px;        /* CSS3草案 */  
	-webkit-border-radius: 6px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 6px;   /* Firefox用 */  
}

input[type="text"]:hover,
input[type="text"]:focus,
textarea:hover,
textarea:focus {
	border: 1px #DC6E0E solid;
/*	-webkit-box-shadow: 0 0px 10px 0 rgba(0,0,0,0.25);
	box-shadow: 0 0px 10px 0 rgba(0,0,0,0.25);*/
}


/* 住所
--------------------------*/

dd#address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; 
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
dd#address span.fl_spa{
	width:25% !important;
	text-align:right;
	padding-right:1em;
	box-sizing:border-box;
}
dd#address span.bl_spa{
	width:100%;
	display:block;
	margin-bottom:3px ;
}
dd#address input[type="text"]{
	width:75%;
	margin:auto 0 15px auto;
}
dd#address input.short {
	width:35% !important;
}
dd#address span.space{
	width:5%;
	text-align:center;
	padding-top:.6em;
}
dd#address input[type="text"]:last-child{
	margin-bottom:0 !important;
}
#address .select-box{
	width:75% !important;
	margin-bottom:15px;
}

/* 商品を選ぶ
--------------------------*/

dd#select_item {
	margin-top:10px;
}
dd#select_item dl {
}
dd#select_item dl dt{
	font-size:18px;
	padding:.5em 1em .4em;
	border-bottom:#333333 1px solid;
	box-sizing:border-box;
	color:#262626;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all  0.4s ease;
}
dd#select_item dl dt:nth-of-type(odd){
	background:#e1e1e1;
}
dd#select_item dl dt:nth-of-type(even){
	background:#FFF;
}
dd#select_item dl dt.tgl_open{
	background:#ff4a5c;
	color:#FFF !important;
}
dd#select_item dl dd{
	background:#eaeaea;
	padding:12px 12px 15px;
/*	display:none;*/
}
dd#select_item dl dt.tgl_open + dd {
/*	display:block !important;*/
}

dd#select_item dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; 
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
dd#select_item dl dd ul li {
	width:48%;
	line-height:1.4;
	position:relative;
}
dd#select_item dl dd ul li:nth-child(n+3){
	margin-top:10px !important;
}
dd#select_item dl dd h3{
	margin-bottom:4px;
	font-weight:bold;
}
dd#select_item dl dd ul + h3{
	margin-top:12px;
}
dd#select_item dl dd h3:before{
	content:"■";
	padding-right:3px;
}
dd#select_item dl dd ul li img {
	width:100%;
	display:block;
	margin-bottom:6px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

dd#select_item dl dd ul li .chk_input:checked + .chk_style + img{
	z-index:0;
	position:relative;
	opacity:0.5;
	background:#FFF;
}
dd#select_item dl dd ul li label{
}
dd#select_item dl dd ul li p {
	font-size:14px;
}

dd#select_item dl dd > a {
	width:60%;
	font-size:14px;
	background-color:#333333;
	background-position:88% center;
	display:block;
	color:#FFF;
	margin:20px auto 0;
	text-decoration:none !important;
	padding:.5em 1.2em;
	text-align:center;
	box-sizing:border-box;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */  
}
dd#select_item dl dd ul li span.chk_style {
	position:absolute;
	left:4px !important;
	top:2px !important;
}

dd#select_item dl dd ul li span.chk_style::before{
  top: 2px;
	border: 1px solid #7b7b7b;
}
dd#select_item dl dd ul li .chk_input:checked + span.chk_style::before{
  top: 2px;
  border: 1px solid #FF4153 !important;
}

dd#select_item dl dd ul li .chk_input:checked + .chk_style::after{
  top: 5px;
}


/* question
-----------------------------*/

#question {
	margin-bottom:70px !important;
}
#question h3 {
	font-size:22px;
	font-weight:bold;
	text-align:center;
}
#question h3:after{
	content:"";
	height:1px;
	display:block;
	border-bottom:1px solid #000;
	width:2em;
	margin:0 auto 30px;
	padding-top:25px;
	box-sizing:border-box;
}
#question ul {

}
#question ul li {
	font-size:14px;
	position:relative;
	margin-bottom:25px;
}
#question ul li:last-child{
	margin-bottom:0 !important;
}
#question ul li > span {
	display:block;
	padding-left:40px;
}
#question ul li:after{
	content:"Q";
	color:#FFF;
	font-weight:bold;
	display:inline-block;
	background:#333333;
	padding:4px 8px;
	border-radius: 3px;        /* CSS3草案 */  
	-webkit-border-radius: 3px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 3px;   /* Firefox用 */  
	position:absolute;
	left:0;
	top:0;
}
#question ul li:nth-child(even) {
	width: calc(100% - 40px);
	margin:auto 0 25px auto;
}
#question ul li:nth-child(even):after{
	content:"A";
	background:#ff4a5c;
}


/* guide
-----------------------------*/

#guide h3 {
	font-size:22px;
	font-weight:bold;
	text-align:center;
}
#guide h3:after{
	content:"";
	height:1px;
	display:block;
	border-bottom:1px solid #000;
	width:2em;
	margin:0 auto 30px;
	padding-top:25px;
	box-sizing:border-box;
}

#guide dl {
}
#guide > dl > dt{
	font-size:18px;
	line-height:1;
	font-weight:bold;
	border-left:#000 8px solid;
	padding-left:2px;
	margin-bottom:20px;
}
#guide > dl > dt:last-of-type{
	margin-bottom:4px !important;
}

#guide > dl > dd {
	font-size:16px;
	margin-bottom:30px;
}
#guide > dl > dd > dl {
	margin-top:20px;
}
#guide dl > dd > dl > dt {
	font-size:16px;
	font-weight:bold;
	margin-bottom:2px;
}
#guide dl > dd > dl > dd {
	margin-bottom:20px;
}

#guide > dl > dd a.ar_wh {
	font-size:14px;
	background-position:97% 51%;
}

/* checkboxのスタイル
--------------------------*/

.chk_input{
  display: none;
}
.chk_style{
  padding-left: 28px;
  position:relative;
  margin-right: 15px;
	z-index:5;
}

.chk_style::before{
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  border-radius: 3px;
	background:rgba(255,255,255,0.6);
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;

}
.chk_input:checked + .chk_style{
/*  color: #009a9a;*/
}
.chk_input:checked + .chk_style::before{
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #FF4153;
  border-radius: 3px;
	background:#FF4153;
}

.chk_input:checked + .chk_style::after{
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 8px;
  width: 4px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;

}


/* selectboxのスタイル
--------------------------*/

select {
	vertical-align:middle;
}
select::-ms-expand {
	display: none;
}
.select-box {
	width: 100%;
	margin-bottom:10px;
}

.select-box select {
	position: relative;
	width: 100%;
	padding:.8em 1em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #333333;
	background: #FFF;
	border-radius: 6px;        /* CSS3草案 */  
	-webkit-border-radius: 6px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 6px;   /* Firefox用 */  
}
.select-box label {
	position: relative;
}
.select-box label:after {
  content: " ";
	width:13px;
	height:13px;
	background-color:#000000;
	background-image:url(../img/ar_wh_bt.svg);
	background-repeat:no-repeat;
	background-size:9px auto;
	background-position:center center;
	text-align:center;
	position:absolute;
	right:15px;
	bottom:0px;
}

/* btn_blaのスタイル
--------------------------*/
.btn_bla {
	cursor:pointer;
	text-decoration:none !important;
    background-color: #000;
    color: #FFF !important;
    border: 1px solid #000;
    font-size: 1.3rem;
		font-weight:bold;
    text-align: center;
    width: 100%;
    height: 50px;
    line-height: 50px;
		margin-bottom:30px;
    display: block;
		box-sizing:border-box;
		border-radius: 5px;        /* CSS3草案 */  
		-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
		-moz-border-radius: 5px;   /* Firefox用 */  
    -webkit-transition: all 300ms 0s ease;
    -o-transition: all 300ms 0s ease;
    transition: all 300ms 0s ease;
}


/*-- 共通スタイル
-------------------------------------*/

.ar_deco:after{
  content: " ";
	width:13px;
	height:13px;
	background-color:#000000;
	background-image:url(../img/ar_wh.svg);
	background-repeat:no-repeat;
	background-size:5px auto;
	background-position:center center;
	text-align:center;
	position:absolute;
	right:0;
	bottom:3px;
}

.ar_wh {
	background-image:url(../img/ar_wh.svg);
	background-repeat:no-repeat;
	background-size:6px auto;
}

#form_btn .btn_bla {
	background-position:90% 52%;
}



/* 確認画面
-------------------------------------*/
p#head_txt {
	font-size:14px;
	margin:30px 0 30px;
}
/*確認画面*/
table#item_list {
	width:100%;
	border-top:#333 solid 1px;
	border-left:#333 solid 1px;
}
table#item_list tr{
}
table#item_list tr th,
table#item_list tr td{
	padding:10px 15px;
	border-bottom:#333 solid 1px;
	border-right:#333 solid 1px;
	box-sizing:border-box;
}
table#item_list tr th{
	width:40%;
	background:#7f7f7f;
	color:#FFF;
}
table#item_list tr th:nth-of-type(2){
	width:60% !important;
}
table#item_list tr td{
	
}

#form_btn.hori_style {
	width:100%;
	margin-top:60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#form_btn.hori_style input {
	width:45% !important;
}

#error {
	margin-bottom:40px;
	text-align:center;
	font-size:14px;
	line-height:1.6;
}




/*PCページ用スタイル*/
@media only screen and (min-width: 1024px) {

section {
	width:750px;
	margin:0 auto;
}

.sp_only {
	display:none !important;
}

/* head_area
-------------------------------------*/

#head_area {
	margin-bottom:60px;
}

#head_area h2 {
	font-size:36px;
	margin-top:60px;
	letter-spacing:-1px;
}
#head_area h2 br {
	display:none !important;
}
#head_area h2:after{
	content:"";
	height:1px;
	display:block;
	border-bottom:1px solid #000;
	width:3em;
	margin:0 auto 55px;
	padding-top:45px;
	box-sizing:border-box;
}

#head_area ul {
	margin-bottom:60px;
}

#head_area ul li {
}

#head_area ul li:nth-child(odd){
	margin-right:70px;
}

#head_area ul li a {
	text-decoration:none;
	display:inline-block;
	font-size:18px;
	position:relative;
	padding-right:30px;
	padding-bottom:4px;
	border-bottom:2px #FFF solid !important;
}
#head_area ul li a:hover{
	text-decoration:none !important;
	border-bottom:2px #000 solid !important;
}
#head_area > p {
	font-size:18px;
	line-height:1.5;
}


/* form_area
-------------------------------------*/

#form_area {
	margin-bottom:70px;
}
#form_area > dl {
}
#form_area > dl > dt{
	font-size:22px;
	margin-bottom:13px;
}
#form_area > dl > dt:first-child{
	margin-bottom:22px;
}
#form_area dl > dt > span {
	color:#FFF;
	font-size:13px;
	font-weight:bold;
	display:inline-block;
	background:#FF4153;
	padding:1px 4px 2px;
	margin-left:6px;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */  
	position:absolute;
	top:3px;
}

#form_area > dl > dd{
	margin-bottom:55px;
	font-size:17px;
	line-height:1.6;
	font-weight:bold;
}

/*-- ▼入力欄のスタイル --*/

#form_area dl > dd input{
}

input[type="text"],
textarea {
	width:100%;
	font-size:16px;
	background: #FFF;
	border: 1px #333333 solid;
	padding:.9em 1.4em;
	box-sizing:border-box;
	transition: all 300ms 0s ease;
	border-radius: 6px;        /* CSS3草案 */  
	-webkit-border-radius: 6px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 6px;   /* Firefox用 */  
}

input[type="text"]:hover,
input[type="text"]:focus,
textarea:hover,
textarea:focus {
	border: 1px #DC6E0E solid;
/*	-webkit-box-shadow: 0 0px 10px 0 rgba(0,0,0,0.25);
	box-shadow: 0 0px 10px 0 rgba(0,0,0,0.25);*/
}


/* 住所
--------------------------*/

dd#address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; 
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
dd#address span.fl_spa{
	padding-right:1.5em;
	padding-top:.8em;
}
dd#address span.bl_spa{
	width:100%;
	display:block;
	padding-left:84px;
	margin-bottom:7px ;
}
dd#address input[type="text"]{
	width:75%;
	margin:auto 0 18px auto;
}
dd#address input.short {
	width:35% !important;
}
dd#address span.space{
	width:5%;
	text-align:center;
	padding-top:.7em;
}
dd#address input[type="text"]:last-child{
	margin-bottom:0 !important;
}
#address .select-box{
	width:75% !important;
	margin-bottom:15px;
}

/* 商品を選ぶ
--------------------------*/

dd#select_item {
	margin-top:10px;
}
dd#select_item dl {
}
dd#select_item dl dt{
	font-size:20px;
	padding:.5em 20px 0;
	border-bottom:none !important;
	box-sizing:border-box;
	color:#262626;
	pointer-events: none;
}
dd#select_item dl dt:nth-of-type(odd),
dd#select_item dl dd:nth-of-type(odd){
	background:#e1e1e1;
}
dd#select_item dl dt:nth-of-type(even),
dd#select_item dl dd:nth-of-type(even){
	background:#FFF;
}
dd#select_item dl dt.tgl_open{
	background:#ff4a5c;
	color:#FFF !important;
}
dd#select_item dl dd{
	background:#eaeaea;
	padding:10px 20px 25px;
/*	display:block;*/
}
dd#select_item dl dd > a {
	background-color:#333333;
	background-position:90% center;
}
dd#select_item dl dd ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
dd#select_item dl dd ul li {
	width:30%;
	line-height:1.4;
	position:relative;
	margin-right:5%;
}
dd#select_item dl dd ul li:nth-of-type(3n){
	margin-right:0 !important;
}
dd#select_item dl dd ul li:nth-child(n+3){
	margin-top:0 !important;
}
dd#select_item dl dd ul li:nth-child(n+4){
	margin-top:10px !important;
}
dd#select_item dl dd h3{
	margin-bottom:8px;
	font-weight:bold;
	font-size:18px;
}
dd#select_item dl dd ul + h3{
	margin-top:15px;
}
dd#select_item dl dd h3:before{
	content:"■";
	padding-right:3px;
}

dd#select_item dl dd ul li img {
	width:100%;
	display:block;
	margin-bottom:6px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

dd#select_item dl dd ul li .chk_input:checked + .chk_style + img{
	z-index:0;
	position:relative;
	opacity:0.5;
	background:#FFF;
}

dd#select_item dl dd ul li label{
}
dd#select_item dl dd ul li p {
	font-size:16px;
}

dd#select_item dl dd > a {
	width:25%;
	background-color:#333333;
	font-size:14px;
	display:block;
	color:#FFF;
	margin:15px 0 auto auto;
	text-decoration:none !important;
	padding:0.3em 0;
	text-align:center;
	box-sizing:border-box;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */  
}
dd#select_item dl dd ul li span.chk_style {
	position:absolute;
	left:4px !important;
	top:2px !important;
}

dd#select_item dl dd ul li span.chk_style::before{
  top: 2px;
	border: 1px solid #7b7b7b;
}
dd#select_item dl dd ul li .chk_input:checked + span.chk_style::before{
  top: 2px;
  border: 1px solid #FF4153 !important;
}

dd#select_item dl dd ul li .chk_input:checked + .chk_style::after{
  top: 5px;
}


/* question
-----------------------------*/

#question {
	margin-bottom:100px !important;
}
#question h3 {
	font-size:28px;
}
#question h3:after{
	width:3em;
	margin:0 auto 55px;
	padding-top:45px;
}
#question ul {

}
#question ul li {
	font-size:14px;
	position:relative;
	margin-bottom:30px;
	font-size:16px;
}
#question ul li:last-child{
	margin-bottom:0 !important;
}
#question ul li > span {
	display:block;
	padding-left:65px;
}
#question ul li:after{
	font-size:22px !important;
	padding:5px 12px !important;
	left:0;
	top:0;
}
#question ul li:nth-child(even) {
	width: calc(100% - 65px);
	margin:auto 0 25px auto;
}


/* guide
-----------------------------*/

#guide h3 {
	font-size:28px;
}
#guide h3:after{
	width:3em;
	margin:0 auto 55px !important;
	padding-top:45px;
}
#guide dl {
	margin-bottom:30px;
}
#guide > dl > dt{
	font-size:22px;
	border-left:#000 9px solid;
	padding-left:5px;
	margin-bottom:30px;
}
#guide > dl > dt:last-of-type{
	margin-bottom:10px !important;
}
#guide > dl > dd {
	font-size:16px;
	margin-bottom:35px;
}
#guide > dl > dd > dl {
	margin-top:20px;
}
#guide dl > dd > dl > dt {
	font-size:16px;
	font-weight:bold;
	margin-bottom:5px;
}
#guide dl > dd > dl > dd {
	margin-bottom:20px;
}
#guide dl > dd > dl > dd:last-child{
	margin-bottom:0 !important;
}
#guide > dl > dd a.btn_bla{
	margin-bottom: 60px;
}
#guide > dl > dd a.ar_wh {
	background-position: 85% 52%;
}

/* checkboxのスタイル
--------------------------*/

.chk_input{
  display: none;
}
.chk_style{
  padding-left: 30px;
  position:relative;
  margin-right:70px;
	z-index:5;
}

.chk_style::before{
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  border-radius: 3px;
}
.chk_input:checked + .chk_style{
/*  color: #009a9a;*/
}
.chk_input:checked + .chk_style::before{
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #FF4153;
  border-radius: 3px;
}

.chk_input:checked + .chk_style::after{
  top: 2px;
  left: 8px;
  width: 4px;
  height: 12px;
}


/* selectboxのスタイル
--------------------------*/

select {
	vertical-align:middle;
}
select::-ms-expand {
	display: none;
}
.select-box {
	width: 100%;
	margin-bottom:20px;
}

.select-box select {
	position: relative;
	width: 100%;
	font-size:16px;
	font-weight:bold;
	padding:.9em 1.4em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #333333;
	background: #FFF;
	border-radius: 6px;        /* CSS3草案 */  
	-webkit-border-radius: 6px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 6px;   /* Firefox用 */  
}
.select-box label {
	position: relative;
}
.select-box label:after {
  content: " ";
	width:18px;
	height:18px;
	background-color:#000000;
	background-image:url(../img/ar_wh_bt.svg);
	background-repeat:no-repeat;
	background-size:10px auto;
	background-position:center center;
	text-align:center;
	position:absolute;
	right:15px;
	bottom:0px;
}

/* btn_blaのスタイル
--------------------------*/
.btn_bla {
    width: 475px;
		margin:0 auto;
		box-sizing:border-box;
		line-height:50px;
}


/*-- 共通スタイル
-------------------------------------*/

.ar_deco:after{
  content: " ";
	width:18px;
	height:18px;
	background-color:#000000;
	background-image:url(../img/ar_wh.svg);
	background-repeat:no-repeat;
	background-size:6px auto;
	background-position:center center;
	text-align:center;
	position:absolute;
	right:0;
	bottom:8px;
}
.ar_wh {
	background-image:url(../img/ar_wh.svg);
	background-repeat:no-repeat;
	background-size:6px auto;
	background-position:center center;
}


#form_btn .btn_bla {
	background-position:90% 51%;
}












































}