@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500..700&family=Noto+Sans+JP:wght@400..700&family=Roboto:wght@400..700&display=swap');
* {
		margin: 0;
		padding: 0;
}
html {
		overflow-y: scroll;
}
table {
		border-collapse: collapse;
}
img {
		border: none;
		vertical-align: top;
}
.clear {
		clear: both;
}
body {
		color: #303030;
		background-color: #fff;
		font-size: 16px;
		font-family: "Roboto", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 1;
		-webkit-text-size-adjust: 100%;
		-webkit-font-smoothing: antialiased;
}
body.bodyLock, html.bodyLock {
		overflow: hidden
}
@media(max-width: 767px) {
		body {
				font-size: 15px;
		}
}
h1, h2, h3, h4, h5, h6 {
		font-weight: normal;
}
h1, h2, h3, h4, h5, p, li, dt, dd {
		font-feature-settings: "palt";
		letter-spacing: 0.05em;
}
.page_shell {
		overflow-x: clip;
}
/* =============== */
header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 85px;
		background: #fff;
		z-index: 5000;
		box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.05);
		display: flex;
		align-items: center;
}
.nav_header {
		height: 100px;
		display: flex;
		align-items: center;
}
main {
		margin-top: 84px;
}
.header_inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 30px;
		box-sizing: border-box;
		width: 100%;
}
.header_logo {
		width: 339px;
}
.header_logo img {
		width: 100%;
		height: auto;
}
header nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
}
header nav ul {
		display: flex;
		align-items: center;
		list-style: none
}
header nav ul li {
		font-size: 15px;
		margin-right: 30px;
		font-weight: 500;
}
header nav ul li a {
		color: #303030;
		text-decoration: none;
}
.header_btn_gr {
		width: 350px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		overflow: hidden;
		border-radius: 60px;
}
.header_btn_gr::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: calc(50% - 1px);
		width: 2px;
		height: 100%;
		background-repeat: no-repeat;
		background-position: 0 center;
		background-size: 2px;
		background-image: url("../images/header_btn_dot.png");
		pointer-events: none;
		z-index: 2
}
.header_btn {
		width: 50%;
		font-size: 15px;
		font-weight: 500;
}
.header_btn a {
		height: 48px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		text-decoration: none;
		overflow: hidden;
		position: relative;
		box-sizing: border-box
}
.header_btn_gr .header_btn:first-child a {
		border-radius: 60px 0 0 60px;
}
.header_btn_gr .header_btn:last-child a {
		border-radius: 0 60px 60px 0;
}
.header_btn a span {
		position: relative;
		z-index: 1;
		padding-right: 25px;
		left: -2px;
		transform: translateY(1px)
}
.header_btn a span.blankLink::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 8px);
		right: 0;
		width: 16px;
		height: 16px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 16px;
		background-image: url("../images/icon_blanklink_wht.png")
}
.header_btn a span.toMail::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 9px);
		right: 0;
		width: 18px;
		height: 18px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 18px;
		background-image: url("../images/icon_mail_wht.png")
}
.header_btn a::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(180deg, #0075cf 0%, #00599e 100%);
		transition: opacity 0.4s;
		z-index: 0
}
@media (hover: hover) {
		header nav ul li a:hover {
				color: #0168B7;
		}
		.header_btn a:hover {
				color: #0168B7;
		}
		.header_btn a:hover::before {
				opacity: 0.1
		}
		.header_btn a:hover span.blankLink::after {
				background-image: url("../images/icon_blanklink_blu.png")
		}
		.header_btn a:hover span.toMail::after {
				background-image: url("../images/icon_mail_blu.png")
		}
}
@media(max-width: 1400px) {
		header nav ul li {
				margin-right: 20px;
				font-size: 15px;
		}
		.header_btn {
				font-size: 15px;
		}
		.header_btn_gr {
				width: 300px;
		}
}
@media(max-width: 1300px) {
		.header_inner {
				padding: 0 20px;
		}
		.header_logo {
				width: 270px;
		}
}
@media(max-width: 1200px) {
		header nav ul li {
				margin-right: 15px;
				font-size: 14px;
		}
		.header_btn_gr {
				width: 270px;
		}
		.header_btn {
				font-size: 14px;
		}
		.header_btn a {
				height: 40px
		}
		.header_btn a span {
				padding-right: 18px;
				left: 0px;
		}
		.header_btn a span.blankLink::after {
				top: calc(50% - 7px);
				width: 12px;
				height: 12px;
				background-size: 12px;
		}
		.header_btn a span.toMail::after {
				top: calc(50% - 8px);
				width: 14px;
				height: 14px;
				background-size: 14px;
		}
}
@media(max-width: 1100px) {
		header {
				height: 80px
		}
		.nav_header {
				height: 80px;
		}
		.header_logo {
				width: 270px;
		}
		header nav {
				display: none
		}
		main {
				margin-top: 79px;
		}
}
@media(max-width: 767px) {
		header {
				height: 60px;
		}
		.nav_header {
				height: 60px;
		}
		header.isOff {
				box-shadow: none;
		}
		.header_logo {
				width: 230px;
		}
		.nav_header .header_logo {
				position: relative;
				top: -1px
		}
		main {
				margin-top: 59px;
		}
}
/* =============== */
footer {
		position: relative;
		z-index: 1
}
.footer_upper {
		color: #fff;
		background: #163044;
		padding: 80px 120px 120px;
		display: flex;
		justify-content: space-between;
		position: relative;
}
.footer_upper .pagetop {
		position: absolute;
		right: 60px;
		bottom: 60px;
		z-index: 5;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
}
.pagetop span {
		padding-right: 20px;
		position: relative;
}
.pagetop span::before {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 8px);
		right: 0;
		width: 8px;
		height: 16px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		background-image: url("../images/pagetop_arw.png")
}
.footer_upper_left {
		width: 410px;
}
.footer_logo {
		width: 455px;
		margin: 0 0 60px;
}
.footer_logo img {
		width: 100%;
		height: auto;
}
.footer_upper_right {
		display: flex;
}
.footer_upper_col_gr {
		display: flex;
}
.footer_upper a {
		color: #fff;
		text-decoration: none;
}
.footer_upper_right li {
		list-style: none;
		font-size: 14px;
}
.footer_upper_col {
		margin-left: 70px;
}
.footerSpacer {
		display: none;
}
@media (min-width: 768px) and (max-width: 1440px) {
		.footerSpacer {
				display: block;
				width: 100px;
		}
}
.footer_upper_col_gr .footer_upper_col:last-child {
		margin-right: 0;
}
.footer_upper_col ul:not(.sns) li {
		margin: 0 0 20px;
}
.footer_upper_col ul:not(.sns) {
		margin-left: 1em;
}
.footer_upper_col ul.dot li {
		position: relative;
}
.footer_upper_col ul.dot li::before {
		content: '';
		display: block;
		position: absolute;
		width: 4px;
		height: 4px;
		background: #61A5D9;
		top: 4px;
		left: -1em;
}
.footer_upper_col ul.none {
		margin-top: 40px;
}
.footer_upper_col li ul.none {
		margin-left: 0 !important;
}
.footer_upper_col ul.none li {
		margin-left: 0 !important;
}
.footer_upper_col ul.none li::before {
		display: none !important
}
.footer_upper_col li a span.blankLink {
		position: relative;
		padding-right: 27px;
}
.footer_upper_col li a span.blankLink::before {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 9px);
		right: 0;
		width: 16px;
		height: 16px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 16px;
		background-image: url("../images/icon_blanklink_wht.png")
}
.footer_upper_col p {
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		font-size: 15px;
		margin: 0 0 25px
}
.footer_upper_col .sns {
		display: flex;
		align-items: center;
}
.footer_upper_col .sns li {
		width: 30px;
		margin-right: 25px;
}
.footer_upper_col .sns li img {
		width: 100%;
		height: auto;
}
.footer_upper_col .sns li:last-child {
		margin-right: 0;
}
.footer_bottom {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #fff;
		padding: 20px 60px;
}
.footer_bottom_right {
		display: flex;
		align-items: center;
}
.footer_bottom_right p {
		font-size: 13px;
		line-height: 1.8;
		margin-right: 20px;
}
.copyright {
		letter-spacing: 0.02em;
		font-size: 13px;
}
.footer_mark {
		width: 155px;
}
.footer_mark img {
		width: 100%;
		height: auto;
}
@media(max-width: 960px) {
		.footer_bottom {
				padding: 10px 30px;
		}
}
@media(max-width: 1440px) {
		.footer_upper {
				padding: 80px 60px;
		}
		.footer_upper_col {
				margin-left: 50px;
		}
}
@media(max-width: 1200px) {
		.footer_upper {
				padding: 60px 60px 100px;
		}
		.footer_upper_left {
				width: 350px;
		}
		.footer_logo {
				width: 280px;
				margin: 0 0 40px;
		}
}
@media(min-width: 961px) {
		.footer_sns .none {
				display: none
		}
}
@media(max-width: 1023px) {
		.footer_logo {
				width: 280px;
				margin: 0 0 40px;
		}
		.footer_upper_left {
				width: 280px;
		}
		.footer_upper {
				padding: 60px 30px;
		}
		.footer_upper .pagetop {
				right: 30px
		}
		.footer_upper_right {
				display: block;
		}
		.footer_upper_col {
				margin: 0 0 40px
		}
		.footer_upper_col_gr .footer_upper_col {
				margin-right: 50px;
		}
}
@media(max-width: 640px) {
		.footer_upper {
				padding: 45px 25px;
				display: block;
		}
		.footer_upper .pagetop {
				position: static;
				right: inherit;
				bottom: inherit;
				text-align: center;
				padding-top: 10px;
		}
		.footer_upper_left {
				width: 100%;
		}
		.footer_logo {
				width: 260px;
				margin: 0 0 40px;
		}
		.footer_upper_left .linkBtn {
				display: none
		}
		.footer_upper_col ul.none {
				margin-top: 20px;
		}
		.footer_upper_col ul.none li {
				font-size: 13px;
		}
		.footer_upper_col p {
				font-size: 15px;
				text-align: center;
				margin: 0 0 20px;
		}
		.footer_upper_col .sns {
				display: flex;
				align-items: center;
				justify-content: center
		}
		.footer_upper_col.footer_sns {
				padding-top: 40px;
				border-top: 1px dotted #fff;
				margin-bottom: 0;
		}
		.footer_bottom {
				padding: 15px;
				display: flex;
				flex-direction: column-reverse;
				justify-content: flex-start;
		}
		.footer_bottom_right p {
				font-size: 12px;
				line-height: 1.6;
				margin-right: 15px;
		}
		.footer_mark {
				width: 130px;
		}
		.footer_bottom_right p br {
				display: none
		}
		.footer_bottom_right {
				margin-bottom: 20px;
		}
		.footer_bottom_left {
				margin: 0 auto;
				padding: 25px 0 5px;
				border-top: 1px dotted #8E8E8E;
				width: calc(100% - 30px);
		}
		.copyright {
				font-size: 11px;
				text-align: center;
		}
}
/* ================ */
@media(min-width: 1101px) {
		.sp_nav {
				display: none;
		}
		.navBoard {
				display: none !important;
		}
}
.sp_nav, .sp_nav_trigger, .sp_nav_trigger::after {
		width: 80px;
		height: 80px
}
.sp_nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 7000;
		background: linear-gradient(180deg, #0075cf 0%, #00599e 100%);
}
.sp_nav_trigger {
		background: none;
		border: none;
		cursor: pointer;
		display: inline-block;
		position: relative;
}
.sp_nav_trigger.navOpen::after {
		background: #0168B7;
}
.sp_nav_trigger .sp_nav_trigger_bar {
		display: block;
		position: absolute;
		top: 39px;
		left: 25px;
		height: 2px;
		width: 30px;
		background: #fff;
		z-index: 2;
}
.sp_nav_trigger .sp_nav_trigger_bar:first-child, .sp_nav_trigger .sp_nav_trigger_bar:nth-child(2), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(3) {
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}
.sp_nav_trigger .sp_nav_trigger_bar:first-child {
		top: 30px;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(2), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(4), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(5) {
		top: 39px;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(3) {
		top: 48px;
		width: 15px;
}
@media(max-width: 767px) {
		.sp_nav, .sp_nav_trigger, .sp_nav_trigger::after {
				width: 60px;
				height: 60px
		}
		.sp_nav {
				top: 0;
				right: 0;
		}
		.sp_nav_trigger .sp_nav_trigger_bar {
				top: 39px;
				left: 17px;
				height: 2px;
				width: 26px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:first-child {
				top: 21px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(2), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(4), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(5) {
				top: 29px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(3) {
				top: 37px;
				width: 13px;
		}
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(4) {
		transform: rotate(45deg);
		background: none;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(5) {
		transform: rotate(-45deg);
		background: none;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(4)::before, .sp_nav_trigger .sp_nav_trigger_bar:nth-child(5)::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: #fff;
		transform: scaleX(0);
		transform-origin: right center;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(4)::before {
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(5)::before {
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:first-child {
		transform: translateY(7px) scaleX(0);
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(2) {
		opacity: 0;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(3) {
		transform: translateY(-7px) scaleX(0);
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(4)::before, .sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(5)::before {
		transform: scaleX(1);
}
.navBoard {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 6000;
		display: none;
		background: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(10px) saturate(1.2);
		-webkit-backdrop-filter: blur(10px) saturate(1.2);
}
.navBoard_inner {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 50vh;
}
.navBoard_inner_menu li {
		list-style: none;
		text-align: left;
		font-size: 18px;
		font-weight: 600;
		position: relative;
		margin: 0 0 30px;
		margin-left: 1em;
}
@media(min-width: 768px) {
		.navBoard_inner_menu li ul {
				display: none
		}
}
.navBoard_inner_menu li::before {
		content: '';
		display: block;
		position: absolute;
		width: 6px;
		height: 6px;
		background: #61A5D9;
		top: 6px;
		left: -1em;
}
.navBoard_inner_menu li li::before {
		display: none
}
.navBoard_inner_menu li a {
		text-decoration: none;
		color: #303030;
		display: inline-block;
}
.navBoard_wrap {
		display: flex;
		justify-content: space-between;
}
.navBoard_menu_flex {
		display: flex;
		justify-content: space-between;
		width: 280px;
}
.navBoard_btn_gr {
		width: 210px;
		margin-left: 60px;
}
@media(max-width: 767px) {
		.navBoard_btn_gr {
				margin: 30px 0 50px;
				padding: 0 40px;
		}
}
.navBoard_btn {
		font-size: 16px;
}
.navBoard_btn a {
		height: 55px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		text-decoration: none;
		overflow: hidden;
		position: relative;
		box-sizing: border-box;
		border-radius: 60px;
}
.navBoard_btn a span {
		position: relative;
		z-index: 1;
		padding-right: 25px;
		left: -2px;
		transform: translateY(1px)
}
.navBoard_btn a span.blankLink::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 8px);
		right: 0;
		width: 16px;
		height: 16px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 16px;
		background-image: url("../images/icon_blanklink_wht.png")
}
.navBoard_btn a::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(180deg, #0075cf 0%, #00599e 100%);
		transition: opacity 0.4s;
		z-index: 0
}
@media (hover: hover) {
		.navBoard_inner_menu li a:hover {
				color: #0168B7;
		}
		.navBoard_btn a:hover {
				color: #0168B7;
		}
		.navBoard_btn a:hover::before {
				opacity: 0.1
		}
		.navBoard_btn a:hover span.blankLink::after {
				background-image: url("../images/icon_blanklink_blu.png")
		}
}
.navBoard_inner .sns {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 30px;
		list-style: none
}
.navBoard_inner .sns li {
		margin: 0 12px;
		width: 30px;
}
.navBoard_inner .sns li img {
		width: 30px;
		height: auto;
}
@media(min-width: 768px) {
		.sub_parent, .sub_cont {
				display: none
		}
}
@media(max-width: 767px) {
		.pc_link {
				display: none !important
		}
		.navBoard {
				height: 100vh;
				height: 100dvh;
				border-top: 1px solid #fff;
		}
		.navBoard_inner {
				height: calc(100vh - 100px);
				height: calc(100dvh - 100px);
				overflow: auto;
				display: block;
				box-sizing: border-box;
				position: relative;
		}
		.navBoard_wrap {
				display: block
		}
		.navBoard_menu_flex {
				display: block;
				width: auto;
				padding: 0;
		}
		.navBoard_inner_menu li {
				margin: 0;
				font-size: 16px;
				font-weight: 500;
				border-bottom: 1px solid #DCE5EE;
		}
		.navBoard_inner_menu li a {
				display: block;
				padding: 18px 35px 15px;
				position: relative;
		}
		.navBoard_inner_menu li a::after {
				content: '';
				display: block;
				position: absolute;
				top: calc(50% - 5px);
				right: 35px;
				width: 16px;
				height: 10px;
				background-repeat: no-repeat;
				background-position: 0 0;
				background-size: 16px;
				background-image: url("../images/icon_arw_right_s.png")
		}
		.navBoard_inner_menu li li a::after {
				display: none
		}
		.sub_parent > span {
				display: block;
				padding: 18px 35px 15px;
				cursor: pointer;
				position: relative;
		}
		.sub_parent > span::before, .sub_parent > span::after {
				content: '';
				display: block;
				position: absolute;
				top: 50%;
				right: 35px;
				width: 14px;
				height: 2px;
				background: #0168B7;
				transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		}
		.sub_parent > span::before {
				transform: rotate(90deg);
		}
		.sub_parent.isOpen > span::before {
				transform: rotate(180deg);
		}
		.sub_parent.isOpen > span::after {
				opacity: 0
		}
		.navBoard_inner_menu li::before {
				display: none
		}
		.navBoard_inner_menu li ul {
				padding-top: 10px;
				padding-bottom: 15px;
				padding-left: 35px;
		}
		.navBoard_inner_menu li li {
				margin-left: 0;
				margin: 0 0 15px;
				font-weight: 500;
				font-size: 15px;
				border: none;
		}
		.navBoard_inner_menu li li a {
				position: relative;
				padding: 5px 0;
				padding-left: 13px;
		}
		.navBoard_inner_menu li li a::before {
				content: '';
				display: block;
				position: absolute;
				width: 6px;
				height: 6px;
				background: #91B5D0;
				top: calc(50% - 3px);
				left: 0em;
		}
		.sub_cont {
				transition: height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.sub_cont.isClose {
				height: 0;
				overflow: hidden;
		}
		.sub_cont.isOpen {
				height: auto;
				overflow: visible;
		}
		.navBoard_inner .navBoard_btn_gr {
				margin: 40px 0 50px;
				padding: 0 20px;
				display: flex;
				justify-content: center;
				left: 0;
				width: 100%;
				box-sizing: border-box;
		}
		.navBoard_btn {
				width: 100%;
				font-size: 16px;
				font-weight: 500;
		}
		.navBoard_btn a {
				height: 56px
		}
		.navBoard_inner .sns {
				margin: 0;
				padding: 0;
				display: flex;
				justify-content: center;
				width: 100%;
				padding-bottom: 60px;
		}
}
/* =============== */
.bread_path {
		max-width: 1300px;
		margin: 0 auto;
		padding: 30px 30px 0;
		display: flex;
		justify-content: flex-end;
}
.bread_path ol {
		list-style: none;
		font-size: 14px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		color: #707070;
}
.bread_path ol li a {
		color: #0168B7;
		text-decoration: underline;
}
@media (hover: hover) {
		.bread_path ol li a:hover {
				color: #0168B7;
				text-decoration: none;
		}
}
.bread_path ol li {
		margin-right: 25px;
		position: relative;
}
.bread_path ol li::after {
		content: '/';
		display: block;
		position: absolute;
		top: 0;
		right: -18px;
}
.bread_path ol li:last-child {
		margin-right: 0;
}
.bread_path ol li:last-child::after {
		display: none
}
@media(max-width: 767px) {
		.bread_path {
				padding: 20px 20px 0;
		}
		.bread_path ol {
				font-size: 12px;
		}
		.bread_path ol li {
				margin-right: 20px;
				position: relative;
				margin-bottom: 10px;
		}
		.bread_path ol li::after {
				right: -13px;
		}
}
/* ==================== */
/* ==================== */ ::selection {
		background: #ccc;
		color: #0168B7;
}
::-moz-selection {
		background: #ccc;
		color: #0168B7;
}
::-webkit-scrollbar {
		width: 10px;
		height: 10px;
}
::-webkit-scrollbar-track {
		background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
		background-color: #0168B7;
}