@charset "utf-8";

/*-------------------------------
	キービジュアル
-------------------------------*/

.Keyvisual{
	padding-top: 30.5rem;
	padding-bottom: 27.5rem;
	background-image: url(../images/contact/bg_keyvisual.jpg);
    background-image: image-set(url(../images/contact/bg_keyvisual.jpg) 1x, url(../images/contact/bg_keyvisual@2x.jpg) 2x);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Keyvisual{
		padding-top: 20rem;
		padding-bottom: 7.5rem;
	}
}



/*-------------------------------
	お問い合わせ
-------------------------------*/

.Contact-list{
	border: .3rem solid var(--blackcolor);
	width: 100%;
	max-width: 75.8rem;
	margin-bottom: 8.5rem;
	padding: 6.5rem 2.5rem 6.2rem;
	border-radius: .5rem;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.Contact-list__item{
	font-family: var(--jp2);
	width: 100%;
	font-size: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Contact-list__item:not(:last-child){
	margin-bottom: 3.2rem;
}
.Contact-list__item::before{
	content: "";
	display: block;
	width: 3.9rem;
	height: 3.9rem;
	background-image: url(../images/contact/icon_balloon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.Contact-list__item span{
	width: calc(100% - 3.9rem);
	padding-left: 1.2rem;
	line-height: 1.5;
	display: block;
}

.Contact-message{
	margin-bottom: 11rem;
}
.Contact-message__text{
	font-family: var(--jp2);
	font-size: 2.8rem;
	line-height: calc(4.9 / 2.8);
	text-align: center;
}
.Contact-message__text:not(:last-child){
	margin-bottom: 2.5rem;
}

.Contact-form-block-wrap{
	margin-bottom: 6.8rem;
}
.Contact-form-block{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.Contact-form-block:not(:first-child){
	padding-top: 3.4rem;
}
.Contact-form-block:not(:last-child){
	padding-bottom: 3.4rem;
	border-bottom: 1px solid #ccc;
}
.Contact-form-block__title{
	font-family: var(--jp2);
	width: 22rem;
	font-size: 2.5rem;
	height: 6.4rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-weight: 600;
}
.Contact-form-block__body{
	width: calc(100% - 22rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Contact-form__field{
	width: 100%;
}
.Contact-form__field.-half{
	width: calc((100% - 4.5rem) / 2);
}
.Contact-form__field input[type="text"]{
	width: 100%;
	height: 6.4rem;
	padding: .5rem 1.5rem;
	border-radius: .5rem;
	border: 1px solid #d3d3d3;
	background: #efefef;
}
.Contact-form__field textarea{
	width: 100%;
	height: 37.6rem;
	padding: .5rem 1.5rem;
	border-radius: .5rem;
	border: 1px solid #d3d3d3;
	background: #efefef;
}
.Contact-form__submit{
	width: 23.5rem;
	height: 7.2rem;
	border-radius: 3.6rem;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}
.Contact-form__submit input[type="submit"]{
	background: var(--maincolor);
	font-family: var(--jp2);
	transition: var(--transition);
	width: 100%;
    height: 100%;
	font-size: 2.4rem;
	letter-spacing: .05em;
	color: #fff;
    text-align: center;
}
.Contact-form__submit input[type="submit"]:hover{
	opacity: .6;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Contact-list{
		border-width: 1px;
		max-width: 100%;
		margin-bottom: 10rem;
		padding: 5rem;
	}
	.Contact-list__item{
		font-size: 3.2rem;
	}
	.Contact-list__item:not(:last-child){
		margin-bottom: 3.5rem;
	}
	.Contact-list__item::before{
		width: 5rem;
		height: 5rem;
	}
	.Contact-list__item span{
		width: calc(100% - 5rem);
		padding-left: 2.5rem;
	}

	.Contact-message{
		margin-bottom: 10rem;
	}
	.Contact-message__text{
		font-size: 3.2rem;
		line-height: 1.8;
	}

	.Contact-form-block-wrap{
		margin-bottom: 7.5rem;
	}
	.Contact-form-block{
		flex-direction: column;
	}
	.Contact-form-block:not(:first-child){
		padding-top: 5rem;
	}
	.Contact-form-block:not(:last-child){
		padding-bottom: 5rem;
	}
	.Contact-form-block__title{
		width: 100%;
		font-size: 3.2rem;
		margin-bottom: 3.5rem;
		height: auto;
	}
	.Contact-form-block__body{
		width: 100%;
	}
	.Contact-form__field.-half{
		width: calc((100% - 5rem) / 2);
	}
	.Contact-form__field input[type="text"]{
		width: 100%;
		height: 7.5rem;
		padding: .5rem 2.5rem;
	}
	.Contact-form__field textarea{
		height: 50rem;
		padding: .5rem 2.5rem;
	}
	.Contact-form__submit{
		width: 50rem;
		height: 10rem;
		border-radius: 5rem;
	}
	.Contact-form__submit input[type="submit"]{
		font-size: 2.8rem;
	}

}