@charset "UTF-8";

/* ------------------------------------------------
                    CONTACT
--------------------------------------------------- */

/*---------- 共通 ----------*/
.sec-ttl {
	width: 100%;
	margin-bottom: 40px;
	padding-bottom: 20px;
	font-size: 3.6rem;
    font-weight: 600;
	text-align: center;
	position: relative;
}
.sec-ttl::after {
	content: '';
	width: 80px;
	height: 4px;
	background: var(--color-green);
	position: absolute;
	bottom: 0;
	left: calc(50% - 40px);
}

.bg-light-green {
	background: var(--color-light-green02);
}


@media (max-width: 768px) {
	.sec-ttl {
		width: 100%;
		margin-bottom: 10vw;
		padding-bottom: 4vw;
		font-size: 5.66vw;
	}
	.sec-ttl::after {
		content: '';
		width: 14vw;
		height: 4px;
		background: var(--color-green);
		position: absolute;
		bottom: 0;
		left: calc(50% - 7vw);
	}
	
	
}


/*---------- メインエリア ----------*/
.hero-area {
	width: 100%;
	padding: 20px 20px 0;
	margin-bottom: 65px;
	position: relative;
	border-bottom: 1px solid var(--color-gray);
}

@media (max-width: 768px) {
	.hero-area {
		width: 100%;
		padding: 3vw 3vw 0;
		margin-bottom: 12vw;
	}
}


/*---------- page ttl ----------*/
.sec-page-ttl {
	width: 100%;
	padding: 60px 0;
	position: relative;
	z-index: 2;
	background: url("../../img/contact/bg_ttl.jpg") center center no-repeat;
	background-size: cover;
}

.page-ttl-en {
	color: var(--color-green);
	font-size: 4.8rem;
	font-weight: 700;
}
.page-ttl-ja {
	padding-left: 37px;
	font-size: 1.8rem;
	font-weight: 600;
	position: relative;
}
.page-ttl-ja::after {
	content: '';
	width: 27px;
	height: 1px;
	background: var(--color-black);
	position: absolute;
	top: calc(50% - 0.5px);
	left: 0;
}


@media (max-width: 768px) {
	.sec-page-ttl {
		width: 100%;
		padding: 12vw 0;
	}

	.page-ttl-en {
		font-size: 8.66vw;
	}
	.page-ttl-ja {
		padding-left: 8vw;
		font-size: 4.0vw;
	}
	.page-ttl-ja::after {
		content: '';
		width: 5.66vw;
	}
}





/*---------- お電話・ファックスでのお問い合わせ ----------*/
.sec-tel {
	width: 100%;
	padding: 60px 0 30px;
	background: #fff;
}

.tel-infomation-wrap {
	width: 100%;
	padding: 50px 20px;
	text-align: center;
}

.tel-infomation-list {
	width: 100%;
	margin-bottom: 20px;
	justify-content: center;
}
.tel-infomation-list li + li {
	margin-left: 90px;
}

.tel-infomation {
	width: auto;
	align-items: center;
}
.tel-infomation-tag {
	display: inline-block;
	margin-right: 10px;
	padding: 0 20px;
	background: var(--color-green);
	color: #fff;
	font-size: 2.8rem;
	font-weight: 700;
}
.tel-infomation-number {
	display: inline-block;
	color: var(--color-black);
	font-size: 2.8rem;
	font-weight: 700;
}

.tel-infomation-caption {
	font-size: 1.6rem;
}

@media (max-width: 768px) {
	.sec-tel {
		width: 100%;
		padding: 12vw 0 6vw;
	}

	.tel-infomation-wrap {
		width: 100%;
		padding: 8vw 4vw;
		text-align: center;
	}

	.tel-infomation-list {
		width: 100%;
		margin-bottom: 5vw;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
	.tel-infomation-list li + li {
		margin-left: 0;
		margin-top: 5vw;
	}

	.tel-infomation {
		width: auto;
		align-items: center;
	}
	.tel-infomation-tag {
		margin-right: 2vw;
		padding: 0 3.5vw;
		font-size: 5.66vw;
	}
	.tel-infomation-number {
		font-size: 5.66vw;
	}

	.tel-infomation-caption {
		font-size: 3.6vw;
	}
    
}




/*---------- お問い合わせフォーム ----------*/
.sec-form {
	width: 100%;
	margin-bottom: 100px;
	padding: 50px 0 100px;
	background: #fff;
}

.form-link {
	width: 100%;
	padding: 10px 30px 10px 10px;
	justify-content: space-between;
	align-items: center;
	background: url("../../img/contact/bg_contact.jpg") center center no-repeat;
	background-size: cover;
	position: relative;
}
.form-link-txt-wrap {
	width: 300px;
	padding: 45px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	background: rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.form-link-ttl-en {
	color: var(--color-green);
	font-size: 3.6rem;
    font-weight: 600;
}
.form-link-ttl {
	margin-bottom: 20px;
    font-weight: 600;
}


@media (max-width: 768px) {
	.sec-form {
		width: 100%;
		margin-bottom: 16vw;
		padding: 10vw 0 16vw;
	}

	.form-link {
		width: 100%;
		padding: 3vw 3vw 6vw;
		flex-direction: column;
		background: url("../../img/contact/bg_contact_sp.jpg") center center no-repeat;
		background-size: cover;
	}
	.form-link-txt-wrap {
		width: 100%;
		margin-bottom: 28vw;
		padding: 4vw 4vw;
	}
	.form-link-ttl-en {
		font-size: 7.66vw;
		line-height: 1.4;
	}
	.form-link-ttl {
		margin-bottom: 2vw;
		font-weight: 600;
	}
	.form-link .btn-green {
		max-width: 60vw;
	}
    
}
