@charset "UTF-8";

/****************************************************************************
 	global-header
****************************************************************************/
#global-header {
	width: 100%;
	position: fixed;
	z-index: 1000;
	background-color: #22c1e5;
}
#global-header .global-header-inn {
	width: 100%;
	height: 55px;
}
@media (min-width:1000px){
	#global-header {
		height: 90px;
	}
	#global-header .global-header-inn {
		position: relative;
	}
}


/* logo
-----------------------------------------------------------*/
#global-header .white-wrap {
	background-color: #22c1e5;
	z-index: 1000;
	position: absolute;
	display: table;
	width: 100%;
	height: 55px;
	top: 0;
	left: 0;
	text-align: left;
}
@media (min-width:1000px){
	#global-header .white-wrap {
		height: auto;
	}
}


#global-header .logo {
	display: inline-block;
	position: absolute;
	top: 15px;
	left: 10px;
}
#global-header .logo-link {
	display: block;
	width: 210px;
	height: 27px;
	background: url("../img/common/logo_header_en.png")no-repeat left top;
	background-size: cover;
}
@media (min-width:1000px){
	#global-header .logo {
		top: 30px;
		left: 30px;
	}
	#global-header .logo-link {
		width: 278px;
		height: 36px;
	}
}


/* Toggle Button　横幅1080pxを切る場合のみ表示（PC表示を下回る場合）
-----------------------------------------------------------*/
.nav-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 18px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 100;
}
.nav-toggle-inn {
    position: relative;
}
.nav-toggle .line {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}
.nav-toggle .line:nth-child(1) {
    top: 0;
}
.nav-toggle .line:nth-child(2) {
    top: 8px;
}
.nav-toggle .line:nth-child(3) {
    top: 16px;
}
/* #nav-toggle オープン時切り替えアニメーション */
.open .nav-toggle .line {
	background-color: #fff;
}
.open .nav-toggle .line:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open .nav-toggle .line:nth-child(2) {
	width: 0;
	left: 50%;
}
.open .nav-toggle .line:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
@media (min-width:1000px){
	.nav-toggle {
		display: none;
	}
}


/* gnavi
-----------------------------------------------------------*/
#global-header .gnavi {
	width: 100%;
	position: absolute;
	/* 開いてないときは画面外に配置 */
	top: -545px;
    padding: 60px 0 0 0;
	background-color: #22c1e5;
	box-shadow: 0 0 8px rgba(0,0,0,0.3);
	transition: 0.5s ease;
	-webkit-transition:  -webkit-transform 0.5s ease;
	-moz-transition: 0.5s ease;
	-o-transition: 0.5s ease;
}
@media (min-width:1000px){
	#global-header .gnavi {
		position: absolute;
		top: 13px;
		right: 30px;
		width: 675px;
		height: auto;
	    margin: auto;
		padding: 0;
		background-color: transparent;
		box-shadow: none;
	}
}

/* SP用 スライドアニメーション */
.open .gnavi {
	/* #global-nav top + #mobile-head height */
	z-index: 0;
	-webkit-transform: -webkit-translateY(540px);
	-moz-transform: translateY(540px);
	-o-transform: translateY(540px);
	transform: translateY(540px);
}



/* gnavi-menu
-----------------------------------------------------------*/
#global-header .gnavi .gnavi-menu {
	padding: 1em 2em 0 2em;
}
#global-header .gnavi .gnavi-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
}
#global-header .gnavi .gnavi-list-item {
	width: 47%;
	border: 1px dashed #91e0f2;
	border-radius: 5px;
	margin-bottom: 1.2em;
	margin-right: 6%;
}
#global-header .gnavi .gnavi-list-item:nth-child(2n) {
	margin-right: 0;
}
#global-header .gnavi .gnavi-list-link {
	display: block;
	padding: 1.2em .5em;
	text-align: center;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
