@charset "UTF-8";

#key-visual .pic img{
	object-position: center center;
}
main th{
	text-align: left;
	vertical-align: top;
	position: relative;
	padding: 25px 20px 25px 0;
	width: 25%;
}
main th:after{
	content: "";
	display: block;
	width: 1px;
	height: calc(100% - 30px);
	background: #ddd;
	position: absolute;
	right: 0;
	top: 15px;
}
main table{
	border-top: 1px solid #ddd;
}
main tr{
	border-bottom: 1px solid #ddd;
}
main td{
	padding: 25px 0 25px 20px;
	width: 75%;
}
.required{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: #b4001b;
	font-size: 1.1rem;
	padding: 5px 7px;
	line-height: 1;
	float: right;
	//margin: -.5em 0 0;
	letter-spacing: .2em;
}
input[type='text'],
input[type='tel'],
input[type='email']{
	width: 100%;
	background: #f5f5f5;
	height: 50px;
	display: flex;
	align-items: center;
	padding: .5em;
}
select{
	display: block;
	width: 272px;
	height: 50px;
	background: #fff;
	font-family: 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",  sans-serif;
	padding: .5em;
	background-image: url(../images/select-bg.svg);
	background-repeat: no-repeat;
	background-position: right .5em center;
	background-size: 10px auto;
	background: #f5f5f5;
}
textarea{
	width: 100%;
	background: #fff;
	font-family: 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",  sans-serif;
	font-size: 1.4rem;
	line-height: 1.7;
	color: #444;
	background: #f5f5f5;
	padding: .5em;
	height: 250px;
	resize: none;
}
input{
	font-family: 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",  sans-serif;
	font-size: 1.4rem;
	color: #444;
}
.zip-area{
	display: flex;
	align-items: center;
}
.pref-area,
.address-area{
	margin-top: 20px;
}
#zip{
	width: 250px;
	margin-left: .5em;
}
form p{
	text-align: center;
	font-weight: 600;
	margin: 50px 0;
}
form p a{
	text-decoration: underline;
	margin-right: .4em;
}
form p a:hover{
	text-decoration: none;
}
input.btn01{
	display: flex;
	background: #343436;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-family: 'Roboto', 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",  sans-serif;
	font-size: 1.4rem;
	width: 300px;
	height: 50px;
	margin: 60px auto 0;
	font-weight: 500;
	letter-spacing: .1em;
	cursor: pointer;
	transition: .3s all ease;
}
input.btn01:hover{
	color: #343436;
	background: transparent;
}

form table td label.error {
    display: block;
    color: #d45645;
    font-weight: 700;
}

.contact-h2 {
    position: relative;
    margin-bottom: 40px;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.contact-txt {
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.75;
    text-align: center;
}

.lv2Heading {
  position: relative;
  margin-bottom: 40px;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
}

.lv2Heading_overTxt {
  margin-bottom: 24px;
}

.underLv2Heading_txt {
  font-size: 1.8rem;
  text-align:center;
  margin-bottom: 24px;
}

.sp-none {
  display: block !important;
}


.archives-btn{
	margin-top: 60px;
	display: flex;
	justify-content: center;
	font-weight: 600;
}
.archives-btn a{
	height: 28px;
	position: relative;
	display: flex;
	align-items: flex-start;
}
.archives-btn a:before{
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background: #1E1E5E;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: .3s all ease;
	transform-origin: right bottom;
}
.archives-btn a:hover:before{
	transform: scaleX(0);
}
.archives-btn a:after{
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #444;
	border-right: 2px solid #444;
	transform: rotate(45deg);
	margin-left: .75em;
	margin-top: .2em;
}


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

	table,
	tbody,
	tr,
	th,
	td{
		display: block !important;
		width: 100% !important;
	}
	main th{
		padding: 20px 0 15px;
	}
	main th:after{
		display: none;
	}
	main td{
		padding: 0 0 20px;
	}
	.required{
		font-size: 1rem;
		padding: .4rem .5rem;
	}
	input[type='text'],
	input[type='tel'],
	input[type='email']{
		height: 40px;
	}
	select{
		display: block;
		width: 100%;
		max-width: 400px;
		height: 40px;
		font-size: 1.2rem;
	}
	textarea{
		font-size: 1.2rem;
		height: 20rem;
	}
	input{
		font-size: 1.2rem;
	}
	.pref-area,
	.address-area{
		margin-top: 15px;
	}
	#zip{
		width: 100%;
	}
	form p{
		width: 100%;
		line-height: 1.7;
		margin: 3rem 0;
	}
	input.btn01{
		font-size: 1.2rem;
		max-width: 300px;
		width: 100%;
		height: 40px;
		margin-top: 3rem;
	}
	.lv2Heading {
	margin-bottom: 24px;
	font-size: 2.2rem;
	}
	.lv2Heading_overTxt {
	margin-bottom: 16px;
	}
	.lv2Heading_overTxt {
	margin-bottom: 16px;
        }
	.underLv2Heading_txt {
	margin-bottom: 16px;
        text-align:center;
	}

	.archives-btn{
		margin-top: 4rem;
	}
	.archives-btn a{
		height: 2rem;
	}
}
