ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  width: 900px;
  margin: 0px auto
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 14px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li.home{
  	background-image: url(../img/home_icon.svg);
	background-position: center left;
	background-size: contain;
	background-repeat: no-repeat;
	padding-left: 20px;
	background-size: 12px 15px;
}
ul.breadcrumb li.home a,ul.breadcrumb li.active a{
	color: #005dae;
	font-weight: bold;
}
ul.breadcrumb li.active{
  	background-image: url(../img/arrow.png);
	background-position: center left;
	background-size: 10px;
	background-repeat: no-repeat;
	padding-left: 20px;
    margin-left: 10px;
    /* color: #0275d8;*/
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline!important;
}
#contents{
	position: relative;
}
.inner{
	width: 980px;
	margin: 0px auto
}
.inline{
	display: inline-block;
}
.link_inline{
	text-decoration: underline;
}
header{
	padding: 10px;
	background-color: #fff;
	border-radius: 5px;
	margin: 0px auto;
	display: flex;
	align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 980px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
.pagination{
	text-align: center;
	height: 50px;
	margin-top: 55px
}
.pagination .page,.pagination .pages{
	padding: 5px 10px;
	border:1px solid #ccc;
	margin: 0px 2px
}
.nodata{
	text-align: center;
	padding: 15px
}
.pagination .current{
	padding: 5px 10px;
	border:1px solid #58aaed;
	color: #fff;
	background-color: #58aaed;
	margin: 0px 2px
}
.pagination .nextpostslink,.pagination .previouspostslink{
	padding: 5px 10px;
	border:1px solid #ccc;
	margin: 0px 2px
}
#gNavFix{
	width: 100%;
	position: fixed !important;
	top: -90px;
	left: 0;
	-webkit-transition: 0.7s ease-in-out;
	-moz-transition: 0.7s ease-in-out;
	-o-transition: 0.7s ease-in-out;
	transition: 0.7s ease-in-out;
	z-index: 1000;
}
.fixmenu{
	padding: 5px;
	width: 980px;
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
#gNavFix.in{
	position: fixed;
	top: 0;
}
#gNavFix{
	height: 65px;
	background: #fff;
	position: relative;
}
.mobile_menu {
	max-width: 100%;
    padding: 0;
	height: 55px;
    margin: 0 auto;
    position: fixed;
    z-index: 1;
    z-index: 9998;
    transition: 0.3s ease;
    right: 0px;
    top: 0px
}
.mobile_menu .logo{
	padding-left: 10px
}
.mobile_menu .logo img{
	max-width: 100%;
	padding: 10px
}
/* ---------------------- SPメニューのボタン ---- */
#menu {
  list-style-type: none;
  position: absolute;
  top: 0px;
  right:0px;
  transition:right 0.5s ease;
  width: 320px;
  height: 100vh;
  background-color: rgba(35, 35, 35, 1);
  color: #fff;
  padding: 10px 0px;
  transition:top 0.5s ease;
  visibility: hidden;
  padding-top: 55px
}
#menu li{
	padding: 5px 15px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
