
/***********************************************************************************************************************

form.css

***********************************************************************************************************************/
.w100{
	width: 100%;
}
.w95{
	width: 95%; 
}
.w90{
	width: 90%;
}
.wide_zip{
	width: 8em;
}

.form-check{
	margin-bottom: 10px;
}
.form_radio{
	margin-bottom: 10px;
}
.red{
	color: #c8161d;
}
.txt_read{
	line-height: 1.6em;
	margin-bottom: 0;
	padding: 0 0 0.5em;
}

.terms_box{
	font-size: 16px;
	font-size: clamp(14px, 1.6vw, 16px);
	margin-top: 1em;
}

#powered_by_me{
	display: none;
}

@media screen and (max-width: 767px) {

}


/***************************************************************
float_form
****************************************************************/
.float_form{
	font-size: 16px;
	font-size: clamp(14px, 1.8vw, 16px);
	line-height: 2em;
	border-top: 1px solid #D5D5D5;
}
.order .float_form{
	border-top: none;
}

.float_form tr{
	border-bottom: 1px solid #D5D5D5;
}
.float_form th{
	font-weight: 600;
	color: #333;
	vertical-align: top;
	width: 170px;
	padding: 2em 10px;
}
.float_form td{
	vertical-align: top;
	padding: 2em 0;
}
.float_form p.cap{
	line-height: 1.7em;
	padding: 1.2em 0 0;
	margin: 0;
}


@media screen and (max-width: 767px) {
.float_form{
	border-top: none;
}
.float_form tr{
	border-bottom: none;
}
.float_form th,
.float_form.bikou th{
	display: block;
	width: auto;
	padding: 0.4em 7px;
	background-color: #F7F7F7;
}
.float_form td,
.float_form.bikou td{
	display: block;
	width: auto;
	padding: 1em 7px 2em;
}
}




/***************************************************************
list_form_mark
****************************************************************/
.list_form_mark{
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
	width: 340px;
	margin: 0 auto 3em;
 }
.list_form_mark li{
	position: relative;
	width: 80px;
	height: 80px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #999;
	line-height: 80px;
	background-color: #F7F7F7;
	border-radius: 50%;
}
.list_form_mark li.active{
	color: #fff;
	background-color: #006FB5;
}
.list_form_mark li.over{
	color: #fff;
	background-color: #888;
}

.list_form_mark li.dot{
	width: 50px;
	height: auto;
	background-color: transparent;
	border-radius: 0;
}
.list_form_mark li.dot:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	margin-top: -1px;
	border-top: 2px solid #F7F7F7;
}
.list_form_mark li.dot.line:before{
	border-top: 2px solid #888;
}


@media screen and (max-width: 767px) {
.list_form_mark{
	width: 250px;
}
.list_form_mark li{
	width: 70px;
	height: 70px;
	font-size: 14px;
	line-height: 70px;
}
.list_form_mark li.dot{
	width: 20px;
}
.list_form_mark li.dot:before{
	margin-top: -1.5px;
	border-top-width: 3px;
}
.list_form_mark li.dot.line:before{
	border-top-width: 3px;
}
}




/***************************************************************
privacy_box
****************************************************************/
.privacy_box{
	padding: 30px 20px 20px;
	margin: 5% 0 0;
	background-color: #f7f7f7;
}
.privacy_box h6.h6_privacy{
	font-size: 17px;
	font-size: clamp(15px, 2vw, 17px);
	font-weight: 600;
	line-height: 1.8em;
	margin-bottom: 0.8em;
}
.privacy_box p{
	font-size: 14px;
	font-size: clamp(12px, 1.8vw, 14px);
}

.privacy_box i{
	display: inline-block;
	width: 12px;
	padding-left: 5px;
}
.privacy_box i img{
	vertical-align: middle;
	margin-top: -0.2em;
}



/***************************************************************
btn_return
****************************************************************/
.btn_return{
	width: 100%;
	max-width: 200px;
	text-align: center;
	margin: 3% auto 0;
}
.btn_return a{
	display: block;
	font-size: 14px;
	font-size: clamp(12px, 1.8vw, 14px);
	color: #888;
	border: 1px solid #888;
	padding: 12px 0;
}
.btn_return a:hover{
	color: #fff;
	background-color: #888;
}



