/* CSS Document */

#inquiry{
  margin-top: -40px;
  margin-bottom: -40px;
  padding-top: 60px;
}

.inquiry{
  padding-top: 60px;
  display: block;
  width: 100%;
  background: url("../img/subpage/pink-bk.png") repeat center;
}

#inquiry .section-title::after{
  display: none;
}

#inquiry .section-title h2,
#inquiry .section-title p{
  color: #59c2e0;
}

.inquiry-form{
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(168, 216, 234, 0.2);
  max-width: 1200px;
  margin: 0 auto;
  border: 3px dashed #b0e2fd;
  position: relative;
}


.inquiry-form::after{
  position: absolute;
  content: '';
  display: block;
  background: url("../img/subpage/push-pin.png") no-repeat;
  background-size: cover;
  left: 0px;
  top: -10px;
  width: 50px;
  aspect-ratio: 1/1;
}

.inquiry-form::before{
  position: absolute;
  content: '';
  display: block;
  background: url("../img/subpage/push-pin.png") no-repeat;
  background-size: cover;
  right: 0px;
  top: -10px;
  width: 50px;
  aspect-ratio: 1/1;
  transform: scaleX(-1);
}

.area-wrap{
  padding: 0 30px 60px;
  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 0;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.form-row-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.form-label {
  display: flex;
  align-items: flex-start;
  width: fit-content;
  flex-direction: row-reverse;
  gap: 10px;
}

.form-label label {
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #2c4361;
}

.form-label span {
  color: #ff7b92;
  font-size: 0.8rem;
  font-weight: 500;
  background: #ffe0e5;
  padding: 2px 8px;
  border-radius: 10px;
}

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

/* フォームパーツのデザイン */
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sky-light);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--sky-pale);
}

input{
  color: #333;
  box-shadow: 1px 1px 6px #cce3eb;
}

select::placeholder,
input::placeholder,
textarea::placeholder{
	color: #888;
	font-weight: 500;
}

input::placeholder{
  color: #888;
}

select{
	padding: 15px 20px;
	color: #333;
}

select::placeholder{
  color: #333;
}


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

.inquiry_send_btn:hover {
	background: #ffabd5;
	border: 1px solid #ffabd5;
	color: #fff;
}

.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: 30px;
}

.privacy_area{
	padding: 20px 0;
  margin: auto;
}

.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: #e57474;
  display: block;
  padding: 20px 30px;
  font-size: 1.25rem;
  position: relative;
  cursor: pointer;
  border: 3px solid #fff;
  text-align: left;
  transition: all 800ms;
  font-weight: 600;
  background: #fff1f3;
  border-radius: 20px;
  box-shadow: 1px 1px 6px #edcece;
}

.acd-label:hover{
  background: #e57474;
  color: #fff;
}

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

.acd-label::after{
  position: absolute;
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background: #ff9090;
  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: #ff9090;
  color: #fff;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
}


/* privacy content */

.privacy{
	text-align: center;
  margin-bottom:50px;
}

.scroll_bar{
  border: 3px dashed #fff;
  background: #fbfaf9;
  overflow-y: scroll;
  overflow-x: hidden;
  min-height: 100px;
  max-height: 300px;
  margin: 0px auto;
  max-width: 1200px;
  padding: 20px 30px;
  text-align: left;
  scrollbar-color: #ff9090 rgba(255, 255, 255, 0);
  scrollbar-width: thin;
}



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

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

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

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

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



@media(max-width:1460px){
  
  .form-label label,
  input, textarea, select {
    font-size: 0.95rem;
  }
  
  .form-label span,.any {
    font-size: 0.75rem;
    border-radius: 10px;
  }
  
}

@media(max-width:1200px){
  .area-wrap {
    padding: 0 0 50px;
  }
  
  .inquiry-form::after,
  .inquiry-form::before {
    width: 40px;
    top: -5px;
  }
  
  .inquiry-form::before {
    right: -5px;
  }
  
  .inquiry-form::after {
    left: -5px;
  }
  
  .acd-label {
    padding: 20px 20px;
    font-size: 1.1rem;
  }
  
  
  .scroll_bar {
    padding: 20px 20px;
  }
  
}

@media(max-width:1000px){
  
  .area-wrap {
    margin: auto;
  }

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

@media(max-width:786px){
	
	
	form {
    	margin: 0 auto 0;
    	padding: 0;
	}
  
	
	.form-row {
		flex-direction: column;
    gap: 5px;
	}
  
  .form-row-wrap{
    grid-template-columns: 1fr;
  }
	
  .area-wrap {
    padding: 0;
  }
  
  .inquiry-text{
    padding-left:20px;
    padding-right:20px;
  }
  
	input, textarea, select {
    font-size: 14px;
		padding: 10px 15px;
		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;
	}
	
	.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:0;
	}

  .scroll_bar_text{
    margin-top: 20px;
  }
  
  .inquiry-form::after, .inquiry-form::before {
    width: 25px;
    top: -10px;
  }

}


/* privacy content ↑↑↑ */