@charset "utf-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Poppins:400,300,500,600,700);
@import url('//fonts.googleapis.com/css?family=Source+Sans+Pro:300,900');
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 600;
  src: url(../font/NotoSerifCJKjp/NotoSerifCJKjp-SemiBold.otf) format('opentype');
 }
/* =======================================
	0. Reset
======================================= */
html, body, div, span, applet, object, iframe, strong,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption, 
tbody, tfoot, thead, table, label, tr, th, td{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	list-style:none;
}

.clear {
	clear:both;
	line-height:0;
}

.right {
	float:right;
}

.left {
	float:left;
}

::selection {
	background:rgba(204,0,0,0.8);
	color: #fff;
}

::-moz-selection {
	background:rgba(204,0,0,0.8);
	color: #fff;
}

a img {
	border:none;
	verticle-align:top;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=5);
}

a {
	color: #000;
	text-decoration:none;
	cursor:pointer;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

a:hover {
	color: #555;
	text-decoration:none;
}

/* body
**********************************************************************/

body {
	font-size: 12px;
	line-height: 180%;
	font-family: 'Noto Sans Japanese', serif;
	font-weight:300;
	overflow:scroll;
	scrollbar-face-color: #ff8c00;
	letter-spacing:0.05em;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

/*===============================================
●sp.css  画面の横幅が570pxまで
===============================================*/
@media screen and (max-width:570px){

img{
	max-width: 100%;
	height: auto;
	width /***/:auto;　
}

#container{
	width:100%;
}

.sp-wrap {
	width:100%;
}

.br-sp {
	display:none;
}

#loader-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 1;
}
 
#loader-bg #loader {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 80px;
	margin-left: -40px;
	text-align: center;
	z-index: 2;
}

#loader-bg #loader p {
	font-family: 'Poppins', sans-serif;
	font-weight:500;
	text-align:center;
	font-size:11px;
	margin:8px 0 0;
	letter-spacing:0.02em;
	color:#B81D23;
}

.animation-loader {
    position:relative;
    -webkit-perspective:1000;
    perspective:1000;
    -webkit-animation: animation-L 4s infinite;
    animation: animation-L 4s infinite;
    width:80px;
}

.animation-loader .flip-cards div {
    width:80px;
    height:80px;
    position:absolute;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.animation-loader .flip-cards {
    width:80px;
    height:80px;
    position:relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.animation-loader .front-card {
    z-index: 2;
    background: url(../img/loader.svg) top center no-repeat;
	background-size:100%;
}

.animation-loader .reverse-card {
    -webkit-transform: rotateY(180deg);
    transform: rotateX( 180deg );
}

.reverse-card {
    background: url(../img/loader.svg) top center no-repeat;
	background-size:100%;
	-webkit-filter: brightness(0.7);
	-moz-filter: brightness(0.7);
	-o-filter: brightness(0.7);
	-ms-filter: brightness(0.7);
	filter: brightness(0.7);
}


@keyframes animation-L {
    40%
    {
        transform: rotate(360deg);
    }
}

.animation-loader > div {
    -webkit-animation: animation-card 4s infinite;
    animation: animation-card 4s infinite;
}

@keyframes animation-card {
    40%
    {
        transform: rotateY( 360deg );
    }
}

/* =======================================
	0. header
======================================= */

#header {
	width:100%;
	background:#fff;
	border-top:3px solid #B81D23;
}

#header-in {
	width:960px;
	margin:0 auto;
}

/* nav
**************************************************************/

.nav {
	display:none;
}

.nav-sp {
	z-index:999;
	background:#fff;
	width:100%;
	padding:8px 0;
}

.nav-sp-inner {
	margin:0 auto;
	width:90%;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	margin:0px 0 0;
	box-shadow: 0px 3px 5px rgba(0,0,0,0.15);
}

.logo-sp img {
	width:120px;
}

/* =======================================
	0. main
======================================= */

#main {
	width:100%;
	background-color:#fff;
}

#main-bg {
	width:100%;
	height:450px;
	background:url(../img/main-bg.jpg) center center;
	background-size:cover;
	z-index:1;
}

#main-bg h2 {
	width:90%;
	margin:0 auto;
	text-align:center;
	color:#fff;
	padding:180px 0 0;
	letter-spacing:0.04em;
	font-size:30px;
	font-weight:500;
	font-family:"Times New Roman", Times, serif;
	line-height: 100%;
}

