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

/* ********************************************
// --- リセット ---
// ※ブラウザのデフォルトCSSをリセット
// ***************************************** */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
header, footer, nav, menu, article, aside, section, details, figcaption, figure{
	display: block;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
img {
	vertical-align: bottom;
}
a img {
	border: none;
}
strong {
	font-weight: normal;
}
i{
	font-style: normal;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}



@media(min-width:521px){
/* 520px 以上で表示させたいcssを記述していく */
.pc_area{display:block;}
.sp_area{display:none !important;}

html {
    scroll-behavior: smooth;
}
body {
	max-width: 1180px;
	margin: 0 auto;
	font-family: "Hiragino Sans", sans-serif;
}
header{
	
}

.header {
	width: 100vw;
	display: flex;
	z-index: 100;
	height: 120px;
	background-color: rgba( 255, 255, 255, 0.5 );
	position: fixed;
}
.header_logo {
	margin-top: 40px;
	position: fixed;
	z-index: 100;
}
.header_logo img{
	width: 200px;
}

.drawer_hidden {/* チェックボックスを非表示にする */
	display: none;
}
.drawer_open {/* ハンバーガーアイコンの設置スペース */
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50px;
	right: 100px;
	z-index: 100;/* 重なり順を一番上にする */
	cursor: pointer;
}
.drawer_open span:before,.drawer_open span:after {/* ハンバーガーメニューのアイコン */
	content: '';
	display: block;
	height: 3px;
	width: 40px;
	border-radius: 3px;
	background: #555;
	transition: 0.5s;
	position: absolute;
}
.drawer_open span{
  background: rgba(255, 255, 255, 0);
}
.drawer_open span:before {/* 三本線の一番上の棒の位置調整 */
  bottom: 3px;
}
.drawer_open span:after {/* 三本線の一番下の棒の位置調整 */
  top: 3px;
}
#drawer_input:checked ~ .drawer_open span {/* アイコンがクリックされたら真ん中の線を透明にする */
  background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  bottom: 0;
  transform: rotate(30deg);
}
#drawer_input:checked ~ .drawer_open span::after {
	top: 0;
	transform: rotate(-30deg);
	margin-top: -2px;
}
 .nav_content {/* メニューのデザイン*/
	width: 300px;
	height: 200px;
	position: fixed;
	top: 100%;
	right: 0%; /* メニューを画面の外に飛ばす */
	z-index: 99;
	background: rgb(255, 255, 255, 0.8);
	border: solid 1px #333;
	text-align: left;
	padding: 40px;
	line-height: 30px;
	font-size:15px;
	margin-right: 40px;
	margin-top: 10px;
	 font-weight:300;
}
.nav_list {/* メニュー黒ポチを消す */
  list-style: none;
}
.nav_item a {
	color: #333;
	text-decoration: none;
	font-weight: 400;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}
#drawer_input:checked ~ .nav_content {/* アイコンがクリックされたらメニューを表示 */
	top: 0;/* メニューを画面に入れる */
	margin-right: 40px;
	margin-top: 10px;
}

.logo{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-top: 200px;
	padding-bottom: 200px;
	
}
.logo img{
	width: 380px;
}

.home{ 
	position: fixed;
	top: 50px;
	left: 50px;
	z-index: 100;
}

.home img{ 
	width: 40px;
}

.con1{
	padding-top: 200px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 200px;
}
.con1_photo1{
	width:33%;
	position: relative;
	display: block;
	overflow: hidden;
	cursor: pointer;
	height: 25vw;
    max-height: 290px;
    min-height: 150px;
	
}
	
.con1::after{
	width:33%;
	position: relative;
	display: block;
	overflow: hidden;
	cursor: pointer;
	height: 25vw;
    max-height: 290px;
    min-height: 150px;
	content:"";
	
}
	