/***************************************************************
input[type=text]
input[type=email]
****************************************************************/
::placeholder {
  color: #b2b2b2;
}

.form_wrap input[type=text],
.form_wrap input[type=email]{
   border-radius: 5px;
   border:#a9a9a9 1px solid;
   /*box-shadow: 0 0 2px rgba(0,0,0,0.3);*/
   height:25px;
   padding:5px;
   font-size:16px;
}

.form_wrap input[type=text]:focus,
.form_wrap input[type=email]:focus{
   border:solid 1px #99ddff;
   box-shadow:0 0 5px rgba(153,221,255,0.7);
   }

.form_wrap input[type=text], 
.form_wrap input[type=email]{ 
   outline: none;
}


@media screen and (max-width: 767px) {
.form_wrap input[type=text],
.form_wrap input[type=email]{
   font-size:14px;
}
}




/***************************************************************
textarea
****************************************************************/
textarea{
   border-radius: 5px;
   border:#a9a9a9 1px solid;
   /*box-shadow: 0 0 2px rgba(0,0,0,0.3);*/
   padding:7px;
   font-size:16px;
   width:400px;
}

textarea:focus {
   border:solid 1px #99ddff;
   box-shadow:0 0 5px rgba(153,221,255,0.7);
   }

textarea{ 
   outline: none;
}

@media screen and (max-width: 767px) {
textarea{
   font-size:14px;

}
}


/***************************************************************
input[type="submit"] 
input[type="file"] 
****************************************************************/
.form_wrap input[type="submit"],
.form_wrap input[type="file"]{
-webkit-appearance: none; /**iphone対策*/
border-radius: 0;
}



/*** form関係 **********************************/
#error_message{
	font-size: 18px;
	font-size: clamp(16px, 1.8vw, 18px);
	color: #fff;
	background-color: #c7000b;
	text-align: center;
	padding: 10px 0;
	border-radius: 4px;
	margin-bottom: 20px;
}
.alert{
	padding: 0;
	margin-bottom: 0;
}
.alert-warning{
	border: none;
}
.alert-danger{
	margin-top: 10px;
	color: #c7000b;
}
.btn_wrap{
	text-align: center;
}
.btn-primary,
.btn-secondary,
.btn_close{
	text-align: center;
	border: #fff solid 2px;
	margin: 30px auto 0;
	padding: 14px 0;
	width: 100%;
	max-width: 300px;
	font-size: 1.8rem;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

.btn-primary{
	background-color: #006FB5;
}
.btn-primary:hover{
	color: #006FB5;
	background-color: #99ddff;
}
.btn-secondary{
	background-color: #999;
	/*margin-right: 20px;*/
}
.btn-secondary:hover{
	background-color: #333;
}

.btn_wrap.block2{
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
	width: 100%;
	max-width: 640px;
	margin: 3em auto 0;
}
.btn_wrap.block2 .col2{
	width: 48%;
}

.agree_wrap{
	margin: 30px 0 0;
	text-align: center;
}
.agree_wrap a{
	/*text-decoration: underline;*/
}
.agree_wrap a:hover{
	text-decoration: none;
}


.agree_wrap i{
	display: inline-block;
	width: 16px;
	padding-left: 5px;
}
.agree_wrap i img{
	vertical-align: middle;
	margin-top: -0.2em;
}



.btn-primary[disabled] ,
.btn-primary:hover[disabled] {
	color: #999;
	background-color: #555;
	border-color: #555;
	cursor: default;
	box-shadow: none;
}



@media screen and (max-width: 767px) {
.btn-primary,
.btn-secondary{
	width: 100%;
	font-size: 1.6rem;
	font-size: 16px;
}
}





/***************************************************************
radio, checkbox
****************************************************************/

.form_wrap input[type=radio],
.form_wrap input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
.form_wrap input[type=radio] + label,
.form_wrap input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
   /* font-size: 14px;
    line-height: 30px;*/
    cursor: pointer;
}