#main-bg h2 span {
	font-size:45px;
}

#main-bg p {
	width:95%;
	margin:8px auto 0;
	text-align:center;
	color:#fff;
	font-size:10px;
	letter-spacing:0.02em;
	font-weight:600;
	padding:2px 0 3px;
	font-family: 'Noto Serif Japanese';
	background: -moz-linear-gradient(left, rgba(184,29,35,0) 0%, rgba(184,29,35,0.6) 20%, rgba(184,29,35,1) 50%, rgba(184,29,35,0.6) 80%, rgba(184,29,35,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(184,29,35,0) 0%,rgba(184,29,35,0.6) 20%,rgba(184,29,35,1) 50%,rgba(184,29,35,0.6) 80%,rgba(184,29,35,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(184,29,35,0) 0%,rgba(184,29,35,0.6) 20%,rgba(184,29,35,1) 50%,rgba(184,29,35,0.6) 80%,rgba(184,29,35,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b81d23', endColorstr='#00b81d23',GradientType=1 ); /* IE6-9 */
}

#main-in {
	width:90%;
	margin:50px auto 0;
}

.main-box {
	width:100%;
	float:left;
	border-bottom:1px solid #ccc;
	margin:0 auto 0;
}

.main-box a {
	width:90%;
	padding:5%;
}

.main-img {
	width:100%;
	overflow:hidden;
}


.main-box a img {
	width:100%;
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
}

.main-box a:hover img {
	opacity: 1;    
	filter: alpha(opacity=10);
	transform: scale(1.2);
    transition: all 0.8s ease-out;
}

.title {
	border-left:6px solid #B81D23;
	font-family: 'Poppins', sans-serif;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

a:hover .title {
	border-left:6px solid #fff;
}

.main-box h3 {
	color:#B81D23;
	font-size:26px;
	font-weight:500;
	letter-spacing:0.03em;
	margin:0 0 3px;
	padding:6px 0 3px 13px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

a:hover .title h3 {
	color:#fff;
}

a:hover .title-cap {
	color:#fff;
}

.title-cap {
	color:#000;
	font-size:13px;
	font-weight:500;
	margin:0px 0 15px;
	letter-spacing:0.15em;
	padding:0px 0 1px 13px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.caption {
	margin:10px 0 10px;
	font-size:11px;
}


.main-box-2 {
	width:100%;
	border-bottom:1px solid #ccc;
	padding:0px 0 0px;
	margin:0 0 50px;
}

.main-box-2 a {
	width:90%;
	padding:5%;
}

.main-in-2 {
	width:100%;
	float:left;
	padding:0px 0;
	margin:0 0 0px;
}

.main-img-2 {
	width:100%;
	overflow:hidden;
	float:right;
}

.main-box-2 img {
	width:100%;
	padding:0px 0;
	margin:0 0 0px;
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
}

.main-box-2 a:hover img {
	opacity: 1;    
	filter: alpha(opacity=10);
	transform: scale(1.2);
    transition: all 0.8s ease-out;
}

.main-in-2 h3 {
	color:#B81D23;
	font-size:26px;
	font-weight:500;
	letter-spacing:0.03em;
	margin:0 0 3px;
	padding:6px 0 3px 13px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.caption-2 {
	margin:0px 0 10px;
	font-size:11px;
}

.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}

.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  background-color: #d41;
  color: white;
}

/* =======================================
	0. footer
======================================= */

#footer {
	width:100%;
	font-size: 12px;
	margin:0;
}

#footer-1 {
	width:90%;
	margin:0 auto;
	background:#B81D23;
	color:#fff;
	height:40px;
	padding:20px 0;
	text-align:center;
	width:100%;
	margin:0 auto;
}

#footer-1 a {
	display:inline-block;
	float:inherit;
	color:#fff;
	letter-spacing:0.1em;
	font-size:12px;
	font-weight:500;
}

#footer-1 a:hover {
	color:#f60;
}

#footer-2 {
	width:100%;
	margin:0 auto;
	padding:40px 0 40px;
	background:#eee;
}

#footer-info {
	width:90%;
	margin:0px auto 12px;
	color: #000;
}

#logo-foo {
	display:block;
	width:90px;
	margin:10px auto 10px;
}