.con1_photo1 img{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.con1_photo1:hover img:nth-of-type(2){
	opacity: 0;
	
}
.con1_photo1:nth-of-type(n+4){
	margin-top:6px;
}

.top { 
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 100;
}
.top img{ 
	width: 65px;
}

.line{
	border-top: 1px solid #555;
}


.footer_inside{
	padding-top: 50px;
	padding-bottom: 80px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer_in_left{
	width: 55%;
	margin-top: -3px;
}
.footer_in_left img{
	width: 200px;
}
.footer_in_left p{
	color: #333;
	margin-top: 25px;
	font-size: 16px;
	font-weight: 300;
	line-height: 2;
	letter-spacing: 1px;
}
.footer_in_right{
	width:45%;
	text-align: right;
}
.f_navi{
	display: flex;
	justify-content: space-between;
}
.f_navi a{
	text-decoration: none;
	color: #333;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 400;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}
.footer_in_right img{
	margin-top: 25px;
	width:23px;
}

.copyright{
	background-color: #000;
	height: 50px;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	text-align: center;
}
.copyright p{
	color: #fff;
	line-height: 50px;
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 300;
}

.title{
	width: 100%;
	margin: 0 auto;
	text-align: left;
	padding-top: 240px;
	padding-bottom: 40px;
}
.title h2{
	font-size: 24px;
	letter-spacing: 1px;
	font-weight:700;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}

.title_2{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-top: 240px;
	padding-bottom: 120px;
}
.title_2 h2{
	font-size: 24px;
	letter-spacing: 1px;
	font-weight:700;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}


.date{
	width: 100%;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 30px;
}
.date p{
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}



.work{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 200px;
}
.work_photo{
	width:49.7%;
	
}
.work_photo img{
	width:100%;
	
}
.work_photo:nth-of-type(n+3){
	margin-top:6px;
}

.profile{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-bottom: 200px;
}

.cp_left{
	width: 55%;
	text-align: left;
	display: flex
}

.cp_left_l{
	width: 100%;
	text-align: left;
}
.cp_left_r{
	width: 80%;
	text-align: left;
}
.cp_left p{
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 30px;
	text-decoration: none;
	font-weight: 100;
}

.cp_right{
	width: 45%;
	text-align: left;
}
.cp_right p{
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 29px;
	text-decoration: none;
	font-weight: 100;
	color: #A8A8A8;
}

.workflow{
	width: 100%;
	margin: 0 auto;
	display: block;
	padding-bottom: 200px;
}
	
.flow{
	width: 100%;
	margin: 0 auto;
}
	
.flow h3{
	font-size: 18px;
	letter-spacing: 1px;
	font-weight:600;
}
.flow p{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight:300;
	line-height: 30px;
	padding-top: 20px;
}
	
.line2{
	margin: 50px auto;
}
	
.etc{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight:100;
	line-height: 30px;
	text-align: center;
	padding-top: 50px;
}

	
.jobs{
	width: 100%;
	margin: 0 auto;
	display: block;
	padding-bottom: 200px;
}
	
.job_date{
	width: 100%;
	margin: 0 auto;
}
	
.center_sp{
	text-align: left;
}
.job_date_list p{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight:100;
	line-height: 40px;
	padding-top: 20px;
}

.job_date h3{
	font-size: 18px;
	font-weight:500;
}
.job_date p{
	font-size: 16px;
	font-weight:100;
	line-height: 40px;
	padding-top: 20px;
	font-weight:300;
}
	
.square1 {
	margin-top: 20px;
	border: 1px solid #888888;
	margin-bottom: 50px;
	padding: 1px 10px;
	display:inline-block;
	
}
.square1 a{
	text-decoration: none;
	color: #333333;
	
}
.square1 p{
	font-size: 16px;
	padding: 5px !important;
	font-weight:300;
}
	
.square2 {
	margin-top: 20px;
	border: 1px solid #888888;
	padding: 1px 10px;
	display:inline-block;
	margin-bottom: 50px;
	
}
.square2 a{
	text-decoration: none;
	color: #333333;
	
}
.square2 p{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight:300;
	padding: 5px !important;
}
	
.contact{
	width: 100%;
	margin: 0 auto;
	padding-bottom: 200px;
	color: #333333;
 }
	
.contact_in{
	width: 100%;
	margin: 0 auto 90px;
	text-align: center;
}
.contact_in p{
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	font-weight: 300;
	letter-spacing: 1px;
}

.form_in{
	max-width: 800px;
	width: 80%;
	margin: 0 auto 50px;
	display: flex;
	height: 40px;
}
	
.form_in2{
	max-width: 800px;
	width: 80%;
	margin: 0 auto 50px;
	display: flex;
	height: 250px;
}
	
	
.form_l{
	text-align: left;
	font-size: 16px;
	font-weight: 300;
	width: 20%;
	line-height: 40px;
}
.form_r{
	text-align: left;
	font-size: 16px;
	font-weight: 100;
	width: 80%;
}
.input1 {
	padding:10px;
	font-size:16px;
	color:#333;
	border:solid 1px #D3D3D3;
	width:100%; 
	background-color: #ffffff;
	border-radius: 3px;
	font-weight: 600;
}

.input2 {
	padding:10px;
	font-size:16px;
	color:#333;
	border:solid 1px #D3D3D3;
	width:100%; 
	height: 250px;
	background-color: #ffffff;
	border-radius: 3px;
}
	
.btn_in {
	margin:60px auto;
	width:200px; 
	height: 60px;
}

.btn {
	border:0;
	font-size:18px;
	color:#fff;
	background-color: #212121;
	text-align: center;
	width:200px; 
	height: 60px;
	border-radius: 3px;
	line-height: 60px
	}
	
.btn:hover{
	background-color: #D3D3D3;
	color:#888888;
	transition: .4s;
}
	
.title2{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-top: 150px;
	padding-bottom: 40px;
}
.title2 h2{
	font-size: 35px;
	letter-spacing: 1px;
	font-weight:700;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}
	
.title3{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 60px;
}
.title3 h3{
	font-size: 20px;
	letter-spacing: 1px;
	font-weight:600;
}
	
.btn_in2 {
	margin:60px auto;
	width:300px; 
	height: 60px;
}

.btn2 {
	border:0;
	font-size:18px;
	color:#fff;
	background-color: #212121;
	text-align: center;
	width:300px; 
	height: 60px;
	border-radius: 3px;
	line-height: 60px;
	font-weight:700;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
	}
	
.btn2:hover{
	background-color: #D3D3D3;
	color:#888888;
	transition: .4s;
	
}
.none{
	text-decoration: none;
}
	
}





@media screen and (max-width : 520px ){
/* 520px 以下で表示させたいcssを記述していく */
.pc_area{display:none !important;}
.sp_area{display:block;}
html {
    scroll-behavior: smooth;
}
body {
	max-width: 520px;
	margin: 0 auto;
	font-family: "Hiragino Sans", sans-serif;
}
	
	
.wrap {
	width: 90%;
	margin: 0 auto;
}
	
.drawer_hidden {/* チェックボックスを非表示にする */
	display: none;
}
.drawer_open {/* ハンバーガーアイコンの設置スペース */
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 40px;
	right: 65px;
	z-index: 102;/* 重なり順を一番上にする */
	cursor: pointer;
}
.drawer_open span:before,.drawer_open span:after {/* ハンバーガーメニューのアイコン */
	content: '';
	display: block;
	height: 2px;
	width: 40px;
	border-radius: 2px;
	background: #333;
	position: absolute;
	transition: 0.5s;
}
.drawer_open span{
  background: rgba(255, 255, 255, 1.0);
}
.drawer_open span:before {/* 三本線の一番上の棒の位置調整 */
  bottom: 3px;
}
.drawer_open span:after {/* 三本線の一番下の棒の位置調整 */
  top: 3px;
}
#drawer_input:checked ~ .drawer_open span {/* アイコンがクリックされたら真ん中の線を透明にする */
  background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  bottom: 0;
  transform: rotate(30deg);
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-30deg);
	margin-top: -1px;
}
 .nav_content {/* メニューのデザイン*/
	width: 100%;
	height: 100%;
	position: fixed;
	top: 100%;
	right: 0%; /* メニューを画面の外に飛ばす */
	z-index: 101;
	background: #ffffff;
	transition: .5s;
	border: 1px #000000;
	text-align: left;
	padding-top: 80px;
	padding-left: 80px;
	line-height: 40px;
	font-size:15px;
	 font-weight: 300;
}
.nav_list {/* メニュー黒ポチを消す */
  list-style: none;
}
.nav_item a {
  color: #333;
  text-decoration: none;
}
#drawer_input:checked ~ .nav_content {/* アイコンがクリックされたらメニューを表示 */
	top: 0;/* メニューを画面に入れる */

}
	