#menu li:hover{
	background-color: #1f5ab2
}
#menu li a{
	color: #fff;
	font-size: 13px;
	font-weight: normal;
	display: block;
	padding: 10px 0px
}
.spnav__btn--active #menu{
	right: 0px;
	transition:top 0.5s ease;
	visibility: visible;
}
.spnav__txt {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #fff;
    font-weight: bold;
}
#spnav__btn {
	position: relative;
	width: 110px;
	height: 55px;
	background: #1f5ab2;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.6s ease;
	cursor: pointer;
	z-index: 999;
	border:0px solid;
}
.spnav-wrp {
	width: 20px;
	height: 18px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	margin-right: 10px;
}
[class*='spnav-line--'] {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #fff;
	transition: all 0.6s ease;
}
.spnav-line--01 {
	animation: menubar01 0.75s forwards;
}
/* prettier-ignore */
@keyframes menubar01 {
	0% {transform: translateY(8px) rotate(45deg);}
	50% {transform: translateY(8px) rotate(0);}
	100% {transform: translateY(0) rotate(0);}
}
.spnav-line--02 {
	transition: all 0.25s 0.25s;
	opacity: 1;
}
.spnav-line--03 {
	animation: menubar02 0.75s forwards;
}
/* prettier-ignore */
@keyframes menubar02 {
	0% {transform: translateY(-8px) rotate(-45deg);}
	50% {transform: translateY(-8px) rotate(0);}
	100% {transform: translateY(0) rotate(0);}
}
/* ---------------------- active ---- */
.spnav__btn--active .spnav-line--01 {
	animation: activemenubar 0.75s forwards;
}
/* prettier-ignore */
@keyframes activemenubar {
	0% {transform: translateY(0) rotate(0);}
	50% {transform: translateY(0) rotate(0);}
	100% {transform: translateY(8px) rotate(45deg);}
}
.spnav__btn--active .spnav-line--02 {
	opacity: 0;
}
.spnav__btn--active .spnav-line--03 {
	animation: menuactive 0.75s forwards;
}
/* prettier-ignore */
@keyframes menuactive {
	0% {transform: translateY(0) rotate(0);}
	50% {transform: translateY(0) rotate(0);}
	100% {transform: translateY(-8px) rotate(-45deg);}
}
.overlay {
    position: relative;
}
.overlay:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: #3775c3;
    opacity: 0.3;
    z-index: 99;
}
.logo{
	display: flex;
    align-items: center;
}
.logo img{
	width: auto;
	height: 55px;
}
#gNav nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#gNav ul{
	display: flex;
}
#gNav ul li{
	display: inline-block;
	width: 125px;
	border-right: 1px dashed #005DAE;
	position: relative;
}
#gNav ul li:last-child{
	width: 185px;
}
#gNav ul li .line{
	display: none;
}
#gNav ul li:hover .line,#gNav ul li.active .line{
	border-bottom: 3px solid #ffa41b;
	display: block;
	width: 100%;
	position: absolute;
	bottom: -18px;
	left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-right: 5px
}
.is-hidden[style] {
  display: none !important;
}
#gNavFix #gNav ul li:hover .line,#gNavFix ul li.active .line{
	bottom: -12px;
}
#gNav ul li:last-child{
	border-right: 0px solid
}
#gNav ul li span{
	display: block;
	text-align: center;
	color: #005DAE
}
#gNav ul li span.name_en{
	font-size: 12px;
	line-height: 15px
}
.main{
	position: relative;
	z-index: 1;
}
.main .main_txt{
	position: absolute;
	top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 999;
    width: 100%
}
.main_txt h2{
	font-size: 30px;
	color: #fff;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: bold;
	text-align: center;
	line-height: 50px
}
.main_txt p{
	text-align: center;
	color: #fff;
	font-size: 18px
}
.bxslider {
  width: 100%;  
}
.bx-wrapper img {
    margin: 0 auto;
}
.bx-wrapper {
    min-height: auto; 
}
.bx-wrapper img {
  width: 100%;
}
.bx-controls {
    display: none;
}
.works{
	padding: 50px 0px;
	background-color: #f0f0f0;
	position: relative;
	z-index: 2
}
.works_box{
	margin: -90px auto 0px;
    background-color: #fff;
    width: 980px;
    padding: 50px
}
.title_box{
	text-align: center;
}
.title_box .title_ja{
	font-size: 18px;
	color: #324b6e;
	font-weight: bold;
	font-family: noto-sans-cjk-jp, sans-serif;
}
.title_box .title_en{
	font-size: 13px;
	color: #324b6e;
	
}
.title_box .line{
	border-bottom: 1px solid #324b6e;
	width: 65px;
	height: 5px;
	display: block;
	margin: 0px auto;
}
.desc_txt{
	text-align: center;
	padding: 25px 0px
}
.desc_txt p{
	font-size: 16px;
	font-family: noto-sans-cjk-jp, sans-serif;
	line-height: 35px;
	color: #324b6e;
}
.pc_br{
	display: block;
}
.list_works{
	display: inline-block;
	text-align: center;
}
.list_works li{
	width: 230px;
	height: 155px;
	background-color: #f0f0f0;
	margin: 25px;
	display: inline-block;
	vertical-align: top;
}
.list_works li a{
	display: flex;
	width: 230px;
	height: 155px;
	padding: 20px;
	align-items: center;
    justify-content: space-between;
    position: relative;
}
a.link{
	color: #58aaed
}
a.link:hover{
	color: #ffa41b
}
.list_works li a.more_link{
	margin: 0px auto;
	padding: 15px 0px
}
.list_works li a.more_link img{
	width: 100%;
}
.list_works li a:before, .list_works li a:after {
    position: absolute;
    content: '';
    width: 4px;
    height: 10px;
    background: #f0f0f0;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
.list_works li a:before {
    top: 0;
    right: 0;
}
.list_works li a:after {
    bottom: 0;
    left: 0;
}
.list_works li a .line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
}
.list_works li a .line:before, .list_works li a .line:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 4px;
    background: #f0f0f0;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
.list_works li a:hover {
    background: #f3ecec;
}
.list_works li a .line:before {
    top: 0;
    right: 0;
}
.list_works li a .line:after {
    bottom: 0;
    left: 0;
}
.list_works li a:hover:after, .list_works li a:hover:before {
    height: 30px;
    background: #ffa41b;
}
.list_works li a:hover .line:before, .list_works li a:hover .line:after {
    width: 30px;
    background: #ffa41b;
}
.list_works li a .img_box{
	height: 125px;
	display: inline-block;
}
.list_works li a img{
	width: 75px;
	padding: 20px 0px
}
.list_works li a .desc_box{
	display: inline-block;
	width: 110px;
	text-align: right;
}
.list_works li a .desc_box p{
	color: #324b6e;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-size: 16px;
	font-weight: bold;
	line-height: 10px
}
.list_works li a .desc_box span{
	color: #324b6e;
	font-family: 'Roboto',sans-serif;
	font-size: 12px;
}
.news{
	padding: 50px 0px;
	background-color: #fff;
}
.news .inner{
	display: flex;
    justify-content: space-between;
}
.news .inner .news_box{
	width: 100%;
}
.news_box_title{
	display: flex;
	padding: 10px 0px;
	align-items: center;
}
.news_box_title h3{
	font-size: 18px;
	color: #324b6e;
	width: 150px
}
.news_box_title span{
	font-size: 13px;
	color: #324b6e;
	width: 100px
}
.news_box_title .news_more{
	width: 200px;
	text-align: right;
}
.news_box_left .news_box_title h3{
	width: 100px
}
.news_box_left .news_box_title span{
	width: 150px
}
.news_box_left .news_box_title .news_more{
	width: 730px
}
.news_box ul{
	border-top:2px solid #324b6e;;
}
.news_box ul li{
	border-bottom: 1px dashed #324b6e;
	padding: 15px 0px;
	background-image: url(../img/arrow.png);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 10px;
}
.news_date{
	background-image: url(../img/news/time-icon.svg);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 13px;
	font-size: 13px;
	color: #324b6e;
	font-weight: 500;
	padding-left: 15px;
	font-weight: 600
}
.news_type{
	margin: 0px 25px;
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 13px;
	font-size: 13px;
	padding-left: 15px;
	display: inline-block;
	min-width: 65px
}
.oshirase{
	color: #1eb46e;
	background-image: url(../img/news/folder_info.svg);
}
.saiyou{
	color: #006edc;
	background-image: url(../img/news/folder_recruit.svg);
}
.ibento{
	color: #c82832;
	background-image: url(../img/news/folder_event.svg);
}
.ririsu{
	color: #f0b400;
	background-image: url(../img/news/folder_release.svg);
}
.news_box ul li:last-child{
	border-bottom: 0px solid
}
.news_box ul li:hover a .news_title{
	/*background-color: #f3ecec*/
	color: #58aaed;
}
.news_box ul li .news_title{
	color: #324b6e;
	display: inline-block;
}
.news_box ul li{
	display: flex;
}
.news_box ul li a:hover p,
.list_recruit li a:hover{
	text-decoration: underline!important;
}