#logo-foo img {
	display:block;
	width:90px;
	margin:10px auto 10px;
}

#footer-info h3 {
	color:#B81D23;
	font-family:"Times New Roman", Times, serif;
	text-align:center;
	font-weight:500;
	width:90%;
	letter-spacing:0.05em;
	font-size:25px;
	display:block;
	margin:20px auto 25px;
}

#logo-foo-2 {
	width:200px;
	margin:0 auto;
}

#logo-foo-2 img {
	margin:0 0 20px;
}

#footer-info p {
	display:block;
	text-align:center;
	width:90%;
	font-family: 'Noto Sans Japanese', serif;
	font-weight:500;
	font-size:13px;
	letter-spacing:0.05em;
	margin:0 auto;
}

.foo-recuret {
	width:80%;
	margin:20px auto 0;
}

.foo-recuret img {
	width:100%;
	margin:0 auto;
}

#copy {
	background:#555;
	color:#eee;
	text-align:center;
	width:100%;
	padding:10px 0;
	font-size:12px;
	margin:0 auto;
	letter-spacing:0.1em;
}


/* page-top
**************************************************************/

div.tothetopfixed {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99998;
}    
 
div.tothetopfixed a {
	text-decoration:none;
    display: block;
	background-color:#ddd;
	font-size:12px;
	font-weight:bolder;
    color: #B81D23;
	padding:7px 16px;
    margin: 0;
	border-radius:10px;
}

div.tothetopfixed a:hover {
	text-decoration:none;
	background-color:#B81D23;
	font-size:12px;
	font-weight:bolder;
    color: #fff;
    margin: 0;
}
 
div.tothetopfixed a:hover {
	text-decoration:none;
}


/* =======================================
	0. sub-page
======================================= */

/* common
**************************************************************/

#sub-main {
	width:100%;
}

.sub-head {
	width:100%;
	background-color:#B81D23;
	padding:75px 0 65px;
	text-align:center;
}

.sub-head h2 {
	font-size:35px;
	font-family: 'Poppins', sans-serif;
	font-weight:500;
	letter-spacing:0.1em;
	
	color:#fff;
}

.sub-head p {
	margin:17px 0 0;
	font-size:14px;
	font-weight:500;
	letter-spacing:0.45em;
	color:#fff;
}

.sub-head p span {
	width:90%;
	display:block;
	margin:20px auto 0;
	font-size:11px;
	letter-spacing:0.02em;
	font-weight:500;
}

.sub-contents {
	margin:0 auto;
	padding:50px 0;
	width:90%;
}

.sub-contents-5 {
	margin:30px auto 10px;
	padding:0px 0;
	width:100%;
	height:120vw;
	background: url(../img/workflow-step-sp.png) top center no-repeat;
	background-size:100%;
}

.sub-title-1 {
	border-bottom:1px solid #eee;
	border-left:6px solid #B81D23;
	letter-spacing:0.1em;
	padding:10px 0 15px 18px;
	font-weight:500;
	margin:0 0 20px;
	font-size:18px;
}

.sub-contents-L {
	width:100%;
	float:left;
}

.sub-contents-L p {
	font-size:11px;
}

.sub-contents-L span.about-sign {
	display:block;
	text-align:right;
}

.sub-contents-R {
	width:100%;
	float:left;
	margin:0 auto;
}

.sub-contents-R img {
	width:100%;
	margin:30px auto;
}


.sub-contents-R-2 {
	width:100%;
	float:left;
	margin:30px 0;
}

.sub-contents-R-2 img {
	width:100%;
	margin:0 auto;
}


/* business
**************************************************************/
.sub-title-4 {
	background:#B81D23;
	letter-spacing:0.1em;
	padding:3px 0 3px;
	font-weight:500;
	margin:0 0 0px;
	font-size:13px;
	color:#fff;
	text-align:center;
}

.sub-contents-img {
	width:100%;
	margin:0 0 50px;
	background:#eee;
	padding:5% 0 0;
	overflow: auto;
}

.sub-contents-img p {
	font-size:10px;
	margin:1px 0 0;
}

.sub-contents-img-2 {
	width:100%;
	margin:0 0 30px;
	background:#eee;
	padding:5% 0 0;
	overflow: auto;
}