#global-header .gnavi .gnavi-list-link:hover {
	opacity: .7;
}
#global-header .gnavi .gnavi-list-link i {
	display: block;
	font-size: 40px;
}
#global-header .gnavi .gnavi-list-link .text {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 3px;
}
#global-header .gnavi .gnavi-list-link .text-sub {
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}
@media (min-width:768px){
	#global-header .gnavi .gnavi-menu {
		padding: 1em 3em 0 3em;
	}
	#global-header .gnavi .gnavi-list-item {
		width: 31%;
		margin-right: 3.5%;
	}
	#global-header .gnavi .gnavi-list-item:nth-child(2n) {
		margin-right: 3.5%;
	}
	#global-header .gnavi .gnavi-list-item:nth-child(3n) {
		margin-right: 0;
	}
}
@media (min-width:1000px){
	#global-header .gnavi .gnavi-menu {
		padding: 0;
		display: inline-block;
		width: 590px;
	}
	#global-header .gnavi .gnavi-list-item {
		width: 20%;
		border: none;
		border-left: 1px dashed #91e0f2;
		border-radius: 0;
		margin-bottom: 0;
		margin-right: 0;
	}
	#global-header .gnavi .gnavi-list-item:nth-child(2n) {
		margin-right: 0;
	}
	#global-header .gnavi .gnavi-list-item:last-child {
		border-right: 1px dashed #91e0f2;
	}
	#global-header .gnavi .gnavi-list-link {
		padding: .1em .1em;
		line-height: 1;
	}
	#global-header .gnavi .gnavi-list-link i {
		font-size: 35px;
	}
	#global-header .gnavi .gnavi-list-link .text {
		font-size: 13px;
		line-height: 1;
		margin-top: 10px;
	}
	#global-header .gnavi .gnavi-list-link .text.catalog {
		margin-top: 3px;
	}
	#global-header .gnavi .gnavi-list-link .text.product {
		margin-top: 3px;
	}
	#global-header .gnavi .gnavi-list-link .text-sub {
		font-size: 10px;
		font-weight: 500;
		line-height: 1.5;
	}
}



/* lang-list
-----------------------------------------------------------*/
#global-header .gnavi .lang-list {
	text-align: center;
	margin-bottom: 2em;
}
#global-header .gnavi .lang-list-item {
	display: inline-block;
	position: relative;
	padding: 0 10px;
}
#global-header .gnavi .lang-list-item:first-child:after {
	position: absolute;
    right: -5px;
    top: 0;
    display: block;
    content: "/";
	color: #fff;
}
#global-header .gnavi .lang-list-link {
	font-size: 16px;
	color: #fff;
	font-weight: 700;
}
#global-header .gnavi a.lang-list-link {
	opacity: .6;
	text-decoration: none;
}
#global-header .gnavi a.lang-list-link:hover {
	opacity: 1;
}
@media (min-width:1000px){
	#global-header .gnavi .lang-list {
		position: absolute;
		right: 0;
		top: 15px;
		text-align: center;
		margin-bottom: 0;
	}
	#global-header .gnavi .lang-list-item {
		display: inline-block;
		position: relative;
		padding: 0 10px;
	}
	#global-header .gnavi .lang-list-link {
		font-size: 14px;
	}
}


/****************************************************************************
 	main
****************************************************************************/
#main-wrap {
	padding-top: 55px;
	/*padding-bottom: 5em;*/
}
@media (min-width:768px){
}
@media (min-width:1000px){/*headerのブレイクポイントに合わせる*/
	#main-wrap {
		padding-top: 90px;
	}
}

/****************************************************************************
 	footer
****************************************************************************/

