/* CSS Document */


form {
    width: 100%;
    background: #fff;
    padding: 0px 20px;
    border-radius: 0;
	font-family: "Noto Sans JP", sans-serif;
}

.form-row {
	display: flex;
	padding: 10px 0;
}

.form-row:last-child {
	border-bottom: none;
	justify-content: flex-end;
}

.form-label {
	display: flex;
	align-items: center;
	width: 250px;
}

.form-label label {
	font-weight: 600;
}

.form-label span {
	margin-right: 10px;
	padding: 2px 6px;
	border-radius: 2px;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	background-color:#e58410;
}

.any{
	margin-right: 10px;
	padding: 2px 6px;
	border-radius: 2px;
	font-size: 12px;
	font-weight: 600;
	color:#e58410;
	background-color: #fff;
	border: 1px solid #e58410;
}

/* フォームパーツのデザイン */
input, textarea, select {
	background: #fff;
	border-radius: 3px;
	padding: 15px 20px;
	font-size: 16px;
	color: #333;
	flex-grow: 1;
	border: 1px solid #333;
	font-weight: 500;
}

select::placeholder,
input::placeholder,
textarea::placeholder{
	color: #999;
	font-size: 14px;
	font-weight: 600;
}

select{
	border: 1px solid #333;
	padding: 15px 20px;
	color: #151515;
}


.inquiry_send_btn{
	display: block;
	text-align: center;
	width: 160px;
	cursor: pointer;
	padding: 8px 30px;
	border: 1px solid #e58410;
	color: #fff;
	font-weight: 500;
	background: #e58410;
	border-radius: 3px;
	font-size: 15px;
	letter-spacing: 2px;
	transition: all 800ms;
}

.inquiry_send_btn:hover {
	color: #e58410;
	border: 1px solid #e58410;
	background-color: #fff;
	letter-spacing: 3px;
}

.form-row button i{
    font-size: 15px;
    margin-right: 5px;
}



.form_btn{
	margin-top: 10px;
	justify-content: flex-end;	
	align-items: center!important;		
}

.form-row #message{
	min-height: 200px;
}


/* inquiry form */



/* privacy*/

.privacy_area{
	padding: 20px;
    margin: auto;
	font-family: "Noto Sans JP", sans-serif;
}

.check_privacy{
	margin-top:30px;
}

.check_privacy label{
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
}

.check_ps{
	font-size: 14px;
	font-weight: 600;
	padding-left:20px;
	color: #000;
	margin-bottom: 10px;
	letter-spacing: 1px;
}


.acd-check{
    display: none;
}

.acd-label{
	color: #333;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #333;
    text-align: center;
	transition: all 800ms;
	font-weight: 600;
}

.acd-label::before{
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 12px;
	background: #333;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);
	transition: ease .5s;
}

.acd-label::after{
    position: absolute;
    content: '';
    display: block;
    width: 12px;
    height: 1px;
    background: #333;
    right: 15px;
    top: 50%;
    transition: ease .5s;
    transform: translateY(-50%);
}

.acd-label:hover{
	letter-spacing: 2px;
}

.acd-label:hover::before,
.acd-label:hover::after{
	transform: translateY(-50%) rotate(45deg);
}

.acd-check:checked + .acd-label::after,
.acd-check:checked + .acd-label::before{
	 transform: translateY(-50%) rotate(45deg);
}

.scroll_bar_des p,
.scroll_bar_text p{
	text-align: left;
}




.acd-content{
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
	border-radius: 5px;
}

.acd-check:checked + .acd-label + .acd-content{
    opacity: 1;
    padding: 10px 0;
    visibility: visible;
	height: 300px;
}



/* privacy content */

.privacy{
	text-align: center;
    margin-bottom:50px;
	font-family: "Noto Sans JP", sans-serif;
}

.scroll_bar{
	border: 1px solid #333;
    background: #fff;
    overflow-y: scroll;
    overflow-x: hidden;
    min-height: 100px;
    max-height: 300px;
    margin: 0px auto;
    max-width: 1200px;
    padding: 20px 20px;
    text-align: left;
	font-family: "Noto Sans JP", sans-serif;
}



@media(max-width:1000px){

	.privacy_area {
		padding: 0;
	}
	
}

@media(max-width:760px){
	form {
		padding: 30px 20px;
	}
}


@media(max-width:600px){
	
	
	form {
    	margin: 0 auto 0;
    	padding: 0;
	}
	
	.form-row {
		padding: 10px;
		flex-direction: column;
	}
	
	input, textarea, select {
    	font-size: 14px;
		padding: 10px;
		width: 100% !important;
	}
	
	.form-label span {
    	margin-right: 0;
    	padding: 1px 4px;
    	font-size: 10px;
	}
	
	.form-row:last-child {
		border-bottom: none;
		justify-content: center;
		text-align: center;
		display: flex;
		align-items: center;
	}
	
	.privacy_area {
		padding: 10px
	}
	
	.scroll_bar {
    	padding: 10px;
	}
	
    .scroll_bar_des p,
	.scroll_bar_text p{
		padding: 0!important;
	}
	
	.form-label label {
		font-size: 14px;
		padding-left: 5px;
	}
	
	.any {
		margin-right: 0;
		padding: 1px 4px;
		font-size: 10px;
	}
	
	.menu-list .item h5 {
    	font-size: 23px;
	}
	
	.acd-label {
    	margin-top:20px;
		margin-bottom: 1px;
    	font-size: 16px;
	}
}



.scroll_bar p, .scroll_bar dl dd{
	font-size: 14px;
	font-weight: 500; 
	color: #000;
	line-height: 25px;
}

.scroll_bar_des p{
	font-size: 14px;
	font-weight: 500;
	color: #000;
	line-height: 25px;
	padding-bottom: 10px;
}

.scroll_bar_text p:first-child{
	padding-top: 20px;
}

#with-consent{
    width: 14px;
    height: 14px;
    display: inline-block;
}


/* privacy content ↑↑↑ */