.sub-contents-img-2 p {
	margin:1px 0 0;
	font-size:10px;
}

.sub-contents-img-3 {
	width:100%;
	margin:0 0 30px;
	background:#eee;
	padding:5% 0 0;
	overflow: auto;
}

.sub-contents-img-3 p {
	margin:1px 0 0;
	font-size:10px;
}

.sub-contents-img-box {
	float:left;
	width:40%;
	height:100px;
	margin:0 5% 30px;
}

.sub-contents-img-box a {
	display:block;
	background:#fff;
	width:100%;
	height:100px;
	overflow: hidden;
	position: relative;
}

.sub-contents-img-box a img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.sub-contents-img-box-L {
	float:left;
	width:40%;
	height:100px;
	margin:0 5% 30px;
}

.sub-contents-img-box-L a {
	display:block;
	background:#fff;
	width:100%;
	height:100px;
	overflow: hidden;
	position: relative;
}

.sub-contents-img-box-L a img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}



/* work flow 
**************************************************************/
.sub-contents-img-box-L-2 {
	float:left;
	width:86%;
	padding:0 7% 20px;
	margin:0;
}

.sub-contents-img-box-2 {
	float:left;
	width:86%;
	padding:0 7% 20px;
	margin:0 auto;
}

.sub-contents-img-box-L-2 img {
	width:100%;
}

.sub-contents-img-box-2 img {
	width:100%;
}
/* recruit
**************************************************************/
.sub-title-2 {
	background:#B81D23;
	letter-spacing:0.25em;
	padding:9px 0 9px;
	font-weight:500;
	margin:0 0 0px;
	font-size:14px;
	color:#fff;
	text-align:center;
}

.table-1 {
	margin:0px auto 30px;
	width:100%;
	vertical-align:text-top;
}

.table-1 tr {
}


.table-1 th {
	background:#ddd;
	color:#000;
	width:25%;
	letter-spacing:0.35em;
	font-weight:500;
	text-align:center;
	font-size:11px;
	padding: 20px 0;
}

.table-1 td {
	background:#eee;
	width:75%;
	font-weight:400;
	font-size:11px;
	padding: 15px;
}



.sub-title-3 {
	background:#B81D23;
	letter-spacing:0.25em;
	padding:12px 0 12px;
	font-weight:500;
	margin:0 0 0px;
	font-size:17px;
	color:#fff;
	text-align:center;
}

.sub-about-L {
	margin:0px auto;
	width:100%;
	float:left;
}

.sub-about-R {
	margin:0px auto;
	width:100%;
	float:left;
}

.table-2 {
	margin:0px auto 30px;
	width:100%;
	vertical-align:text-top;
}

.table-2 tr {
}


.table-2 th {
	background:#ddd;
	color:#000;
	width:23%;
	letter-spacing:0.10em;
	font-weight:500;
	text-align:center;
	font-size:11px;
	padding: 20px 0;
}

.table-2 td {
	background:#eee;
	width:77%;
	font-weight:400;
	font-size:11px;
	padding: 15px;
}

a.button {
	display:inline-block;
	width:100%;
	background:#777;
	text-align:center;
	font-size:13px;
	padding:10px 0;
	letter-spacing:0.2em;
	color:#fff;
	font-weight:600;
}

a:hover.button {
	background:#B81D23;
	color:#fff;
}

/* about
**************************************************************/
.map {
	width:100%;
	height:250px;
	margin:30px auto;
}

/* contact
**************************************************************/
input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

input[type="button"] {
	-webkit-appearance: none;
	border-radius: 0;
}

#formWrap {
	width:100%;
	margin:0px auto;
}

.formWrap-text {
	text-align:center;
	padding:0px 0 10px;
	font-size:12px;
	color:#000;
}

.formWrap-text a {
	color:#000;
	border-bottom:1px solid  #eee;
}

#formWrap a:hover {
	color:#B81D23;
	border-bottom:1px solid  #B81D23;
}

.formTable {
	margin:15px 0 0px;
	display:block;
	width:100%;
}

.formTable tbody {
	display:block;
	width:100%;
}

.formTable tr {
	display:block;
	width:100%;
	margin:3px auto;
}


.formTable th {
	display:block;
	color:#000;
	width:100%;
	letter-spacing:0.2em;
	margin:0 0 6px;
	text-align:left;
	vertical-align:middle;
	font-size:12px;
	font-weight:500;
}

