﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
	--f-main: "Open Sans", sans-serif;
	--f-robo: "Montserrat", sans-serif;
	--txt: #666;
	--mcolor: #bd1723;
	--s-color: #111;
  --white: #fff;
}
h1,h2,h3,h4,h5,h6,input,button,textarea,select,p,blockquote,th,td,pre,address,li,dt,dd {
	font-size: 16px;
	-webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
    display: block;
}
img {
	vertical-align: bottom;
}	

a { color:var(--mcolor); }
a:hover,
a:active { color: #00ae4d; text-decoration: none; }
a:visited {
}

table {
	width:100%
}

p { margin: 0 0 1.5em; }

.section { padding:  0 0 30px; }

p, dd, td, th, li {
	line-height: 1.8em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 50px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#totop a:hover {
  opacity: 0.7;
}
.bold {font-weight:bold;}
.fl {float:left;}
.fr {float:right;}

*, *:before, *:after {
	box-sizing: border-box;
}
body {
	/*font-family: 'UTMAvo', sans-serif;*/
	font-family: var(--f-main);
	
	font-size: 16px;
	color: #000;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
#wrapper{
	min-width: 1170px;
	overflow: hidden;
}
.container{
	width: 1170px;
	margin: 0 auto;
	position: relative;
}
img{
	max-width: 100%;
}
.sp {
	display: none;
}
#header .container {
    display: flex;
    justify-content: space-between;
	align-items: flex-start;
}
.logo {
    margin: 0;
    width: 200px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
	max-height: 100%;
}
.h-right {
    display: flex;
	margin-top: 20px;
}
.h-add {
    text-transform: uppercase;
    margin: 0 40px 0 0;
	display: flex;
	align-items: center;
}
.h-add:before, .h-tel:before {
	content: '';
	position: relative;
	display: inline-block;
	background:  url('../W_images/h_ico01.png?v=1') no-repeat;
	background-color:#1b4c8e;
	margin-right: 10px;
	width: 30px;
	height: 35px;
}
.h-tel ,.h-search{
	display: flex;
	align-items: center;
    text-transform: uppercase;
	margin: 0;
	font-size: 20px;
}
.h-search{margin-left:40px;position: relative;}
.h-search span{
	color: #1b4c8e;
    font-size: 24px;
    display: block;
    cursor: pointer;
}
.h_search_form {
	position: absolute;
    right: 7%;
    top: 60px;
    /* background: #1b4c8e; */
    padding: 5px;
    width: 250px;
    margin-top: 5px;
    display: none;
    z-index: 9999;
}
.h_search_form input {
  width: 100%;
  padding: 8px 10px;
  font-size: 13px;
  font-style: italic;
  border: 1px solid #ccc;
}
.h_search_form button {
  position: absolute;
  right: 5px;
  top: 6px;
  font-size: 12px;
  background: #bd1723;
  color: #fff;
  border: none;
  padding: 9px;
  cursor: pointer;
}
.h_search_ttl {
  margin: 0;
  cursor: pointer;
}
.h-tel:before {
	background: url('../W_images/h_ico02.png?v=1') no-repeat;
	background-color:#1b4c8e;
}
.h-sp {
	display: none;
}
#gnavi .container {
	display: flex;
	justify-content: flex-end;
}
#gnavi {
	position: relative;
	z-index: 10;
	margin-top: -30px;
}
#gnavi:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 9px;
	background: #bd1723;
	top: calc(50% - 5px);
	left: 0;
	z-index: -1;
}
.gnavi {
    display: flex;
	background: url(../W_images/gnv_bg.png) no-repeat;
	width: 1100px;
	margin-right: -70px;
	justify-content: center;
}
.gnavi > li {
	position: relative;
	width: 15%;
	
}
.gnavi > li > a, .gnavi > li > span {
	position: relative;
	display: block;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	text-align: center;
	padding: 26px 5px;
	cursor: pointer;
	transition:all .5s;
	font-size:18px;
}
.gnavi > li > span:after ,.gnavi > li > a > span:after {
	content: '';
	position: absolute;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
	bottom: 18px;
	left: calc(50% - 3px);
}