.header {
	width: 100vw;
	display: flex;
	z-index: 100;
	height: 80px;
	background-color: rgba( 255, 255, 255, 0.5 );
	position: fixed;
}
.header_logo {
	margin-top: 40px auto;
	position: fixed;
	z-index: 100;
	top: 25px;
	left: 6%;
}

.header_logo img{
	width: 200px;
}
	
.home{ 
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 100;
}

.home img{ 
	width: 40px;
}
	
.logo{
	width: 200px;
	margin: 0 auto;
	text-align: center;
	padding-top: 150px;
	padding-bottom: 130px;
	}
.logo img{
	width: 70%;
}
.con1{
	width: 93%;
	margin: 0 auto;
	display: block;
	padding-bottom: 150px;
	padding-top: 100px;
	}
	
	
.con1_photo1{
	width:96%;
	margin: 0 auto;
	position: relative;
	display: block;
	overflow: hidden;
	cursor: pointer;
	height: 70vw;
    max-height: 370px;
    min-height: 200px;
	padding-bottom: 5px;
	
}
.con1_photo1 img{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.con1_photo1:hover img:nth-of-type(2){
	opacity: 0;
	
}
.con1_photo1:nth-of-type(n+4){
	margin-top:0px;
}



.top { 
	position: fixed;
	bottom: 10px;
	right: 15px;
	z-index: 100;
}
	
.top img{ 
	width: 60px;
}
	


.footer_inside{
	padding-top: 50px;
	padding-bottom: 80px;
	margin: 0 auto;
	width: 93%;
	display: block;
}

.footer_in_left{
	width: 100%;
	text-align: center;
}
.footer_in_left img{
	width: 60%;
}
.footer_in_left p{
	color: #333;
	margin-top: 25px;
	margin-bottom: 25px;
	font-size: 12px;
	line-height: 2;
	font-weight: 300;
}
.footer_in_right{
	width:100%;
	text-align: center;
}
.f_navi{
	display: block;
}
.f_navi a{
	text-decoration: none;
	color: #333;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 70px;
}
.footer_in_right img{
	margin-top: 25px;
	width:23px;
}

.copyright{
	background-color: #000;
	height: 80px;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	text-align: center;
}
.copyright p{
	color: #fff;
	line-height: 80px;
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 300;
}
	
.title{
	width: 92%;
	margin: 0 auto;
	text-align: left;
	padding-top: 150px;
	padding-bottom: 25px;
	
}
.title h2{
	font-size: 18px;
	letter-spacing: 1px;
	font-weight:700;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}
	
.title_2{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-top: 150px;
	padding-bottom: 90px;
}
.title_2 h2{
	font-size: 24px;
	letter-spacing: 1px;
	font-weight:700;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}

.date{
	width: 92%;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 20px;
}
.date p{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight:300;
	line-height: 28px;
	font-style: normal;
	font-family: "Lato", sans-serif !important;
}


.work{
	width: 93%;
	margin: 0 auto;
	display: block;
	padding-bottom: 150px;
}
.work_photo{
	width:100%;
	
}
.work_photo img{
	width:100%;
	
}
.work_photo:nth-of-type(n+2){
	margin-top:10px;
}

.profile{
	width: 93%;
	margin: 0 auto;
	display: block;
	padding-bottom: 150px;
}

.cp_left{
	width: 100%;
	text-align: left;
	display: flex;
	
}
	
.cp_left_l{
	width: 100%;
	text-align: left;
}
.cp_left_r{
	width: 70%;
	text-align: left;
}
	
.cp_left p{
	font-size: 14px;
	font-weight: 200;
	line-height: 20px;
	margin-bottom: 30px;
	text-decoration: none;
	font-weight: 100;
}

.cp_right{
	padding-top: 30px;
	width: 100%;
	text-align: left;
}
.cp_right p{
	font-size: 14px;
	font-weight: 200;
	line-height: 20px;
	margin-bottom: 30px;
	text-decoration: none;
	font-weight: 100;
}
	
.workflow{
	width: 93%;
	margin: 0 auto;
	display: block;
	padding-bottom: 150px;
}
	
.flow{
	width: 100%;
	margin: 0 auto;
}
	
.flow h3{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight:300;
}
.flow p{
	font-size: 13px;
	letter-spacing: 1px;
	font-weight:100;
	line-height: 32px;
	padding-top: 20px;
}
	
.line2{
	margin: 50px auto;
}
	
.etc{
	font-size: 13px;
	letter-spacing: 1px;
	font-weight:100;
	line-height: 30px;
	text-align: center;
	padding-top: 50px;
}
	
.jobs{
	width: 93%;
	margin: 0 auto;
	display: block;
	padding-bottom: 150px;
}
	
.job_date{
	width: 100%;
	margin: 0 auto;
}
	
.center_sp{
	text-align:center;
}
.job_date_list p{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight:100;
	line-height: 40px;
	padding-top: 50px;
}

.job_date h3{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight:300;
	padding-top: 10px;
}
.job_date p{
	font-size: 15px;
	letter-spacing: 1px;
	font-weight:100;
	line-height: 36px;
	padding-top: 25px;
}
	
.square1 {
	border: 1px solid #888888;
	width: 100%;
	margin: 40px auto 60px;
	text-align: center;
	
}
.square1 a{
	text-decoration: none;
	color: #333333;
	
}
.square1 p{
	font-size: 15px;
	letter-spacing: 1px;
	font-weight:100;
	padding: 8px !important;
}
	
.square2 {
	border: 1px solid #888888;
	width: 100%;
	margin: 40px auto 60px;
	text-align: center;
	
}
.square2 a{
	text-decoration: none;
	color: #333333;
	
}
.square2 p{
	font-size: 15px;
	letter-spacing: 1px;
	font-weight:100;
	padding: 8px !important;
}
	
	
.contact{
	width: 93%;
	margin: 0 auto;
	padding-bottom: 150px;
	color: #333333;
 }
	
.contact_in{
	width: 100%;
	margin: 0 auto 70px;
	text-align: center;
}
.contact_in p{
	font-size: 16px;
	line-height: 30px;
	text-decoration: none;
	font-weight: 100;
	letter-spacing: 1px;
}

.form_in{
	width: 100%;
	margin: 0 auto 50px;
	display: block;
	height: 40px;
}
	
.form_in2{
	width: 100%;
	margin: 0 auto 50px;
	display: block;
	height: 250px;
}
	
	
.form_l{
	text-align: left;
	font-size: 16px;
	font-weight: 100;
	width: 100%;
	line-height: 30px;
}
.form_r{
	text-align: left;
	font-size: 16px;
	font-weight: 100;
	width: 100%;
}
.input1 {
	padding:10px;
	font-size:16px;
	color:#333;
	border:solid 1px #D3D3D3;
	width:100%; 
	background-color: #ffffff;
	border-radius: 3px;
}

.input2 {
	padding:10px;
	font-size:16px;
	color:#333;
	border:solid 1px #D3D3D3;
	width:100%; 
	height: 250px;
	background-color: #ffffff;
	border-radius: 3px;
}
	
.btn_in {
	margin:80px auto;
	width:200px; 
	height: 60px;
}

.btn {
	border:0;
	font-size:18px;
	color:#fff;
	background-color: #212121;
	text-align: center;
	width:200px; 
	height: 60px;
	border-radius: 3px;
	line-height: 60px
	}
	
.btn:hover{
	background-color: #D3D3D3;
	color:#888888;
	transition: .4s;
}

.title2{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-top: 150px;
	padding-bottom: 40px;
}
.title2 h2{
	font-size: 35px;
	letter-spacing: 1px;
	font-weight:300;
}
	
.title3{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 60px;
}
.title3 h3{
	font-size: 20px;
	letter-spacing: 1px;
	font-weight:300;
}
	
.btn_in2 {
	margin:60px auto;
	width:300px; 
	height: 60px;
}

.btn2 {
	border:0;
	font-size:18px;
	color:#fff;
	background-color: #212121;
	text-align: center;
	width:300px; 
	height: 60px;
	border-radius: 3px;
	line-height: 60px
	}
	
.btn2:hover{
	background-color: #D3D3D3;
	color:#888888;
	transition: .4s;
}
.none{
	text-decoration: none;
}
	
}
