@charset "utf-8";

/*----- reset -----*/
html{font-size:62.5%;height:100%;}
body{margin:0;padding:0;font-size:1.6rem;font-family:YakuHanJP,'Noto Sans CJK JP','Noto Sans JP',sans-serif;line-height:1.6;color:#333;height:100%;position:relative;letter-spacing:0.1em;overflow-wrap:break-word;word-wrap:break-word;-webkit-text-size-adjust:100%;background:#fff;width:auto;}
header,main,article,section,nav,footer{display:block;}
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;font-size:100%;}
textarea, select{font-family:YakuHanJP,'Noto Sans CJK JP','Noto Sans JP',sans-serif;}
input{font-family:YakuHanJP,'Noto Sans CJK JP','Noto Sans JP',sans-serif;line-height:1.6;color:#333;position:relative;letter-spacing:0.1em;overflow-wrap:break-word;word-wrap:break-word;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border: 0;}
address,caption,cite,code,dfn,th,var{font-style:normal;font-weight:normal;}
em{font-style:normal;font-weight:500;}
ol,ul{list-style: none;}
caption{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym{border:0;}
input[type="text"],input[type="submit"],input[type="email"],input[type="tel"],select,button{-webkit-appearance:none;appearance:none;border-radius:0;border:none;background:none;font-family:'Noto Sans JP', sans-serif;}
select::-ms-expand{display:none;}

*, *::before, *::after{box-sizing:border-box;}
/*----- reset end -----*/
:root{
	--vw-100:100vw;
	--vw-50:calc(var(--vw-100) / 2);
	--font_montserrat:'Montserrat', sans-serif;
	--font_saira:'Saira', sans-serif;
}

html{
	visibility:hidden;
	overflow-y:scroll;
}
html.wf-active, html.wf-inactive{visibility:visible;}
#wrapper{overflow:hidden;}
#wrapper.fixed{
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
}
.sp_size{display:none !important;}

/*----- header -----*/
#header_wrap{
	background: #fff;
	position:fixed;
	z-index: 20;
	width:100%;
	top:0;
	right:0;
	left:0;
	transition:box-shadow 0.3s, transform 0.3s;
}
#header_wrap.scroll{box-shadow:0px 3px 6px rgba(0,0,0,0.16);}
#header_wrap.hide{
	box-shadow:none;
	transform:translateY(-110%);
}
.header_area{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:15px 35px 15px 37px;
	height: 90px;
}
.logo_link, .logo_img{
	display:block;
	width:100%;
}
.header_menu{
	display: flex;
	align-items: center;
	gap: 11px;
}
.header_btn{
	text-decoration: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 34px;
	border-radius: 12px;
	z-index: 1;
	position: relative;
	font-family: var(--font_montserrat);
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0.15px;
}
.header_btn::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	border-radius: 12px;
	transition: opacity .3s;
	z-index: -1;
}
.header_btn.btn_internship{
	background: #C5F66B;
	color: #178748 !important;
}
.header_btn.btn_entry{
	background: #178748;
	color: #fff !important;
}
.header_btn.btn_internship::after{background: linear-gradient(90deg, #C5F66B 0%, #F2FFC0 100%);}
.header_btn.btn_entry::after{background: linear-gradient(90deg, #178748 0%, #3CC210 100%);}
.header_btn:hover::after {opacity: 1;}

#toggle{
	display:block;
	width:102px;
	height:36px;
	border:2px solid #eee;
	border-radius:7px;
}
.toggle_btn{
	display:block;
	position:relative;
	width:100%;
	height:100%;
	padding:0 0 0 25px;
	background:#fff;
	border:1px solid #ccc;
	border-radius:5px;
	color:#333 !important;
	font-family:var(--font_montserrat);
	font-size:1.2rem;
	font-weight:bold;
	letter-spacing:0;
	line-height:1.5rem;
	text-decoration:none;
	cursor:pointer;
	transition:border 0.3s, color 0.3s;
}
.toggle_btn:hover{
	border-color:#338633;
	color:#338633 !important;
}
.toggle_txt{
	position:relative;
	display:block;
}
.toggle_btn::before, .toggle_btn::after, .toggle_txt::before{
	content:'';
	position:absolute;
	z-index:10;
	left:16px;
	width:16px;
	height:2px;
	background:linear-gradient(270deg, #3C933A 0%, #115316 100%);
	transition:opacity 0.3s;
	top: 50%;
	transform: translateY(-50%);
}
.toggle_btn::before{top: calc(50% - 5px);}
.toggle_btn::after{top: calc(50% + 5px);}
.toggle_txt::before{left:-9px;}
.toggle_btn.open::before, .toggle_btn.open::after{opacity:0;}
.menu_bg{
	position:fixed;
	z-index:5;
	top:0;
	left:0;
	width:var(--vw-100);
	height:100%;
	background:#000;
	opacity:0;
	visibility:hidden;
}
#wrapper.fixed .menu_bg{
	opacity:0.7;
	visibility:visible;
}
#menu_box{
	display:block;
	position:fixed;
	z-index:10;
	top:90px;
	right:0;
	left:0;
	width:100%;
	max-height: calc(100dvh - 90px);
	overflow-y:auto;
	background:#fff;
	padding:75px 30px 30px;
}
.menu_dis{display:none !important;}
.menu_nav{
	max-width: 1100px;
	margin:0 auto;
	padding-bottom: 50px;
}
.menu_block{
	display:grid;
	grid-template-columns:repeat(auto-fit,calc((100% - 69px)/4));
	grid-gap:23px;
	padding: 0;
}
.menu_block_in{
	list-style:none;
	margin-bottom: 0;
}
.menu_head{
	font-family: var(--font_montserrat);
	font-weight: 600;
	font-size: 2.4rem;
	letter-spacing: 0.24px;
	line-height: 2.9rem;
	color: #178748;
	padding-bottom: 12px;
	position: relative;
	margin-bottom: 20px;
}
.menu_head::before, .menu_head::after{
	content:'';
	display:block;
	position:absolute;
	left:0;
}
.menu_head::before{
	width:100%;
	height: 1px;
	background:#ddd;
	bottom: 1px;
}
.menu_head::after{
	width:30px;
	height: 2px;
	background: #30A909;
	bottom:0;
}
.menu_list{
	display:block;
	padding:0;
	margin:0 auto;
}
.menu_item{
	margin:0 !important;
	list-style:none;
	line-height: 2.1rem;
}
.menu_link{
	position:relative;
	display:inline-block;
	font-weight: bold;
	font-size: 1.5rem;
	letter-spacing: 0.75px;
	color:#333 !important;
	text-decoration:none;
	transition:color .3s;
	padding-left: 13px;
	margin-bottom: 20px;
}
.menu_item.on .menu_link{color: #178748 !important;}
.menu_link:hover{
	color: #178748 !important;
}
.menu_link::before {
	position: absolute;
	content: '';
	width: 6px;
	height: 1px;
	background: #333;
	top: 10px;
	left: 0;
}
.submenu_box{
	max-width: 1100px;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
}
.submenu_list{
	padding: 0;
	margin: 0;
	display: flex;
	gap: 22px;
}
.submenu_item{
	list-style: none;
	line-height: 2rem;
	margin: 0;
}
.submenu_link{
	color: #333 !important;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.7px;
}
.submenu_link:hover{text-decoration: underline;}
.close_btn{
	display:inline-block;
	position:relative;
	-webkit-appearance:none;
	appearance:none;
	padding:0 0 0 20px;
	background:none;
	border:none;
	text-decoration:none !important;
	cursor:pointer;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.7px;
	line-height: 2rem;
	color: #333 !important;
}
.close_btn:hover{text-decoration: underline !important;}
.close_btn::before, .close_btn::after{
	content:'';
	position:absolute;
	top:11px;
	left:0;
	width:14px;
	height:1px;
	background:#333;
}
.close_btn::before{transform:rotate(45deg);}
.close_btn::after{transform:rotate(-45deg);}

/*----- footer -----*/
.cta_area{
	background:#fff;
	border-top: 1px solid #ddd;
}
.cta_box{
	max-width: 1160px;
	margin: auto;
	padding: 60px 30px;
}
.cta_list{
	display: grid;
	grid-template-columns:repeat(auto-fit,calc((100% - 40px)/2));
	gap: 40px;
	padding: 0;
	margin: 0;
}
.cta_item{
	list-style: none;
	margin-bottom: 0;
}
.cta_link{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100px;
	text-decoration: none;
	border-radius: 16px;
	font-size: 1.7rem;
	letter-spacing: 0.85px;
	line-height: 2.5rem;
	font-weight: 500;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.cta_link--internship{
	background: #C5F66B;
	color: #178748 !important;
}
.cta_link--entry{
	background: #178748;
	color: #fff !important;
}
.cta_link--internship::after,
.cta_link--entry::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	border-radius: 16px;
	transition: opacity .3s;
	z-index: -1;
}
.cta_link--internship::after{background: linear-gradient(90deg, #C5F66B 0%, #F2FFC0 100%);}
.cta_link--entry::after{background:linear-gradient(90deg, #178748 0%, #3CC210 100%);}
.cta_link:hover::after {opacity: 1;}
.cta_link span{
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	padding-top: 30px;
}
.cta_link span::before{
	content: attr(data-en);
	position: absolute;
	display: block;
	font-size: 2.6rem;
	letter-spacing: 0.26px;
	line-height: 3.2rem;
	font-family: var(--font_montserrat);
	font-weight: 600;
	top: 0;
	left: 0;
	right: 0;
}
.f_menu{
	max-width: 1160px;
	margin: auto;
	padding:50px 30px;
	position: relative;
}
.f_menu::before{
	content: '';
	position: absolute;
	top: 0;
	left: calc(50% - var(--vw-50));
	width: var(--vw-100);
	height: 100%;
	background: #F7F7F7;
	z-index: -1;
}
.f_menu_block{
	padding:0;
	margin:0;
	display:grid;
	grid-template-columns:repeat(auto-fit,calc((100% - 90px)/4));
	grid-gap:30px;
}
.f_menu_block_in{
	margin-bottom: 0;
	list-style: none;
}
.f_menu_head{
	font-family: var(--font_montserrat);
	font-weight: 600;
	font-size: 2.2rem;
	letter-spacing: 0.22px;
	line-height: 2.7rem;
	color: #178748;
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 15px;
}
.f_menu_head::before, .f_menu_head::after{
	content:'';
	display:block;
	position:absolute;
	left:0;
}
.f_menu_head::before{
	width:100%;
	height: 1px;
	background:#ddd;
	bottom: 1px;
}
.f_menu_head::after{
	width:30px;
	height: 2px;
	background: #30A909;
	bottom:0;
}
.f_menu_list{
	padding:0;
	margin:0;
}
.f_menu_item{
	margin-bottom:13px;
	list-style:none;
	line-height:2rem;
}
.f_menu_item:last-child{margin:0 !important;}
.f_menu_link{
	position:relative;
	display:inline-block;
	font-weight: 500;
	font-size:1.4rem;
	letter-spacing:0.7px;
	color:#333 !important;
	text-decoration:none !important;
	padding-left:14px;
}
.f_menu_link:hover{text-decoration:underline !important;}
.f_menu_link::before{
	position:absolute;
	content:'';
	width:6px;
	height:1px;
	background:#333;
	top:9px;
	left:0;
}
.connect_area{
	display:flex;
	align-items:center;
	justify-content:space-between;
	max-width:1240px;
	padding:30px 20px;
	margin:auto;
}
.connect_logo{
	flex-shrink:0;
	width:215px;
	margin-right:50px;
}
.connect_list{
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	gap:15px;
	position:relative;
	max-width:765px;
	width:100%;
	padding:0;
	margin:0;
}
.connect_list::before{
	content:'';
	position:absolute;
	z-index:-1;
	top:0;
	right:0;
	bottom:0;
	left:0;
	width:90%;
	height:1px;
	margin:auto;
	background:#ddd;
}
.connect_item{
	list-style:none;
	margin:0;
	font-size:1.3rem;
	font-weight:500;
	letter-spacing:0.78px;
	line-height:1.9rem;
}
.connect_link{
	display:flex !important;
	align-items:center;
	justify-content:center;
	width:100%;
	height:40px;
	padding:0 10px !important;
	background:#fff !important;
	border:1px solid #ddd;
	border-radius:5px;
	color:#333 !important;
	text-decoration:none !important;
	transition:background 0.3s, border 0.3s, color 0.3s !important;
}
.connect_link:hover{
	background:#338633 !important;
	border-color:#338633;
	color:#fff !important;
}
.connect_link[href="/recruit-newgrads/"]{
	background:#338633 !important;
	border-color:#338633;
	color:#fff !important;
}
.connect_link[href*="engi-press"]{
	position:relative;
	opacity:1 !important;
}
.connect_link[href*="engi-press"]::after{
	content:'';
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
	background:url(/img/common/logo_engipress_white.svg) no-repeat center/90px;
	opacity:0;
	transition:opacity 0.3s;
}
.connect_link[href*="engi-press"]:hover::after{opacity:1;}
.connect_link[href*="engi-press"] img{
	width:90px;
	transition:opacity 0.3s;
}
.connect_link[href*="engi-press"]:hover img{opacity:0;}.f_bottom{border-top: 1px solid #ddd;}
.footer_box{
	display:flex;
	align-items:center;
	justify-content:space-between;
	max-width:1240px;
	padding:18px 20px 20px;
	margin:auto;
}
.f_sub_list{
	display:flex;
	align-items:center;
	gap: 25px;
	padding:0;
	margin:0;
}
.f_sub_item{
	list-style:none;
	font-size: 1.2rem;
	letter-spacing: 0.72px;
	line-height: 1.7rem;
	margin:0;
}
.f_sub_link{
	color:#333 !important;
	text-decoration:none !important;
	background: none !important;
	padding: 0 !important;
}
.f_sub_link:hover{text-decoration:underline !important;}
.f_sub_link span{
	padding-left: 20px;
	background: url(/recruit-newgrads/img/common/popup.svg) no-repeat center left;
}
.copyright{
	font-size: 1.2rem;
	letter-spacing: 0.72px;
	line-height: 1.7rem;
}
#return {
	position: relative;
	z-index: 1;
}
.return_btn {
	display: block;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 48px;
	height: 48px;
	background: #fff;
	box-shadow: 2px 3px 3px #00000014;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	text-decoration: none;
	font-size: 0;
	transition: background 0.3s, opacity 0.3s, visibility 0.3s;
}
.return_btn:hover{background: #30A909;}
.return_btn.display {
	opacity: 1;
	visibility: visible;
}
.return_btn::after {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 17px;
	height: 17px;
	border-top: 2px solid #30A909;
	border-right: 2px solid #30A909;
	transform: rotate(-45deg);
	transition: border .3s;
}
.return_btn:hover::after{border-color: #fff;}
.return_btn.pos_end {
	position: absolute;
	opacity: 1;
	visibility: visible;
}

/*----- main -----*/
#index_wrap, #content_wrap {padding-top: 90px;}
a{
	color: #333;
	text-decoration:underline;
}
a:visited{color:#9E088F;}
a:hover{text-decoration:none;}
a[target="_blank"]{
	padding-left:20px;
	background:url(/recruit-newgrads/img/common/popup.svg) no-repeat center left;
}
a.none[target="_blank"]{
	padding-left:0;
	background:none;
}
a[href$=".doc"], a[href$=".docx"]{
	padding-left:20px;
	background:url(/recruit-newgrads/img/common/icon_word.svg) no-repeat center left;
}
a[href$=".xls"], a[href$=".xlsx"]{
	padding-left:20px;
	background:url(/recruit-newgrads/img/common/icon_excel.svg) no-repeat center left;
}
a[href$=".pdf"]{
	padding-left:20px;
	background:url(/recruit-newgrads/img/common/icon_pdf.svg) no-repeat center left;
}
a[href$=".zip"]{
	padding-left:20px;
	background:url(/recruit-newgrads/img/common/icon_zip.svg) no-repeat center left;
}
a.none[href$=".pdf"]{
	padding-left:0;
	background:none;
}
[href^="tel:"]{
	color:#333 !important;
	pointer-events:none;
}
img{
	display:block;
	max-width:100%;
	width:auto;
	height:auto;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
a img{pointer-events:none;}
.link_btn{
	position: relative;
	display: block;
	max-width: 250px;
	padding: 15px 27px;
	border: 1px solid #ccc;
	border-radius: 12px;
	color: #333 !important;
	text-decoration: none !important;
	transition: border .3s, color .3s, background .3s;
	margin: auto;
	font-weight: bold;
	overflow: hidden;
	font-size: 1.5rem;
	letter-spacing: 0.75px;
	line-height: 1.9rem;
	background: #fff;
}
.link_btn:hover {
	border-color: transparent;
	color: #fff !important;
	background: transparent;
}
.link_btn::before{
	content:'';
	position: absolute;
	inset: 0;
	opacity: 0;
	border-radius: 16px;
	transition: opacity .3s;
	z-index: -1;
	background: linear-gradient(90deg, #178748 0%, #30A909 100%);
}
.link_btn:hover::before{opacity: 1;}
.link_btn span{
	position: relative;
	display: block;
}
.link_btn span::before,
.link_btn span::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 17px;
	height: 10px;
	transition: opacity 0.3s;
}
.link_btn span::before {
	background: url(/recruit-newgrads/img/common/arrow_r_green.svg) no-repeat center;
}
.link_btn span::after {
	background: url(/recruit-newgrads/img/common/arrow_r_white.svg) no-repeat center;
	opacity: 0;
}
.link_btn:hover span::before {opacity: 0;}
.link_btn:hover span::after {opacity: 1;}

@media screen and (max-width:1024px){
/*----- header -----*/
.header_area{
	padding:0 10px;
	height: 60px;
}
.logo_link, .logo_img{max-width: 286px;}
.header_menu{gap: 7px;}
.header_btn{
	width: 148px;
	height: 33px;
	font-size: 1.3rem;
	letter-spacing: 0.13px;
}
#toggle{
	width:44px;
	height:44px;
}
.toggle_btn{padding:0;}
.toggle_txt{font-size: 0;}
.toggle_btn::before, .toggle_btn::after, .toggle_txt::before{
	width: 18px;
	left:0px;
	right: 0;
	margin: auto;
}
.toggle_txt::before{left:0;}
.toggle_btn:hover{
	border-color:#338B33;
	color:#338B33 !important;
}
#menu_box{
	top:60px;
	max-height: calc(100dvh - 60px);
	padding: 55px 30px 30px;
}
.menu_block{
	grid-template-columns:repeat(auto-fit,calc((100% - 40px)/2));
	grid-gap:20px 40px;
}
.menu_head{
	font-size: 2rem;
	letter-spacing: 0.2px;
	line-height: 2.4rem;
	padding-bottom: 10px;
}
.menu_item{line-height: 2rem;}
.menu_link{
	font-size: 1.4rem;
	letter-spacing: 0.7px;
}
.submenu_link, .close_btn{
	font-size: 1.3rem;
	letter-spacing: 0.65px;
}

/*----- footer -----*/
.cta_box{padding: 40px 30px;}
.cta_list{
	grid-template-columns:repeat(auto-fit,calc((100% - 24px)/2));
	gap: 24px;
}
.cta_link{
	height: 82px;
	border-radius: 12px;
	font-size: 1.4rem;
	letter-spacing: 0.7px;
	line-height: 2rem;
}
.cta_link--internship::after, .cta_link--entry::after{border-radius: 12px;}
.cta_link span{padding-top: 25px;}
.cta_link span::before{
	font-size: 2.1rem;
	letter-spacing: 0.21px;
	line-height: 2.5rem;
}
.connect_logo{margin:0 auto 30px;}
.connect_list{max-width: none;}
.f_menu{padding:40px 30px;}
.f_menu_block{
	gap: 40px;
	grid-template-columns:repeat(auto-fit,calc((100% - 40px)/2));
}
.f_menu_head{
	font-size: 2rem;
	letter-spacing: 0.2px;
	line-height: 2.4rem;
	margin-bottom: 14px;
}
.f_menu_item{line-height:1.9rem;}
.f_menu_link{
	font-size:1.3rem;
	letter-spacing:0.65px;
}
.connect_area {
	display: block;
	padding: 40px 20px;
}
.connect_logo{margin:0 auto 25px;}
.footer_box{
	flex-direction: column;
	gap: 15px;
}
/*----- main -----*/
#index_wrap, #content_wrap{padding-top: 60px;}
.link_btn{
	padding: 14px 22px;
	font-size: 1.3rem;
	letter-spacing: 0.65px;
	line-height: 1.6rem;
	max-width: 208px;
}
.link_btn::after{right: 10px;}
}

@media screen and (max-width:767px){
.pc_size{display:none !important;}
.sp_size{display:block !important;}

/*----- header -----*/
.header_btn{display: none;}
#menu_box{padding:45px 30px 20px;}
.menu_nav{padding-bottom:30px;}
.menu_block{grid-template-columns:1fr;}
.menu_head{padding-bottom: 9px;}
.submenu_box{
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
}
.submenu_list{
	flex-direction: column;
	gap: 16px;
}
.close_btn{margin: auto;}

/*----- footer -----*/
.cta_box{padding: 35px 20px;}
.cta_list{
	grid-template-columns:1fr;
	gap: 10px;
}
.f_menu{padding:40px 20px;}
.f_menu_block{grid-template-columns:1fr;}
.f_menu_head{
	margin-bottom: 13px;
}
.connect_area{
	flex-direction: column;
	padding:43px 20px 40px;
}
.connect_list{
	grid-template-columns:1fr 1fr;
	gap:7px;
}
.connect_list::before{display:none;}
.connect_item{
	font-size:1.4rem;
	letter-spacing:0.84px;
	line-height:2rem;
}
.connect_link{height:50px;}
.connect_link[href*="engi-press"] img{width:102px;}
.connect_link[href*="engi-press"]::after{background-size:102px;}
.f_bottom{border-top: none;}
.footer_box{
	flex-direction: column;
	gap: 0;
	max-width:1240px;
	padding:0 20px 25px;
	margin:auto;
}
.f_sub_list{
	flex-direction: column;
	width: 100%;
	gap: 0;
}
.f_sub_item{
	border-bottom: 1px solid #ddd;
	width: 100%;
	text-align: center;
	padding:0;
}
.f_sub_item:first-child{border-top: 1px solid #ddd;}
.f_sub_link{
	display: block;
	width: 100%;
	padding: 15px 0 !important;
}
.copyright{padding-top: 20px;}

/*----- main -----*/
[href^="tel:"]{
	text-decoration:underline;
	pointer-events:auto;
}

}


/*----- print -----*/
@media print{
	:root{--vw-100:1200px;}
	body{
		width:1200px;
		transform:scale(1);
		-moz-transform:scale(1);
		-webkit-transform:scale(1);
		transform-origin:0 0;
		zoom:.91;
		margin:auto
	}
	@media all and (-ms-high-contrast:none){
		body{width:1200px}
	}
	@media (-ms-high-contrast:none),(-ms-high-contrast:active){
		body{width:1200px}
	}
	@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm){
		body{
			width:1200px;
			transform:scale(.8);
			-moz-transform:scale(.8);
			-webkit-transform:scale(.8);
			transform-origin:0 0;
			margin:auto
		}
	}
}
/*----- print end -----*/