.news_box ul li .infor{
	display: flex;
    align-items: center;
    justify-content: center;
}
.fix_content .news_box ul li a{
	width: 70%;
}
.news_box ul li a{
	display: inline-block;
	width: 75%;
}

.mainpage{
	background-repeat: no-repeat;
	background-position: center;
	height: 250px;
	background-size: cover;
}
.mainAbout{
	background-image: url(../img/page/about-header_pc.png);
}
.mainService{
	background-image: url(../img/page/services-header_pc.png);
}
.mainContact{
	background-image: url(../img/page/contact-header_pc.png);
}
.mainPrivacy{
	background-image: url(../img/page/privacy-header_pc.png);
}
.mainRecruit{
	background-image: url(../img/page/recruit-header_pc.png);
}
.mainNews{
	background-image: url(../img/page/news-header_pc.png);
}
.mainpage .page_img{
	background-repeat: no-repeat;
	background-position: center;
	height: 110px;
}
.mainpage .page_img img{
	width: 100%
}
.mainCompany .page_title{
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.mainService .page_title{
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.mainNews .page_title{
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.mainRecruit .page_title{
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.mainPrivacy .page_title{
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.mainpage .page_title{
	padding: 25px 0px;
	height: 145px;
	margin-top: -35px
}
.mainpage .page_title h1{
	text-align: center;
	font-size: 22px;
	margin-top: 25px;
	color: #fff;
	font-weight: 600;
	line-height: 35px
}
.mainpage .page_title p{
	text-align: center;
	font-size: 14px;
	color: #fff;
}
.page_content{
	background-color: #fff;
	padding: 50px 0px;
	min-height: 500px
}
.tab{
	text-align: center;
	margin-bottom: 25px
}
.tab li{
	display: inline-block;
	background-color: #324b6e;
	width: 120px;
	margin: 0px 5px;
	color: #fff
}
.tab li a{
	display: block;
	height: 45px;
	width: 100%;
	line-height: 45px;
	font-size: 13px
}
.tab li a:hover,.tab li a.active{
	background-color: #ffa41b
}
.fix_content{
    width: 820px;
    margin: 0px auto;
}
.free_content{
    width: 100%;
    margin: 0px auto;
}
.tabcontent {
    display: none;
}
.space{
	margin-left: 12px
}
.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}
.tab_data{
	width: 650px;
	margin: 0px auto
}
.tab_data .service_content{
	margin-top: 25px
}
.tab_data .service_content p{
	margin: 0px;
}
.tab_data .service_content h4{
	margin-top: 25px;
	color: #fff;
	padding: 10px;
	font-weight: normal;
}
h4.title{
	background-color: #1396c7;
	margin-top: 25px;
    color: #fff;
    padding: 10px;
    font-weight: normal;
}
h4.color1{
	background-color: #1396c7
}
h4.color2{
	background-color: #d0431e
}
h4.color3{
	background-color: #d0b21e
}
.tab_data h4{
	font-weight: bold;
	font-size: 16px
}
.tab_data p {
    line-height: 35px;
    margin: 25px 0px
}
.sign{
	margin-top: 45px
}
.sign p{
	text-align: right;
	margin: 0px
}
table.tbl_data{
	width: 650px;
	margin: 0px auto
}
table.tbl_data tr{
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	min-height: 55px
}
table.tbl_data tr.no_boder_top{
	border-top: 0px solid #ccc;
}
table.tbl_data tr td{
	padding: 10px
}
table.tbl_data tr td a.link{
	display: block;
	text-decoration: underline;
}
table.tbl_data tr td.row_title{
	width: 200px;
	vertical-align: middle;
	font-weight: bold;
}
table.tbl_data tr td.table_title h3{
	font-size: 18px;
	color: #ffa41b;
}
.thutdaudong{
	margin: 10px 0px;
	padding-left: 25px
}
.thutdaudong li{
	padding: 10px 0px
}
.line_space{
	width: 100%;
	height: 45px
}
.line_space_low{
	width: 100%;
	height: 25px
}
.bold{
	font-weight: bold;
}

.absolute_box{
	position: absolute;
}
.absolute_box img{
	width: 250px
}
.tab1_content{
	text-align: center;
	margin-bottom: 150px
}
.tab1_content h3{
	font-size: 55px;
	color: #5daced;
	line-height: 100px;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}
.tab1_content p.title_desc{
	color: #5daced;
	font-size: 22px
}
.tab1_content .block{
	text-align: center;
	margin: 25px auto;
	position: relative;
	width: 800px
}
.tab1_content .block p{
	line-height: 35px
}
.tab1_content .specil_block{
	margin: 35px auto;
}
.tab1_content .specil_block p{
	line-height: 30px;
	font-size: 22px;
	line-height: 35px;
	color:#324b6e;
}
.block1 .absolute_box{
	top:-50px;
	left: -150px
}
.block2 .absolute_box{
	top: -5px;
	right: -155px;
}
.block3 .absolute_box{
	top: 35px;
    left: -125px;
}
.list_company{
    max-width: 825px;
    margin: 0px auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.list_company li{
	padding: 5px 15px;
	background-color: #f0f0f0;
	width: 255px;
	height: 265px;
	display: inline-block;
	position: relative;
	vertical-align: top;
}
.list_company .absolute_box{
	top: 10px;
	right: 10px
}
.list_company .absolute_box img{
	width: 22px
}
.list_company li a img{
	width: 100%
}
/* .list_company li a img.smc_logo{
	width: 160px;
    height: 138px;
} */
.list_company li:hover{
	background-color: #f3e9db
}
.list_company li a p{
	text-align: left;
	font-size: 12px;
	line-height: 20px
}
.list_company li h3.company_name{
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}

.list_case{
	text-align: center;
	margin: 0px auto;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.list_case li{
	background-color: #f0f0f0;
	width: 345px;
	height: 465px;
	display: inline-block;
	position: relative;
	margin: 25px;
	vertical-align: top;;
	text-align: center;
}
.list_case li .case_name{
	padding: 20px 0px;
	font-size: 18px;
	font-weight: bold;
	color: #324b6e
}
.list_case li a.case_link{
    background-image: url(../img/arrow-nvy-big_r.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 18px;
    display: block;
    padding-bottom: 45px;

}
.list_case li a.case_link:hover{
	opacity: 0.8
}
.list_case li p{
    color: #324b6e;
    text-align: left;
    padding: 0px 15px
}
.list_case li img{
	width: 100%;
	height: 240px
}


.list_work{
	text-align: center;
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	gap :30px 20px;
	margin:0 10px;
}
.list_work li{
	padding: 15px;
	background-color: #f0f0f0;
	width: 385px;
	min-height:525px ;
	display: flex;
	flex-direction: column;
	position: relative;
	vertical-align: top;
	text-align: center;
	gap:10px;
}
.list_work li .work_name{
	font-size: 16px;
	font-weight: bold;
	color: #324b6e
}
.list_work li img{
	width: 200px;
	height: 200px;
	margin:0 auto;
}
.page_desc{
	text-align: center;
}
ul.listcheck li{
	position: relative;
    padding-left: 1rem;
    font-size: 13px;
}
ul.listcheck li::before {
	content: "⚫︎";
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: black;
  font-size: 10px;
}
.desc_service{
	color: #324b6e;
	text-align: left;
	margin-bottom: 10px
}
.specil_txt{
	font-weight: bold;
	font-size: 13px;
	color: #324b6e;
	text-align: left;
	position: relative;
	padding-left: 15px;
}
ul.list_work li ul.works_txt li{
	gap:0;
	font-weight: bold;
	font-size: 13px;
	color: #324b6e;
	text-align: left;
	position:static;
	margin:0;
	padding:0;
	width:fit-content;
	flex-direction: row;
	height:fit-content;
	min-height: auto;
}
ul.list_work li ul.works_txt li::before{
	content:"・";
	width:1.5em;
	height:1.5em;

}
.specil_txt span{
	position: absolute;
	left: 0px;
	top: 0px
}
.note{
	font-size: 12px;
	color: #324b6e;
	text-align: left;
}


.news_tab{
	text-align: center;
	margin-bottom: 25px;
	margin-top: 35px;
	display:flex;
	align-items: center;
    justify-content: center;
}
.news_tab li h2{
	display: inline-flex;
	width: 100px;
	color: #324b6e;
	border-right: 1px solid #324b6e;
}
.more_link{
	display: block;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
}
.list_work li a.more_link img{
	width: 125px;
	height: auto;
}
.list_work li a.more_link:hover img{
	opacity: 0.8
}
.news_tab li.case_cate{
	width: 135px;
}
.news_tab li:last-child{
	border-right: 0px solid
}
.news_tab li a{
	display: block;
	width: 100%;
	font-weight: bold;
	line-height: 15px
	
}
.news_tab li a:hover,
.news_tab li a.active,
.list_recruit li a:hover{
	color: #58aaed
}

.detail_content{
	width: 600px;
	margin: 0px auto
}
.detail_content h2{
	font-size: 25px;
	color: #324b6e;
	margin: 15px 0px 0px;
	line-height: 35px
}
.detail_news img{
	max-width: 100%;
	margin: 25px 0px
}
.detail_news{
	margin-bottom: 55px
}
.detail_news .title{
	font-weight: bold;
	color: #324b6e;
	font-size: 16px;
	margin: 10px 0px
}
.detail_news .left_space{
	padding-left: 25px
}
.detail_news .line_space{
	width: 100%;
	height: 25px
}
.ungtuyen_area{
	text-align: center;
	margin: 0px auto;
	margin-bottom: 25px
}
.ungtuyen_area .ungtuyen_btn{
	border: 1px solid #324b6e;
    width: 220px;
    border-radius: 15px;
    padding: 8px;
    display: inline-block;
}
.ungtuyen_area .ungtuyen_btn:hover{
	background-color: #324b6e;
	color: #fff
}
.recruit_detail,.policy_wrap{
	width: 650px;
	margin: 0px auto
}
.recruit_detail h2,
.policy_wrap h2{
	text-align: center;
    border-bottom: 2px solid #324b6e;
    font-size: 22px;
    line-height: 55px;
    color: #324b6e;
}
.recruit_detail table.tbl_data tr td.row_title{
	color: #324b6e;
}
.recruit_detail table.tbl_data tr{
	border:0px;
}
.recruit_detail table.tbl_data tr:nth-child(even){
	background-color: #f0f0f0
}
.recruit_detail table.tbl_data{
	margin-bottom: 55px;
	margin-top: 10px
}
.cotrol_area{
	text-align: center;
}
.cotrol_area .blog_home:hover{
	/* background-image: url(../img/news/list_icon.svg);
	background-repeat: no-repeat;
	background-position: center;
	padding-left: 25px;
	background-size: contain;
	background-position: center left;
	font-size: 15px */
	text-decoration:underline!important;
	color:#58aaed;
}
.arrow {
	position: relative;
	display: inline-block;
	width: 20.7px;
	height: 15.3px;
}
.arrow::before,
.arrow::after {
content: "";
position: absolute;
top: calc(50% + 1px);
left: 0;
width: 12px;
height: 2px;
border-radius: 9999px;
background-color: #27333b;
transform-origin: 1px 50%;
}

.arrow::before {
transform: rotate(45deg);
}
.arrow::after {
transform: rotate(-45deg);
}

.gray_bg{
	background-color: #f0f0f0
}
.block_title{
	font-size: 20px;
    color: #324b6e;
    text-align: center;
    font-weight: bold;
}
.form_recruit {
	border-top: 2px solid #324b6e;
	margin-top: 15px
}
ul.list_recruit {
	border-top: 2px solid #324b6e;
	margin-top: 15px
}
ul.list_recruit li {
    border-bottom: 1px dashed #324b6e;
    background-image: url(../img/arrow.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 10px;
}
ul.list_recruit li a{
	display: block;
	line-height: 50px
}

.splide__track{
	margin-top: 25px
}
.splide__slide{
	padding: 20px;
	background-color: #fff;
	width: 550px!important;
	height: auto;
	margin-right: 2rem!important;
	display: flex;
	justify-content: space-between;
}
.splide__slide .avatar_box{
	width: auto;
	text-align: center;
}
.splide__slide .avatar_box p{
	margin-top: 15px;
	line-height: 22px
}
.splide__slide .avatar_box img{
	width: 95px
}
.splide__slide .qestion_box{
	width: 365px;
}
.qestion_box .question,.qestion_box .question strong{
	color: #324b6e;
	font-weight:bold;
}
.qestion_box .question strong,.qestion_box .aswer strong{
	position: absolute;
	top: 0px;
	left: -20px
}
.qestion_box ul li{
	margin-bottom: 12px
}
.qestion_box .aswer strong{
	color: #ffa41b;
	font-weight: bold;
}
.qestion_box .aswer,.qestion_box .question{
	position: relative;
}
.other_link {
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.other_link li {
    background-color: #f0f0f0;
    width: 250px;
    height: 250px;
}
.other_link li a .desc_box p {
    color: #324b6e;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 10px;
    text-align: center;
}
.other_link li a .desc_box span {
    color: #324b6e;
    font-family: 'Roboto',sans-serif;
    font-size: 12px;
    text-align: center;
    display: block;
}
.other_link li a .img_box{
	text-align: center;
	padding: 25px;
}
.other_link li a .img_box img{
	width: 98px;
	height: 90px
}
.other_link li a{
    background-image: url(../img/arrow-nvy-big_r.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 18px;
    display: block;
    padding-bottom: 55px;
}
.other_link li:hover{
	background-color: #f3e9db;
}
.splide__pagination{
	display: none!important;
}

footer{
	background-color: #f0f0f0
}
.menu_fotter{
	width: 980px;
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 50px 0px;
	position: relative;
}
.menu_fotter .privacy_box img{
		width: 65px
	}
.menu_fotter .boxlogo{
	display: inline-flex;
	justify-content: space-around;
}
.menu_fotter .boxlogo img{
	width: 100px
}
.menu_fotter .boxmenu{
	display: flex;
	justify-content: space-between;
	gap: 60px;
}
.menu_fotter .privacy_box{
	display: inline-flex;
	justify-content: space-around;
}
.menu_fotter .boxmenu ul li a:hover{
	text-decoration: underline!important;
}
.menu_fotter .boxmenu p.footer_title a:hover{
	color:#006edc;
} 
.menu_fotter .boxmenu p.footer_title {
	border-bottom: 1px solid #324b6e;
	padding:0 5px;
	margin-bottom:5px;
}
.menu_fotter .boxmenu p.footer_title a{
	font-weight: 800;
	font-size: 14px;
	color: #324b6e;
} 
.menu_fotter .boxmenu ul li {
	font-size:12px;
}
.menu_fotter .boxmenu {
	justify-content: space-between;
	display: flex;
}
.menu_fotter .boxmenu>div {
	min-width: 120px
}
.footer_nav{
	padding:0 5px;
}

.bottom_fotter{
	padding: 15px 0px;
	background-color: #005DAE;
}
.bottom_fotter .inner{
	display: flex;
	justify-content: space-between;
}
.bottom_fotter .inner p{
	font-size: 12px;
	color: #fff
}
.bottom_fotter ul li a{
	font-size: 12px;
	color: #fff
}
.bottom_fotter ul li a:hover{
	text-decoration: underline!important;
}
.bottom_fotter ul li{
	display: inline-flex;
	padding: 0px 10px;
	border-right: 1px solid #fff;
	height: 15px;
    line-height: 15px;
}
.bottom_fotter ul li:last-child{
	padding-right: 0px;
	border-right: 0px solid
}
.privacy_table .title{
	width: 185px;
	font-size: 18px;
	font-weight: bold;
	color: #324b6e;
	vertical-align: top;
	padding-top: 3px
}
.right{
	text-align: right;
}
.hr_line{
	width: 100%;
	height: 25px;
	border-bottom: 1px solid #324b6e;
	margin-bottom: 25px
}
.list_abc{
	padding-left: 15px;
	margin:10px 0px;
	position: relative;
}

.havespace{
	padding-left: 15px;
	margin-bottom: 20px
}
.nomargin{
	margin: 0px!important
}
.number_abc{
	position: absolute;
	left: 0px;
	top: 0px
}
.hissu{
	background-color: #ff0000;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	padding: 5px 10px;
	border-radius: 3px
}
.nini {
    background-color: #ccc;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 25px;
}
.wpcf7-response-output{
	display: none;
}
.center{
	text-align: center;
}
.custumcheck{
  display: inline-block;
  position:relative;
  cursor:pointer;
  user-select: none;
  padding-left:30px;
  margin-right: 10px;
}
.custumcheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark{
  position:absolute;
  top:0;
  left:0;
  width:25px;
  height:25px;
  background:#fff;
  border:2px solid #324b6e;
}
.custumcheck:hover .checkmark{
  background:#fff;
}
.checkmark:after{
  content:"";
  position:absolute;
  display:none;
}
.custumcheck .checkmark:after{
  top:50%;
  left:50%;
  width: 5px;
  height: 10px;
  border: solid #324b6e;
  border-width: 0 3px 3px 0;
  transform:translate(-50%,-50%) rotate(45deg);
}
.custumcheck input:checked ~ .checkmark{
  background:#fff;
}
.custumcheck input:checked ~ .checkmark:after{
  display:block;
}
.privacy_title {
    font-size: 18px;
    text-align: center;
    margin-top: 55px;
}
.privacy_box_s {
    width: 820px;
    margin: 25px auto;
    padding: 15px;
    border: 1px solid #ccc;
    overflow-y: scroll;
    height: 200px;
}
.privacy_box_s .line_space_low{
	height: 0px;
}
.privacy_box_s p{
	margin-bottom: 6px
}
.relativep{
	position: relative;
	padding-left: 20px
}
.relativep span{
	position: absolute;
	left: 0px
}
.textright{
	text-align: right;
}
.ul_list {
    list-style-position: outside;
    display: inline-block;
    list-style-type: number;
    margin-left: 35px;
}
.ul_list li{
	list-style: number;
	margin-bottom:6px
}
.form_content table tr td .title{
	width: 200px;
	display: inline-block;
}
.form_content table tr td .sub_title{
	width: 50px;
	display: inline-block;
}
.form_content input[type=text] {
  	padding: 12px 15px;
  	margin: 8px 0;
  	height: 45px;
  	border:0px solid;
  	background-color: #ebedf0;
  	border:1px solid #fff;
}
.form_content input[name=undefined_conf] {
	display: none;
}
.form_content input[type=email] {
  	padding: 12px 15px;
  	margin: 8px 0;
  	height: 45px;
  	border:0px solid;
  	background-color: #ebedf0;
  	border:1px solid #fff;
}
.form_content textarea {
	width: 100%;
  	padding: 12px 15px;
  	margin: 8px 0;
  	background-color: #ebedf0;
  	border:1px solid #fff;
  	resize: vertical;
}
.form_content .dropdown{
	width: 350px;
	height: 45px;
	margin: 8px 0;
	border:0px solid;
	background-color: #ebedf0;
	padding: 12px 15px;
	color: #454553
}
.center_text{
	width: fit-content;
    display: block;
    margin: auto;
}
.form_content .no_arrow{
	 appearance: none;
  -webkit-appearance: none; /* for Safari and Chrome */
  -moz-appearance: none; /* for Firefox */
  background-image: none; /* remve icon */
}
.form_content .label{
	width: 50px
}
.form_content input[type=text]:focus,.form_content input[type=email]:focus,.form_content textarea:focus,.form_content .dropdown:focus{
    outline: none !important;
    border:1px solid #324b6e;
 }
.form_content input.full_width {
  	width: 100%;
}
.form_content input.half_width {
  	width: 75%;
  	display: inline-block;
}
.form_content table{
	margin: 0px auto;
	width: 100%
}
.form_content input[type=text]:read-only,.form_content input[type=email]:read-only,.form_content textarea:read-only{
    background-color: #ebedf0!important;
    outline: none !important;
    border:1px solid #ebedf0!important;
}
.form_content input.disabled{
	background-color: #fff;
	border: 0px solid #fff;
	pointer-events: none; /* chặn click, gõ */
  user-select: text;    /* vẫn cho copy nội dung */
   cursor: not-allowed;  
}
.form_content .dropdown:disabled{
	color: #000;
	background-color: #ebedf0!important;
	opacity: 1
}
.wpcf7-spinner{
	display: none!important;
}
.screen-reader-response{
	display: none;
}
span.wpcf7-not-valid-tip{
	color: red;
	font-size: 12px;
	display: block;
	margin-top: -10px;
	text-align: left;
}
.form_content .btn{
	padding: 15px;
	width: 250px;
	font-weight: 500;
	color: #324b6e;
	display: inline-block;
	border-radius: 8px;
	text-align: center;
	border:2px solid #324b6e;
	font-size: 16px;
	cursor: pointer;
	margin: 0px 15px;
	background-color: #fff;
}
.form_content .btn:hover{
	opacity: 0.8
}
.policy_link{
	color: #454553!important
}
.submit_btn_area{
	margin-top: 55px;
	text-align: center;
}
input[type="submit"]:disabled{
	cursor: not-allowed!important;
	background-color: #f0f0f0!important;
	border:2px solid #a19d9d;
	color: #ccc;
}
.top_logo_sp{
	position: absolute;
	width: 150px;
	z-index: 9;
	padding: 5px 15px
}
.top_logo_sp img{
	width: auto;
	height: 55px;
}
.form_content table tr td.title{
		width: 285px
}
.policy_wrap {
	text-align:justify;
}
.policy_wrap p{
	margin-bottom:1.5em;
}
.policy_wrap p:first-of-type{
	margin:1.5em 0;
}
.policy_wrap li{
	list-style-type:decimal ;
	margin:0 0 1.5em 2em;

}


@media (min-width: 768px) and (max-width: 1023px){
	.form_desc{
		padding: 15px;
	}
	.list_company{
		justify-content: center;
	}
	.mainpage{
		background-size: cover;
	}
	.menu_fotter .privacy_box{
		position: absolute;
		right: 10px;
		top: 35px
	}
	.menu_fotter .privacy_box img{
		width: 65px
	}
	#spnav__btn{
		width: 165px;
		height: 75px
	}
	.main .main_txt{
		width: 100%
	}
	.works_box{
		width: 700px;
		padding: 50px 15px
	}
	.tab1_content .block{
		width: 700px
	}
	.pcOnly{
		display: none;
	}
	.smOnly{
		display: block!important;
	}
	header{
    	max-width: 750px;
	}
	.fixmenu{
		width: 750px
	}
	#gNav ul li{
		width: 120px
	}
	.fix_content{
		width: 100%
	}
	.privacy_table .title{
		padding: 0px 15px;
		width: 100%
	}
	.privacy_table tr td{
		display: block;
		padding: 15px
	}
	.menu_fotter{
		display: block;
		width: 100%;
		padding: 25px 15px
	}
	.menu_fotter .boxlogo {
	    width: 100%;
	    display: block;
	    text-align: center;
	}
	.menu_fotter .boxmenu{
		width: 100%;
		display: none;
	}
	.inner{
		width: 100%;
		padding: 0px 15px;
	}
	.form_content{
		padding: 15px
	}
	.news_box{
		padding: 15px
	}
	.list_work li{
		width: 330px;
		margin: 15px
	}
	.list_case li{
		width: 330px
	}
}
@media (max-width: 767px) {
	.form_desc{
		padding: 15px;
	}
	.main_txt h2{
	font-size: 18px;
	color: #fff;
	text-align: left;
	line-height: 35px;
	}
	.pc_br{
		display:none;
	}
	.title_box .title_ja{
		text-align: left;
	}
	.list_company{
		justify-content: center;
	}
	.mainpage{
		background-size: cover;
	}
	.mainAbout{
		background-image: url(../img/page/about-header_sp.png);
	}
	.mainService{
		background-image: url(../img/page/services-header_sp.png);
	}
	.mainContact{
		background-image: url(../img/page/contact-header_sp.png);
	}
	.mainPrivacy{
		background-image: url(../img/page/privacy-header_sp.png);
	}
	.mainRecruit{
		background-image: url(../img/page/recruit-header_sp.png);
	}
	.mainNews{
		background-image: url(../img/page/news-header_sp.png);
	}
	.privacy_box_s{
		width: auto;
	}
	.main_txt h2 br{
		display: none;
	}
	ul.breadcrumb{
		width: 100%
	}
	.news_box ul li .infor,.news_box ul li{
		display: block;
	}
	.news_box ul li a,.fix_content .news_box ul li a{
		width: 100%
	}
	.recruit_detail,.policy_wrap{
		padding: 0px 15px
	}
	.submit_btn_area{
		margin-top: 100px
	}
	.form_content .wpcf7c-btn-back{
		top: -65px
	}
	.recruit_detail h2,
	.policy_wrap h2{
		font-size: 18px
	}
	.recruit_detail,
	.policy_wrap{
		width: 100%
	}
	.splide__slide .avatar_box{
		line-height: unset;
	}
	.splide__slide .qestion_box {
    	width: 100%;
    	padding: 15px
	}
	.splide__slide{
		display: block;
		width: 316px!important
	}
	.other_link li{
		margin-bottom: 25px
	}
	.other_link{
		justify-content: space-around;
	}
	.splide__slide{
		display: block;
	}
	.form_recruit{
		margin: 0px 15px
	}
	ul.list_recruit{
		margin: 0px 15px
	}
	.recruit_page .join_img{
		width: 100%
	}
	.menu_fotter .privacy_box{
		position: absolute;
		right: 10px;
		top: 55px
	}
	.menu_fotter .privacy_box img{
		width: 50px
	}
	.form_content .btn{
		width: 180px
	}
	table.tbl_spcile_data tr td.month{
		width: 50px;
		text-align: center;
	}
	table.tbl_spcile_data tr td{
		display: table-cell!important;
	}
	.tab1_content .block p{
		line-height: 33px;
		font-size: 14px
	}
	.tab1_content{
		margin-bottom: 0px
	}
	.tab1_content .block{width: 100%;text-align: left;margin: 15px 0px}
	.tab1_content .block img{
		width: 100%
	}
	.tab1_content .specil_block p{
		text-align: center;
		font-size: 17px
	}
	.tab1_content h3{
		font-size: 35px;
		line-height: 55px
	}
	.tab li{
		width: 145px;
		margin: 5px
	}
	.tab_data p img{
		width: 100%
	}
	table.tbl_data tr td.row_title{
		width: 100%;
		padding-bottom: 0px;
		padding-top: 10px
	}
	table.tbl_data tr td{
		display: block;
	}
	.tab_data{
		width: 100%
	}
	table.tbl_data{
		width: 100%
	}
	.list_work li{
		width: auto;
	}
	.detail_content{
		width: 100%;
		padding: 15px
	}
	.news_box_left .news_box_title h3{
		width: 300px
	}
	.inner{
		width: 100%
	}
	.main .main_txt{
		width: 100%;
		padding: 15px
	}
	.main_txt h3{
		font-size: 22px;
		line-height: 35px
	}
	.main_txt p{
		font-size: 15px
	}
	.works_box{
		width: 100%;
		padding: 35px 10px
	}
	.list_works li{
		margin: 5px
	}
	.news .inner{
		display: block;
		padding: 15px
	}
	.news .inner .news_box {
    	width: 100%;
	}
	.news_box ul li .news_title{
		padding-right: 15px;
		font-size: 13px
	}
	.news_box_title h3{
		width: 165px
	}
	.news_box_title span{
		width: 145px
	}
	.news_box_title .news_more{
		width: 100px
	}
	.desc_txt p{
		line-height: 30px;
		font-size: 15px;
		text-align: left;
	}
	.news_box_right{
		margin-top: 25px
	}
	.works_box{
		margin: 15px auto;
    	width: 320px;
	}
	.menu_fotter{
		display: block;
		width: 100%;
		padding: 25px 15px
	}
	.menu_fotter .boxlogo {
	    width: 100%;
	    display: block;
	    text-align: center;
	}
	.menu_fotter .boxmenu{
		width: 100%;
		display: none;
	}
	.bottom_fotter .inner{
		display: block;
		text-align: center;
	}
	.fix_content{
		width: 100%
	}
	.page_desc{
		padding: 15px;
		line-height: 28px;
		font-size: 13px;
		text-align:left;
	}
	.form_content{
		padding: 15px
	}
	.form_content table tr td .title{
		width: auto;
		margin-right: 15px
	}
	.form_content table tr td{
		display: inline-block;
		width: 100%
	}
	.form_content input.half_width{
		width: 84%
	}
	.form_content .dropdown{
		width: 100%;
	}
	.form_content table tr td:last-child:not(:has([data-name="your-email"])){
		margin-bottom:15px;
	}
	.form_content table tr td.sp_none{
		display: none;
	}
	.form_content input[type=text],.form_content input[type=email]  {
		margin: 2px 0 8px;
	}
	.mainpage .page_title{
		padding: 15px
	}
	.privacy_table .title{
		padding: 0px 15px;
		width: 100%
	}
	.privacy_table tr td{
		display: block;
		padding: 15px
	}
	.tabcontent{
		padding: 10px
	}
}
@media (max-width: 320px) {
	.page_desc{
		padding: 5px
	}
	.custumcheck{
		margin-right: 0px
	}
	.tab li{
		width: 135px
	}
}
/*@media (min-width: 576px){
	header{
    	max-width: 540px;
	}
}
@media (min-width: 768px){
	header{
    	max-width: 720px;
	}
}
@media (min-width: 992px){
	header{
    	max-width: 960px;
	}
}
@media (min-width: 1200px){
	header{
    	max-width: 960px;
	}
}
*/

/* engage banner */
.banner{
	display:flex;
	justify-content: center;
	gap: 10px;
}

@media (max-width: 767px) {
	.banner{
		flex-wrap:wrap;
	}
}