/* ft-bnr-sec
-----------------------------------------------------------*/
.ft-bnr-sec {
	padding: 3em 0;
}
.ft-bnr-sec .list {
	list-style-type: none;
}
.ft-bnr-sec .list-item {
	margin-bottom: 2em;
}
.ft-bnr-sec .list-item:last-child {
	margin-bottom: 0;
}
.ft-bnr-sec .list-link {
	display: block;
	border-radius: 20px;
	color: #fff;
	text-decoration: none;
	padding: 1.8em 2em;
	box-shadow: 10px 10px 0 0 rgba(202,228,235);
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
.ft-bnr-sec .list-link:hover {
	opacity: 0.7;
}
.ft-bnr-sec .list-link.recruit {
	background: url("../img/common/ft_bnr_recruit.jpg")no-repeat center center;
	background-size: cover;
}
.ft-bnr-sec .list-link.sustana {
	background: url("../img/common/ft_bnr_sustana.jpg")no-repeat center center;
	background-size: cover;
}
.ft-bnr-sec .list-link.catalog {
	background: url("../img/common/ft_bnr_catalog.jpg")no-repeat center center;
	background-size: cover;
}

.ft-bnr-sec .list-link .en {
	font-weight: 700;
	font-size: 26px;
	line-height: 1.4;
	letter-spacing: 1px;
}
.ft-bnr-sec .list-link .jp {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.4;
}
.ft-bnr-sec .list-link .btn {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0;
	text-align: center;
	padding: 5px 15px;
	margin-top: .5em;
}
@media (min-width:768px){
	.ft-bnr-sec {
		padding: 3em 0;
	}
	.ft-bnr-sec .list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.ft-bnr-sec .list-item {
		width: 30%;
		margin-bottom: 0;
		margin-right: 3.333%;
	}
	.ft-bnr-sec .list-item:last-child {
		margin-right: 0;
	}
	.ft-bnr-sec .list-link {
		border-radius: 20px;
		padding: 2em 1em;
		box-shadow: 10px 10px 0 0 rgba(202,228,235);
	}
	.ft-bnr-sec .list-link .en {
		font-size: 20px;
	}
	.ft-bnr-sec .list-link .jp {
		font-size: 19px;
	}
}
@media (min-width:1180px){
	.ft-bnr-sec {
		padding: 3em 0 4em 0;
	}
	.ft-bnr-sec .list-link {
		border-radius: 35px;
		padding: 2.5em 1.5em 3em 1.5em;
		box-shadow: 15px 15px 0 0 rgba(202,228,235);
	}
	.ft-bnr-sec .list-link .en {
		font-size: 28px;
	}
	.ft-bnr-sec .list-link .jp {
		font-size: 26px;
	}
	.ft-bnr-sec .list-link .btn {
		font-size: 16px;
		letter-spacing: 0;
		text-align: center;
		padding: 8px 20px;
		margin-top: .8em;
	}
}

/* ft-contact-sec
-----------------------------------------------------------*/
.ft-contact-sec {
	padding: 3em 0;
	color: #fff;
	text-align: center;
}
.ft-contact-sec .ttl-en {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 1px;
}
.ft-contact-sec .ttl-jp {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}
.ft-contact-sec .list {
	list-style-type: none;
}
.ft-contact-sec .list-item {
	background-color: #01439c;
	border-radius: 20px;
	margin-top: 2em;
	position: relative;
	padding: 3em 1em 1.5em 1em;
}
.ft-contact-sec .list-item .icon {
	background-color: #fef042;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	position: absolute;
	top: -20px;
	left: 50%;
	margin-left: -23px;
}
.ft-contact-sec .list-item .icon i {
	color: #0150bc;
	font-size: 36px;
	margin-top: 10px;
}
.ft-contact-sec .list-item .ttl {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.ft-contact-sec .list-item .num a {
	font-weight: 700;
	font-size: 36px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	letter-spacing: 1px;
}
.ft-contact-sec .list-item .copy {
	font-size: 14px;
}
.ft-contact-sec .list-item .copy a {
	color: #fff;
	text-decoration: underline;
}
.ft-contact-sec .list-item .copy a:hover {
	text-decoration: none;
}
.ft-contact-sec .list-item .comment {
	color: #fef042;
	font-size: 34px;
	position: absolute;
	top: -10px;
	left: -10px;
	transform: rotate( -15deg );
}
.ft-contact-sec .list-item .btn {
	border: 1px solid #fff;
	border-radius: 50px;
	display: inline-block;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	color: #fff;
	text-decoration: none;
	padding: 13px 20px;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
.ft-contact-sec .list-item .btn:hover {
	background-color: #fff;
	color: #0150bc;
}
@media (min-width:768px){
	.ft-contact-sec {
		padding: 2em 0;
	}
	.ft-contact-sec .ttl-en {
		font-size: 42px;
	}
	.ft-contact-sec .ttl-jp {
		font-size: 28px;
	}
	.ft-contact-sec .list {
		list-style-type: none;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 2em;
	}
	.ft-contact-sec .list-item {
		width: 48%;
		border-radius: 20px;
		margin-top: 0;
	}
}
@media (min-width:1180px){
	.ft-contact-sec {
		padding: 2.8em 0;
	}
	.ft-contact-sec .ttl-en {
		font-size: 46px;
	}
	.ft-contact-sec .ttl-jp {
		font-size: 36px;
	}
	.ft-contact-sec .list {
		margin-top: 2em;
	}
	.ft-contact-sec .list-item {
		border-radius: 40px;
		padding: 3.5em 1em 1.5em 1em;
	}
	.ft-contact-sec .list-item .icon {
		width: 70px;
		height: 70px;
		top: -30px;
		left: 50%;
		margin-left: -35px;
	}
	.ft-contact-sec .list-item .icon i {
		font-size: 45px;
		margin-top: 15px;
	}
	.ft-contact-sec .list-item .ttl {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.ft-contact-sec .list-item .num a {
		font-size: 45px;
	}
	.ft-contact-sec .list-item .copy {
		font-size: 15px;
	}
	.ft-contact-sec .list-item .comment {
		font-size: 63px;
		top: -70px;
		left: -40px;
		transform: rotate( -18deg );
	}
	.ft-contact-sec .list-item .btn {
		font-size: 19px;
		padding: 13px 25px;
	}
}

/* ft-link-sec
-----------------------------------------------------------*/
.ft-link-sec {
	padding: 3em 0 6em 0;
}
.ft-link-sec .ttl {
	text-align: center;
	font-weight: 700;
	font-size: .75em;
}
.ft-link-sec .bnr-list {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: .5em;
	padding: 0 1em;
}
.ft-link-sec .bnr-list-item {
	width: 30%;
	border: 1px solid #d9d9d9;
}
.ft-link-sec .bnr-list-link {
	display: block;
}

.ft-link-sec .inside-list {
	margin-top: 1em;
	list-style-type: none;
	border-top: 1px solid #cac9c9;
	padding: 1em 1em 0 1em;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.ft-link-sec .inside-list-item {
	width: 20%;
	margin-right: 5%;
}
.ft-link-sec .inside-list-item:last-child {
	margin-right: 0;
}
.ft-link-sec .inside-list-item.kokorozashi {
	width: 60%;
	border-radius: 20px;
}
.ft-link-sec .inside-list-item.kokorozashi img {
	border-radius: 20px;
}
@media (min-width:768px){
	.ft-link-sec {
		padding: 3em 0 8em 0;
	}
	.ft-link-sec .m-inner {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0 10%;
			}
	.ft-link-sec .box {
		width: 70%;
		padding: .5em 4% 0 0;
	}
	.ft-link-sec .box:last-child {
		width: 30%;
		border-left: 1px solid #cac9c9;
		padding: 2.7em 0 0 4%;
	}
	.ft-link-sec .ttl {
		font-size: .7em;
	}
	.ft-link-sec .bnr-list {
		margin-top: .5em;
		padding: 0 0;
	}
	.ft-link-sec .bnr-list-item {
		width: 30%;
	}
	.ft-link-sec .inside-list {
		margin-top: 0;
		border-top: none;
		padding: 0;
	}
	.ft-link-sec .inside-list-item {
		width: 40%;
		margin-right: 12%;
	}
	.ft-link-sec .inside-list-item:last-child {
		margin-right: 0;
	}
	.ft-link-sec .inside-list-item.kokorozashi {
		width: 62%;
		border-radius: 30px;
	}
	.ft-link-sec .inside-list-item.kokorozashi img {
		border-radius: 30px;
	}
}
@media (min-width:1180px){
	.ft-link-sec {
		padding: 2.5em 0 8em 0;
	}
	.ft-link-sec .box:last-child {
		padding: 3.5em 0 0 4%;
	}
	.ft-link-sec .ttl {
		font-size: 1em;
	}
}

/* ft-navi-sec
-----------------------------------------------------------*/
#global-footer {
	margin-top: -3em;
	background-color: #0150bc;
	border-radius: 60px 0 0 0;
	color: #fff;
}
#global-footer .m-inner {
	padding-top: 3em;
	padding-bottom: 2em;
}
#global-footer .ft-info-box .logo {
	text-align: center;
}
#global-footer .ft-info-box .logo img {
	width: 250px;
}
#global-footer .ft-info-box .note {
	border-top: 1px solid #668abc;
	padding: 1em 1em;
	margin-top: 1em;
	text-align: left;
}
#global-footer .ft-info-box .note .add {
	font-size: 14px;
	line-height: 1.5;
}
#global-footer .ft-info-box .note .add.mt {
	margin-top: .5em;
}
#global-footer .ft-info-box .iso {
	border-top: 1px solid #668abc;
	padding: 1em 1em;
	margin-top: .5em;
	text-align: center;
}
#global-footer .ft-info-box .iso img {
	width: 260px;
	margin-top: .2em;
}
#global-footer .ft-navi-box {
	border-top: 1px solid #668abc;
	padding: 1em 2em;
}
#global-footer .ft-navi-box .list {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
#global-footer .ft-navi-box .list-item {
	width: 50%;
	margin-bottom: 1em;
	line-height: 1.4;
}
#global-footer .ft-navi-box .list-link {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
#global-footer .ft-navi-box .list-link:hover {
	opacity: .7;
}

