@charset "utf-8";
/* CSS Document */

/*******************************
パララックスエフェクト
*******************************/
html {
	height: 100%;
}
 
body {
	height: 100%;
	line-height: 1.6;
}

#mainVisual {
	position: relative;
	height: 30%;
	background-color: rgba(0, 0, 0, 1.0);
	overflow: hidden;
}

#mainVisual .bg {
	/*position: fixed;*/
	right: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	z-index: -100;
	background: url('/contact/images/main01.jpg') no-repeat 0 0;
	background-size: 100%;
	opacity: 0.8;
}

#mainVisual h1 {
	width: 96%;
	text-align: center;
	font-size: 3rem;
	letter-spacing: -.5px;
	font-weight: bold;
	color: #fff;
	line-height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
}

#mainVisual h1 span {
	font-size: 1rem;
	display: block;
}

/*******************************
main
*******************************/
#main {
	background: #fff;
    -webkit-box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.5);
	padding-bottom: 5%;
}

/*******************************
contact
*******************************/
#contact {
	overflow: hidden;
	line-height: 1.6;
}

#contact .contactBox01 {
	width: 86%;
	margin: 0 auto;
}

#contact .contactBox01 .txt01 {
	color: #dc2520;
	margin-top: 1em;
}

#contact .contactBox01 .txt01 strong {
	font-weight: bold;
}

#contact .contactBox01 .txt02 {
	text-align: center;
	margin: 1em 0 4em;
}

#contact .contactBox02 {
	width: 80%;
	margin: 3% auto;
	background: #f4f4f4;
	padding: 1% 3%;
}

#contact table {
	border-collapse: collapse;
	text-align: left;
	width: 100%;
}

#contact table th,
#contact table td {
	border-bottom: 1px solid #000;
	padding: 1.5em 0.5em;
	vertical-align: middle;
}

#contact table th {
	font-weight: bold;
	width: 21%;
}

#contact table th .required {
    background: #dc2520;
    font-weight: bold;
    color: #fff;
    padding: 0.6em 0.5em;
    font-size: 85%;
    border-radius: 100%;
    margin: 0.5em 0 0.5em 0.5em;
    display: inline-block;
}

#contact table td span {
	color: #999;
}

#contact table td input {
	padding: 2%;
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	width: 96%;
}

#contact table td textarea {
	padding: 2%;
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	width: 96%;
}

#contact table td input[type="text"] {
	border: 1px solid #999;
}

#contact table td input[type="text"]:focus {
	border: 1px solid #29a3dd;
	outline: 0;
}

#contact table td.btn {
	text-align: center;
	letter-spacing: -.4em;
	padding: 1.5em 0;
	border: none;
}

#contact table td.btn input[type="confirm"],
#contact table td.btn input[type="submit"],
#contact table td.btn input[type="reset"] {
	-webkit-appearance: none;
	border-radius: 0;
}

#contact table td.btn input.confirm {
    display: inline-block;
	letter-spacing: normal;
	width: 40%;
    padding: 1rem 0;
	border: none;
    background-color: #ffdd0e;
    color: #000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 1rem;
	cursor: pointer;
	text-align: center;
}

#contact table td.btn input.send {
	margin: 0 2% 0 0;
    display: inline-block;
	letter-spacing: normal;
	width: 40%;
    padding: 1rem 0;
	border: none;
    background-color: #ffdd0e;
    color: #000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 1rem;
	cursor: pointer;
	text-align: center;
}

#contact table td.btn input.send:hover,
#contact table td.btn input.confirm:hover {
	opacity: 1.0!important;
    background-color: #dc2520;
    color: #fff;
}

#contact table td.btn input.reset {
    display: inline-block;
	letter-spacing: normal;
	width: 40%;
    padding: 1rem 0;
	border: none;
    background-color: #ddd;
    color: #000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 1rem;
	cursor: pointer;
	text-align: center;
}

#contact table td.btn input.reset:hover {
	opacity: 1.0!important;
    background-color: #fff;
}

#contact .contactBox03 {
	width: 86%;
	margin: 4% auto;
}

#contact .contactBox03 dt {
	font-weight: bold;
	margin-bottom: 0.5em;
}

/*******************************
bnr
*******************************/
.bnrArea01 {
	text-align: center;
}

.bnrArea01 a {
	display: block;
	width: 30%;
	margin: 0 auto;
}

.bnrArea01 a img {
	width: 100%;
}



