@charset "utf-8";

/*固定CTA非表示*/
.floating-cta{display: none;}
.site-footer {
    padding-bottom: 5%;
}

.column-reverse{
	display: flex;
	width: 100%;
	margin: auto;
	text-align: center;
	justify-content:center;
	gap: 20px;
}

.contact {
    width: 90%;
    margin: 50px auto 0;
}

.error_messe{
	text-align: center;
}

@media (min-width: 768px){
    .contact {
        margin: 70px auto 100px;
    }
	.column-reverse{
		width: 700px;
	}
}

@media (min-width: 1200px){
	.contact {
        max-width: 1200px;
        width: 100%;
        margin: 100px auto;
        padding: 0;
    }
}


/*subpage__greeting*/
.subpage__greeting {
    padding: 0 0 50px;
	padding: 30px 0 30px!important;
	position: relative;
	text-align: center;
    font-weight: bold;
	font-style: normal!important;
}

.subpage__greeting-pretitle {
    margin-top: 10px;
    font-size: 16px;
	line-height: 1.6;
	position: relative;
	display: inline-block;
	font-weight: bold;
}


/* 左の ＼ */
.subpage__greeting-pretitle::before {
	content: "";
	position: absolute;
    left: -25px;
    top: 50%;
    width: 50px;
	height: 2px;
	background: #333;
	transform: translateY(-50%) rotate(55deg);
}

/* 右の ／ */
.subpage__greeting-pretitle::after {
	content: "";
	position: absolute;
	right: -25px;
    top: 50%;
    width: 50px;
	height: 2px;
	background: #333;
	transform: translateY(-50%) rotate(-55deg);
}

@media (min-width: 768px){
	.subpage__greeting-pretitle {
		font-size: 18px;
	}
}

@media (min-width: 1200px){
	.subpage__greeting{
		padding: 70px 0 50px!important;
	}

	.subpage__greeting-pretitle::before {
		left: -40px;
	}
	.subpage__greeting-pretitle::after {
		right: -40px;
	}
	.subpage__greeting-pretitle{
		font-size: 24px;
	}
}




/* 電話エリア */
.callButtons{
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

@media (min-width: 768px){
	.callButtons{
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}
}


/* ボタン本体 */
.callButton{
	display: block;
	padding: 14px 16px;
	/*	border: 1px solid #ccc;*/
	border-radius: 12px;
	background: #fff;
	text-decoration: none;
	color: #111;
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
	text-align: center;
	background-color: #cfd9ef;
}
.callButton:last-child{
	display: block;
	padding: 14px 16px;
	/*	border: 1px solid #ccc;*/
	border-radius: 12px;
	background: #fff;
	text-decoration: none;
	color: #111;
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
	text-align: center;
	background-color: #efefef;
}

/* 上の小さい説明文 */
.callButton__lead{
	margin-top: 8px;
	display: block;
	font-size: 13px;
	line-height: 1.4;
	color: #000;
	font-weight: bold;
}

/* 電話番号 */
.callButton__num{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: .03em;
	gap: 5px;
}

.callButton__num::before{
	content: "";
	width: 40px;
	height: 40px;
	background-image: url("/-images/common/icon-tel.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	top: 2px;
}

/* ホバー（PC想定） */
@media (hover:hover){
  .callButton:hover{
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    transform: translateY(-1px);
  }
}

@media (min-width: 1200px){
	.callButtons{
		grid-template-columns: 400px 400px;
		justify-content: center;
	}
}


/*フォーム設定*/
.contact__form{
	margin-bottom: 100px;
}
.formTable,
.formTable tbody,
.formTable tr,
.formTable th,
.formTable td {
	display: block;
	width: 100%;
}

.formTable{
	margin-top: 30px;
}

.formTable tr {
	margin-bottom: 20px;
}

.formTable th {
	margin-bottom: 6px;
	font-weight: bold;
	text-align: left;
}

.formTable td {
	margin-bottom: 30px;
}

/* 入力欄をフル幅に */
.formTable input[type="text"],
.formTable textarea {
	width: 100%;
	background-color: #efefef;
	box-sizing: border-box;
	padding: 15px;
	border: none;
}

.formTable label {
	display: block;
	padding: 5px 0; 
	cursor: pointer;
}
.required{
	padding: 3px;
	background-color: #ff3333;
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 10px;
	border-radius: 4px;
}

@media (min-width: 1200px){
	.formTable{
		max-width: 600px;
		width: 100%;
		margin: 50px auto;
	}
	.formTable th {
		font-size: 16px;
	}
	.formTable td {
		margin-bottom: 50px;
	}
	.formTable label {
		margin-top: 20px;
	}
	.formTable .label_flex{
		display: flex;
		flex-wrap: wrap;
		column-gap: 50px;
		flex-direction: row;
	}
	.required{
		padding: 5px;
		font-size: 12px;
	}

}

/*送信ボタン*/
.btn-wrap{
	text-align: center;
}
.btn-confirm {
	max-width: 250px;
	width: 80%;
	height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	background: linear-gradient(to bottom, #3b86c8 0%, #2f74b2 50%, #2a69a3 100%);
	box-shadow: 2px 3px 6px rgba(0,0,0,.18);
	transition: .2s ease;
	border: none;
	cursor: pointer;
}
/* hover */
.btn-confirm:hover{
	transform: translateY(1px);
	box-shadow: none;
	opacity: .7;
}







/*recruit__apply*/
.recruit__apply {
    width: 90%;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.recruit__apply-btn {
    width: 420px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(
		to bottom,
		#3b86c8 0%,
		#2f74b2 50%,
		#2a69a3 100%
	);
    box-shadow: 2px 3px 0 rgba(0,0,0,.18);
    transition: .2s ease;
}
.recruit__apply-btn:hover{
	opacity: .75;
}

@media (min-width: 1200px){
	.recruit__apply-btn {
		width: 360px;
		height: 60px;
	}
}

/*thanks*/
.thanks{
	background-color: #efefef;
	padding: 40px 20px;
}
.thanks-title{
	text-align: center;
	line-height: 1.8;
}

@media (min-width: 1024px){
	.thanks{
		padding: 40px 100px;
	}

}
@media (min-width: 1200px){
	.thanks{
		max-width: 800px;
		width: 100%;
		margin: auto;
	}

}