@media screen and (max-width: 767px) {
.form_wrap input[type=radio] + label,
.form_wrap input[type=checkbox] + label {
    /*font-size: 12px;*/
}
}


@media (min-width: 1px) {
.form_wrap input[type=radio],
.form_wrap input[type=checkbox] {
        display: none;
        margin: 0;
    }
.form_wrap input[type=radio] + label,
.form_wrap input[type=checkbox] + label {
        padding: 0 0 0 24px;
    }
.form_wrap input[type=radio] + label::before,
.form_wrap input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;
         
        background: #FFF;
    }
.form_wrap input[type=radio] + label::before {
        border: 2px solid #aaa;
        border-radius: 30px;
    }
.form_wrap input[type=checkbox] + label::before {
        border: 2px solid #aaa;
    }
.form_wrap input[type=radio]:checked + label::after,
.form_wrap input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
.form_wrap input[type=radio]:checked + label::after {
        left: 5px;
         
        width: 8px;
        height: 8px;
        margin-top: -4px;
         
        background: #ff0000;
        border-radius: 8px;
    }
.form_wrap input[type=checkbox]:checked + label::after {
        left: 3px;
         
        width: 16px;
        height: 8px;
        margin-top: -8px;
         
        border-left: 3px solid #ff0000;
        border-bottom: 3px solid #ff0000;
         
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}




/***************************************************************
プルダウン
****************************************************************/
.cp_ipselect {
	display: inline-block;
	overflow: hidden;
	width: 300px; /*90%*/
	margin: 0; /*2em auto*/
	text-align: center;
	vertical-align: middle;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	font-size: 16px;
	font-size: clamp(14px, 1.8vw, 16px);
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl04 {
	position: relative;
	border: 1px solid #a9a9a9;
 	border-radius: 50px;
	background: #ffffff;
}
.cp_ipselect.cp_sl04::before {
	position: absolute;
	top: 50%;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	margin-top: -3px;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #99ddff;
	pointer-events: none;
}
.cp_ipselect.cp_sl04 select {
	padding: 8px 38px 8px 12px;
	color: #a9a9a9;
	background-color: #fff;
}


@media screen and (max-width: 767px) {
.cp_ipselect {
	width: 100%;
	max-width: 280px;
}
}


@media screen and (max-width: 360px) {
.cp_ipselect {
	margin-top: 10px; 
}
}




/***************************************************************
btn_zip
****************************************************************/
.btn_zip{
	display: inline-block;
	color: #fff;
	background-color: #006FB5;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	padding: 0.7em 1em;
	margin-left: 10px;
}
.btn_zip:hover{
	cursor: pointer;
	background-color: #99ddff;
}




/*** file-multiple **********************************/
.file-multiple {
	margin-top: 1.5em;
}
.file-multiple .file-multiple__label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  width: 150px;
  padding: 0.5em 0;
  color: #a9a9a9;
  text-align: center;
  cursor: pointer;
  border: 1px solid #a9a9a9;
  border-radius: 5px;
  transition: opacity 0.3s ease;
}
.file-multiple .file-multiple__label:hover {
  opacity: 0.7;
}
.file-multiple input[type=file] {
  display: none;
}
.file-multiple .file-multiple__none {
	display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 0.8em;
  word-break: break-all;
  color: #777;
  padding-left: 1em;
}


@media screen and (max-width: 767px) {
.file-multiple .file-multiple__label {
  font-size: 14px;
  width: 100%;
}
.file-multiple .file-multiple__none {
  font-size: 12px;
}
}


/***************************************************************
ファイルを選択
****************************************************************/
input[type='file'] {
	font-size: 16px;
	font-size: clamp(14px, 1.8vw, 16px);
  color: #666;
  cursor: pointer;
  border: 1px solid #a9a9a9;
  border-radius: 5px!important;
  padding-right: 0.5rem;
  width: 95%; /* 24rem; */
}

::file-selector-button,
::-webkit-file-upload-button {
  background-color: #006FB5;
  color: #fff;
  border: none;
  cursor: pointer;
  border-right: 1px solid #a9a9a9;
  padding: 0.7rem 1rem;
  margin-right: 1rem;
  border-radius: 4px 0 0 4px;
}




