@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500..800&family=Noto+Sans+JP:wght@400..900&display=swap');
* {
		margin: 0;
		padding: 0
}
html {
		overflow-y: scroll;
}
table {
		border-collapse: collapse;
}
img {
		border: none;
		vertical-align: top;
}
body {
		font-size: 15px;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 400;
		-webkit-font-smoothing: antialiased;
		-webkit-text-size-adjust: 100%;
		color: #282828;
}
.page_container {
		overflow: hidden;
}
header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100px;
		z-index: 1000;
		transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
header::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		border-bottom: 1px solid #f3f4f8;
}
#toppage header::before {
		background: rgba(255, 255, 255, 0);
		transition: background 0.4s;
		border-bottom: 1px solid rgba(255, 255, 255, 0);
}
#toppage header.normal::before {
		background: rgba(255, 255, 255, 1);
		border-bottom: 1px solid #ccc;
}
header.isHide {
		top: -100px;
}
.header_inner {
		padding: 30px 130px 0 50px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
		z-index: 2;
}
.global_drawer .header_inner {
		padding-top: 42px;
}
.header_logo {
		width: 130px;
}
.header_inner ul {
		display: flex;
		align-items: center;
		list-style: none;
		font-size: 16px;
		transform: translateY(7.5px)
}
.header_inner nav li {
		margin-right: 35px;
}
.header_inner nav li.parent {
		padding: 0 0 15px;
}
.header_inner nav li:last-child {
		margin-right: 0;
}
.header_inner ul a {
		color: #282828;
		text-decoration: none;
		transition: color 0.4s;
}
.header_inner ul .hover > a, .header_inner ul .hover .parentService {
		color: #14b46e !important;
}
.header_trigger {
		transition: border 0.4s;
}
.header_inner .header_trigger {
		position: absolute;
		top: 28px;
		right: 50px;
		width: 49px;
		height: 49px;
		box-sizing: border-box;
		border-radius: 50%;
		border: 1px solid #282828;
		cursor: pointer;
}
.header_trigger .header_trigger_inner {
		position: absolute;
		left: 16px;
		top: 18px;
		width: 17px;
		height: 13px;
}
.header_trigger_inner .header_trigger_bar {
		width: 17px;
		height: 1px;
		background: #282828;
		position: absolute;
		top: 0;
		left: 0;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header_trigger_inner .header_trigger_bar:nth-child(2) {
		top: 6px;
}
.header_trigger_inner .header_trigger_bar:nth-child(3) {
		top: 12px;
}
@media (hover: hover) {
		header .header_trigger:hover {
				border: 1px solid #14b46e;
		}
		header .header_trigger:hover .header_trigger_bar {
				background: #14b46e;
		}
}
.global_drawer .header_trigger_bar {
		background: none;
}
.global_drawer .triggerOpen .header_trigger_bar:nth-child(1) {
		transform: translateY(6px) rotate(-45deg);
		background: none;
}
.global_drawer .triggerOpen .header_trigger_bar:nth-child(3) {
		transform: translateY(-6px) rotate(45deg);
		background: none;
}
.global_drawer .header_trigger_bar:nth-child(1)::after, .global_drawer .header_trigger_bar:nth-child(3)::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 17px;
		height: 1px;
		background: #282828;
		transform: scaleX(0);
		transform-origin: right center;
}
.global_drawer .header_trigger_bar:nth-child(1)::after {
		transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, background 0.3s;
}
.global_drawer .header_trigger_bar:nth-child(3)::after {
		transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, background 0.3s;
}
.global_drawer .triggerOpen .header_trigger_bar:nth-child(1)::after, .global_drawer .triggerOpen .header_trigger_bar:nth-child(3)::after {
		transform: scaleX(1);
}
@media (hover: hover) {
		.header_inner ul a:hover {
				color: #14b46e !important;
		}
		.header_trigger:hover .header_trigger_bar:nth-child(1)::after, .header_trigger:hover .header_trigger_bar:nth-child(3)::after {
				background: #14b46e;
		}
		.header_trigger:hover {
				border: 1px solid #14b46e;
		}
}
.header_inner .parent {
		position: relative;
}
.header_inner .parent > a, .parentService {
		padding-right: 17px;
		position: relative;
}
.header_inner .parent .parentTrigger {
		display: block;
		position: absolute;
		top: calc(50% - 3px);
		right: 0;
		width: 5px;
		height: 5px;
		border-right: 2px solid #222;
		border-bottom: 2px solid #222;
		transform: rotate(45deg);
}
.header_inner .hover .parentTrigger {
		border-right: 2px solid #14b46e !important;
		border-bottom: 2px solid #14b46e !important;
}
.header_inner .parent .global_sub {
		position: absolute;
		top: 35px;
		left: calc(50% - 95px);
		width: 190px;
		background: #f1f1f1;
		box-sizing: border-box;
		padding: 20px 15px;
		border-radius: 8px;
		display: none;
		transition: transform 0.3s;
		transform: translateY(15px);
}
.header_inner .parent .global_sub.isActive {
		transform: translateY(0px);
}
.global_sub ul {
		display: block;
		margin-left: 1em;
		transform: translateY(0px)
}
.global_sub ul li {
		margin-right: 0;
		margin: 0;
		font-size: 15px;
		position: relative;
}
.global_sub ul li a {
		display: block;
		padding: 5px 0;
}
.global_sub ul li::after {
		content: '・';
		display: block;
		position: absolute;
		top: 5px;
		left: -1em;
		color: #282828;
}
.global_sub ul li:last-child {
		margin-bottom: 0;
}
.header_inner nav {
		display: flex;
		align-items: center;
}
.header_btn_gr {
		display: flex;
		align-items: center;
		margin-left: 50px;
}
.header_btn_gr .header_btn:first-child {
		margin-right: 9px;
}
.header_btn {
		width: 140px;
		font-weight: 500;
}
.header_btn a {
		width: 100%;
		height: 36px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #282828;
		color: #fff;
		text-decoration: none;
		border-radius: 60px;
		transition: background 0.4s;
}
@media (hover: hover) {
		header .header_btn a:hover, header.normal .header_btn a:hover {
				background: #14b46e !important;
				color: #fff !important;
		}
}
.header_btn a span {
		position: relative;
		display: inline-block;
		transform: translateY(-1px);
}
/* ================== */
.link_btn_center {
		display: flex;
		justify-content: center;
}
@media(max-width: 767px) {
		.link_btn_center_sp {
				display: flex;
				justify-content: center;
		}
}
.link_btn {
		width: 270px;
		font-weight: 600;
}
.link_btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		color: #282828;
		text-decoration: none!important;
		border: 1px solid #282828;
		border-radius: 60px;
		transition: background 0.3s;
		height: 54px;
		position: relative;
}
.link_btn a::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 5px);
		right: 20px;
		width: 11px;
		height: 11px;
		pointer-events: none;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 11px;
		background-image: url("../n_images/btn_arrow_blk.png");
		transition: background 0.2s;
}
.link_btn.none a::after {
		display: none;
}
.link_btn.back a::after {
		right: inherit;
		left: 20px;
		background-image: url("../n_images/btn_arrow_back.png");
}
.link_btn a.wht {
		color: #fff;
		border: 1px solid #fff;
}
.link_btn a.wht::after {
		background-image: url("../n_images/btn_arrow_wht.png")
}
@media (hover: hover) {
		.link_btn a:hover {
				background: #14b46e;
				border: 1px solid #14b46e;
				color: #fff;
		}
		.link_btn a:hover::after {
				background-image: url("../n_images/btn_arrow_wht.png")
		}
		.link_btn a.wht:hover {
				background: #fff;
				border: 1px solid #fff;
				color: #222;
		}
		.link_btn a.wht:hover::after {
				background-image: url("../n_images/btn_arrow_blk.png")
		}
		.link_btn.back a:hover::after {
				background-image: url("../n_images/btn_arrow_back_wht.png");
		}
}
.section_title {
		margin: 0 0 25px
}
.section_title h2 {
		font-family: "Manrope", sans-serif;
		font-size: 64px;
		font-weight: 500;
		letter-spacing: -1.5px;
		line-height: 1;
		text-align: center;
}
.section_title h2.alignleft {
		text-align: left;
}
.aligncenter {
		text-align: center;
}
.section_title h2 span {
		display: inline-block;
		position: relative;
}
.section_title h2 span::before, .section_title h2 span::after {
		content: '';
		display: block;
		position: absolute;
		width: 11px;
		height: 11px;
}
.section_title h2 span::before {
		top: 10px;
		left: -46px;
		background: #14b46e;
}
.section_title h2 span::after {
		top: 21px;
		left: -35px;
		background: #ffdc00;
}
.section_title_jp {
		font-weight: 600;
		font-size: 20px;
		line-height: 1;
		padding-top: 15px;
		padding-left: 3px;
}
@media(max-width: 1440px) {
		.header_inner {
				padding-left: 30px;
				padding-right: 100px;
		}
		.header_inner .header_trigger {
				right: 30px
		}
		.header_inner ul {
				font-size: 15px;
		}
		.header_inner nav li {
				margin-right: 25px;
		}
		.header_btn_gr {
				margin-left: 30px;
		}
		.header_btn {
				width: 130px;
		}
}
@media(max-width: 1194px) {
		.header_inner ul, .header_btn_gr {
				display: none;
		}
}
/* ============== */
.global_drawer {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: #fff;
		z-index: 5000;
		display: none;
}
.global_drawer .header_inner {
		z-index: 100;
}
.drawer_wrap {
		overflow: auto;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 0;
		min-height: 600px;
}
.drawer_inner {
		width: 980px;
		min-height: 430px;
		margin: -8vh auto 0;
		display: flex;
		padding: 0 40px;
}
.drawer_inner_left {
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		width: 270px;
		margin-right: 230px;
}
.drawer_inner_left_bottom .header_btn {
		width: 270px;
		font-size: 16px;
		margin-bottom: 14px;
		font-weight: 600;
}
.drawer_inner_right_bottom .header_btn {
		font-size: 16px;
		font-weight: 600;
		margin-bottom: 14px;
}
.drawer_inner_left_bottom .header_btn a, .drawer_inner_right_bottom a {
		height: 54px;
		background: #fff;
		color: #282828;
		border: 1px solid #282828;
		position: relative;
		transition: background 0.4s;
}
.drawer_inner_left_bottom .header_btn a::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 5px);
		right: 20px;
		width: 11px;
		height: 11px;
		pointer-events: none;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 11px;
		background-image: url("../n_images/btn_arrow_blk.png");
		transition: background 0.2s;
}
@media (hover: hover) {
		.drawer_inner_left_bottom .header_btn a:hover {
				background: #14b46e !important;
				border: 1px solid #14b46e;
				color: #fff !important;
		}
		.drawer_inner_left_bottom .header_btn a:hover::after {
				background-image: url("../n_images/btn_arrow_wht.png");
		}
}
.drawer_inner_right {
		flex: 1;
}
.drawer_inner_right ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
}
.drawer_inner_right ul li {
		list-style: none;
		margin-bottom: 45px;
}
.drawer_inner_right ul li:nth-child(odd) {
		width: 65%;
}
.drawer_inner_right ul li:nth-child(even) {
		width: 35%;
}
.drawer_inner_right ul li:nth-child(9), .drawer_inner_right ul li:nth-child(10) {
		margin-bottom: 0;
}
.drawer_inner_right ul li a {
		color: #282828;
		text-decoration: none;
		transition: color 0.4s;
}
.dr_menu_en {
		font-family: "Manrope", sans-serif;
		font-size: 24px;
		font-weight: 700;
		line-height: 1;
		margin-bottom: 9px;
		letter-spacing: -0.5px;
}
.dr_menu_jp {
		font-size: 14px;
		line-height: 1;
		font-weight: 500;
}
.drawer_wrap .drawer_bottom {
		position: absolute;
		bottom: 60px;
		left: 50px;
		width: 600px;
		display: flex;
		align-items: center;
		font-size: 12px;
}
.drawer_copy {
		margin-right: 40px;
		font-family: "Manrope", sans-serif;
		font-weight: 500;
		color: #969696;
}
.drawer_bottom ul {
		display: flex;
		align-items: center;
}
.drawer_bottom li {
		list-style: none;
		margin-right: 40px;
}
.drawer_bottom li a {
		color: #969696;
		text-decoration: none;
		transition: color 0.4s;
}
@media (hover: hover) {
		.drawer_inner_right ul li a:hover, .drawer_bottom li a:hover {
				color: #14b46e;
		}
}
@media(min-width: 768px) {
		.global_drawer .header_logo, .drawer_inner_right_bottom {
				display: none;
		}
}
@media(max-width: 767px) {
		header {
				height: 70px;
		}
		header.isHide {
				top: -75px;
		}
		.header_inner {
				padding-left: 20px;
				padding-right: 20px;
				padding-top: 25px;
		}
		.header_logo {
				width: 100px;
		}
		.header_logo img {
				width: 100px;
				height: auto;
		}
		.global_drawer .header_inner {
				padding-top: 25px;
		}
		.header_inner .header_trigger {
				top: 15px;
				right: 20px;
				width: 40px;
				height: 40px;
		}
		.header_trigger .header_trigger_inner {
				left: 12px;
				top: 12.5px;
				width: 14px;
				height: 11px;
		}
		.header_trigger_inner .header_trigger_bar {
				width: 14px;
				height: 1px;
				background: #282828;
				position: absolute;
				top: 0;
				left: 0;
				transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		}
		.header_trigger_inner .header_trigger_bar:nth-child(2) {
				top: 6px;
		}
		.triggerOpen .header_trigger_inner .header_trigger_bar:nth-child(2) {
				opacity: 0;
		}
		.header_trigger_inner .header_trigger_bar:nth-child(3) {
				top: 12px;
		}
		.global_drawer .triggerOpen .header_trigger_bar:nth-child(1) {
				transform: translateY(6.5px) rotate(-45deg);
		}
		.global_drawer .triggerOpen .header_trigger_bar:nth-child(3) {
				transform: translateY(-7.5px) rotate(45deg);
		}
		.drawer_inner_logo {
				display: none;
		}
		.drawer_wrap {
				position: absolute;
				box-sizing: border-box;
				padding: 100px 25px 40px;
				background: #fff;
				display: flex;
				justify-content: center;
				align-items: flex-start;
		}
		.drawer_inner {
				width: auto;
				display: flex;
				align-items: flex-start;
				min-height: inherit;
				margin-top: 0;
				padding-left: 10px;
				padding-right: 10px;
		}
		.drawer_inner_right {
				flex: initial;
		}
		.drawer_inner_right ul li {
				margin-bottom: 20px;
		}
		.drawer_inner_right ul li:nth-child(odd) {
				width: 60%;
		}
		.drawer_inner_right ul li:nth-child(even) {
				width: 40%;
		}
		.drawer_inner_left {
				width: auto;
				margin-right: 0;
				display: none;
		}
		.dr_menu_en {
				font-size: 22px;
		}
		.dr_menu_jp {
				font-size: 11px;
		}
		.drawer_inner_right_bottom {
				padding-top: 60px;
		}
		.drawer_inner_right_bottom .header_btn {
				max-width: 270px;
				width: 80%;
				margin: 0 auto 14px;
		}
		.drawer_inner_right_bottom .header_btn a {
				height: 50px;
		}
		.drawer_wrap .drawer_bottom {
				bottom: 20px;
				left: 0px;
				width: 100%;
				display: flex;
				flex-direction: column-reverse;
				font-size: 12px;
		}
		.drawer_bottom ul {
				margin-bottom: 20px;
				display: flex;
				justify-content: center;
				align-items: center;
		}
		.drawer_bottom li {
				margin: 0 15px;
		}
		.drawer_copy {
				margin-right: 0;
		}
}
@media(max-width: 375px) {
		.drawer_wrap {
				padding: 0px 25px 30px;
		}
		.drawer_inner {
				margin-top: 80px;
		}
		.drawer_inner_right ul li {
				margin-bottom: 17px;
		}
		.dr_menu_en {
				font-size: 20px;
		}
		.dr_menu_jp {
				font-size: 11px;
		}
		.drawer_inner_right_bottom {
				padding-top: 30px;
		}
		.drawer_inner_right_bottom .header_btn {
				margin: 0 auto 12px;
		}
		.drawer_inner_right_bottom .header_btn a {
				height: 44px;
		}
		.drawer_wrap .drawer_bottom {
				font-size: 11px;
		}
		.drawer_bottom ul {
				margin-bottom: 15px;
		}
}
/* ================== */
footer {
		background: #282828;
		color: #969696;
		color: #fff;
		padding: 80px 40px 50px;
}
.footer_inner {
		max-width: 1230px;
		margin: 0 auto 80px;
		display: flex;
		justify-content: space-between;
}
.footer_inner_left {
		width: 350px;
}
.footer_inner_right {}
.footer_logo {
		width: 195px;
		margin: 0 0 20px;
}
.footer_logo img {
		width: 100%;
		height: auto;
}
.footer_address {
		line-height: 1.8;
		font-size: 14px;
		margin: 0 0 20px;
		color: #969696;
}
.footer_customer p {
		font-weight: 500;
}
.footer_tel {
		font-family: "Manrope", sans-serif;
		font-size: 30px;
		font-weight: 700;
		letter-spacing: 0.03em;
		padding-top: 10px;
		line-height: 1;
}
.footer_tel a {
		color: #fff;
		text-decoration: none;
}
.footer_tel span {
		font-size: 90%;
}
.footer_inner_right {
		display: flex;
}
.footer_inner_right_menu {
		list-style: none;
		margin-left: 65px;
}
.footer_inner_right_menu a {
		color: #969696;
		position: relative;
		text-decoration: none;
		transition: color 0.25s;
}
.footer_inner_right_menu li {
		margin: 0 0 20px;
}
.footer_inner_right_btn {
		margin-left: 55px;
}
.footer_inner_right_btn .header_btn, .footer_inner_bottom_btn .header_btn {
		margin-bottom: 18px;
}
.footer_inner_right_btn .header_btn a, .footer_inner_bottom_btn .header_btn a {
		border: 1px solid #fff;
		background: #fff;
		color: #282828;
}
@media (hover: hover) {
		.footer_inner_right_btn .header_btn a:hover, .footer_inner_bottom_btn .header_btn a:hover {
				background: #14b46e !important;
				color: #fff !important;
				border: 1px solid #14b46e !important;
		}
}
.footer_bottom {
		max-width: 1230px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		color: #969696;
}
.footer_bottom a {
		color: #969696;
		text-decoration: none;
		transition: color 0.25s;
}
.footer_copyright {
		font-family: "Manrope", sans-serif;
		font-weight: 400;
		font-size: 12px;
		letter-spacing: 0.5px;
		margin-right: 45px;
}
.footer_bottom_inner_right ul {
		display: flex;
		align-items: center;
		list-style: none;
		font-size: 12px;
}
.footer_bottom_inner_right li {
		margin-right: 35px;
}
.footer_inner_right_menu li a span, .footer_bottom_inner_right li a span {
		display: inline-block;
		position: relative;
}
.footer_inner_right_menu li a span::after, .footer_bottom_inner_right li a span::after {
		content: '';
		display: block;
		position: absolute;
		bottom: -3px;
		left: 0;
		width: 100%;
		height: 1px;
		transform-origin: left center;
		transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		background: #fff;
		transform: scaleX(0);
}
@media (hover: hover) {
		.footer_inner_right_menu li a:hover, .footer_bottom_inner_right li a:hover {
				color: #fff;
		}
		.footer_inner_right_menu li a:hover span::after, .footer_bottom_inner_right li a:hover span::after {
				transform: scaleX(1);
		}
}
/* ================== */
.pagetop {
		position: fixed;
		bottom: 40px;
		right: 40px;
		width: 60px;
		height: 60px;
		z-index: 50;
		box-sizing: border-box;
		cursor: pointer;
		display: none;
}
.pagetop::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 60px;
		height: 60px;
		border: 1px solid #969696;
		box-sizing: border-box;
		border-radius: 50%;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		pointer-events: none;
}
@media (hover: hover) {
		.pagetop:hover::before {
				transform: scale(1.3)
		}
}
.pagetop img {
		width: 100%;
		height: auto;
}
/* ================== */
@media(min-width: 841px) {
		.footer_inner_bottom_btn {
				display: none;
		}
}
@media(max-width: 840px) {
		.drawer_inner_left {
				width: 220px;
				margin-right: 100px;
		}
		.drawer_inner_logo img {
				width: 100%;
				height: auto;
		}
		.drawer_inner_left_bottom .header_btn {
				width: 100%;
		}
		.footer_inner {
				display: block;
		}
		.footer_inner_right {
				margin-top: 50px;
		}
		.footer_inner_right .footer_inner_right_menu:first-child {
				margin-left: 0;
		}
		.footer_inner_right_btn {
				display: none;
		}
		.footer_inner_bottom_btn {
				margin-top: 30px;
		}
}
@media(max-width: 840px) {
		.section_title h2 {
				font-size: 56px;
		}
}
@media(max-width: 767px) {
		.section_title {
				margin-left: 35px;
		}
		.section_title_center .section_title {
				margin-left: 0;
		}
		.section_title h2 {
				font-size: 38px;
				letter-spacing: -1px;
		}
		.section_title h2 span::before {
				top: 10px;
				left: -33px;
		}
		.section_title h2 span::after {
				top: 21px;
				left: -22px;
		}
		.section_title_jp {
				font-size: 16px;
				padding-top: 10px;
				padding-left: 3px;
		}
		footer {
				padding: 80px 20px 50px;
		}
		.footer_bottom {
				display: flex;
				flex-direction: column-reverse;
				align-items: flex-start;
		}
		.footer_bottom_inner_right {
				display: block;
				margin: 0 0 15px;
		}
		.footer_bottom_inner_right ul {
				display: flex;
				align-items: center;
				font-size: 12px;
		}
		.pagetop {
				bottom: 30px;
				right: 20px;
				width: 44px;
				height: 44px;
		}
		.pagetop::before {
				width: 44px;
				height: 44px;
		}
		.footer_copyright {
				font-size: 10px;
		}
}
/* ================== */
.anchor {
		position: relative;
		pointer-events: none;
		z-index: -1;
		margin-top: -100px;
		padding-top: 100px;
}
/* ================== */
@media(min-width: 768px) {
		.mobilebr {
				display: none;
		}
}
/* ================== */
.fadeInNml {
		opacity: 0;
		transition: opacity 0.4s linear;
}
.fadeInNmlActive {
		opacity: 1;
}
/* ================== */
* {
		scrollbar-width: thin;
		scrollbar-color: #14b46e #ededed;
}
/* スクロールバーのトラック */
*::-webkit-scrollbar-track {
		background-color: #ededed;
}
/* スクロールバーのサム（つまみ） */
*::-webkit-scrollbar-thumb {
		background-color: #14b46e;
		scrollbar-thumb-border-radius: 20px;
}
::-webkit-scrollbar {
		width: 8px;
}
::-webkit-scrollbar-track {
		background-color: #fff;
}
::-webkit-scrollbar-thumb {
		background-color: #14b46e;
		border-radius: 20px;
}
::selection {
		background: #14b46e !important;
		-webkit-background-clip: inherit;
		-webkit-text-fill-color: #fff;
		color: #fff;
}
::-moz-selection {
		background: #14b46e;
}