/* CSS Document */

#inquiry{
  padding-top: 80px;
  padding-bottom: 80px;
}

.area-wrap{
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.inquiry-text {
  background: #efefef;
  padding: 30px;
}
.inquiry-text span{
  display: block;
}

.inquiry-text span a{
  color: darkblue;
  text-decoration: underline;
}

.inquiry-text span a:hover{
  opacity: 0.75;
}

form {
    width: 100%;
    background: #fff;
    padding: 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:#a0002b;
}

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

/* フォームパーツのデザイン */
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 #a0002b;
	color: #fff;
	font-weight: 500;
	background: #a0002b;
	border-radius: 3px;
	font-size: 15px;
	letter-spacing: 2px;
	transition: all 800ms;
}

.inquiry_send_btn:hover {
	color: #a0002b;
	border: 1px solid #a0002b;
	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{
  margin-top: -80px;
  padding-top: 80px;
}

.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: #9b0d0d;
  display: block;
  padding: 20px;
  font-size: 1.25rem;
  position: relative;
  cursor: pointer;
  border: 1px solid #8c6060;
  text-align: left;
  transition: all 800ms;
  font-weight: 600;
  background: #fbfaf9;
}

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

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

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




.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: 0;
  visibility: visible;
	height: 300px;
}

.acd-check:checked + .acd-label {
  background: #8c6060;
  color: #fff;
  border-bottom: none;
}


/* privacy content */

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

.scroll_bar{
  border: 1px solid #8c6060;
  background: #fbfaf9;
  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){
  
  .area-wrap {
    margin: auto;
  }

	.privacy_area {
		padding: 0;
	}
  
  #inquiry {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  #privacy {
      padding: 80px 20px 0;
  }
	
}

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


@media(max-width:786px){
	
	
	form {
    	margin: 0 auto 0;
    	padding: 0;
	}
	
	.form-row {
		padding: 10px 20px;
		flex-direction: column;
	}
	
  
  .inquiry-text{
    padding-left:20px;
    padding-right:20px;
  }
  
	input, textarea, select {
    font-size: 14px;
		padding: 10px 20px;
		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 0;
	}
	
	.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_text{
    margin-top: 20px;
  }

}




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

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

.scroll_bar_text p:first-child{
	padding-top: 20px;
  border-bottom: 1px solid brown;
  margin-bottom: 10px;
  color: brown;
}

.scroll_bar_text dd p:first-child {
  border-bottom: inherit;
  margin-bottom: 0;
  color:#000;
}

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


/* privacy content ↑↑↑ */