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

/*
-------------- main color --------------
#6e30ff
#313cff
#ac82ff
#7fa6ff

background: linear-gradient(135deg, rgba(110,48,255,0.15) 0%, rgba(49,60,255,0.15) 100%);
background: linear-gradient(135deg, #6e30ff 0%, #313cff 100%);
background: linear-gradient(135deg, rgba(172,130,255,0.35) 0%, rgba(127,166,255,0.35) 100%);
background: linear-gradient(135deg, #ac82ff 0%, #7fa6ff 100%);

-------------- main fonts --------------
Futura PT
	[Medium]
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;

	[Demi]
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: normal;

	[Demi Oblique]
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;

	[Heavy]
	font-family: futura-pt, sans-serif;
	font-weight: 700;
	font-style: normal;

Ryo Gothic PlusN M
	font-family: ryo-gothic-plusn, sans-serif;
	font-weight: 500;
	font-style: normal;
*/
.Futura{
	font-family: futura-pt, sans-serif;
}
.Medium{
	font-weight: 500;
}
.Demi{
	font-weight: 600;
}
.Italic{
	font-style: italic;
}
.Heavy{
	font-weight: 700;
}
#cover,#cover2{
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 1;
	background: linear-gradient(135deg, #6e30ff 0%, #313cff 100%);
}
.dark #cover,.dark #cover2{
	background: linear-gradient(135deg, #ac82ff 0%, #7fa6ff 100%);
}
#cover{
	right: 0;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all  0.5s ease-out;
}
#cover.open{
	width: 0px;
	opacity: 0.2;
}
#cover2{
	left: 0;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all  0.5s ease-in;
}
#cover2.close{
	width: 0px;
	opacity: 0.2;
}

::selection {
    background: #96fafa;
    color: #6e30ff;
}

.particle {
	position: fixed;
	top: 30px;
	width: auto;
	z-index: -1;
	width: 100%;
	height: 100%;
}
#particle1 {
	background:url(../img/bg1.gif)repeat center center;
}
.dark #particle1 {
	background:url(../img/bg1_dark.gif)repeat center center;
}
#particle2 {
	background:url(../img/bg2.gif)repeat center center;
}
.dark #particle2 {
	background:url(../img/bg2_dark.gif)repeat center center;
}
#particle3 {
	background:url(../img/bg3.gif)repeat center center;
}
.dark #particle3 {
	background:url(../img/bg3_dark.gif)repeat center center;
}
#firstview{
	height: 100vh;
	width: 100%;
	position: relative;
}
/* The hack for Safari */
@supports (-webkit-touch-callout: none) {
	#firstview {
		height: -webkit-fill-available;
	}
}

.squarebtn{
	position: relative;
	text-shadow: none;
	width: 170px;
	display: block;
	height: 40px;
	line-height: 40px;
	color: #fff;
	text-align: center;
	letter-spacing: 2px;
	font-size: 16px;
	background: linear-gradient(135deg, rgba(110,48,255,0.3) 0%, rgba(49,60,255,0.3) 100%);
}
.squarebtn::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: linear-gradient(135deg, #6e30ff 0%, #313cff 100%);
	opacity: 1;
}
.squarebtn:hover{
	color: #6e30ff;
}
.squarebtn:hover::before{
	width: 0;
	opacity: 0;
}
.dark .squarebtn{
	background: linear-gradient(135deg, rgba(172,130,255,0.3) 0%, rgba(127,166,255,0.3) 100%);
	color: #000;
}
.dark .squarebtn::before{
	background: linear-gradient(135deg, rgba(172,130,255,0.6) 0%, rgba(127,166,255,0.6) 100%);
}
.dark .squarebtn:hover{
	color: #fff;
}

