/* CSS Document */


form {
    width: 100%;
    border-radius: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: auto;
}


.red-text-corner {
    width: 100%;
}

.inquiry-type{
    display: flex;
    flex-direction: row;
    gap: 20px;
    background: #fff;
    padding: 15px 20px;
	margin-top: 15px;
	width: 100%;
}

.form-row {
	display: flex;
	padding: 20px 0;
	flex-direction: row;
	font-family: "Noto Sans JP", sans-serif;
	justify-content: center;
}

.form-row:last-child {
	border-bottom: none;
	align-items: flex-end;
}

.form-label {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 260px;
}

.form-label label {
    display: flex;
    flex-direction: row;
    gap: 10px;
    line-height: 1;
    align-items: flex-end;
}


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


.form-label span {
	margin-left: 5px;
	padding: 3px;
	border-radius: 2px;
	font-size: 0.65rem;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background-color: #b8963c;
	position: relative;
    top: 2px;
}

.form-row p{
	display: inline-block;
}

.any{
	margin-left: 5px;
	padding: 3px;
	border-radius: 2px;
	font-size: 0.65rem;
	line-height: 1;
	font-weight: 600;
    color: #b8963c;
    background-color: #fff;
    border: 1px solid #b8963c;
	position: relative;
    top: 2px;
}

/* フォームパーツのデザイン */
input, textarea, select {
	margin-top: 15px;
	background: #fff;
	border-radius: 3px;
	padding: 15px 20px;
	font-size:min(1.25vw, 1.25rem);
	color: #555555;
	flex-grow: 1;
	font-weight: 600;	
	width: 100% !important;
}

#message{
	min-height: 200px;
}

.inquiry-type input{
	margin-top: 0;
	width: auto !important;
}

select::placeholder,
input::placeholder,
textarea::placeholder{
	color: #999;
	font-size: min(1.25vw, 1.25rem);
	font-weight: 600;
}

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

.inquiry_send_btn{
	justify-content: center;
    display: flex;
    text-align: center;
    cursor: pointer;
    padding: 8px 40px;
    border: 1px solid #a04800;
    color: #fff;
    font-weight: 500;
    background: #a04800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    transition: all 800ms;
    align-items: center;
    border-radius: 60px;
}

.inquiry_send_btn:hover {
	color: #a04800;
	background-color: #fff;
	letter-spacing: 3px;
}

.form-row button i{
    margin-right: 5px;
    position: relative;
    top: 2px;
}


/* inquiry form */



/* privacy*/

.privacy_area{
	padding: 40px 0 ;
    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: #898989;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    font-size: 1.35rem;
    position: relative;
    cursor: pointer;
    border-bottom: 2px dashed #b9b9b9;
    text-align: center;
	transition: all 800ms;
	font-weight: 600;
	font-family: "Noto Serif JP", serif;
}

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

.acd-label::after{
    position: absolute;
    content: '';
    display: block;
    width: 12px;
    height: 1px;
    background: #898989;
    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;
}

.scroll_bar{
    background: #fff;
    overflow-y: scroll;
    overflow-x: hidden;
    min-height: 100px;
    max-height: 300px;
    margin: 0px auto;
    padding: 20px 20px;
    text-align: left;
}




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

.scroll_bar_des p{
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	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 ↑↑↑ */




@media(max-width:1480px){

	#contact-us .main-text {
		gap: 0;
	}
	
	.form-label {
		max-width: 240px;
	}
	
}

@media(max-width:1200px){

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

	.form-label {
		max-width: 180px;
	}
	
	
	select::placeholder,
	input::placeholder,
	textarea::placeholder,
	input, textarea, select {
		font-size: max(1.35vw, 0.9rem);
	}
}

@media(max-width:1000px){
	
	#inquiry {
		padding: 100px 20px 0;
	}
	
	.inquiry-contact h5 {
    	font-size: 0.9rem;
		letter-spacing: 1px;
	}
	
	.about-inquiry {
		margin: 30px auto 20px;
		flex-direction: column;
	}
	
	.inquiry-contact p {
		font-size: 0.95rem;
		letter-spacing: 0.04rem;
		line-height: 1.75;
		margin-top: 5px;
	}
	
	.inquiry-contact p a {
		font-size: 1.25rem;
		letter-spacing: 5px;
		line-height: 1.75;
	}
	
	.inquiry-contact {
		border-right: none;
		padding-right: 0;
	}
	
	.about-inquiry .text p {
        font-size: 0.9rem;
        letter-spacing: 0.02rem;
	}

	
	.inquiry-type {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	
}



@media(max-width:800px){

	.inquiry-box {
    	margin: 20px auto 0;
		flex-direction: column-reverse;
	}
	
	.contact ul {
        max-width: 100%;
        flex-direction: row;
		gap: 10px;
		align-items: flex-start;
	}
	
	.inquiry-type {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media(max-width:600px){
	
	
	.contact ul a {
    	padding: 10px;
	}
	
	.contact ul {
		flex-direction: column;
	}
	
    #inquiry {
        margin-top: 20px;
        padding: 40px 0 0;
    }
	
	form {
    	margin: 0 auto 0;
    	padding: 20px 0;
	}
	
	.form-row {
		padding: 10px 0;
		flex-direction: column;
	}
	
	input, textarea, select {
    	font-size: 14px;
		padding: 10px;
	}
	
	.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;
	}
	
	.form_btn {
		margin-top: 20px;
	}
	
	.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: 30px;
    	font-size: 16px;
	}
	
	.inquiry-type {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media(max-width:500px){
	

	.inquiry-contact h5 a {
		font-size: 1.5rem;
		letter-spacing: 3px;
		line-height: 1.2;
	}
	
	.inquiry-contact p {
        font-size: 0.8rem;
        letter-spacing: 0.02rem;
		line-height: 1.75;
	}
	
	.scroll_bar_des p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 10px;
        border-bottom: 1px solid #333;
        padding-bottom: 10px !important;
	}
	
	.scroll_bar p, .scroll_bar dl dd {
     	font-size: 0.9rem;
		font-weight: 400;
	}
	
	.scroll_bar_text{
		margin-bottom: 15px;
	}
	
	.scroll_bar_text p{
		font-weight: 400;
	}

}

