@charset "utf-8";

/*-------------------------------
	入力
-------------------------------*/

.Contact__tel{
	margin-bottom: 10rem;
}
.Contact__tel-title{
	font-family: var(--jp);
	font-size: 2.4rem;
	margin-bottom: 2.8rem;
	font-weight: 500;
	line-height: calc(3 / 2.4);
}
.Contact__tel-inner{
	width: 100%;
	display: flex;
	column-gap: 1rem;
	align-items: baseline;
	justify-content: flex-start;
}
.Contact__tel-number{
	color: var(--maincolor);
	font-family: var(--en);
	font-size: 5rem;
	line-height: .72;
}
.Contact__tel-time{
	font-family: var(--jp);
	line-height: 1;
}

.Contact__item-wrap{
	margin-bottom: 10rem;
}
.Contact__item{
	width: 100%;
	padding: 3rem;
	border-bottom: 1px solid #b2b2b2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Contact__item:first-of-type{
	border-top: 1px solid #b2b2b2;
}
.Contact__item-title{
	width: 27rem;
	min-height: 4.8rem;
	padding-right: 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Contact__item-title.-req::after{
	font-family: var(--jp);
	content: "必須";
	width: 5rem;
	height: 2.8rem;
	padding-bottom: .2rem;
	font-weight: 500;
	background: #d51c24;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Contact__item-title-text{
	font-family: var(--jp);
	width: calc(100% - 5rem);
	line-height: calc(2.6 / 1.6);
	font-weight: 500;
}
.Contact__item-body{
	width: calc(100% - 27rem);
}

.Contact__input{
	width: 100%;
	line-height: 1;
}
.Contact__input input{
	width: 100%;
	height: 4.8rem;
	padding: .5rem 1rem;
	border: 1px solid #cbcbcb;
}

.Contact__textarea{
	width: 100%;
}
.Contact__textarea textarea{
	width: 100%;
	height: 30rem;
	padding: .5rem 1rem;
	border: 1px solid #cbcbcb;
}

.Contact__checkbox .wpcf7-checkbox{
	width: 100%;
	min-height: 4.8rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Contact__checkbox .wpcf7-checkbox{
	width: 100%;
	max-width: 60rem;
	display: flex;
	gap: 2.5rem 5rem;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.Contact__checkbox input[type="checkbox"]{
	display: none;
}
.Contact__checkbox .wpcf7-list-item-label{
	font-family: var(--jp);
	width: fit-content;
	padding-left: 2.5rem;
	font-weight: 400;
	line-height: 1;
	display: block;
	position: relative;
}
.Contact__checkbox .wpcf7-list-item-label::before{
	border: 1px solid var(--blackcolor);
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	position: absolute;
	left: 0;
	top: 0;
}
.Contact__checkbox .wpcf7-list-item-label::after{
	display: none;
}
.Contact__checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after{
	border-right: 2px solid var(--maincolor);
	border-bottom: 2px solid var(--maincolor);
	content: "";
	display: block;
	width: .6rem;
	height: 1rem;
	position: absolute;
	left: .5rem;
	top: .2rem;
	transform: rotate(45deg);
}

.Contact__select{
	width: 100%;
	max-width: 24rem;
	height: 4.8rem;
	position: relative;
	z-index: 5000;
}
.Contact__select::after{
	border-top: .5rem solid var(--blackcolor);
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: .4rem solid transparent;
	border-left: .4rem solid transparent;
	border-bottom: 0;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4000;
}
.Contact__select select{
	font-family: var(--jp);
	width: 100%;
	height: 100%;
	padding: .5rem 1rem .5rem 2rem;
	font-weight: 400;
	border: 1px solid #cbcbcb;
	position: relative;
	z-index: 6000;
}

/*----- 住所 */
.Contact__item.-address{
	align-items: flex-start;
}
.Contact__item.-address .Contact__item-body{
	position: relative;
}
.Contact__item-address-item:not(:last-child){
	margin-bottom: 2.2rem;
}
.Contact__item-address-item{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Contact__item-address-item::before{
	font-family: var(--jp);
	content: attr(data-tag);
	width: 9rem;
}
.Contact__item-address-item-inner{
	width: calc(100% - 9rem);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Contact__item-address-item .wpcf7-form-control-wrap{
	position: static;
}
.Contact__item-zip{
	width: 100%;
	max-width: 45.6rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Contact__item-zip-inner{
	width: calc(100% - (16rem + 2rem));
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* position: relative; */
}
.Contact__item-zip-inner::before{
	font-family: var(--jp);
	content: "ー";
	font-weight: 500;
	line-height: 1;
	order: 2;
	/* position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%); */
}
.Contact__item-zip-inner .Contact__input{
	width: calc((100% - 3.2rem) / 2);
}
.Contact__item-zip-inner .Contact__input:nth-of-type(1){
	order: 1;
}
.Contact__item-zip-inner .Contact__input:nth-of-type(2){
	order: 3;
}
.Contact__item-zip-inner .Contact__input .wpcf7-form-control-wrap{
	position: static;
}
.Contact__item-zip-button{
	font-family: var(--jp);
	width: 16rem;
	height: 4.8rem;
	border-radius: 2.4rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #808080;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.Contact__item-zip-button::before{
	background: var(--maincolor);
	transition: .3s transform var(--transition-easing);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 2.4rem;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	transform: scaleX(0);
	transform-origin: right;
}
.Contact__item-zip-button-text{
	position: relative;
	z-index: 6000;
}
.Contact__item-zip-button:hover::before{
	transform-origin: left;
	transform: scaleX(1);
}

/*----- ご質問・ご要望 */
.Contact__item.-comment{
	align-items: flex-start;
}

.Contact__button{
	margin-left: auto;
	margin-right: auto;
}
.Contact__button input[type="submit"]{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	text-align: center;
	position: relative;
	z-index: 6000;
}
.Contact__button .a:hover input[type="submit"]{
	color: #fff;
}

.wpcf7-form-control-wrap{
	width: 100%;
	height: 100%;
	display: block;
}
.Contact__item:has(.wpcf7-not-valid-tip){
	padding-bottom: calc(1.5rem + 4.5rem);
}
.wpcf7-not-valid-tip{
	font-family: var(--jp);
	width: 100%;
	font-size: 1.2rem;
	padding: 1rem;
	line-height: 1;
	background: #ffecec;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	transform: translateY(calc(100% + 1.5rem));
}
.wpcf7-not-valid-tip::before{
	content: "\26A0";
	margin-right: .5rem;
	font-weight: 700;
	line-height: 1;
}

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

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

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

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

	.Contact__item{
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.Contact__item-title{
		width: 25rem;
		padding-right: 2.5rem;
	}
	.Contact__item-body{
		width: calc(100% - 25rem);
	}

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

	.Contact__tel-title{
		font-size: 3.6rem;
		margin-bottom: 3.5rem;
		line-height: calc(5.4 / 3.6);
	}
	.Contact__tel-inner{
		flex-direction: column;
	}
	.Contact__tel-number{
		font-size: 7rem;
		line-height: .75;
	}
	.Contact__tel-time{
		margin-top: 2.5rem;
	}

	.Contact__item-wrap{
		margin-bottom: 10rem;
	}
	.Contact__item{
		padding: 4rem 0 5.2rem;
		flex-direction: column;
	}
	.Contact__item-title{
		width: 100%;
		margin-bottom: 2.6rem;
		min-height: auto;
		padding-right: 0;
		justify-content: flex-start;
	}
	.Contact__item-title.-req::after{
		width: 8rem;
		height: 4.5rem;
		margin-left: 2.4rem;
	}
	.Contact__item-title-text{
		width: auto;
		line-height: calc(2.6 / 1.6);
	}
	.Contact__item-body{
		width: 100%;
	}

	.Contact__input input{
		height: 10rem;
		padding: .5rem 2.5rem;
	}

	.Contact__textarea textarea{
		height: 45rem;
		padding: 2.5rem;
	}

	.Contact__checkbox{
		padding-top: 2.4rem;
	}
	.Contact__checkbox .wpcf7-checkbox{
		max-width: 100%;
		gap: 5rem 6.8rem;
	}
	.Contact__checkbox .wpcf7-list-item-label{
		padding-left: 4rem;
	}
	.Contact__checkbox .wpcf7-list-item-label::before{
		width: 2.7rem;
		height: 2.7rem;
	}
	.Contact__checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after{
		width: 1.2rem;
		height: 1.8rem;
		left: .7rem;
		top: .2rem;
	}

	.Contact__select{
		max-width: 100%;
		height: 10rem;
	}
	.Contact__select::after{
		border-top: 1rem solid var(--blackcolor);
		border-right: 1rem solid transparent;
		border-left: 1rem solid transparent;
		right: 3.5rem;
	}
	.Contact__select select{
		padding: .5rem 1rem .5rem 2rem;
	}

	/*----- 住所 */
	.Contact__item-address-item:not(:last-child){
		margin-bottom: 5.2rem;
	}
	.Contact__item-address-item{
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.Contact__item-address-item::before{
		width: 100%;
		margin-bottom: 2.5rem;
		line-height: 1;
	}
	.Contact__item-address-item-inner{
		width: 100%;
	}
	.Contact__item-zip{
		max-width: 100%;
	}
	.Contact__item-zip-inner{
		width: calc(100% - (25rem + 2.5rem));
	}
	.Contact__item-zip-inner .Contact__input{
		width: calc((100% - 5rem) / 2);
	}
	.Contact__item-zip-button{
		width: 25rem;
		height: 10rem;
		border-radius: 5rem;
	}
	.Contact__item-zip-button::before{
		border-radius: 5rem;
	}
	
	.Contact__item:has(.wpcf7-not-valid-tip){
		padding-bottom: calc(1.5rem + 7rem);
	}
	.wpcf7-not-valid-tip{
		font-size: 2rem;
		padding: 1.5rem 2rem;
		transform: translateY(calc(100% + 1.5rem));
	}
	.wpcf7-not-valid-tip::before{
		content: "\26A0";
		margin-right: .5rem;
		font-weight: 700;
		line-height: 1;
	}

}



/*-------------------------------
	確認
-------------------------------*/

.Confirm__title{
	font-family: var(--jp);
	margin-bottom: 9.5rem;
	font-size: 2.4rem;
	line-height: calc(3.6 / 2.4);
}

.Confirm .Contact__item-title.-req::after{
	display: none;
}
.Confirm .Contact__item-title-text{
	width: 100%;
}
.Confirm .Contact__back{
	margin-top: 7.5rem;
	text-align: center;
}
.Confirm .Contact__back .a{
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	flex-direction: row-reverse;
}
.Confirm .Contact__back input[type="button"]{
	line-height: 1;
}
.Confirm .Contact__back .C-Arrow{
	transform: scale(-1,1);
	margin-right: 1.5rem;
}
.Confirm .Contact__back .C-Arrow::after{
	background-image: url(../images/common/icon_arrow.svg);
}
.Confirm .Contact__back .a:hover{
	color: var(--maincolor);
}

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

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

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

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

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

	.Confirm__title{
		margin-bottom: 8.5rem;
		font-size: 3.6rem;
		line-height: calc(5.4 / 3.6);
	}

	.Confirm .Contact__item-title-text{
		width: 100%;
	}
	.Confirm .Confirm__text{
		width: 100%;
	}
	.Confirm .Contact__back .C-Arrow{
		margin-right: 2.2rem;
	}

}



/*-------------------------------
	完了
-------------------------------*/

.Send__title{
	font-size: 4rem;
	margin-bottom: 4rem;
	line-height: calc(4 / 3.4);
}
.Send__text{
	margin-bottom: 10rem;
}

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

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

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

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

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

	.Send__title{
		font-size: 5.4rem;
		line-height: 1;
	}
	.Send__text{
		margin-bottom: 6.5rem;
	}

}