#global-footer .ft-navi-box .ec-btn {
	margin-top: 1em;
}
#global-footer .ft-navi-box .ec-btn .btn {
	display: inline-flex;
	align-items: center;
	border: 1px solid #fff;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	padding: 10px 20px;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
#global-footer .ft-navi-box .ec-btn .btn:hover {
	background-color: #fff;
	color: #0150bc;
}
#global-footer .ft-navi-box .ec-btn .btn i {
	margin-right: 5px;	
}

#global-footer .ft-navi-box .bnr-list {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 2em;
}
#global-footer .ft-navi-box .bnr-list-item {
	width: 46%;
}
#global-footer .copyright {
	background-color: #01439c;
	font-size: 10px;
	font-style: normal;
	text-align: center;
	letter-spacing: 1px;
	line-height: 1.4;
	padding: 10px 0;
}
@media (min-width:768px){
	#global-footer {
		margin-top: -5em;
		border-radius: 100px 0 0 0;
	}
	#global-footer .m-inner {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		padding-top: 3em;
		padding-bottom: 2em;
	}
	#global-footer .ft-info-box {
		width: 40%;
	}
	#global-footer .ft-info-box .logo {
		text-align: center;
	}
	#global-footer .ft-info-box .logo img {
		width: 250px;
	}
	#global-footer .ft-info-box .note {
		text-align: left;
	}
	#global-footer .ft-navi-box {
		width: 50%;
		border-top: none;
		padding: 0 0;
		margin-top: 0em;
	}
	#global-footer .ft-navi-box .list-item {
		width: 50%;
		margin-bottom: 1em;
	}
	#global-footer .ft-navi-box .list-link {
		font-size: 14px;
	}
	#global-footer .ft-navi-box .bnr-list {
		display: inline-block;
		margin-top: 2em;
	}
	#global-footer .ft-navi-box .bnr-list-item {
		display: inline-block;
		width: auto;
		margin-right: .5em;
	}
	#global-footer .ft-navi-box .bnr-list-item img {
		width: 170px;
	}
}
@media (min-width:1180px){
	#global-footer {
		margin-top: -5em;
		border-radius: 150px 0 0 0;
	}
	#global-footer .m-inner {
		padding-top: 4em;
		padding-bottom: 2em;
	}
	#global-footer .ft-info-box {
		width: 31%;
	}
	#global-footer .ft-info-box .logo img {
		width: 260px;
	}
	#global-footer .ft-info-box .note {
		text-align: left;
		padding: .5em .5em;
	}
	#global-footer .ft-info-box .note .add {
		font-size: 14px;
		line-height: 1.5;
	}
	#global-footer .ft-info-box .note .add.mt {
		margin-top: .8em;
	}
	#global-footer .ft-info-box .iso {
		padding: .5em 1em;
		margin-top: .5em;
	}
	#global-footer .ft-info-box .iso img {
		width: 280px;
		margin-top: .2em;
	}
	#global-footer .ft-navi-box {
		width: 60%;
	}
	#global-footer .ft-navi-box .list {
		justify-content: flex-start;
	}
	#global-footer .ft-navi-box .list-item {
		width: 25%;
		margin-bottom: 1.2em;
	}
	#global-footer .ft-navi-box .list-link {
		font-size: 15px;
	}
	#global-footer .ft-navi-box .bnr-list {
		margin-top: 2em;
	}
	#global-footer .ft-navi-box .bnr-list-item {
		margin-right: .8em;
	}
	#global-footer .ft-navi-box .bnr-list-item img {
		width: 200px;
	}
	#global-footer .copyright {
		font-size: 12px;
		letter-spacing: 2px;
		padding: 15px 0;
	}
}

/****************************************************************************
 	pagetop
****************************************************************************/
#pagetop {
	position: fixed;
	z-index: 10000;
	bottom: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	background-color: #000;
	border-radius: 50%;
	cursor: pointer;
}
#pagetop:after {
	content: "";
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -3px;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
} 
@media (min-width:1180px){
	#pagetop {
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
	#pagetop:after {
		top: 25px;
	}
}

	
