@charset "UTF-8";
/*--------------------------------------------------------------
## reset
-------------------------------------------------------------*/
.snap { scroll-snap-align: none; }

/*--------------------------------------------------------------
## keisai
-------------------------------------------------------------*/
.keisai {
	margin: 48px 24px 0;
}
.keisai section {
	text-align: left;
}
.keisai p {
	font-size: 15px;
	line-height: 1.4;
}

@media screen and (min-width: 1010px) {
	.keisai { margin: 50px 50px 0; }
}

/*--------------------------------------------------------------
## head
-------------------------------------------------------------*/
.contact-header {
	display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-header .logo{

}
.contact-header .eyecatch{
	max-width: 400px;
	margin: 30px 0;
}

.contact .head {
	text-align: center;
}
.contact .head h2 {
	font-size: 32px;
}


/*--------------------------------------------------------------
## contact
-------------------------------------------------------------*/
.contact  {
	font-size: 15px;
}


/*--------------------------------------------------------------
## #formnav
--------------------------------------------------------------*/
#formnav {
	list-style: none;
	margin: 0;
	display: block;
}
#formnav li {
	position: relative;
	width: 100%;
    margin: 0;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    line-height: 30px;
    padding: 0;
}
#formnav h5 {
	position: relative;
	line-height: inherit;
	margin: 0%;
	font-weight: normal;
	font-size: 15px;
	padding-bottom: 15px;
	white-space: nowrap;
}
#formnav li.active h5 {
	font-weight: bold;
}
#formnav h5:before {
    content: "";
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}
#formnav li.active h5:before {
    border-radius: 3px;
    background: black;
}
@media only screen and (min-width: 768px){
	#formnav {display: flex;}
	#formnav li {width: 33%; margin: 0 30px; text-align: center; line-height: 60px;}
	#formnav h5 {text-align: center; }
	#formnav li:before {
		content: "";
		width: 2px;
		height: 60px;
		background: rgba(0, 0, 0, 0.1);
		border-radius: 2px;
		position: absolute;
		top: 0px;
		left: -30px;
	}
	#formnav li:last-child:after {
		content: "";
		width: 2px;
		height: 60px;
		background: rgba(0, 0, 0, 0.1);
		border-radius: 2px;
		position: absolute;
		top: 0px;
		right: -30px;
	}

}
@media only screen and (min-width: 1024px){
	
}
/*--------------------------------------------------------------
## formarea
--------------------------------------------------------------*/
.formarea {
    background-color: #EBEFF0;
    padding: 60px 0px;
    box-sizing: border-box;
	position: relative;
	margin-top: 6px;
}
.formarea:before {
	content: "";
	width: 100vw;
	height: 100%;
	position: absolute;
	left: -24px;
	top: 0;
	z-index: -10;
	background-color: #EBEFF0;
}
.formarea p.rule {
	margin-bottom: 40px;
}
@media only screen and (min-width: 768px){
	.formarea        { padding: 60px;	}
	.formarea:before { content: none;	}
	.formarea p.rule {
		margin-bottom: 60px;
	}
}


/*--------------------------------------------------------------
## contact-form
--------------------------------------------------------------*/
#contact-form .inputrow {
	margin-bottom: 32px;
	/* font-family: 'Zen Old Mincho', serif; */
}
#contact-form h4 {
	font-size: 15px;
	font-weight: normal;
	margin: 0 0 32px 0;
	width: 100%;
	/* font-family: 'Zen Old Mincho', serif; */
}
#contact-form .inputitem {
    position: relative;
	height: 48px;
}
#contact-form .inputitem.hauto {
	height: auto;
}
#contact-form .inputitem.multi {
	height: auto;
    padding: 10px;
    border: 1px solid #ebebeb;
    background-color: #FFF;
	align-items: initial;
	border: 1px solid #000000;
}
#contact-form .inputitem:before {
    content: "任意項目";
    background-color: #888;
    width: 64px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    top: -20px;
    left: 0;
    border-radius: 3px 3px 0 0;
    color: #fff;
    font-size: 12px;
    text-align: center;
	letter-spacing: 1px;
	box-sizing: border-box;
	font-family: sans-serif;
}
#contact-form .inputitem.req:before {
    content: "必須";
    background-color: #1C6520;
}
#contact-form .inputbutton {
    margin: 30px -20px 0;
    display: flex;
    justify-content: center;
	gap: 8px;
}

#contact-form button ,
#contact-form input[type="reset"] ,
#contact-form input[type="submit"] {
    padding: 10px 40px;
	color: #FFF;
	background-color: #1C6520;
	border: 0 none;
    border-radius: 4px;
	transition: background-color 0.3s ease-in-out 0s;
	appearance: none;
	-webkit-appearance: none;
}
#contact-form button:hover ,
#contact-form input[type="reset"]:hover ,
#contact-form input[type="submit"]:hover {
	background-color: #5e8b61;
}

#contact-form input[type="submit"]:disabled {
	background: #AAA;
}
#contact-form input[type="button"]:disabled,
#contact-form input[type="reset"]:disabled,
#contact-form input[type="submit"]:disabled {
	background-color: #DDD;
	color: #888;
	outline: none;
}

#contact-form input[type="text"] ,
#contact-form textarea {
	padding: 4px;
	background-color: #FFF;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	font-size: 15px;
}
#contact-form input[type="text"]::placeholder ,
#contact-form textarea::placeholder {
		color:rgba(0,0,0,0.5);
}
.inputitem.multi label {
	display: block;
}

@media only screen and (min-width: 768px){
	#contact-form .inputrow .contena {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
	}
	#contact-form .inputrow .contena.hauto {
		align-items: initial;
	}
	#contact-form .inputrow h4 {
		margin: 0;
	}
	#contact-form .inputrow .contena.hauto h4 {
		margin-top: 24px;
	}
	#contact-form h4  {flex: 1;}
	#contact-form .inputitem { width:75%; height:64px}
	#contact-form input[type="text"] ,
	#contact-form textarea {
		padding: 16px;
	}
}



/*--------------------------------------------------------------
## item
--------------------------------------------------------------*/
table.tableInq {
	border: 0px none;
	table-layout:fixed;
	font-family: sans-serif;
	font-size: 15px;
	border-collapse: separate;
    border-spacing: 0 8px;
	margin:20px 0; 
	width:100%
}
.ermsg{ color:#dc3232}
.red{ color:#dc3232; margin-left:3px}
.tableInq th,.tableInq td{border: 0px none; padding:10px;text-align:left}
.tableInq th{font-weight:normal; padding-right:1px; width:33%; }
@media only screen and (min-width: 768px){
.tableInq th{width:40%; padding-right:10px;}
}
.tableInq td{ background-color:#fff; border: 1px solid #ebebeb;}