#mainlogo {
    width: 15vw;
    position: absolute;
    top: calc(50% - 12vw);
    left: calc(50% - 7.5vw);
}
#mainlogo #light_logo{
	height: auto;
	opacity: 1;
}
.dark #mainlogo #light_logo{
	height: 0;
	opacity: 0;
}
#mainlogo #dark_logo{
	height: 0;
	opacity: 0;
}
.dark #mainlogo #dark_logo{
	height: auto;
	opacity: 1;
}
#lt {
	float: left;
    line-height: 1em;
    font-size: 24px;
}
#lt span{
	font-size: 0.7em;
}
header {
    width: 100%;
    position: fixed;
    z-index: 10;
    padding: 3vh 3.5vh;
	top: 0;
	left: 0;
	background: none;
}
header.bgwhite{
	padding-bottom: 10px;
	padding-top: 15px;
	background: rgba(255,255,255,0.8);
}
.dark header.bgwhite{
	background: rgba(0,0,0,0.8);
}
header.bgwhite #lt {
    font-size: 18px;
}
#nav_menu {
	float: right;
	font-size: 24px;
	line-height: 1;
}
#nav_menu a,#nav_menu div{
	display: inline-block;
	margin-left: 45px;
}
#nav_menu a{
	position: relative;
}
#nav_menu a::after{
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -10px;
	left: 0;
	transform: scale(0, 1);
  	transform-origin: center top;
	background: #313cff;
}
.dark #nav_menu a::after{
	background: #7fa6ff;
}
#nav_menu a:hover::after{
	transform: scale(1, 1);
}
#mode {
	position: absolute;
	top: 75px;
	right: 3.5vh;
    width: 40px;
    height: 24px;
    border-radius: 12px;
    border: #313cff solid 2px;
    cursor: pointer;
    vertical-align: bottom;
    display: inline-block;
	z-index: 12;
	background: linear-gradient(135deg, rgba(110,48,255,0.15) 0%, rgba(49,60,255,0.15) 100%);
}
.dark #mode {
    border: #fff solid 2px;
	background: linear-gradient(135deg, rgba(172,130,255,0.35) 0%, rgba(127,166,255,0.35) 100%);
}
#mode::before {
    content: '';
    position: absolute;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
	background: linear-gradient(135deg, #6e30ff 0%, #313cff 100%);
    top: calc(50% - 8px);
}
.dark #mode::before{
	left: 18px;
	background: #fff;
	width: 15px;
	height: 15px;
	top: calc(50% - 7.5px);
}
#lb{
	position: absolute;
	bottom: 3vw;
	left: 3.5vw;
}
.lb1{
	font-size: 20px;
	line-height: 1.2;
	width: 153px;
	text-align: right;
}
.lb2{
	font-size: 13px;
	line-height: 1.8;
	width: 230px;
	margin-top: 15px;
}
#scrollbtn {
    display: block;
    margin: 5vh auto 0;
    width: 60px;
    text-align: center;
    top: 63vh;
    left: calc(50% - 30px);
    font-size: 16px;
    letter-spacing: 0.1em;
    cursor: pointer;
}
#scrollbtn::after{
	content: '';
	width: 60px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 30px);
	transform: scale(0, 1);
  	transform-origin: center top;
	background: #313cff;
}
.dark #scrollbtn::after{
	background: #7fa6ff;
}
#scrollbtn:hover::after{
	transform: scale(1, 1);
}

.toph2 {
    margin-bottom: 60px;
    font-size: 48px;
    line-height: 0.8;
    padding-left: 130px;
    position: relative;
}
#about .squarebtn{
	margin-top: 30px;
}
#about,#works{
	padding-top: 160px;
}
#about .left{
	width: 45%;
	padding-right: 60px;
}
#about .right{
	width: calc(55% + 80px);
	margin-right: -80px;
	margin-top: -60px;
}
.toph2::after{
	content: '';
	position: absolute;
	z-index: -1;
	background: linear-gradient(135deg, rgba(110,48,255,0.15) 0%, rgba(49,60,255,0.15) 100%);
	width: 180px;
	height: 100%;
	left: 0;
	top: 0;
}
.dark .toph2::after{
	background: linear-gradient(135deg, rgba(172,130,255,0.5) 0%, rgba(127,166,255,0.5) 100%);
}
.TextTyping span {
  	display: none;
}

