@charset "UTF-8";
/* #region */
* {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;outline: none;padding: 0;margin: 0;border: 0;background: transparent;}
html {-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;-webkit-tap-highlight-color: transparent;}
body {margin: 0;padding: 0;word-wrap: break-word;color: #333;background-color: #fff;line-height: 1.5;}
body,table,input,textarea,select,option {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
}
a {text-decoration: none;color: inherit;outline: none;-webkit-tap-highlight-color: transparent;-webkit-transition: all .5s;transition: all .5s;}
ol,ul {list-style: none;}
img {vertical-align: middle;max-width: 100%;height: auto;}
dl,dd,h1,h2,h3,h4,h5,h6 {font-weight: normal;}
button,input,optgroup,select,textarea {color: inherit;outline: none;}
button[disabled],html input[disabled] {cursor: default;}
input[type="checkbox"],input[type="radio"] {padding: 0;}
table {border-spacing: 0;border-collapse: collapse;}
a[href^="tel:"] {cursor: default;pointer-events: none;}
@media screen and (min-width: 769px) {
	.sp {display: none !important;}
}
/* #region */
.comWidth {
  padding: 0 50px;
  max-width: 1600px;
  margin: 0 auto;
}
#container {
    padding-top: 4.35rem;
}
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,.1);
    z-index: 500;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .logo {
    max-width: 13rem;
}
#header .nav {
    display: flex;
}
#header .nav > li {
    margin: 0 0.3vw;
}
#header .nav > li > a {
    display: block;
    font-size: .9rem;
    padding: 1.5rem 1rem;
    text-transform: uppercase;
}
#header .nav > li > a span {
    display: inline-block;
    position: relative;
}
#header .nav > li > a span:after {
    width: 100%;
    height: 2px;
    content: '';
    background-color: #0271bd;
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    -webkit-transition: all .5s;
    -webkit-transform: scale(0,1);
    transition: all .5s;
    transform: scale(0,1);
}
#header .nav > li.on > a span:after,
#header .nav > li:hover > a span:after {
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}
#header .nav > li.on > a,
#header .nav > li:hover > a {
    color: #0271bd;
}
#header .navdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all .5s;transition: all .5s;
    background-color: #fff;
    box-shadow: 0 1px 5px #ddd;
    padding: 2rem;
}
#header .nav > li:hover .navdown {
    opacity: 1;
    visibility: visible;
}
#header .navdown .catelist {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
}
#header .navdown .cate {
    margin: 0.6rem 2.66% 0.6rem 0;
    width: 23%;
}
#header .navdown .cate:nth-child(4n) {
    margin-right: 0;
}
#header .navdown .cate a {
    display: block;
    font-size: .9rem;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding-left: 0.7rem;
}
#header .navdown .cate a:before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    background-color: #0271bd;
    width: .4rem;
    height: .4rem;
    margin-top: -0.2rem;
    border-radius: 100%;
}
#header .navdown .cate a:hover {
    color: #0271bd;
    text-decoration: underline;
}
#header .hrox {
    display: flex;
    align-items: center;
}
#header .tel {
    margin-right: 1rem;
}
#header .tel a {
    display: block;
    font-size: 1rem;
}
#header .tel img {
    width: 1.3rem;
    display: inline-block;
    vertical-align: middle;
    margin: -0.15rem .3rem 0 0;
}
#header .search .btn {
    width: 2rem;
    height: 2rem;
    background: url("../img/search.png") no-repeat center center;
    background-size: 56% auto;
    cursor: pointer;
}
#header .search .btn.show {
    background-image: url("../img/close.png");
}
#header .search .open {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    padding: 2rem;
}
#header .search form {
    position: relative;
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
    max-width: 50rem;
    margin: 0 auto;
}
#header .search input {
	width: 100%;
	height: 3.5rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.4rem;
	color: #666;
	padding: 0 3.5rem 0 1rem;
}
#header .search button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 3.5rem;
	width: 3.5rem;
	background: url("../img/search.png") no-repeat center center;
	background-size: 45% auto;
}
#footer {
    margin-top: 5rem;
    background-color: #23263a;
}
#footer .fcet {
    padding: 4rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#footer .formbox {
    width: 40%;
}
#footer .formbox p {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: capitalize;
}
#footer .formbox input {
    width: 100%;
    height: 2.8rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: none;
    border: none;
    font-size: .9rem;
    padding: 0 1rem;
}
#footer .formbox .line {
    display: flex;
    justify-content: space-between;
}
#footer .formbox .line .item {
    width: 48%;
}
#footer .formbox .item {
    margin-bottom: 1rem;
}
#footer .formbox textarea {
    width: 66%;
    height: 2.8rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: none;
    border: none;
    font-size: .9rem;
    padding: .8rem 1rem 0 1rem;
    resize: none;
}
#footer .formbox .cont {
    display: flex;
    justify-content: space-between;
}
#footer .formbox button {
    width: 30%;
    height: 2.8rem;
    text-align: center;
    background-color: #0271bd;
    color: #fff;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border: none;
    font-size: .9rem;
    cursor: pointer;
}
#footer .formbox button:hover {
    background-color: #84CB55;
}
#footer .fcet ul {
    width: 50%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    margin-top: -2rem;
}
#footer .fcet ul li {
    width: 48%;
    margin-top: 2rem;
}
#footer .fcet ul .txt1 {
    display: flex;
    align-items: center;
}
#footer .fcet ul .icon {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .8rem;
}
#footer .fcet ul .icon img {
    max-width: 50%;
}
#footer .fcet ul .txt1 p {
    font-size: 1.3rem;
    font-weight: bold;
}
#footer .fcet ul .txt2 {
    font-size: 1rem;
    margin: 0.2rem 0 0 3.8rem;
}
#footer .fcet ul li:last-child .txt2 {
    display: flex;
    align-items: center;
}
#footer .fcet ul .code {
    width: 6rem;
}
#footer .fcet ul .share {
    display: flex;
}
#footer .fcet ul .share a {
    display: block;
    margin-left: 1rem;
}
#footer .fcet ul .share img {
    width: 1.4rem;
}
#footer .fcet ul .share a:hover {
    opacity: 0.7;
}
#footer .fbtm {
    padding: 1rem 4%;
    color: #fff;
    font-size: .8rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.4);
}
#footer .fbtm a:hover {
    text-decoration: underline;
}
#pageTop{position:fixed;right:3rem;bottom:3rem;opacity:0;visibility:hidden;transform:translateY(100%);-webkit-transform:translateY(100%);z-index:888;transition:all .6s ease}
#pageTop.show{opacity:1;-webkit-opacity:1;visibility:visible;transform:none;-webkit-transform:none}
#pageTop .inn span{background-color:rgba(2, 113, 189,.7);position:absolute;width:100%;height:100%;border-radius:50%;-webkit-border-radius:50%;opacity:0;-webkit-opacity:0;z-index:-1}
#pageTop img{width: 1.3rem;}
#pageTop .inn a{width:3.2rem;height:3.2rem;border-radius:50%;-webkit-border-radius:50%;align-items:center;justify-content:center;z-index:2;background-color:#0271bd;display:flex}
#pageTop .inn .circle01{animation:scale01 2s .4s infinite;-webkit-animation:scale01 2s .4s infinite}
@keyframes scale01{0%{transform:scale(1);-webkit-transform:scale(1);opacity:1;-webkit-opacity:1}
100%{transform:scale(1.4);-webkit-transform:scale(1.4);opacity:0;-webkit-opacity:0}
}@-webkit-keyframes scale01{0%{transform:scale(1);-webkit-transform:scale(1);opacity:1;-webkit-opacity:1}
100%{transform:scale(1.4);-webkit-transform:scale(1.4);opacity:0;-webkit-opacity:0}
}#pageTop .inn .circle02{animation:scale02 2s infinite;-webkit-animation:scale02 2s infinite}
@keyframes scale02{0%{transform:scale(1);-webkit-transform:scale(1);opacity:1;-webkit-opacity:1}
100%{transform:scale(1.8);-webkit-transform:scale(1.8);opacity:0;-webkit-opacity:0}
}@-webkit-keyframes scale02{0%{transform:scale(1);-webkit-transform:scale(1);opacity:1;-webkit-opacity:1}
100%{transform:scale(1.8);-webkit-transform:scale(1.8);opacity:0;-webkit-opacity:0}
}#pageTop .bubble{width:100%;height:100%;position:absolute;left:0;top:0;z-index:-1}
#pageTop .bubble span{display:block;width:20px;height:20px;border-radius:50%;-webkit-border-radius:50%;z-index:-1;transition:ease 1s;-webkit-transition:ease 1s;position:absolute;left:50%;bottom:0;transform:translateX(-50%);-webkit-transform:translateX(-50%);opacity:0;-webkit-opacity:0}
#pageTop .bubble span:nth-child(1){animation:pao 4s linear infinite;-webkit-animation:pao 4s linear infinite;background-color:rgba(2, 113, 189,.6)}
#pageTop .bubble span:nth-child(2){animation:pao3 6s linear infinite;-webkit-animation:pao3 6s linear infinite;-webkit-transition-delay:0.3s;transition-delay:0.3s;background-color:rgba(2, 113, 189,.8)}
#pageTop .bubble span:nth-child(3){animation:pao2 3s linear infinite;-webkit-animation:pao2 3s linear infinite;-webkit-transition-delay:0.8s;transition-delay:0.8s;background-color:rgba(2, 113, 189,1)}
#pageTop .bubble span:nth-child(4){animation:pao4 9s linear infinite;-webkit-animation:pao4 9s linear infinite;background-color:rgba(2, 113, 189,.3)}
#pageTop .bubble span:nth-child(5){animation:pao5 7s linear infinite;-webkit-animation:pao5 7s linear infinite;background-color:rgba(2, 113, 189,.5)}
@keyframes pao{0%{transform:translate(200%,-30px) rotate(360deg) scale(.4,.4);-webkit-transform:translate(200%,-30px) rotate(360deg) scale(.4,.4);opacity:1;-webkit-opacity:1}
50%{transform:translate(0%,-70px) rotate(360deg) scale(.8,.8);-webkit-transform:translate(0%,-70px) rotate(360deg) scale(.8,.8);opacity:.5;-webkit-opacity:.5}
100%{transform:translate(-200%,-100px) rotate(360deg) scale(1,1);-webkit-transform:translate(-200%,-100px) rotate(360deg) scale(1,1);opacity:0;-webkit-opacity:0}
}@keyframes pao2{0%{transform:translate(-200%,0px) rotate(360deg) scale(1,1);-webkit-transform:translate(-200%,0px) rotate(360deg) scale(1,1);opacity:1;-webkit-opacity:1}
50%{transform:translate(250%,-50px) rotate(360deg) scale(.8,.8);-webkit-transform:translate(250%,-50px) rotate(360deg) scale(.8,.8);opacity:.5;-webkit-opacity:.5}
100%{transform:translate(100%,-100px) rotate(360deg) scale(.4,.4);-webkit-transform:translate(100%,-100px) rotate(360deg) scale(.4,.4);opacity:0;-webkit-opacity:0}
}@keyframes pao3{0%{transform:translate(0%,0px) rotate(360deg) scale(1,1);-webkit-transform:translate(0%,0px) rotate(360deg) scale(1,1);opacity:1;-webkit-opacity:1}
50%{transform:translate(-250%,-50px) rotate(360deg) scale(.8,.8);-webkit-transform:translate(-250%,-50px) rotate(360deg) scale(.8,.8);opacity:.5;-webkit-opacity:.5}
100%{transform:translate(-300%,-100px) rotate(360deg) scale(.4,.4);-webkit-transform:translate(-300%,-100px) rotate(360deg) scale(.4,.4);opacity:0;-webkit-opacity:0}
}@keyframes pao4{0%{transform:translate(400%,0px) rotate(360deg) scale(1,1);-webkit-transform:translate(400%,0px) rotate(360deg) scale(1,1);opacity:1;-webkit-opacity:1}
50%{transform:translate(400%,-50px) rotate(360deg) scale(.8,.8);-webkit-transform:translate(400%,-50px) rotate(360deg) scale(.8,.8);opacity:.5;-webkit-opacity:.5}
100%{transform:translate(-100%,-100px) rotate(360deg) scale(.4,.4);-webkit-transform:translate(-100%,-100px) rotate(360deg) scale(.4,.4);opacity:0;-webkit-opacity:0}
}@keyframes pao5{0%{transform:translate(-400%,0px) rotate(360deg) scale(.1,.1);-webkit-transform:translate(-400%,0px) rotate(360deg) scale(.1,.1);opacity:1;-webkit-opacity:1}
50%{transform:translate(-400%,-50px) rotate(360deg) scale(.6,.6);-webkit-transform:translate(-400%,-50px) rotate(360deg) scale(.6,.6);opacity:.5;-webkit-opacity:.5}
100%{transform:translate(0%,-100px) rotate(360deg) scale(1,1);-webkit-transform:translate(0%,-100px) rotate(360deg) scale(1,1);opacity:0;-webkit-opacity:0}
}
.comTtl {
    font-size: 2.8rem;
    text-align: center;
    background: url("../img/wav.png") no-repeat center bottom;
    background-size: 3rem auto;
    margin-bottom: 2rem;
    padding-bottom: .5rem;
}
.comLink a {
    padding-right: 2rem;
    display: inline-block;
    color: #0271bd;
    font-size: 1rem;
    font-style: italic;
    background: url("../img/arrow.png") no-repeat right center;
    background-size: 1.2rem auto;
}
.comLink a:hover {
    letter-spacing: 3px;
}
.indexPage .box1 .swiper-slide img {
    width: 100%;
}
.indexPage .box2 {
    margin: 5rem 0;
}
.indexPage .box2 .txt {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
    font-size: 1rem;
    margin-bottom: 3rem;
}
.indexPage .box2 ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.indexPage .box2 ul li:first-child {
    width: 50%;
    height: 30rem;
    border-radius: 20px;
}
.indexPage .box2 ul li:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.indexPage .box2 ul li:last-child {
    width: 45%;
}
.indexPage .box2 ul li .photo {
    height: 18rem;
}
.indexPage .box2 ul li .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.indexPage .box2 ul p {
    text-align: center;
    margin: 3rem 0;
    font-size: 1rem;
    text-transform: capitalize;
}
.indexPage .box2 ul .comLink {
    text-align: center;
}
.indexPage .box3 {
    padding: 4rem 0 5rem;
    background: #f1f2f6 url("../img/bg2.png") no-repeat left bottom;
}
.indexPage .box3 .comTtl {
    text-align: left;
    background-position: left bottom;
}
.indexPage .box3 .arrow {
    position: relative;
}
.indexPage .box3 .swiper-button-next:after,
.indexPage .box3 .swiper-button-prev:after {
    font-size: 1rem;
    color: #84CB55;
}
.indexPage .box3 .swiper-button-next,
.indexPage .box3 .swiper-button-prev {
    top: 1rem;
    width: 3rem;
    height: 3rem;
    margin: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 100%;
}
.indexPage .box3 .swiper-button-next {
    right: 0;
}
.indexPage .box3 .swiper-button-prev {
    left: inherit;
    right: 4rem;
}
.indexPage .box3 .swiper-button-next:hover,
.indexPage .box3 .swiper-button-prev:hover {
    box-shadow: 0 0 10px rgba(132, 203, 85, 0.8);
}
.indexPage .box3 .swiper-slide a {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
}
.indexPage .box3 .swiper-slide {
    width: 34rem;
    margin: 0 1rem;
}
.indexPage .box3 .swiper-slide .photo {
    width: 45%;
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.indexPage .box3 .swiper-slide .photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.indexPage .box3 .swiper-slide a:hover .photo img {
	-webkit-transform: scale(1.1) translateY(-10px);
    transform: scale(1.1) translateY(-10px);
}
.indexPage .box3 .swiper-slide .txtbox {
    width: 50%;
    position: relative;
    padding-bottom: 2.5rem;
}
.indexPage .box3 .swiper-slide .type {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
    font-style: italic;
}
.indexPage .box3 .swiper-slide .name {
    font-size: 1.3rem;
    text-transform: capitalize;
    -webkit-transition: all .5s;transition: all .5s;
}
.indexPage .box3 .swiper-slide .link {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 0.9rem;
    text-decoration: underline;
    color: #0271bd;
    -webkit-transition: all .5s;transition: all .5s;
}
.indexPage .box3 .swiper-slide a:hover .name {
    color: #0271bd;
}
.indexPage .box3 .swiper-slide a:hover .link {
    letter-spacing: 3px;
}
.indexPage .box4 {
    margin: 5rem 0;
}
.indexPage .box4 .topbox {
    margin-bottom: 3.5rem;
}
.indexPage .box4 .topbox .comWidth {
    display: flex;
    justify-content: space-between;
}
.indexPage .box4 .comTtl {
    margin-bottom: 0;
    background-position: left bottom;
}
.indexPage .box4 .topbox .txt {
    max-width: 60%;
    font-size: .95rem;
}
.indexPage .box4 ul {
    display: flex;
    justify-content: space-around;
}
.indexPage .box4 ul li {
    width: 9.3%;
    height: 25rem;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
    -webkit-transition: all .5s;transition: all .5s;
    position: relative;
}
.indexPage .box4 ul li.on {
    width: 43%;
}
.indexPage .box4 ul li:before {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: rgba(0,0,0,0.3);
	z-index: 1;
	-webkit-transition: all .5s;transition: all .5s;
    border-radius: 10px;
}
.indexPage .box4 ul li.on:before {
    background-color: transparent;
}
.indexPage .box4 ul li:nth-child(2n) {
    margin-top: 2rem;
}
.indexPage .box4 ul p {
    position: absolute;
    left: 50%;
    top: 50%;
	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-transform: capitalize;
    color: #fff;
    font-size: 0.9rem;
    z-index: 2;
    -webkit-transition: all .5s;transition: all .5s;
}
.indexPage .box4 ul li.on p {
    left: 2rem;
    top: inherit;
    bottom: 2rem;
    -webkit-transform: none;
    transform: none;
    font-size: 1.5rem;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
}
.indexPage .box5 ul {
    display: flex;
    justify-content: space-between;
}
.indexPage .box5 li {
    width: 31%;
}
.indexPage .box5 li a {
    display: block;
    height: 100%;
    position: relative;
    padding-bottom: 3rem;
}
.indexPage .box5 ul .photo {
    padding-bottom: 62%;
    position: relative;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.indexPage .box5 ul .photo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.indexPage .box5 ul a:hover .photo img {
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.indexPage .box5 ul .time {
    color: #999;
    font-size: .9rem;
    margin-bottom: .8rem;
}
.indexPage .box5 ul .title {
    font-size: 1.05rem;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.indexPage .box5 ul .link {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 0.9rem;
    color: #0271bd;
    text-decoration: underline;
    -webkit-transition: all .5s;transition: all .5s;
}
.indexPage .box5 ul a:hover .title {
    color: #0271bd;
}
.indexPage .box5 ul a:hover .link {
    letter-spacing: 3px;
}
.indexPage .box6 {
    background: #f1f2f6 url("../img/bg1.png") no-repeat right bottom;
    padding: 3.5rem 0;
    margin-bottom: 5rem;
    overflow-x: hidden;
}
.indexPage .box6 .comWidth {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexPage .box6 .lbox {
    width: 60%;
    background-color: #fff;
    border-radius: 0 200px 200px 0;
    padding: 2.5rem 2.5rem 2.5rem 0;
    position: relative;
}
.indexPage .box6 .lbox:before {
    position: absolute;
    right: 100%;
    width: 2000px;
    top: 0;
    bottom: 0;
    content: "";
    background-color: #fff;
}
.indexPage .box6 .lbox h2 {
    background: url("../img/wav.png") no-repeat left center;
    background-size: 2.8rem auto;
    padding-left: 4rem;
    color: #0271bd;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.indexPage .box6 .lbox p {
    font-size: 1.8rem;
    text-transform: capitalize;
    font-style: italic;
}
.indexPage .box6 .lbox p span {
    position: relative;
}
.indexPage .box6 .lbox p span:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background-color: rgba(2, 113, 189,0.5);
    width: 100%;
    height: .5rem;
}
.indexPage .box6 .rbox {
    width: 30%;
    text-align: center;
}
.indexPage .box6 .rbox a {
    padding-right: 2.2rem;
    display: inline-block;
    color: #0271bd;
    font-size: 1.3rem;
    font-style: italic;
    background: url("../img/arrow.png") no-repeat right center;
    background-size: 1.5rem auto;
}
.indexPage .box6 .rbox a:hover {
    letter-spacing: 3px;
}
.comPath {
    color: #888;
    font-size: .8rem;
    text-transform: capitalize;
    background: url("../img/icon1.png") no-repeat left top 1.15rem;
    background-size: 0.9rem auto;
    padding: 1rem 0 2rem 1.2rem;
}
.comPath a:hover {
    color: #0271bd;
    text-decoration: underline;
}
.comTopic {
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: bold;
    background: url("../img/wav.png") no-repeat center bottom;
    background-size: 3rem auto;
    margin-bottom: 4rem;
}
.newsPage .listul {
    display: flex;
    flex-wrap: wrap;
}
.newsPage .listul li {
    width: 31%;
    margin: 0 3.5% 3rem 0;
}
.newsPage .listul li:nth-child(3n) {
    margin-right: 0;
}
.newsPage .listul li a {
    display: block;
    height: 100%;
    position: relative;
    padding-bottom: 3rem;
}
.newsPage .listul .photo {
    padding-bottom: 62%;
    position: relative;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.newsPage .listul .photo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.newsPage .listul a:hover .photo img {
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.newsPage .listul .time {
    color: #999;
    font-size: .85rem;
    margin-bottom: .8rem;
}
.newsPage .listul .title {
    font-size: 1rem;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}
.newsPage .listul .link {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: .9rem;
    color: #0271bd;
    text-decoration: underline;
    -webkit-transition: all .5s;transition: all .5s;
}
.newsPage .listul a:hover .title {
    color: #0271bd;
}
.newsPage .listul a:hover .link {
    letter-spacing: 3px;
}
.pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.pagination a {
	margin: 0 .15rem .25rem;
	display: inline-block;
	padding: .5rem 0;
	min-width: 2.4rem;
	text-align: center;
	border-radius: 100%;
    font-size: .9rem;
}
.pagination .page-status {
	margin-right: .5rem;
}
.pagination a:hover,
.pagination .page-num-current {
	background-color: #0271bd;
	color: #fff;
}
.privacyPage .inner h2 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.privacyPage .inner p {
    color: #666;
    font-size: .9rem;
    line-height: 2;
    margin-bottom: 2rem;
}
.privacyPage .inner a {
    color: #0271bd;
    text-decoration: underline;
}
.contactPage .bgbox {
    padding-bottom: 4rem;
    background: url("../img/bg3.png") repeat-x center bottom;
}
.contactPage .bgbox .txt {
    font-size: 1.1rem;
    margin: -3rem 0 5.5rem;
    text-align: center;
    color: #666;
    font-style: italic;
}
.contactPage .bgbox ul {
    display: flex;
    justify-content: space-between;
}
.contactPage .bgbox li {
    width: 31%;
}
.contactPage .bgbox ul .txt1 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.contactPage .bgbox ul .icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #0271bd;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}
.contactPage .bgbox ul .icon img {
    width: 50%;
}
.contactPage .bgbox ul .txt1 p {
    font-size: 1.5rem;
    font-weight: bold;
}
.contactPage .bgbox ul .txt2 {
    font-size: 1.1rem;
}
.contactPage .bgbox ul .txt2 a {
    font-size: 1.2rem;
}
.contactPage .mapbox img {
    width: 100%;
    border-radius: 10px;
}
.comList {
    display: flex;
    flex-wrap: wrap;
}
.comList li {
    width: 31%;
    margin: 0 3.5% 3rem 0;
}
.comList li:nth-child(3n) {
    margin-right: 0;
}
.comList a {
    display: block;
}
.comList .photo {
    padding-bottom: 62%;
    position: relative;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.comList .photo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.comList a:hover .photo img {
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.comList .ttl {
    font-size: 1rem;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
    text-transform: capitalize;
}
.comList .txt {
    color: #666;
    font-size: .85rem;
}
.comList a:hover .ttl {
    color: #0271bd;
}
.detailPage .cate {
    margin: 1rem 0;
}
.detailPage .cate span {
    display: inline-block;
    background-color: #0271bd;
    color: #fff;
    font-size: .9rem;
    text-transform: capitalize;
    padding: 0.5rem 1.5rem;
}
.detailPage h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: capitalize;
}
.detailPage .time {
    color: #666;
    font-size: 0.9rem;
    background: url("../img/icon3.png") no-repeat left center;
    background-size: 1.1rem auto;
    padding-left: 1.6rem;
    margin-bottom: 2rem;
}
.detailPage .infobox {
    border-top: 2px solid #e5f3fa;
    border-bottom: 2px solid #e5f3fa;
    padding: 2rem 0;
}
.detailPage .infobox,
.detailPage .infobox * {
    font-size: .9rem !important;
    line-height: 2 !important;
    color: #444 !important;
}
.detailPage .infobox img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
}
.detailPage .infobox table {
	width: 100% !important;
}
.detailPage .infobox table tr:nth-child(2n+1) {
  background-color: #F4F4F4;
}
.detailPage .infobox table th,
.detailPage .infobox table td {
	border: 1px solid #e4dfdf;
	padding: .5rem;
	word-break: break-all;
}
.detailPage .infobox table tr:hover {
    cursor: pointer;
    background-color: rgba(2, 113, 189,0.2);
}
.detailPage .infobox a,
.detailPage .infobox a * {
    color: #0271bd !important;
    text-decoration: underline;
}
.comPageList {
    margin-top: 2rem;
}
.comPageList li:first-child {
    margin-bottom: 1.2rem;
}
.comPageList a {
    display: flex;
    align-items: center;
    font-size: 1rem;
}
.comPageList .txt1 {
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: bold;
    border-right: 1px solid #333;
    padding-right: 1.2rem;
}
.comPageList .txt1 img {
    width: 1.5rem;
    display: inline-block;
    vertical-align: middle;
    margin: -0.2rem 0.8rem 0 0;
}
.comPageList .txt2 {
    padding-left: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}
.comPageList a:hover {
    color: #0271bd;
}
.comMore {
    margin-top: 5rem;
}
.comMore h2 {
    font-size: 1.3rem;
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.comMore h2:before {
    position: absolute;
    left: 0;
    top: .3rem;
    bottom: .3rem;
    content: "";
    background-color: #0271bd;
    width: .3rem;
}
.comMore ul {
    display: flex;
    justify-content: space-between;
}
.comMore ul li {
    width: 31%;
}
.comMore ul a {
    display: block;
}
.comMore ul .photo {
    padding-bottom: 62%;
    position: relative;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.comMore ul .photo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.comMore ul a:hover .photo img {
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.comMore ul p {
    font-size: 0.95rem;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}
.comMore ul a:hover p {
    color: #0271bd;
}
.aboutPage .box1 h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    font-style: italic;
}
.aboutPage .box1 .txt {
    font-size: .95rem;
    line-height: 2;
    margin: 0 6%;
    text-indent: 2em;
    color: #444;
}
.aboutPage .box1 ul {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
}
.aboutPage .box1 ul li {
    width: 31%;
    height: 15rem;
    border-radius: 20px;
    color: #444;
}
.aboutPage .box1 ul img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.aboutPage .box2 {
    margin-top: 4rem;
    padding: 4rem 0 10rem;
    background: url("../img/bg4.jpg") no-repeat center center fixed;
    background-size: cover;
}
.aboutPage .box2 h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    font-style: italic;
}
.aboutPage .box2 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.aboutPage .box2 ul li {
    width: 49%;
    font-size: .9rem;
    background-color: rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.aboutPage .box2 ul span {
    display: block;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    text-transform: capitalize;
}
.aboutPage .box2 ul span:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background-color: rgba(2, 113, 189,0.5);
    width: 5rem;
    height: .5rem;
    -webkit-transition: all .5s;transition: all .5s;
}
.aboutPage .box2 ul li:hover span:before {
    width: 12rem;
}
.aboutPage .box3 {
    text-align: center;
    margin-top: -7rem;
}
.productPage .inner {
    display: flex;
    justify-content: space-between;
}
.productPage .sidebar {
    width: 25%;
}
.productPage .sidebar .proul > li {
    background-color: #F5F5F5;
    margin-bottom: .5rem;
}
.productPage .sidebar .proul h2 {
    font-size: .9rem;
    text-transform: capitalize;
    padding: .8rem 2.5rem .8rem 1rem;
    background: url("../img/icon6.png") no-repeat right 1rem center;
    background-size: 0.7rem auto;
    cursor: pointer;
}
.productPage .sidebar .proul > li.on h2 {
    background-image: url("../img/icon7.png");
    background-color: #0271bd;
    color: #fff;
}
.productPage .sidebar .protwo {
    display: none;
    padding: .5rem 0;
}
.productPage .sidebar .proul li.on .protwo {
  display: block;
}
.productPage .sidebar .protwo a {
    display: block;
    font-size: .85rem;
    padding: .5rem 2.5rem .5rem 1rem;
    background: url("../img/icon8.png") no-repeat right 1rem center;
    background-size: 0.8rem auto;
    text-transform: capitalize;
}
.productPage .sidebar .protwo li.on a,
.productPage .sidebar .protwo a:hover {
    color: #0271bd;
    background-image: url("../img/icon9.png");
}
.productPage .conts {
    width: 72%;
}
.productPage .conts ul li {
    margin-bottom: 1rem;
}
.productPage .conts ul a {
    border: 1px solid #e5e5e5;
    display: flex;
}
.productPage .conts ul .photo {
    width: 35%;
    height: 14rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.productPage .conts ul .photo img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
}
.productPage .conts ul .rbox {
    width: 65%;
    padding: 1.5rem 1.5rem 3.5rem;
    position: relative;
}
.productPage .conts ul .type {
    color: #444;
    font-size: .9rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}
.productPage .conts ul .name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}
.productPage .conts ul .txt {
    font-size: 0.8rem;
    color: #666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.productPage .conts ul .link {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    color: #0271bd;
    font-size: .8rem;
    background: url("../img/icon10.png") no-repeat right center;
    background-size: 1rem auto;
    padding-right: 1.5rem;
    text-decoration: underline;
}
.productPage .conts ul a:hover .name {
    color: #0271bd;
}
.prodetailPage .topbox {
    background-color: #F5F5F5;
    padding-bottom: 3.5rem;
    margin-bottom: 3.5rem;
}
.prodetailPage .topbox .imgbox {
    display: flex;
    justify-content: space-between;
}
.prodetailPage .topbox .lbox {
    width: 40%;
    height: 21rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prodetailPage .topbox .lbox img {
    width: auto;
    height: auto;
    max-width: 86%;
    max-height: 86%;
}
.prodetailPage .topbox .rbox {
    width: 56%;
}
.prodetailPage .topbox h1 {
    font-size: 1.7rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2rem;
    text-transform: capitalize;
}
.prodetailPage .topbox .listul li {
    font-size: .9rem;
    color: #666;
    margin-bottom: .5rem;
    position: relative;
    padding-left: 9.5rem;
}
.prodetailPage .topbox .listul li:before {
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    background-color: #0271bd;
    content: "";
}
.prodetailPage .topbox .listul span {
    color: #0271bd;
    position: absolute;
    left: 1rem;
    top: 0;
}
.prodetailPage .topbox .telul {
    max-width: 30rem;
    border: 2px solid #0271bd;
    display: flex;
    margin-top: 3rem;
}
.prodetailPage .topbox .telul li {
    width: 50%;
}
.prodetailPage .topbox .telul li:first-child {
    background-color: #0271bd;
    color: #fff;
}
.prodetailPage .topbox .telul a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    padding: 1rem 0;
}
.prodetailPage .topbox .telul img {
    width: 1.3rem;
    margin-right: .5rem;
}
.prodetailPage .inner .ttl {
    padding: 0 0 .7rem 2rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #0271bd;
    text-transform: uppercase;
    color: #0271bd;
    background: url("../img/icon12.png") no-repeat left top 0.2rem;
    background-size: 1.5rem auto;
    position: relative;
    margin-bottom: 1.5rem;
}
.prodetailPage .inner .ttl:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 0.3rem;
    width: 17.5rem;
    background-color: #0271bd;
}
.prodetailPage .inner .info,
.prodetailPage .inner .info * {
    font-size: 0.9rem;
    line-height: 2;
    color: #666;
}
.prodetailPage .inner .info img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
}
.prodetailPage .inner .info table {
	width: 100% !important;
}
.prodetailPage .inner .info table tr:nth-child(2n+1) {
  background-color: #F4F4F4;
}
.prodetailPage .inner .info table th,
.prodetailPage .inner .info table td {
	border: 1px solid #e4dfdf;
	padding: .5rem;
	word-break: break-all;
    line-height: 1.6;
}
.prodetailPage .inner .info table th *,
.prodetailPage .inner .info table td * {
    line-height: 1.6;
}
.prodetailPage .inner .info table tr:hover {
    cursor: pointer;
    background-color: rgba(2, 113, 189,0.2);
}
.prodetailPage .inner .info a,
.prodetailPage .inner .info a * {
    color: #0271bd !important;
    text-decoration: underline;
}
.prodetailPage .inner .box1,
.prodetailPage .inner .box2,
.prodetailPage .inner .box3 {
    margin-bottom: 3rem;
}
.prodetailPage .inner .box1 .info p {
    margin-bottom: 1rem;
}
.prodetailPage .inner .box2 ul li {
    margin-bottom: 0.5rem;
    border: 1px solid #e5e5e5;
    padding: 0.5rem 1rem 0.5rem 3.5rem;
    position: relative;
}
.prodetailPage .inner .box2 ul li:before {
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    content: "01";
    color: #0271bd;
    font-size: 0.9rem;
    font-style: italic;
}
.prodetailPage .inner .box2 ul li:nth-child(2):before {
    content: "02";
}
.prodetailPage .inner .box2 ul li:nth-child(3):before {
    content: "03";
}
.prodetailPage .inner .box2 ul li:nth-child(4):before {
    content: "04";
}
.prodetailPage .inner .box2 ul li:nth-child(5):before {
    content: "05";
}
.prodetailPage .inner .box2 ul li:nth-child(6):before {
    content: "06";
}
.prodetailPage .inner .box2 ul li:nth-child(7):before {
    content: "07";
}
.prodetailPage .inner .box2 ul li:nth-child(8):before {
    content: "08";
}
.prodetailPage .inner .box2 ul li:nth-child(9):before {
    content: "09";
}
.prodetailPage .inner .box2 ul li:nth-child(10):before {
    content: "10";
}
.prodetailPage .inner .box2 ul li:nth-child(11):before {
    content: "11";
}
.prodetailPage .inner .box2 ul li:nth-child(12):before {
    content: "12";
}
.prodetailPage .inner .box2 ul li:nth-child(13):before {
    content: "13";
}
.prodetailPage .inner .box2 ul li:nth-child(14):before {
    content: "14";
}
.prodetailPage .inner .box2 ul li:nth-child(15):before {
    content: "15";
}
.prodetailPage .inner .box2 ul li:nth-child(16):before {
    content: "16";
}
.prodetailPage .inner .box2 ul li:nth-child(17):before {
    content: "17";
}
.prodetailPage .inner .box2 ul li:nth-child(18):before {
    content: "18";
}
.prodetailPage .inner .box2 ul li:nth-child(19):before {
    content: "19";
}
.prodetailPage .inner .box2 ul li:nth-child(20):before {
    content: "20";
}
.prodetailPage .inner .box2 ul li:nth-child(21):before {
    content: "21";
}
.prodetailPage .inner .box2 ul li:nth-child(22):before {
    content: "22";
}
.prodetailPage .inner .box2 ul li:nth-child(23):before {
    content: "23";
}
.prodetailPage .inner .box2 ul li:nth-child(24):before {
    content: "24";
}
.prodetailPage .inner .box2 ul li:nth-child(25):before {
    content: "25";
}
.prodetailPage .inner .box2 ul li:nth-child(26):before {
    content: "26";
}
.prodetailPage .inner .box2 ul li:nth-child(27):before {
    content: "27";
}
.prodetailPage .inner .box2 ul li:nth-child(28):before {
    content: "28";
}
.prodetailPage .inner .box2 ul li:nth-child(29):before {
    content: "29";
}
.prodetailPage .inner .box2 ul li:nth-child(30):before {
    content: "30";
}
.prodetailPage .otherbox {
    margin-top: 5rem;
}
.prodetailPage .otherbox h2 {
    font-size: 1.3rem;
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.prodetailPage .otherbox h2:before {
    position: absolute;
    left: 0;
    top: .3rem;
    bottom: .3rem;
    content: "";
    background-color: #0271bd;
    width: .3rem;
}
.prodetailPage .otherbox ul {
    display: flex;
    justify-content: space-between;
}
.prodetailPage .otherbox ul li {
    width: 23.5%;
}
.prodetailPage .otherbox ul a {
    display: block;
    background-color: #f5f5f5;
    height: 100%;
    padding: 1rem;
}
.prodetailPage .otherbox ul .photo {
    margin-bottom: 0.5rem;
    height: 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prodetailPage .otherbox ul .photo img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.prodetailPage .otherbox ul a:hover .photo img {
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.prodetailPage .otherbox ul p {
    font-size: 0.95rem;
    text-transform: capitalize;
}
.prodetailPage .otherbox ul a:hover {
    background-color: rgba(2, 113, 189,0.1);
}
.searchPage h1 {
    font-size: 1.7rem;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 3rem;
}
.searchPage form {
    max-width: 900px;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 0 auto 3rem;
}
.searchPage form input {
    width: 100%;
    height: 3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    padding: 0 7rem 0 1rem;
    font-size: 1rem;
}
.searchPage form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #0271bd;
    border-radius: 0 10px 10px 0;
    box-shadow: none;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    cursor: pointer;
}
.searchPage ul {
    display: flex;
    flex-wrap: wrap;
}
.searchPage ul li {
    width: 23.5%;
    margin: 0 2% 1rem 0;
}
.searchPage ul li:nth-child(4n) {
    margin-right: 0;
}
.searchPage ul a {
    display: block;
    height: 100%;
    background-color: #f5f5f5;
    padding: 1rem;
}
.searchPage ul .photo {
    height: 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.searchPage ul .photo img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}
.searchPage ul .cate {
    display: inline-block;
    color: #fff;
    background-color: #0271bd;
    text-transform: capitalize;
    font-size: .9rem;
    padding: 0.2rem 1rem;
    margin-bottom: 1rem;
}
.searchPage ul .txt {
    font-size: 1rem;
}
.searchPage ul a:hover {
    background-color: rgba(2, 113, 189,0.1);
}
@media screen and (min-width: 1540px) {
	html,body {font-size: 20px;}
}
@media screen and (max-width: 1539px) {
	html,body {font-size: 19px;}
	/* #region */
    #header {padding: 0 2%;}
    #header .tel {margin-right: 0.8rem;}
    #header .logo {max-width: 12.5rem;}
    #header .nav > li > a {padding-left: 0.8rem;padding-right: 0.8rem;}
    #footer .fcet {padding-left: 2%;padding-right: 2%;}
    #footer .fcet ul {width: 53%;}
}
@media screen and (max-width: 1299px) {
	html,body {font-size: 18px;}
	/* #region */
    #header .tel {margin-right: 0.5rem;}
    #header .logo {max-width: 11rem;}
    #header .nav > li > a {padding-left: 0.5rem;padding-right: 0.5rem;}
    #footer .fcet ul {width: 55%;}
    #footer .fcet ul .share a {margin-left: 0.5rem;}
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
	.comWidth {width: 95%;padding-left: 0;padding-right: 0;}
}
@media screen and (max-width: 768px) {
    body {font-size: inherit !important;}
	.pc {display: none !important;}
	a[href^="tel:"] {cursor: pointer;pointer-events: auto;}
	.comWidth {width: 95%;padding-left: 0;padding-right: 0;}
	#toolbar{display: block;}
	/* #region */
    #container {
        padding-top: 4.9rem;
    }
    #header {
        padding: 1rem 5.5rem 1rem 1rem;
    }
    #header .logo {
        max-width: 15rem;
    }
    #header .nav {
        position: fixed;
        left: -101%;
        top: 0;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        padding: 1rem 0;
        transition: ease-out .36s;
        z-index: 666;
        overflow-y: auto;
        display: block;
    }
    #header .nav.on {
        left: 0;
    }
    #header .menu {
        position: absolute;
        right: 1rem;
        top: 50%;
        margin-top: -1.8rem;
        width: 3.6rem;
        padding: .8rem;
        transition: ease-out .36s;
    }
    #header .menu.on {
        transform: rotate(90deg);
    }
    #header .menu-shadow {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 600;
    }
    #header .nav > li {
        margin: 0;
    }
    #header .nav > li > a {
        font-size: 1.44rem;
        padding: 1rem;
    }
    #header .nav > li > a span:after {
        bottom: -0.2rem;
    }
    #header .navdown {
        opacity: 1;
        visibility: visible;
        position: static;
        top: inherit;
        left: inherit;
        box-shadow: none;
        padding: 0 1rem;
    }
    #header .navdown .catelist {
        display: block;
        max-width: inherit;
    }
    #header .navdown .cate {
        margin: 0 0 0.8rem;
        width: auto;
    }
    #header .navdown .cate a {
        font-size: 1.24rem;
    }
    #header .tel {
        margin-right: 1rem;
    }
    #header .tel a {
        font-size: 0;
    }
    #header .tel img {
        width: 1.8rem;
        display: block;
        margin: 0;
    }
    #header .search .btn {
        background-size: 80% auto;
    }
    #footer {
        margin-top: 3.2rem;
    }
    #footer .fcet {
        padding: 2rem 1rem;
        display: block;
    }
    #footer .formbox {
        width: auto;
    }
    #footer .formbox p {
        font-size: 1.6rem;
    }
    #footer .formbox input {
        width: 100%;
        height: 3.6rem;
        font-size: 1.28rem;
    }
    #footer .formbox .line {
        display: block;
    }
    #footer .formbox .line .item {
        width: auto;
    }
    #footer .formbox textarea {
        width: 100%;
        height: 6.4rem;
        font-size: 1.28rem;
        padding: 1rem;
    }
    #footer .formbox .cont {
        display: block;
    }
    #footer .formbox button {
        width: 10rem;
        height: 3.2rem;
        font-size: 1.28rem;
        margin: 1rem auto 0;
        display: block;
    }
    #footer .fcet ul {
        width: auto;
        display: block;
        margin-top: 0;
    }
    #footer .fcet ul li {
        width: auto;
        margin-top: 1.6rem;
    }
    #footer .fcet ul .txt1 p {
        font-size: 1.44rem;
    }
    #footer .fcet ul .txt2 {
        font-size: 1.25rem;
        margin: 0 0 0 3.8rem;
    }
    #footer .fcet ul .share a {
        margin-left: 1.3rem;
    }
    #footer .fcet ul .share img {
        width: 1.6rem;
    }
    #footer .fbtm {
        padding: 1rem;
        font-size: 1.12rem;
        display: block;
        text-align: center;
    }
    #pageTop{right:1.2rem;bottom:1.2rem;}
    #pageTop img{width:1.44rem}
    .comTtl {
        font-size: 2rem;
        margin-bottom: 1.6rem;
    }
    .comLink a {
        font-size: 1.2rem;
    }
    .indexPage .box2 {
        margin: 3.2rem 0;
    }
    .indexPage .box2 .txt {
        max-width: inherit;
        text-align: left;
        line-height: 1.6;
        font-size: 1.28rem;
        margin-bottom: 1.6rem;
    }
    .indexPage .box2 ul li:first-child {
        height: 23rem;
        border-radius: 10px;
    }
    .indexPage .box2 ul li:first-child img {
        border-radius: 10px;
    }
    .indexPage .box2 ul li:last-child {
        width: 47%;
    }
    .indexPage .box2 ul li .photo {
        height: 10rem;
    }
    .indexPage .box2 ul li .photo img {
        border-radius: 10px;
    }
    .indexPage .box2 ul p {
        margin: 1.6rem 0;
        font-size: 1.28rem;
    }
    .indexPage .box3 {
        padding: 2.5rem 0 3.2rem;
        background-size: 100% auto;
    }
    .indexPage .box3 .swiper-button-next,
    .indexPage .box3 .swiper-button-prev {
        top: 0;
    }
    .indexPage .box3 .swiper-slide a {
        display: block;
        border-radius: 10px;
        padding: 1.5rem;
        height: 100%;
        position: relative;
    }
    .indexPage .box3 .swiper-slide {
        width: 22rem;
        margin: 0 0.8rem;
        height: auto;
    }
    .indexPage .box3 .swiper-slide .photo {
        width: auto;
        height: 15rem;
        margin-bottom: 1rem;
    }
    .indexPage .box3 .swiper-slide .photo img {
        max-width: 90%;
        max-height: 90%;
    }
    .indexPage .box3 .swiper-slide .txtbox {
        width: auto;
        position: static;
        padding-bottom: 3.5rem;
    }
    .indexPage .box3 .swiper-slide .type {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .indexPage .box3 .swiper-slide .name {
        font-size: 1.44rem;
    }
    .indexPage .box3 .swiper-slide .link {
        font-size: 1.2rem;
        left: 1.5rem;
        bottom: 1.5rem;
    }
    .indexPage .box4 {
        margin: 3.2rem 0;
    }
    .indexPage .box4 .topbox {
        margin-bottom: 1rem;
    }
    .indexPage .box4 .topbox .comWidth {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .indexPage .box4 .comTtl {
        margin-bottom: 1.6rem;
        background-position: center bottom;
    }
    .indexPage .box4 .topbox .txt {
        max-width: inherit;
        font-size: 1.2rem;
    }
    .indexPage .box4 ul {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .indexPage .box4 ul li {
        width: 46%;
        height: 15rem;
        margin-top: 1rem;
    }
    .indexPage .box4 ul li.on {
        width: 46%;
    }
    .indexPage .box4 ul li:before {
        display: none;
    }
    .indexPage .box4 ul li:nth-child(2n) {
        margin-top: 1rem;
    }
    .indexPage .box4 ul p {
        left: 1rem;
        top: inherit;
        bottom: 1rem;
        right: 1rem;
        -webkit-transform: none;
        transform: none;
        font-size: 1.4rem;
        text-shadow: 0 0 5px rgba(0,0,0,0.5);
    }
    .indexPage .box4 ul li.on p {
        left: 1rem;
        bottom: 1rem;
        font-size: 1.4rem;
    }
    .indexPage .box5 ul {
        display: block;
    }
    .indexPage .box5 li {
        width: auto;
        margin-top: 1.6rem;
    }
    .indexPage .box5 li a {
        height: auto;
        padding-bottom: 0;
    }
    .indexPage .box5 ul .photo {
        padding-bottom: 60%;
        border-radius: 10px;
    }
    .indexPage .box5 ul .photo img {
        border-radius: 10px;
    }
    .indexPage .box5 ul .time {
        font-size: 1.2rem;
        margin-bottom: .8rem;
    }
    .indexPage .box5 ul .title {
        font-size: 1.28rem;
        line-clamp: inherit;
        text-overflow: inherit;
        overflow: auto;
        display: block;
        -webkit-line-clamp: inherit;
        -webkit-box-orient: inherit;
    }
    .indexPage .box5 ul .link {
        position: static;
        font-size: 1.2rem;
        margin-top: 0.8rem;
    }
    .indexPage .box6 {
        background-size: 100% auto;
        padding: 2rem 0;
        margin-bottom: 3.2rem;
    }
    .indexPage .box6 .comWidth {
        display: block;
    }
    .indexPage .box6 .lbox {
        width: 100%;
        padding: 1.5rem 2rem 1.5rem 0;
        margin-bottom: 1.28rem;
    }
    .indexPage .box6 .lbox h2 {
        background-size: 2rem auto;
        padding-left: 3rem;
        font-size: 1.28rem;
    }
    .indexPage .box6 .lbox p {
        font-size: 1.44rem;
    }
    .indexPage .box6 .rbox {
        width: auto;
    }
    .comPath {
        font-size: 1.12rem;
        background-size: 1.2rem auto;
        padding: 1rem 0 1.6rem 1.5rem;
    }
    .comTopic {
        font-size: 2.2rem;
        background-size: 2.6rem auto;
        margin-bottom: 2rem;
    }
    .newsPage .listul {
        display: block;
    }
    .newsPage .listul li {
        width: auto;
        margin: 0 0 1.6rem;
    }
    .newsPage .listul li a {
        height: auto;
        padding-bottom: 2.5rem;
    }
    .newsPage .listul .photo {
        padding-bottom: 60%;
        border-radius: 10px;
    }
    .newsPage .listul .photo img {
        border-radius: 10px;
    }
    .newsPage .listul .time {
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }
    .newsPage .listul .title {
        font-size: 1.28rem;
        line-clamp: inherit;
        text-overflow: inherit;
        overflow: auto;
        display: block;
        -webkit-line-clamp: inherit;
        -webkit-box-orient: inherit;
    }
    .newsPage .listul .link {
        font-size: 1.12rem;
    }
    .pagination {
        margin-top: 1.6rem;
    }
    .pagination a {
        min-width: 2.8rem;
        font-size: 1.2rem;
    }
    .privacyPage .inner h2 {
        font-size: 1.28rem;
        margin-bottom: 0.8rem;
    }
    .privacyPage .inner p {
        font-size: 1.12rem;
        line-height: 1.6;
        margin-bottom: 1.6rem;
    }
    .contactPage .bgbox {
        padding-bottom: 0;
        background-size: 30rem auto;
    }
    .contactPage .bgbox .txt {
        font-size: 1.12rem;
        margin: -1rem 0 2rem;
    }
    .contactPage .bgbox ul {
        display: block;
    }
    .contactPage .bgbox li {
        width: auto;
        margin-bottom: 1.6rem;
    }
    .contactPage .bgbox ul .txt1 {
        margin-bottom: 1rem;
    }
    .contactPage .bgbox ul .icon {
        width: 3rem;
        height: 3rem;
    }
    .contactPage .bgbox ul .txt2 {
        font-size: 1.28rem;
    }
    .contactPage .bgbox ul .txt2 a {
        font-size: 1.36rem;
    }
    .comList {
        display: block;
    }
    .comList li {
        width: auto;
        margin: 0 0 1.6rem;
    }
    .comList .photo {
        padding-bottom: 60%;
        border-radius: 10px;
    }
    .comList .photo img {
        border-radius: 10px;
    }
    .comList .ttl {
        font-size: 1.28rem;
        margin-bottom: 0.5rem;
        line-clamp: inherit;
        text-overflow: inherit;
        overflow: auto;
        display: block;
        -webkit-line-clamp: inherit;
        -webkit-box-orient: inherit;
    }
    .comList .txt {
        font-size: 1.12rem;
    }
    .detailPage .cate {
        margin: 0 0 1rem;
    }
    .detailPage .cate span {
        font-size: 1.12rem;
    }
    .detailPage h1 {
        font-size: 1.6rem;
    }
    .detailPage .time {
        font-size: 1.2rem;
        background-size: 1.2rem auto;
        padding-left: 1.7rem;
        margin-bottom: 1.6rem;
    }
    .detailPage .infobox {
        padding: 1.6rem 0;
    }
    .detailPage .infobox,
    .detailPage .infobox * {
        font-size: 1.28rem !important;
        line-height: 1.6 !important;
    }
    .comPageList {
        margin-top: 1.6rem;
    }
    .comPageList li:first-child {
        margin-bottom: 0.8rem;
    }
    .comPageList a {
        font-size: 1.2rem;
    }
    .comPageList .txt1 {
        padding-right: 0.8rem;
    }
    .comPageList .txt1 img {
        width: 1.2rem;
        margin: -0.2rem 0.5rem 0 0;
    }
    .comPageList .txt2 {
        padding-left: 0.8rem;
    }
    .comMore {
        margin-top: 3.2rem;
    }
    .comMore h2 {
        font-size: 1.5rem;
    }
    .comMore ul {
        display: block;
    }
    .comMore ul li {
        width: auto;
        margin-top: 1rem;
    }
    .comMore ul .photo {
        padding-bottom: 60%;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
    .comMore ul .photo img {
        border-radius: 10px;
    }
    .comMore ul p {
        font-size: 1.2rem;
        line-clamp: inherit;
        text-overflow: inherit;
        overflow: auto;
        display: block;
        -webkit-line-clamp: inherit;
        -webkit-box-orient: inherit;
    }
    .aboutPage .box1 h1 {
        font-size: 1.6rem;
        margin-bottom: 1.6rem;
    }
    .aboutPage .box1 .txt {
        font-size: 1.28rem;
        line-height: 1.6;
        margin: 0;
    }
    .aboutPage .box1 .txt p {
        margin-bottom: 0.5rem;
    }
    .aboutPage .box1 ul {
        margin-top: 1.6rem;
        flex-wrap: wrap;
    }
    .aboutPage .box1 ul li {
        width: 49%;
        height: 10rem;
        border-radius: 10px;
    }
    .aboutPage .box1 ul li:last-child {
        width: 100%;
        margin-top: 0.5rem;
    }
    .aboutPage .box1 ul img {
        border-radius: 10px;
    }
    .aboutPage .box2 {
        margin-top: 3.2rem;
        padding: 3.2rem 0 10rem;
    }
    .aboutPage .box2 h2 {
        font-size: 1.6rem;
        margin-bottom: 1.6rem;
    }
    .aboutPage .box2 ul {
        display: block;
    }
    .aboutPage .box2 ul li {
        width: auto;
        font-size: 1.12rem;
        border-radius: 10px;
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .aboutPage .box2 ul span {
        margin-bottom: 1rem;
        font-size: 1.28rem;
    }
    .aboutPage .box2 ul li:hover span:before {
        width: 5rem;
    }
    .productPage .inner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .productPage .sidebar {
        width: auto;
        margin-top: 2rem;
    }
    .productPage .sidebar .proul h2 {
        font-size: 1.36rem;
        padding: 1rem 2.5rem 1rem 1rem;
        background-size: 0.8rem auto;
    }
    .productPage .sidebar .protwo a {
        font-size: 1.2rem;
        padding: .5rem 2.5rem .5rem 1rem;
        background-size: 1rem auto;
    }
    .productPage .conts {
        width: auto;
    }
    .productPage .conts ul a {
        align-items: center;
    }
    .productPage .conts ul .photo {
        height: 12rem;
        width: 40%;
    }
    .productPage .conts ul .photo img {
        max-width: 90%;
        max-height: 90%;
    }
    .productPage .conts ul .rbox {
        padding: 1rem 1rem 1rem 1.5rem;
        width: 60%;
    }
    .productPage .conts ul .type {
        font-size: 1.2rem;
    }
    .productPage .conts ul .name {
        font-size: 1.36rem;
        margin-bottom: 0;
    }
    .productPage .conts ul .txt {
        display: none;
    }
    .productPage .conts ul .link {
       display: none;
    }
    .prodetailPage .topbox {
        padding-bottom: 3rem;
        margin-bottom: 3rem;
    }
    .prodetailPage .topbox .imgbox {
        display: block;
    }
    .prodetailPage .topbox .lbox {
        width: auto;
        height: 20rem;
    }
    .prodetailPage .topbox .lbox img {
        max-width: 90%;
        max-height: 90%;
    }
    .prodetailPage .topbox .rbox {
        width: auto;
    }
    .prodetailPage .topbox h1 {
        font-size: 1.7rem;
        margin-bottom: 1.6rem;
    }
    .prodetailPage .topbox .listul li {
        font-size: 1.2rem;
        margin-bottom: .5rem;
        padding-left: 10.7rem;
    }
    .prodetailPage .topbox .listul li:before {
        top: 0.6rem;
        width: .56rem;
        height: .56rem;
    }
    .prodetailPage .topbox .listul li:last-child {
        padding-left: 1rem;
    }
    .prodetailPage .topbox .listul li:last-child span {
        position: static;
        left: inherit;
        top: inherit;
        margin-right: 0.5rem;
    }
    .prodetailPage .topbox .telul {
        margin-top: 2rem;
    }
    .prodetailPage .topbox .telul a {
        font-size: 1.28rem;
    }
    .prodetailPage .inner .ttl {
        padding: 0 0 .7rem 2rem;
        font-size: 1.4rem;
        background-size: 1.7rem auto;
        margin-bottom: 1.5rem;
    }
    .prodetailPage .inner .ttl:before {
        width: 20rem;
    }
    .prodetailPage .inner .info,
    .prodetailPage .inner .info * {
        font-size: 1.28rem;
        line-height: 1.6;
    }
    .prodetailPage .inner .box2 ul li {
        padding: 0.5rem 0.5rem 0.5rem 3rem;
    }
    .prodetailPage .inner .box2 ul li:before {
        left: 0.5rem;
        font-size: 1.2rem;
    }
    .prodetailPage .otherbox {
        margin-top: 3.2rem;
    }
    .prodetailPage .otherbox h2 {
        font-size: 1.5rem;
    }
    .prodetailPage .otherbox ul {
        flex-wrap: wrap;
    }
    .prodetailPage .otherbox ul li {
        width: 49%;
        margin-bottom: 0.5rem;
    }
    .prodetailPage .otherbox ul .photo {
        height: 10rem;
    }
    .prodetailPage .otherbox ul .photo img {
        max-width: 90%;
        max-height: 90%;
    }
    .prodetailPage .otherbox ul p {
        font-size: 1.2rem;
    }
    .searchPage h1 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    .searchPage form {
        margin: 0 auto 2rem;
    }
    .searchPage form input {
        height: 4rem;
        font-size: 1.2rem;
    }
    .searchPage form button {
        font-size: 1.2rem;
        letter-spacing: 0;
    }
    .searchPage ul {
        justify-content: space-between;
    }
    .searchPage ul li {
        width: 49%;
        margin: 0 0 0.5rem;
    }
    .searchPage ul .photo {
        height: 10rem;
    }
    .searchPage ul .cate {
        font-size: 1.12rem;
    }
    .searchPage ul .txt {
        font-size: 1.28rem;
    }
}