@charset "UTF-8";

body {
	font-family:"Roboto", serif;
	font-weight: 300;
	font-size: 1rem;
}

.sp_logo {
	display: none;
}

.header_inner {
    position: fixed;
    top: 40px;
    background: #fff;
    left: 50%;
    display: flex;
    padding: 13px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-left: -550px;
    width: 1100px;
    justify-content: space-between;
}

header {
    position: fixed;
    z-index: 9999;
}

.header_inner ul {
    display: flex;
    align-items: center;
}

.header_inner ul li a {
    color: #000;
	position: relative;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.header_inner ul li a:hover {
	color: #E4007F;
}

.header_inner ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #E4007F;
bottom: -4px;
transform: scale(0, 1);
transform-origin: right top;
transition: transform 0.3s;
}

.header_inner ul li:last-child a::after {
	display: none;
}

.header_inner ul li a:hover::after {
transform: scale(1, 1);
transform-origin: left top;
}

.header_inner ul li:last-child a {
    background: #E4007F;
    color: #fff;
    padding: 8px 40px;
    display: block;
    border-radius: 5px;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.header_inner ul li:last-child a:hover {
	opacity: 0.5;
}

.header_inner ul li {
    margin: 0 25px;
    font-size: 15px;
    font-weight: 500;
    color: #ccc;
}

.header_inner ul li a {
    font-size: 15px;
    font-weight: 500;
}

.header_inner ul li:last-child {
    margin-right: 0;
}

a.float_btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    font-size: 18px;
    background: #E4007F;
    font-family: "Poppins", serif;
    padding: 10px 13px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    z-index: 999;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.float_btn:hover {
    padding: 10px 24px;
	background: #fff;
	box-shadow: 3px 3px 8px rgba(0,0,0,0.1);
	color: #E4007F;
}

a.float_btn:hover span {
	color: #E4007F;
}

img.float_btn_arrow {
    position: absolute;
    right: 15px;
    top: 18px;
}

a.float_btn:hover img.float_btn_arrow {
	background: #E4007F;
	padding: 3px 6px;
	border-radius: 100%;	
	top: 15px;
}

a.float_btn span {
    font-size: 10px;
    display: block;
    margin-top: 3px;
    font-weight: normal;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}
/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

body {
    width: 100%;
    min-width: inherit;
}
	
.sp_logo {
    position: fixed;
    left: 24px;
    top: 24px;
    display: block;
    z-index: 99999;
}

.sp_logo a {
    display: block;
    width: 120px;
}

.header_inner {
    display: none;
}
	
a.float_btn {
    width: 94%;
    padding: 10px;
    font-size: 17px;
    line-height: 16px;
    text-align: center;
    right: 3%;
    bottom: 10px;
}

a.float_btn span {
    line-height: 10px;
    margin-top: 7px;
}
}