/*////////////////////////////////////////////////////////*/
/*//////////////////// works_unit /////////////////////////*/
/*////////////////////////////////////////////////////////*/
.works_unit{
	margin-bottom: 80px;
}
.works_texts{
	width: 45%;
	padding-right: 50px;
	float: left;
}
.works_imgs{
	width: 55%;
	float: right;
}
.works_img_box{
	overflow-y: scroll;
	position: relative;
	scrollbar-width: thin;
}
.works_img_box a{
	cursor: url(../img/zoom.cur), auto;
}
.works_img_box::-webkit-scrollbar {
	width: 5px;
	height: 10px;
}
.works_img_box::-webkit-scrollbar-track {
	background: rgba(0,0,0,0.2);
}
.dark .works_img_box::-webkit-scrollbar-track {
	background: rgba(255,255,255,0.5);
}
.works_img_box::-webkit-scrollbar-thumb {
	border-radius: 2.5px;
	background: #333;
}
.dark .works_img_box::-webkit-scrollbar-thumb {
	background: #ccc;
}
.works_img_box.grayline{
	border: 1px solid #ccc;
}
.dark .works_img_box.grayline{
	border: 1px solid #999;
}
.works_img_pc,.atcbar_pc{
	width: calc(65% - 10px);
	float: left;
}
.works_img_sp,.atcbar_sp{
	width: calc(35% - 5px);
	float: right;
}
.atcbar_pc,.atcbar_sp{
	line-height: 20px;
	margin-bottom: 5px;
}
.atcbar_pc::before, .atcbar_sp::before {
    content: '';
    width: 1.2em;
    height: 1.2em;
    margin-right: 3px;
    display: inline-block;
    vertical-align: text-bottom;
}
.atcbar_pc::before{
	background: url(../img/pc.svg)no-repeat center center;
	background-size: contain;
}
.dark .atcbar_pc::before{
	background: url(../img/pc_dark.svg)no-repeat center center;
	background-size: contain;
}
.atcbar_sp::before{
	background: url(../img/sp.svg)no-repeat center center;
	background-size: contain;
}
.dark .atcbar_sp::before{
	background: url(../img/sp_dark.svg)no-repeat center center;
	background-size: contain;
}