.formTable td {
	display:block;
	width:100%;
	margin:0 0 20px;
	font-weight:500;
	font-size:12px;
}

.formTable input {
	display:block;
	border:none;
	width:94%;
	text-decoration:none;
	background:#eee;
	border-radius:0;
	padding:3%;
}

.formTable textarea {
	display:block;
	border:none;
	border-radius:0;
	width:94%;
	text-decoration:none;
	background:#eee;
	padding:3%;
	resize: vertical;
}

.formTable select {
	display:block;
    width: 100%;
    text-decoration: none;
    background: #eee;
    height: 33px;
    padding:3%;
	
	border: 0;
	outline: 1px solid #eee;
	outline-offset: -1px;
}

select {
	border-radius:0px !important;
}

#formWrap input#submit_button {
	line-height:0%;
	font-family: 'Noto Sans Japanese', serif;
	display:block;
	width:100%;
	margin:10px 0px 0;
	font-size:13px;
	letter-spacing:0.2em;
	padding:22px 0;
	text-align:center;
	color:#fff;
	font-weight:500;
	background-color:#555;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	border-radius:0;
	border-style: none;
}

#formWrap input#submit_button:hover {
	background-color:#B81D23;
	color:#fff;
	opacity: 1.0;
	filter: alpha(opacity=10);
}




#formWrap-2 {
	width:100%;
	margin:0px auto;
}

#formWrap-2 a:hover {
	color:#B81D23;
	border-bottom:1px solid  #B81D23;
}

#formWrap-2 .s-title {
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	text-align:center;
	letter-spacing:0.25em;
	font-size:18px;
	margin:0 0 10px;
	color:#B81D23;
}

.formTable-2 {
	margin:15px 0 0px;
	display:block;
	width:100%;
}

.formTable-2 tbody {
	display:block;
	width:100%;
}

.formTable-2 tr {
	display:block;
	width:100%;
	margin:3px auto;
}

.formTable-2 th {
	display:block;
	color:#B81D23;
	width:100%;
	letter-spacing:0.2em;
	margin:0 0 6px;
	text-align:left;
	vertical-align:middle;
	font-size:12px;
	font-weight:500;
}

.formTable-2 td {
	display:block;
	width:100%;
	margin:0 0 20px;
	font-weight:500;
	font-size:12px;
}

.formTable-2 input {
	display:block;
	border:none;
	width:94%;
	text-decoration:none;
	background:#eee;
	border-radius:0;
	padding:3%;
}

.formTable-2 textarea {
	display:block;
	border:none;
	border-radius:0;
	width:94%;
	text-decoration:none;
	background:#eee;
	padding:3%;
	resize: vertical;
}

.formTable-2 select {
	display:block;
    width: 100%;
    text-decoration: none;
    background: #eee;
    height: 33px;
    padding:3%;
	
	border: 0;
	outline: 1px solid #eee;
	outline-offset: -1px;
}

#formWrap-2 input#submit_button-2 {
	line-height:0%;
	font-family: 'Noto Sans Japanese', serif;
	display:block;
	width:100%;
	margin:10px 0px 0;
	font-size:13px;
	letter-spacing:0.2em;
	padding:22px 0;
	text-align:center;
	color:#fff;
	font-weight:500;
	background-color:#555;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	border-radius:0;
	border-style: none;
}

#formWrap-2 input#submit_button-2:hover {
	background-color:#B81D23;
	color:#fff;
	opacity: 1.0;
	filter: alpha(opacity=10);
}

/* privacy
**************************************************************/
.privacy-contents {
	counter-reset: titleNum;
}

.privacy-p p {
	font-size:12px;
	counter-increment: titleNum;
	margin:0 0 30px
}

.privacy-p p span {
	position: relative;
	padding: 0 0 8px 40px;
	margin:0px 0 15px;
	border-bottom: 1px solid #ddd;
	font-size:16px;
	display:block;
	line-height: 30px;
}

.privacy-p p span::before {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(titleNum);
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #B81D23;
	border-radius: 100%;
	color: #fff;
	font-size: 17px;
	text-align: center;
	font-family:"Times New Roman", Times, serif;
	margin:0px 0 5px;
}

/* 404
**************************************************************/

}