.submenu {
	position: absolute;
	z-index: 99;
	padding-top: 1px;
	display: none;
}
.submenu li {
	background: #bd1723b3;
	padding: 0 2px 0;
}
.submenu a {
	display: block;
	padding: 8px 30px;
	text-decoration: none;
	white-space: nowrap;
	font-size: 14px;
	color: var(--white);
	transition: all 0.5s ease;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
.submenu a:hover {
	opacity:0.5;
}
.submenu li:first-child {
	padding-top: 2px;
}
.submenu li:last-child {
	padding-bottom: 2px;
}
.submenu li:last-child a {
	border: none;
}

.gnavi.active > li > span:after, .gnavi > li:hover > span:after, .gnavi > li.active > span:after {
	border-color: #fff;
}
.gnavi > li.active > a, .gnavi.active > li > span, .gnavi > li:hover > span,.gnavi > li.active > span {
	font-weight: bold;
	
	
}
.gnavi > li:hover > a{
	
	font-weight: bold;
	
}
.gnavi > li > a:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  background: #bd1723;
  bottom: 25px;
  left: calc(50% - 30px);
  transform: scale(0, 1);
  transition: all 0.3s;
}
.gnavi > li:not(:nth-child(4)) > a:after,
.gnavi > li:not(:nth-child(4)):hover > a:after {
}
  transform: scale(1, 1);
  background:#fff;
}
.gnavi > li.active > a:after {
  content: none;
}
.mainvisual {
	margin-top: -40px;
}
.mainvisual .main-slide img {
	max-width: 100%;
	width: 100%;
	max-width: none;
}
.mainvisual .slick-dots {
	position: absolute;
	bottom: 30px;
	left: calc(50% - 512px);
}
.main-slide p {
	margin: 0;
}
.mainvisual .slick-dots button {
	width: 20px;
	height: 20px;
	justify-content: 20px;
	border-radius: 50%;
	border: 4px solid #000;
	background: transparent;
	outline: none;
	text-indent: -500000px;
	cursor: pointer;
}
.mainvisual .slick-dots .slick-active button {
	background: #000;
}
.box01 {
	background: url(/userfile/config/Background-01.jpg) no-repeat center bottom #f8f8f8;
	padding: 60px 0;
}
.idx-h3 {
	font-size: 48px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 20px;
	color: #1b4c8e;
}
.b01-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.b01-item {
    width: calc(100% / 3 - 50px);
    margin: 0 0 40px;
}
.b01-item a {
	text-decoration: none;
	display: block;
}
.b01-ttl {
    margin: 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
	transition: all 0.5s ease;
}
.b01-img {
    margin: 30px auto;
    position: relative;
	position: relative;
	z-index: 0;
	width: 220px;
}
.b01-img:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border: 10px solid #c6c6c6;
	left: -22px;
	top: -30px;
	z-index: -1;
	transition: all 0.5s ease;
}
.b01-img:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgb(189 23 35 / 18%);
	opacity: 0;
	transition: all 0.5s ease;
}
.b01-item a:hover .b01-img:after {
	opacity: 1;
}
.b01-item a:hover .b01-img:before {
	border-color: #bd1723;
}
.b01-item a:hover .b01-ttl {
	color: #005940;
}
.box02 {
	background: url(/userfile/config/Background-02.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	padding: 60px 0;
}
.b02-h3 {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px;
	overflow: hidden;
	width: 80%;
	margin: 0 auto 40px;
}
.b02-h3-txt span {
	display: block;
	font-size: 48px;
    color: #fff;
}
.b02-h3-txt {
	position: relative;
	padding: 0 10px;
	display: inline-block;
}
.b02-h3-txt:before, .b02-h3-txt:after {
	content: '';
	position: absolute;
	width: 1000px;
	height: 2px;
	background: #fff;
	top: calc(50% - 2px);
}
.b02-h3-txt:before {
	left: 100%;
}
.b02-h3-txt:after {
	right: 100%;
}
.b02-list {
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}
.b02-item {
	text-align: center;
	width: 33%;
    margin-bottom: 60px;
}
.b02-item a {
	text-decoration: none;
	color: #fff;
}
.b02-img {
	width: 124px;
	margin: 0 auto 50px;
	text-align: center;
	z-index: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 75px;
}
.b02-img-bg {
  width: 124px;
  height: 143px;
  background: url(../W_images/b02_poly.png) no-repeat;
  position: absolute;
	left: 0;
	top: -33px;
	z-index: -1;
}
.b02-img-bg:before {
  content: "";
  position: absolute;
  top: -33px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 62px solid transparent;
  border-right: 62px solid transparent;
  border-bottom: 33px solid #bd1723;
	opacity: 0;
}
.b02-img-bg:after {
  content: "";
  position: absolute;
  bottom: -33px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 62px solid transparent;
  border-right: 62px solid transparent;
  border-top: 33px solid #bd1723;
	opacity: 0;
}
.b02-item a:hover .b02-img-bg {
  background: #bd1723;
	width: 124px;
	height: 75px;
	top: 0;
}
.b02-item a:hover .b02-img-bg:after, .b02-item a:hover .b02-img-bg:before {
	opacity: 1;
}
.b02-ttl {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.b02-item a:hover .b02-ttl {
	color: #bd1723;
}
.b02-txt {
    margin: 0;
    font-size: 18px;
    line-height: initial;
}
.box03 {
	padding: 60px 0;
}
.b03-h3 {
	font-size: 48px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 10px;
	text-transform: uppercase;
}
.b03-txt {
    text-align: center;
    margin: 0 0 40px;
    font-size: 18px;
    color: #666666;
}
.b03-txt span {
	font-weight: bold;
	color: #00ae4d;
	font-size: 24px;
}
.b03-list {
    display: flex;
    flex-wrap: wrap;
}
.b03-item {
    width: calc(25% - 2px);
    margin: 0 2px 2px 0;
}
.b03-item:nth-child(4n) {
	margin-right: 0;
}
.b03-item a{
	text-decoration: none;
	color: #fff;
	position: relative;
	display: block;
}
.b03-img {
    margin: 0;
	transition: all 0.5s ease;
}
.b03-img img {
	width: 100%;
}
.b03-ttl {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    background: rgba(0,174,77,0.9);
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px 20px;
	opacity: 0;
	transition: all 0.5s ease;
}
.b03-item a:hover .b03-ttl {
	opacity: 1;
}
.b03-item a:hover .b03-img {
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.box04 {
	background: url(../W_images/b04_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 40px 0;
	color: #fff;
	text-align: center;
}
.b04-txt01 {
	font-family: 'UTMBanque', sans-serif;
	text-transform: uppercase;
	font-size: 30px;
	margin: 0 0 5px;
}
.b04-txt02 {
    margin: 0;
    font-size: 20px;
    color: #0dcd62;
}
.b04-txt02 span {
	font-weight: bold;
	font-size: 25px;
}
.box05 {
	padding: 40px 0;
}
.b05-ttl {
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	margin: 0 0 30px;
	color: #1b4c8e;
}
.b05-slide{padding: 0 60px;}
.b05-slide.slick-initialized .slick-slide {
  margin: 0 10px;
  border: 1px solid #dbdbdb;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
}
.b05-slide.slick-initialized .slick-slide img {
  max-height: 100%;
}
.b05-slide .slick-arrow,.b06_list .slick-arrow {
  position: absolute;
  background: url("/W_images/b05_next.png") no-repeat center center;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  z-index: 5;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-indent: -50000px;
  right: 0;
}
.b05-slide .slick-prev,.b06_list .slick-prev {
  background-image: url("/W_images/b05_prev.png");
  left: 0;
  right: auto;
}
.b05-slide .slick-arrow:hover,.b06_list .slick-arrow:hover {
  background-color: #fff;
}
.box06{padding: 40px 0;}
#footer {
	background: #111;
	color: #cfcfcf;
	padding: 40px 0;
}
#footer .container {
	display: flex;
	justify-content: space-between;
}
.f-mod01 {
	width: 270px;
}
.f-mod02 {
	width: 770px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.f-logo {
    margin: 0 0 3px;
    width: 220px;
    /*height: 100px;*/
    display: flex;
    justify-content: center;
    align-items: center;
}
.f-logo img {
	max-height: 100%;
}
.f-comname {
	font-size: 18px;
	border-bottom: 1px solid #666;
	padding: 0 0 20px;
	margin: 0 0 20px;
}
.f-comname span {
	font-size: 18px;
	font-weight: bold;
	display: block;
}
.f-info {
	font-size: 14px;
	display: flex;
	align-items: center;
	line-height: normal;
	margin: 0 0 5px;
}
.f-info:before {
	content: '';
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 10px;
}
.f-add:before {
	background: url(../W_images/f_ico01.png) no-repeat center;
}
.f-tel:before {
	background: url(../W_images/f_ico02.png) no-repeat center;
}
.f-mail:before {
	background: url(../W_images/f_ico03.png) no-repeat center;
}
.f-info span {
	width: calc(100% - 40px);
}
.f-info a, .copyright a {
	text-decoration: none;
	color: #cfcfcf;
}
.f-col01 {
	width: 370px;
}
.f-col02 {
	width: 300px;
}
.copyright {
	margin: 0;
	width: 100%;
	border-top: 1px solid #555;
	padding-top: 10px;
	margin-top: 30px;
	font-size: 14px;
	font-style: italic;
}
.f-ttl {
	font-size: 24px;
	margin: 0 0 15px;
}
.f-txt {
	font-size: 14px;
	margin: 0 0 5px;
}
.f-form input {
	width: 100%;
	border: none;
	background: #363636;
	color: #fff;
	text-align: center;
	font-size: 12px;
	padding: 21px 10px;
	margin: 0 0 10px;
	outline: none;
}
.f-form input::placeholder {
	color: #cfcfcf;
	font-size: 12px;
}
.f-form .button {
	text-align: center;
	width: 100%;
	color: #fff;
	font-size: 12px;
	background: #005940;
	border: none;
	text-transform: uppercase;
    padding: 14px;
	outline: none;
    display: inline-block;
    text-decoration: none;
}
.f-social {
	display: flex;
	align-items: center;
	margin: 25px 0 0;
}
.f-social a {
	margin-left: 20px;
}
.f-col02 iframe {
	width: 100%;
	height: 199px;
}
.mainvisual.dichvu {
    background: url(/userfile/config/Background-03.jpg) no-repeat center;
    background-size: cover;
    height: 210px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}
.mainvs-ttl {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.topic-path {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.topic-path li {
    font-size: 20px;
}
.topic-path a {
    background: url(../W_images/topic_path_ico.png) no-repeat right center;
    padding-right: 30px;
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
    padding-bottom: 7px;
}
#main.dichvu {
    display: flex;
    width: 1170px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 60px 0;
}
.section {
    padding: 50px 0;
}
.dichvu #content {
    width: calc(100% - 366px);
    padding: 0 15px;
    margin: 0 0 40px;
}
.dichvu-ttl {
    font-size: 28px;
    color: #1b4c8e;
    line-height: 1.5em;
    font-weight: bold;
    margin: 0 0 20px;
}
.sidebar {
    width: 336px;
    order: -1;
    margin-right: 30px;
    margin-bottom: 40px;
}
.side-mod01 {
    border: 1px solid #b5b5b5;
    padding: 0 20px 0;
    margin: 0 0 30px;
}
.side-ttl {
    font-size: 23px;
    font-weight: bold;
    color: #1b4c8e;
    margin: 10px 0 10px;
}
.side-over {
    margin: 0 0 5px;
}

.side-menu > li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #d0d0d0;
}
.side-menu > li:last-child{
    border-bottom: none;
}
.side-menu > li > a {
    background: #fff;
    display: block;
    color: #000;
    font-size: 17px;
    padding: 10px 10px 13px 30px;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    text-decoration: none;
    width: 100%;
}
.side-menu > li.active > a, .side-menu > li.active > a:hover {color:#1b4c8e;font-weight: bold;}
.side-menu > li > a:before{
    content: "";
    position: absolute;
    border: solid;
    border-width: 1px 1px 0px 0px;
    top: 40%;
    left: 6px;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.side-menu > li.active > a:before,.side-menu > li > a:hover{color:#1b4c8e;font-weight: bold;}
.side-ico {
    position: relative;
    width: 50px;
    max-height: 100%;
    background: rgb(94, 196, 70);
    cursor: pointer;
    z-index: 10;
}
.side-ico:after {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
}
.pro-ttl01 {
    font-size: 28px;
    font-weight: bold;
    color: #1b4c8e;
    border-bottom: 1px solid #dcdcdc;
    padding: 0 0 5px;
    margin: 0 0 30px;
}
.news-list{display:flex;flex-wrap:wrap;}
.news-item{width:calc(100%/3 - 20px);margin:0 30px 30px 0;background:#f4f4f4;}
.news-item:nth-child(3n){margin-right:0;}
.news-img{margin:0;background:#fdfdfd;}
.news-img a{overflow:hidden;display:flex;justify-content:center;align-items:center;width:100%;flex:1;height:100%;}
.news-img img{transition:all 0.5s ease;width: 100%;}
.news-main{padding:25px;}
.news-img a:hover img{transform:scale(1.1,1.1);opacity:0.7;}
.news-ttl a{margin:0 0 5px;font-size:16px;font-weight:700;text-transform:uppercase;text-decoration:none;}
.news-ttl a:hover{color:#005940;}
.news-ttl{margin:0 0 5px;line-height: 1.5;}
.news-txt{font-size: 14px;
    line-height: normal;
    margin: 0 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;}
.news-date{    font-size: 12px !important;
    color: #000;
    font-weight: 600;
    background: url(../images/calendar_ico.png) no-repeat left 4px;
    padding-left: 25px;
    border-bottom: 1px solid #fff;
    margin-bottom: 5px;}
.news-btn{margin:0;}
.news-btn a{font-size:12px;font-weight:700;text-decoration:none;}
.news-btn a:after{color: #bd1723;content:'';position:relative;display:inline-block;border-bottom:4px solid transparent;border-top:4px solid transparent;border-left:5px solid #bd1723;margin-left:10px;}
.news-btn a:hover{color:#005940;}
.news-btn a:hover:after{border-left:5px solid #005940;}
.nd-ttl {
    font-size: 28px;
    font-weight: bold;
    color: #1b4c8e;
    padding-top: 60px;
}
.dichvu .b03-item {
    width: calc(33% - 0px);
    margin:1px;
}
.pages a{border:1px solid #cbcbcb;text-align:center;padding: 4px 10px;color:#7e7e7e;background:#fff;text-decoration:none;}
.pages strong, .pages a:hover{text-align:center;padding: 4px 10px;color:#36b557;border:1px solid #36b557;}
.pro-main .b03-item {
    width: calc(25% - 2px);
    margin: 0 2px 2px 0;
}
.news-left-item{margin-bottom: 35px;}
.news-left-item a{display:flex;text-decoration:none;}
.news-left-item a:hover img{transform:scale(1.1,1.1);opacity:0.7;}
.news-left-item a:hover .news-left-ttl{color:#000;}
.news-left-img{width: 40%;overflow: hidden;margin: 0;}
.news-left-img img{
	transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-left-info{width: 60%;padding-left: 10px;}
.news-left-ttl{font-size:14px;line-height: 23px;margin-bottom: 15px;font-weight: bold;transition: all 0.5s ease;color: #1b4c8e;}
.news-left-date{font-size: 12px;color: #000;margin-bottom: 3px;}
.news-left-txt{font-size: 13px;margin: 0;color: #000;}
.pro-list.pj-list{justify-content: space-between;}
.pro-list {
    display: flex;
    flex-wrap: wrap;
}
.pj-list .pro-item{width: calc(100%/2 - 30px);margin: 0 0 30px 0;}
.pro-item {
    width: calc(33.33% - 10px);
    margin: 0 15px 30px 0;
}
.pro-item:nth-child(3n) {
    margin-right: 0;
}
.pro-item a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease;
}
.pro-info {
    background: var(--mcolor);
    padding: 20px 18px;
    transition: all 0.5s ease;
}
.pro-ttl {
    height: 65px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding: 0 0 15px;
    margin: 0 0 10px;
    line-height: 1.4em;
}
.pro-ttl:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    left: 0;
    bottom: 0;
}
.pro-txt {
    font-size: 16px;
    line-height: 1.35em;
    margin: 0 0 10px;
    height: 84px;
    overflow: hidden;
}
.pro-more {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}
.pro-img {
    margin: 0;
    overflow: hidden;
}
.pro-img img {
    width: 100%;
    transition: all 1s ease;
}
.pro-item a:hover .pro-img img {
	transform: scale(1.1,1.1);
}
.pro-item a:hover {
	opacity: 0.8;
}
.pro-item a:hover .pro-info {
	background: #1b4c8e;
}

.pp{
	margin: auto;
	display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
	background: #0000008a;
}
.popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 60%;
    position: relative;
	display: flex;
	flex-wrap: wrap;
	box-shadow: 0px 0 5px #ccc;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}
.pp .box{
	width:50%;
	    padding: 20px;
}
.pp .box button{
    background: white;
    padding: 5px 14px;
    color: #006bff;
    border: 1px solid;
	margin: 10px 28%;
    border-radius: 5px;
}
.pp .submit_pp{
	color: white;
    background: #006bff;
    padding: 5px 20px;
	border:none;
	margin: auto;
}

.pp .b_ttl{
	font-size: 20px;
    color: #006bff;    margin: 15px 0px;
}
.pp p {
    margin-bottom: 0;
    font-size: 12px;
    font-style: italic;
}
.pp p:before {
	content:"- ";
}
.pp input ,.pp textarea{
	width: 100%;
    margin: 5px 0;
	padding: 5px 15px;
	border: none;
    background: #e9e9e9;
	color: #000;
	font-size: 12px;
	height: 40px;
}
.pp textarea{
	height: 80px;
}
.pp .pro{
	border:none;
}
.pp .pro::placeholder {
  
}
.popup-box{
	text-align: center;
    width: 100%;
    color: #fff;
    font-size: 12px;
    background: #b3a336;
    text-transform: uppercase;
    padding: 14px;
    outline: none;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
	cursor: pointer;
}

.contact-card{
	display: flex;
    justify-content: space-between;
}
.qr-code{
	border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    width: 200px;
}
.qr-caption{
	font-size: 12px;
    line-height: 16px;
    margin-top: 8px;
    text-align: center;
}
.profile-header{
	display:flex;
	margin-bottom: 40px;
}
.profile-info{
	display:grid;
}
.profile-name{
	font-size: 24px;
}
.profile-main{
	color: #001121;
    font-size: 20px;
    line-height: 1.3;
}
.profile-info button{
	align-items: center;
    background-color: #0068ff;
    border: none;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-weight: 500;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
}
	
@media screen and (max-width: 1920px) {
	.container,#main.dichvu {
		width:100%;
		padding:0 8%;
	}
	#main.dichvu {
		width:100%;
		padding:60px 8%;
	}
	#gnavi .container {
		justify-content: center;
	}
	.b01-item {
		width: calc(100% / 3 - 70px);
	}
	.b01-ttl {padding-right: 65px;}
	.b02-txt {padding: 0 60px;}
	.f-mod01 {width:400px;text-align: center;}
	.f-mod02 {
    width: 840px;}
	#footer .container {
		justify-content: space-around;
	}
	.f-logo {    
		margin: 0 auto;
	}

	.popup-content {
		width: 70%;
		margin: 8% auto;
	}
	.close-popup {
		font-size: 40px;
	}
	.pp .b_ttl {
		font-size: 32px;
	}
	.pp p {
		font-size: 22px;
	}
	.pp input, .pp textarea {
		font-size: 22px;
		height: 60px;
	}
	.pp textarea {
		height: 120px;
	}
	.pp .submit_pp {
		font-size: 22px;
		padding: 10px 30px;
	}
	.popup-content .box input::placeholder,.popup-content .box textarea::placeholder{
		font-size: 22px;
		color:#000;
	}
}
@media screen and (max-width: 1600px) {
	.h_search_form {right:3%;}
	.container, #main.dichvu {
        padding: 0 4%;
    }
	#main.dichvu {
		padding:60px 4%;
	}
	.b01-item {
        width:calc(100% / 3 - 50px);
    }
	.b01-ttl {
        padding-right: 35px;
    }
	.b02-txt {
        padding: 0 40px;
    }
	.f-mod01 {
		width: 270px;
		text-align: start;
	}
	.f-comname {
		text-align:center;
	}
	.f-mod02 {
		width: 770px;
	}
	
	.popup-content {
		width: 70%;
		margin: 5% auto;
	}
	.close-popup {
		font-size: 40px;
	}
	.pp .b_ttl {
		font-size: 22px;
	}
	.pp p {
		font-size: 14px;
	}
	.pp input, .pp textarea {
		font-size: 14px;
		height: 60px;
	}
	.pp textarea {
		height: 120px;
	}
	.pp .submit_pp {
		font-size: 14px;
		padding: 10px 30px;
	}
	.popup-content .box input::placeholder,.popup-content .box textarea::placeholder{
		font-size: 14px;
		color:#000;
	}
}
@media screen and (max-width: 1360px) {
	#header .container {
		padding: 0 4% 0 0;
	}
}
@media screen and (max-width: 768px) {
.h-sp-add,.h-sp-tel{
	display:none;
}
.pro-list {
    flex-wrap: wrap;
}
.pro-item {
    width: calc(50% - 15px);
}
.pro-item:nth-child(3n) {
    margin-right: 30px;
}
.pro-item:nth-child(2n) {
    margin-right: 0;
}
.pro-info {
    padding: 20px 30px;
}
.pro-txt {
    font-size: 14px;
    line-height: 1.8em;
    height: 75px;
}
.pro-ttl {
    font-size: 16px;
    height: auto;
}

	.side-ttl {
    font-size: 26px;
    line-height: 1.5em;
    margin: 0 0 20px;
}
	#main.dichvu {
    width: 100%;
    padding: 40px 3%;
}
	.dichvu #content {
    width: 100%;
    padding: 0;
}
.sidebar {
    width: 100%;
    margin: 0;
    order: 3;
	margin-top: 30px;
}
    .news-item {
    display: block;
}
    .news-img, .news-main {
    width: 100%;
}
    .topic-path li {
    font-size: 16px;
}
    .mainvs-ttl {
    font-size: 24px;
}
#wrapper {
	min-width: 100%;
	margin: 0;
	padding-top: 75px;
}
#main,  #footer {
	min-width: 100%;
}
.container {
	padding: 0 3%;
	width: 100%;
}
.sp {
	display: block;
}
.pc {
	display: none;
}
/* MENU-ICON */
.menu-icon {
	width: 45px;
	height: 35px;
	box-sizing: border-box;
	text-align: center;
	text-transform: uppercase;
	line-height: 1em;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	padding: 8px 0;
	z-index: 99999;
	background: #bd1723;
	margin-left: 10px;
}
.menu-icon span {
	display: block;
	margin: 0 auto 15px;
	width: 27px;
	height: 3px;
	background-color: #fff;
	-webkit-transition-duration: 0;
	-moz-transition-duration: 0;
	-ms-transition-duration: 0;
	-o-transition-duration: 0;
	transition-duration: 0;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	top: 9px;
	left: 0;
	position: relative;
}
.menu-icon span::after, .menu-icon span::before {
	display: block;
	content: '';
	position: absolute;
	width: 27px;
	height: 3px;
	background-color: #fff;
	-webkit-transition-property: margin, -webkit-transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-delay: 0.2s, 0;
	-moz-transition-delay: 0.2s, 0;
	-ms-transition-delay: 0.2s, 0;
	-o-transition-delay: 0.2s, 0;
	transition-delay: 0.2s, 0;
}
.menu-icon span::before {
	margin-top: -10px;
}
.menu-icon span::after {
	margin-top: 10px;
}
/*.menu-icon.active span {
	background-color: transparent;
}
.menu-icon.active span::before, .menu-icon.active span::after {
	margin-top: 0px;
	-webkit-transition-delay: 0, 0.2s;
	-moz-transition-delay: 0, 0.2s;
	-ms-transition-delay: 0, 0.2s;
	-o-transition-delay: 0, 0.2s;
	transition-delay: 0, 0.2s;
}
.menu-icon.active span::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu-icon.active span::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}*/
.gnavi > li > a:after {content:none;}
.submenu a:hover {
    opacity: 1;
}
.submenu li {background:#db3844eb}
  #totop {
    width: 40px;
    right: 8%;
    bottom: 50px;
    line-height: 0;
  }
.h-right, #gnavi:after {
    display: none;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    z-index: 999;
	padding: 10px 0;
}
#header .container {
    align-items: center;
}
.logo {
    margin: 0;
    width: 100px;
    height: 40px;
}
.h-sp {
    display: flex;
	align-items: center;
}
.h-sp p {
	margin: 0 8px;
	
}
.h_search_form {
        background: transparent;
        top: 60px;
        width: 40%;
        right: 0;
    }
#gnavi {
	position: fixed;
    top: 0;
    left: -100%; 
    width: 250px; 
    height: 100%;
    background: #bd1723;
    margin: 0;
    overflow: auto;
    padding: 40px 0;
	transition: left 0.3s;
    z-index: 999;
}
.gnavi {
    display: block;
    width: 100%;
    margin: 0;
	background: none;
}
.gnavi > li {
    width: 100%;
}
.gnavi > li > a, .gnavi > li > span {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
	font-size: 16px;
	text-align:start;
}
.gnavi > li > span:after {
    left: auto;
    right: 3%;
    top: calc(50% - 3px);
    bottom: auto;
}
.submenu {
    position: relative;
    padding: 0;
    text-align: start;
}
.submenu a {
    padding: 15px 20px;
    font-size: 14px;
}
.mainvisual {
    margin-top: 0;
}
.mainvisual .slick-dots {
    left: 30px;
}
.mainvisual .slick-dots button {
    width: 14px;
    height: 14px;
    border: 2px solid;
}
.mainvisual .main-slide img {
    max-width: none;
}
.mainvisual .main-slide p {
	display: flex;
	justify-content: center;
	align-items: center;
}
.box01 {
    padding: 40px 0 20px;
}
.idx-h3, .b03-h3 {
    font-size: 20px;
}
.b01-list {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}
.b01-ttl, .b02-ttl, .b04-txt02 {
    font-size: 14px;
}
.box02 {
    padding: 40px 0 10px;
}
.b02-h3 {
    width: 100%;
    font-size: 18px;
}
.b02-h3-txt span {
    font-size: 24px;
}
.b02-list {
    flex-wrap: wrap;
}
.b02-item {
    width: 48%;
    margin: 0 0 60px;
}
.b02-txt, .b03-txt {
    font-size: 14px;
	
}
.b02-txt{
	padding: 0 10px;
	text-align: justify;
}
.box03 {
    padding: 40px 0;
}
.b03-txt span, .b04-txt02 span {
    font-size: 16px;
}
.b03-ttl {
    opacity: 1;
    font-size: 13px;
    padding: 10px 5px;
    bottom: 0;
    left: auto;
    transform: none;
    margin: 0;
    top: auto;
}
.b03-item, .pro-main .b03-item {
    width: calc(50% - 2px);
}
.b04-txt01 {
    font-size: 20px;
}
.b05-slide{
	padding: 0 50px;
}
.b05-slide .slick-prev{
	left: 0;
}
.b05-slide .slick-arrow{
	right:0;
}
#footer .container {
    display: block;
}
.f-mod01 {
    width: 100%;
    margin: 0 0 20px;
}
.f-logo {
	margin: 0 auto;
}
.f-comname {
	text-align: center;
}
.f-mod02, .f-col02 {
    width: 100%;
}
.b01-img {
    width: 100%;
    margin: 20px 0 10px 12px;
}
.b01-item {
    width: calc(50% - 20px);
}
.b01-img:before {
    border-width: 7px;
}
.b05-ttl {
    font-size: 20px;
    margin: 0 0 20px;
}
.copyright {
    text-align: center;
    font-size: 12px;
}
.popup-content {
	width:95%;
	margin: 30% auto;
}
.pp .box {
    width: 100%;
	padding:0;
}
.f-col01 {
    width: 100%;
}
   
}
@media screen and (max-width: 431px) {
	.pro-item,.pj-list .pro-item {
    width: 100%;
    margin: 0 0 30px;
}
.pro-item:nth-child(3n) {
    margin-right: 0;
}
    .news-item {
    width: 100%;
    margin: 0 0 30px;
}
 .news-item {
		width: 100%;
		margin-right:0;
	}
	.h_search_form {
		width: 100%;
	}
}
@media screen and (max-width: 375px){
.dichvu .b03-item{width:100%;}	
.b02-item, .b03-item {
    width: 100%;
}	
}