.workh3{
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.workurl{
	margin-bottom: 35px;
	line-height: 1;
}
.workurl i{
	font-size: 0.8em;
	margin-right: 5px;
}
.works_desc{
	margin-bottom: 45px;
}
.works_detail {
    font-size: 16px;
    margin-bottom: 0.8em;
}
.works_skill li{
	display: inline-block;
	background: #313cff;
	color: #fff;
	padding: 0 10px;
	margin: 0 5px 5px 0;
	line-height: 24px;
	letter-spacing: 0.05em;
}
.dark .works_skill li{
	background: linear-gradient(135deg, #ac82ff 0%, #7fa6ff 100%);
	color: #000;
}
.works_atc{
	line-height: 1.6;
	width: 100%;
	text-align: center;
	padding: 5px 20px;
	background: linear-gradient(135deg, rgba(110,48,255,0.15) 0%, rgba(49,60,255,0.15) 100%);
}
.dark .works_atc{
	background: linear-gradient(135deg, rgba(172,130,255,0.35) 0%, rgba(127,166,255,0.35) 100%);
}

/*////////////////////////////////////////////////////////*/
/*//////////////////// page /////////////////////////*/
/*////////////////////////////////////////////////////////*/
.pageh1 {
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
    line-height: 1;
    font-size: 60px;
}
.page_lead{
	text-align: center;
	margin-bottom: 60px;
}
.form_table{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.form_table th,.form_table td{
	padding-bottom: 10px;
	padding-top: 15px;
	border-bottom: 3px solid #313cff;
	text-align: left;
	vertical-align: bottom;
}
.dark .form_table th,.dark .form_table td{
	border-bottom: 3px solid #ac82ff;
}
.form_table th{
	font-weight: bold;
	width: 200px;
}
.form_table td.dmy{
	width: 30px;
	border-bottom: none;
}
.form_table th span {
    width: 60px;
    background: #313cff;
    color: #fff;
    padding: 0 10px;
    border-radius: 8px;
    margin-left: 5px;
}
.dark .form_table th span{
	background: linear-gradient(135deg,#ac82ff 0%, #7fa6ff 100%);
	color: #000;
}
::placeholder {
	color: #313cff;
	opacity: 0.7;
}
.dark ::placeholder {
	color: #ac82ff;
	opacity: 0.7;
}
.errorcomment{
	margin-bottom: 5px;
	font-size: 0.9em;
}
.errorcomment p{
	display: inline-block;
	background: linear-gradient(transparent 40%, rgba(255,240,0,0.7) 40%);
	line-height: 1;
	margin-bottom: 0.2em;
}
.form_table input[type="text"],
.form_table textarea {
    width: 100%;
	background: linear-gradient(135deg, rgba(110,48,255,0.15) 0%, rgba(49,60,255,0.15) 100%);
    border: none;
    padding: 5px 10px;
    box-sizing: border-box;
    outline: none;
	border-radius: 0;
}
.dark .form_table input[type="text"],
.dark .form_table textarea {
	background: linear-gradient(135deg, rgba(172,130,255,0.25) 0%, rgba(127,166,255,0.25) 100%);
}

.attention{
	padding: 15px 30px;
	text-align: center;
	line-height: 1.6;
	border: 3px solid rgba(110,48,255,0.15);
	background: rgba(255,255,255,0.7);
	width: 100%;
	max-width: 800px;
	margin: 0 auto 30px;
}
.dark .attention{
	border: 3px solid rgba(172,130,255,0.35);
	background: linear-gradient(135deg, rgba(172,130,255,0.25) 0%, rgba(127,166,255,0.25) 100%);
}
.formbtn_area{
	text-align: center;
	margin-top: 40px;
}
.roundbtn{
	display: inline-block;
	width: 160px;
	height: 50px;
	line-height: 50px;
	border-radius: 25px;
	position: relative;
	border: none;
	text-align: center;
	color: #fff;
	background: none;
	font-size: 18px;
	letter-spacing: 1px;
	background: linear-gradient(135deg, #6e30ff 0%, #313cff 100%);
}
.dark .roundbtn{
	color: #000;
	background: linear-gradient(135deg, #ac82ff 0%, #7fa6ff 100%);
}
.roundbtn:hover{
	letter-spacing: 4px;
}
.complete{
	font-size: 2em;
	line-height: 1;
	margin-bottom: 15px;
}
.about1 .left{
	width: 480px;
}
.about1 .right a {
    font-size: 12px;
	margin-top: 15px;
	display: block;
}
.about1 .right{
	width: calc(100% - 480px);
}
.about1_1{
	padding-left: 130px;
}
.about2 .works_skill li {
    padding: 0 15px;
    margin: 0 7px 7px 0;
    line-height: 32px;
	font-size: 18px;
}
.about2 .works_skill{
	margin-bottom: 20px;
}
.about2_1{
	width: calc(100% - 400px);
	padding-right: 60px;
}
.about2_2{
	width: 400px;
}
.careerimg{
	width: 100%;
	position: relative;
	padding-left: 40px;
}
.statusbar{
	position: absolute;
	width: 26px;
	background: linear-gradient(135deg, rgba(110,48,255,0.75) 0%, rgba(49,60,255,0.75) 100%);
	color: #fff;
	left: 0;
}
.dark .statusbar{
	color: #000;
	background: linear-gradient(135deg, rgba(172,130,255,0.75) 0%, rgba(127,166,255,0.75) 100%);
}
.statusbar span {
    display: block;
    transform: rotate(-90deg);
    transform-origin: 0% 100%;
    height: 26px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 26px;
	letter-spacing: 2px;
}
.statusbar.student{
	height: calc(40% - 2px);
	top: 0;
}
.statusbar.career{
	height: calc(60% - 2px);
	bottom: 0;
}
.careerimg table{
	width: 100%;
	background: rgba(110,48,255,0.1);
}
.careerimg table tr{
	line-height: 34px;
	border-bottom: 1px solid rgba(110,48,255,0.8);
}
.careerimg table tr:first-child{
	border-top: 1px solid rgba(110,48,255,0.8);
}
.dark .careerimg table{
	background: linear-gradient(135deg, rgba(172,130,255,0.35) 0%, rgba(127,166,255,0.35) 100%);
}
.dark .careerimg table tr{
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
.dark .careerimg table tr:first-child{
	border-top: 1px solid rgba(255,255,255,0.3);
}
.careerimg table th{
	text-align: left;
	font-size: 13px;
	vertical-align: text-top;
	padding-left: 10px;
}
.lines{
	width: 1px;
	position: absolute;
	background: #6e30ff;
	bottom: 0;
}
.lines::before{
	content: '';
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, rgba(110,48,255,0.75) 0%, rgba(49,60,255,0.75) 100%);
	position: absolute;
	top: -13px;
	left: -3px;
	border-radius: 50%;
}
.dark .lines{
	background: #ac82ff;
}
.dark .lines::before{
	background: linear-gradient(135deg, rgba(172,130,255,0.75) 0%, rgba(127,166,255,0.75) 100%);
}
.lines span{
	position: absolute;
	line-height: 22px;
	font-size: 16px;
	top: 0;
	left: 0;
	padding-left: 10px;
}
.lines.line1{
	height: calc(100% - 20px);
	left: 25%;
}
.lines.line2{
	height: calc(60% - 20px);
	left: 38%;
}
.lines.line3{
	height: calc(50% - 20px);
	left: 65%;
}
.lines.line4{
	height: calc(20% - 20px);
	left: 82%;
}
.about3blk h3{
	font-size: 24px;
	line-height: 1;
}
.about3blk h4{
	line-height: 1.4;
	font-size: 18px;
	margin-bottom: 1em;
}
.about3blk .left{
	width: 240px;
}
.about3blk .right{
	width: calc(100% - 240px);
}
.about3blk{
	margin-bottom: 70px;
}
.about1{
	margin-top: 80px;
}
.about2{
	display: flex;
	align-items: flex-end;
}
.about1,.about2{
	margin-bottom: 120px;
}
.about_logo{
	background: linear-gradient(135deg, rgba(110,48,255,0.15) 0%, rgba(49,60,255,0.15) 100%);
	padding: 30px;
}
.dark .about_logo {
    background: linear-gradient(135deg, rgba(172,130,255,0.35) 0%, rgba(127,166,255,0.35) 100%);
}
.about_logo .left {
    margin: 0 30px 0 0;
    width: 60px;
    height: 80px;
    position: relative;
}
.aboutlogo_dark,.aboutlogo_light{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0.7em;
}
.aboutlogo_dark{
	opacity: 0;
}
.aboutlogo_light{
	opacity: 1;
}
.dark .aboutlogo_dark{
	opacity: 1;
}
.dark .aboutlogo_light{
	opacity: 0;
}
.dark .about3blk h3{
	color: #7fa6ff;
}

@media screen and (max-width: 1400px) {
	#about .right {
	    width: calc(55% + 40px);
	    margin-right: -40px;
	}
	#lb {
	    bottom: 30px;
	    left: 40px;
	}
	header {
		padding: 30px 40px;
	}
	#mode{
		right: 40px;
	}
	#particle1,#particle2,#particle3{
		background-size: 100%!important;
	}
}
@media screen and (max-width: 1120px) {
	.about1 .right,.about1 .left {
	    width: 50%;
	}
	.about1_1{
		padding-left: 40px;
	}
	.about2_2 {
	    width: 100%;
		max-width: 400px;
	}
	.about2_1 {
	    width: calc(100% - 360px);
	    padding-right: 50px;
	}
	.about2 .works_skill li {
	    padding: 0 10px;
	    margin: 0 5px 5px 0;
	    line-height: 24px;
	    font-size: 14px;
	}
}
@media screen and (max-width: 860px) {
	#about{
		padding-top: 0;
	}
	#about .wrapper{
		position: relative;
	}
	#about .left {
	    width: 100%;
	    padding-right: 0;
	    margin-top: -20vw;
	}
	/*
	#about .left p{
		text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
	}
	.dark #about .left p{
		text-shadow: 1px 0 0 #000, 0 1px 0 #000, -1px 0 0 #000, 0 -1px 0 #000;
	}
	*/
	#about .right {
	    width: 60%;
	    margin-right: -40px;
		margin-top: 0;
	}
	.works_imgs {
	    width: 100%;
	    float: none;
	}
	.works_desc {
	    margin-bottom: 20px;
	}
	.works_texts {
	    width: 100%;
	    padding-right: 0;
	    float: none;
	    margin-bottom: 30px;
	}
	#mainlogo {
	    width: 20vw;
	    top: calc(50% - 11vw);
	    left: calc(50% - 10vw);
	}
	.about1 .right, .about1 .left {
	    width: 100%;
		float: none;
	}
	.about1 .left {
	    width: 65%;
	    max-width: 400px;
	    margin: -40px -25px 0 auto;
	}
	.about1 .right{
		margin-top: -70px;
	}
	.about1_1 {
	    padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	.show_768{
		display:block;
	}
	.hide_768{
		display:none;
	}
	#nav_menu a, #nav_menu div {
	    margin-left: 25px;
	}
	.works_atc {
	    padding: 10px 20px;
	    margin-top: -40px;
		text-align: left;
		font-size: 0.9em;
	}
	.form_table th, .form_table td{
		width: 100%;
		display: block;
		padding-top: 5px;
	}
	.form_table td.dmy{
		display: none;
	}
	.form_table th {
	    border-bottom: none!important;
	    padding: 30px 0 0;
	}
	.attention {
	    padding: 15px 20px;
	    text-align: left;
	    margin: 0 auto;
	}
	.about2 {
	    display: block;
	}
	.about2_1 {
	    width: 100%;
	    padding-right: 0;
	    margin-bottom: 30px;
	}
	.about3blk .right {
	    width: 100%;
	    float: none;
	    margin-top: 30px;
	}
	.about3blk .left {
	    width: 100%;
	    float: none;
	}
	.about3blk {
	    margin-bottom: 50px;
	}
}
@media screen and (max-width: 640px) {
	#nav_menu {
	    font-size: 18px;
	}
	#nav_menu a, #nav_menu div {
	    margin-left: 20px;
	}
	#lt {
	    font-size: 18px;
	}
	.toph2 {
	    margin-bottom: 40px;
	    font-size: 36px;
	    padding-left: 80px;
	}
	.toph2::after {
	    width: 115px;
	}
	#mode{
		top: 70px;
	}
	.page_lead {
	    text-align: left;
	}
}
@media screen and (max-width: 540px) {
	#particle1,#particle2,#particle3{
		background-size: 150%!important;
	}
	#nav_menu a{
	    margin-left: 10px;
	}
	#mode {
	    top: 50px;
	}
	#lt{
		margin-top: -3px;
	}
	#mainlogo {
	    width: 25vw;
	    top: calc(50% - 22vw);
	    left: calc(50% - 12.5vw);
	}
	#about .right{
		top: -30px;
		width: 60%;
		margin-right: -25px;
	}
	#about{
		padding-top: 50px;
	}
	#about .left {
	    margin-top: -13vw;
		padding-bottom: 0;
		padding-right: 0;
	}
	#works {
	    padding-top: 100px;
	}
	.works_detail {
	    font-size: 14px;
	    margin-bottom: 1em;
	    line-height: 1.5;
	}
	#scrollbtn{
		margin-top: 3vh;
	}
	#lb {
	    bottom: 25px;
	    left: 25px;
	}
	#mode{
		right: 25px;
	}
	header {
		padding: 20px 25px;
	}
	header.bgwhite {
	    padding-top: 12px;
	}
	header.bgwhite #lt {
	    font-size: 15px;
	}
	#nav_menu a::after {
	    bottom: -5px;
	}
	.roundbtn {
	    width: 110px;
	    height: 40px;
	    line-height: 40px;
	    border-radius: 20px;
	    font-size: 16px;
	}
	.formbtn_area {
	    margin-top: 25px;
	}
	.pageh1 {
	    font-size: 48px;
	}
	.page_lead {
	    margin-bottom: 30px;
	}
	.about1, .about2 {
	    margin-bottom: 80px;
	}
	.about_logo .left {
	    float: none;
	    margin: 0 auto 20px;
	}
}
@media screen and (max-width: 480px) {
	.careerimg table tr {
	    line-height: 28px;
	}
	.lines span {
	    line-height: 18px;
	    font-size: 14px;
	}
	.lines.line1 {
	    left: 30%;
	}
	.lines.line2 {
	    left: 42%;
	}
	.lines.line3 {
	    left: 68%;
	}
	.squarebtn{
		width: 140px;
	}
}
