/* sub visual */
@keyframes sub-visual {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

@keyframes sub-title-up {
  from {
    /* opacity:0;
		transform: translateY(15%); */
    transform: translate3d(0, 100%, 0);
  }
  to {
    /* opacity:1.0;
		transform: translateY(0); */
    transform: translate3d(0, 0, 0);
  }
}

@keyframes sub-title-text-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1.0;
    transform: translateY(0);
  }
}

.sub_top_box {
  position: relative;
  margin-top: 74px;
}

.sub_visual {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sub_visual .sub_visual_img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: sub-visual 5s 0s ease-in-out;
}

.sub_visual.active .sub_visual_img {
  transform: scale(1, 1) rotate(0.002deg);
}

.sub_visual .sub_visual_title {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 1324px;
  width: 100%;
  /**padding: 0 20px;**/
}

.sub_visual .sub_visual_title h1 {
  display: block;
  z-index: 9;
  font-size: 50px;
  line-height: 100%;
  letter-spacing:2px;
  font-weight:700;
  color: #fff;
}

.sub_visual .sub_visual_title p {
  max-width: 500px;
  z-index: 3;
  display: block;
  font-size: 20px;
  color: #fff;
  margin-top: 25px;
  overflow: hidden;
}

.ml13 .letter {
  display: inline-block;
  line-height: 1em;
}

/* sub menu */
.sub_menu_wrap {
  position: relative;
  z-index: 40;
  width: 100%;
  padding: 0 20px;
  border-bottom: 1px solid #ececec;
}

.sub_menu_con {
  max-width: 1324px;
  height: 57px;
  margin: 0 auto;
}

.sub_menu a {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  font-size: 18px;
  line-height: 57px;
  font-weight: 500;
  box-sizing: border-box;
}

.sub_menu a + a {
  margin-left: 40px;
}

.sub_menu a + a:before {
	content:'';
	position:absolute;
	top:50%;
	left:-20px;
	width:1px;
	height:20px;
	margin-top:-10px;
	background:#dbdbdb;
}

.sub_menu a.active,
.sub_menu a:hover {
  color: #7ab5c7;
  font-weight: 700;
}

.sub_menu a:after {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #7ab5c7;
  transition: all .3s;
}

.sub_menu a.active::after,
.sub_menu a:hover::after {
  width: 100%;
  transition: all .3s;
}

.location .home {
  transform: translateY(-2px);
}

.location i {
  display: inline-block;
  width: 30px;
  height: 10px;
  background: url("../img/ico_location_right.png") no-repeat center 0;
  background-size: contain;
}

.m_location {
  display: none;
}

/* sub menu end */
#container {
  position: relative;
  padding: 66px 20px 90px;
  overflow: hidden;
}

.contents {
  position: relative;
  max-width: 1324px;
  margin: 0 auto;
}

/* tab */
.tab {
  display: flex;
}

.tab li {
  flex: 1;
  position: relative;
  background-color: #f4f5f5;
}

.tab li + li::after {
  content: '';
  width: 1px;
  height: 30px;
  background-color: #cfcfcf;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.tab li > a {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 60px;
  font-size: 20px;
  font-weight: 500;
  transition: all .5s;
}

.tab li > a.active,
.tab li > a:hover {
  background-color: #7ab5c7;
  color: #fff;
  transition: all .5s;
}

/* tab end */
.tab_cate {
  margin: 60px 0px 0;
  text-align: center;
  overflow:hidden;
}

.tab_cate > li {
  position: relative;
  padding: 0 24px;
  margin: 10px 0 10px -1px;
  display: inline-flex;
}

.tab_cate > li::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #cfcfcf;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.tab_cate > li:nth-child(1)::after {
	display: none;
}

.tab_cate > li > a {
  font-size: 20px;
  font-weight: 500;
  transition: all .5s;
}

.tab_cate > li > a.active,
.tab_cate > li > a:hover {
  color: #7ab5c7;
  transition: all .5s;
}

.product_list_box {
  margin-top: 10px;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.product_list > li {
  width: 100%;
  margin-left: 0;
}

.product_list > li:nth-child(3n + 1) {
  margin-left: 0;
  margin-bottom: 60px;
}

.product_list > li .img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.product_list > li .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-sizing: border-box;
  border: 0px solid #7ab5c7;
  opacity: 0;
  transition: opacity .3s, border .3s;
}

.product_list > li .img:hover::after {
  border-width: 12px;
  opacity: 1;
  transition: opacity .3s, border .3s;
}

.product_list > li .img img {
  width: 100%;
}

.product_list > li .cont {
  padding: 25px 23px;
}

.product_list > li .cont span {
  display: block;
  color: #7ab5c7;
  font-size: 17px;
}

.product_list > li .cont h2 {
  font-size: 40px;
  font-weight: 700;
}

.detail_box {
  margin-top: 150px;
}

.detail_box .ov_box {
  overflow: hidden;
}

.detail_left {
  float: left;
  width: 45%;
  padding-right: 20px;
  box-sizing: border-box;
}

.detail_left .detail_icons {
  margin-top: 50px;
}

.detail_left .tit {
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
  margin: 15px 0 10px 0;
}

.detail_left .file_download strong {
  display: inline-block;
  font-size: 30px;
  vertical-align: middle;
}

.detail_left .file_download span {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.detail_left .txts {
  margin-top: 38px;
}

.detail_left .txts p {
  padding-left: 18px;
  font-size: 20px;
  line-height: 31px;
  background: url("../img/ico_det_right.png") no-repeat 0 7px;
}

.detail_right {
  float: right;
  position: relative;
  width: 54%;
  overflow: hidden;
}

.detail_right .detail_thumb {
  float: left;
  width: 77%;
}

.detail_right .detail_thumb li {
  border-radius: 15px;
  overflow: hidden;
}

.detail_right .detail_thumb li img {
  width: 100%;
}

.detail_right .pagination {
  position: absolute;
  top: 0;
  right: 0;
  width: 19%;
  height: 100%;
}

.detail_right .pagination > li {
  position: relative;
  width: 100%;
  height: 22%;
  border-radius: 10px;
  overflow: hidden;
}

.detail_right .pagination > li img {
  height: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.detail_right .pagination > li + li {
  margin-top: 13%;
}

.detail_right .pagination > li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0 solid #7ab5c7;
  border-radius: 10px;
  box-sizing: border-box;
}

.detail_right .pagination > li.active::after {
  border: 4px solid #7ab5c7;
  transition: border .2s;
}

.detail_content {
  position: relative;
  margin-top: 180px;
  background: #f4f5f5;
}

.detail_content .detail_info {
  padding: 128px;
  overflow: hidden;
}

.detail_content .detail_info dl {
  margin-top: 95px;
}

.detail_content .detail_info dl dt {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.detail_content .detail_info dl dd {
  font-size: 18px;
}

.detail_content .detail_info .info_img {
  margin-top: 35px;
}

.detail_info_box .detail_info {
  display: none;
}

.detail_info_box .detail_info.active {
  display: block;
}

.tab_box {
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
}

.tab02 {
  margin: 0 auto 0;
  max-width: 882px;
  display: flex;
  background: #fff;
}

.tab02 > li {
  flex: 1;
  height: 60px;
  border: 1px solid #eee;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.tab02 > li.active {
  border-color: #7ab5c7;
  background-color: #7ab5c7;
  color: #fff;
  font-weight: 700;
}

.tab_cont_box .tab_cont {
  display: none;
}

.tab_cont_box .tab_cont.active {
  display: block;
}

@keyframes map_location_ani {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.world_map_box {
  margin: 0 -20px;
  width: calc(100% + 40px);
}

.world_map {
  position: relative;
  max-width: 1324px;
  margin: 0 auto;
}

.world_map .map_mark {
  width: 100%;
  position: relative;
  z-index: 3;
}

.world_map .maps_img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.8;
}

.world_map .maps_img img {
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity .3s;
}

.world_map .maps_img img.active {
  opacity: 1;
  transition: opacity .3s;
}

.world_map .maps_country {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.world_map .maps_country .country {
  position: absolute;
}

.world_map .maps_country .country span {
  transform: translateY(0);
  transition: all 1s;
}

.world_map .maps_country .country.active span {
  animation: map_location_ani 1s 0s ease-in-out infinite;
  transition: all 1s;
}

.world_map .maps_country .country:nth-child(1) {
  left: 137px;
  top: 99px;
}

.world_map .maps_country .country:nth-child(2) {
  left: 797px;
  top: 68px;
}

.world_map .maps_country .country:nth-child(3) {
  left: 1019px;
  top: 127px;
}

.world_map .maps_country .country:nth-child(4) {
  left: 1126px;
  top: 147px;
}

.world_map .maps_country .country:nth-child(5) {
  left: 292px;
  top: 390px;
}

.world_map .maps_country .country:nth-child(6) {
  left: 705px;
  top: 264px;
}

.world_map .maps_country .country:nth-child(7) {
  left: 1058px;
  top: 274px;
}

.world_map .maps_country .country span {
  display: block;
  font-size: 0;
}

.world_map .maps_country .country > div {
  position: absolute;
  top: 63px;
  left: 50%;
  transform: translateX(-50%);
}

.world_map .maps_country .country strong {
  display: block;
  font-size: 28px;
  text-align: center;
}

.world_map .maps_country .country p {
  width: 140px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.gray_box {
  position: relative;
  padding: 110px 0;
  background-color: #f8f8f8;
}

.store_cont .tab_box .tab02 {
  max-width: 526px;
  margin-left: 0;
}

.store_cont.gray_box {
  border-radius: 20px;
}

.store_maps {
  display: flex;
  padding: 0 50px;
  align-items: center;
}

.store_maps .left_box {
  width: 355px;
  text-align: center;
}

.store_maps .left_box img {
  display: none;
}

.store_maps .left_box img.active {
  display: block;
}

.store_maps .right_box {
  flex: 1;
  margin-left: 50px;
}

.tbl_c {
  width: 100%;
  border-top: 2px solid #373737;
}

.tbl_c tr th {
  height: 60px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #373737;
  background-color: #fff;
}

.tbl_c tr td {
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #373737;
  text-align: center;
}

.tbl_c tr {
  cursor: pointer;
}

.tbl_c tr.active td {
  color: #7ab5c7;
}

.tbl_d {
    width: 100%;
    border-top:2px solid #373737;
    margin-top:30px;
}
.tbl_d tr th,
.tbl_d tr td {
    height: 45px;
    padding:10px 20px;
    font-size: 18px;
    border-bottom:1px solid #373737;
    text-align:left;
}

.tbl_d tr td {
	border-left: 1px solid #373737;
}

.tbl_d tr th {
    font-weight: 500;
    background: #fff;
}

.tbl_d tr .tbl2 {
	width: 10%;
    border-right: 1px solid #373737;
}

.img_normal {
    display: flex;
    justify-content: space-around;
    margin: 50px 0px;
    flex-wrap: wrap;
}
.img_normal .img {
    position: relative;
    border-radius: 20px;
    font-size: 0;
    overflow:hidden;
}
.img_normal .img .txt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  box-sizing: border-box;
  padding-left: 125px;
}
.img_normal .img .txt h3 {
  margin-left: 0px;
  color: #373737;
  font-size: 49px;
  line-height: 1.2;
  font-weight: 400;
}
.img_normal .img .txt h3 + h3 {
  margin-left: 0;
  color:#4fa2bc;
}
.img_normal .img .txt h3 strong {
  font-weight: 500;
}
.img_normal .img .txt h3 + p {
  margin-top:20px;
  color:#4fa2bc;
  font-size: 21px;
}

.img_normal .img {
    border-radius: 20px;
    font-size: 0;
    overflow:hidden;
}
.img_normal .img img {
    transition: all 1s;
}
.img_normal .img:hover img {
    transform: scale(1.1);
    transition: all 3s;
}
.img_normal .imgcont {
    width: 637px;
}
.img_normal .imgcont dl {
    padding:20px;
}
.img_normal .imgcont dl dt {
    font-size: 30px;
    font-weight: 700;
}
.img_normal .imgcont dl dd {
    margin-top: 10px;
    font-size: 20px;
}


.pb0 {
    padding-bottom: 0 !important;
}
.filp_img_box {
    width: 1324px;
    height: 1324px;
    margin-top:-55px;
    margin-bottom:-120px;
    border:1px solid #f0f0f0;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}
.filp_img_box h1 {
    margin-top: 120px;
    color: #f2f2f2;
    font-size: 200px;
    line-height: 263px;
    text-align: center;
}

.vision_cont {
    position: absolute;
    width: 352px;
}
.vision_cont .icon {
  transform:translateY(0);
  transition:.5s;
}
.vision_cont.active .icon {
  transform:translateY(-8px);
}


.icon1 {
    left: 0;
    top: 392px;
}
.icon2 {
    right: 0;
    top: 392px;
}
.icon3 {
    right: 0;
    top: 725px;
}
.icon4 {
    left: 0;
    top: 725px;
}

.icon1 .icon,
.icon1 dl dt,
.icon1 dl dd,
.icon4 .icon,
.icon4 dl dt,
.icon4 dl dd  {
    text-align: right;
}

.vision_cont dl dt {
	color: #666666;
    font-size: 26px;
    font-weight: 700;
}

.vision_cont.active dl dt {
  color: #7ab5c7;
  font-size: 27px;
}

.vision_cont dl dd {
    margin-top:5px;
    font-size: 18px;
    line-height: 30px;
}

.vision_cont.active dl dd {
  color: #373737;
  font-weight: 500;
  font-size:19px;
}

.filp_img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 445px;
    height: 445px;
}
.filp_img::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 100px);
    height: calc(100% + 100px);;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    border: 1px solid #686868;
    border-radius: 50%;

}
.filp_img .swiper-container .swiper-slide {
    border-radius: 50%;
    overflow: hidden;
}
.filp_img .swiper-pagination-bullet {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background:none;
    opacity: 1;
    z-index: 9;
}
.filp_img .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 8px;
    height: 8px;
    background: #373737;
    border-radius: 50%;
}
.filp_img .swiper-pagination-bullet:nth-child(1) {
    left: 8px;
    top: 8px;
}
.filp_img .swiper-pagination-bullet:nth-child(2) {
    right: 8px;
    top: 8px;
}
.filp_img .swiper-pagination-bullet:nth-child(3) {
    right: 8px;
    bottom: 8px;
}
.filp_img .swiper-pagination-bullet:nth-child(4) {
    left: 8px;
    bottom: 8px;
}
.filp_img .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: #7ab5c7;
}
.filp_img .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9;
    width: 8px;
    height: 8px;
    transition: all .3s;
    border: 2px solid #686868;
    box-sizing: border-box;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
}
.filp_img .swiper-pagination-bullet:hover::after {
    width: 44px;
    height: 44px;
    transition: all .3s;
	border-color:#7ab5c7;
}
.filp_img .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    width: 44px;
    height: 44px;
    transition: all .3s;
    border-color: #7ab5c7;
}

.bg_text {
  position: absolute;
  top: 100px;
  right: 78px;
}

.h1tit {
  margin-top: 157px;
  font-size: 60px;
  font-weight: 400;
}

.h1tit + p {
  font-size: 21px;
  font-weight: 500;
  margin: 40px 0 110px;
}

/* table */
table tr td.text_left {
  text-align: left;
}

.tbl_a {
  width: 100%;
  margin-top: 60px;
  border-top: 2px solid #373737;
}

.tbl_a tr.new td {
  background-color: #f4f5f5;
}

.tbl_a tr td {
  height: 60px;
  padding: 0 5px;
  text-align: center;
  font-size: 17px;
  border-bottom: 1px solid #373737;
}

.tbl_a tr td strong {
  color: #7ab5c7;
  font-weight: 500;
}

.tbl_new_icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  background-color: #7ab5c7;
  overflow: hidden;
}

.tbl_new_icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.tbl_arrow_hover tr {
  cursor: pointer;
}

.tbl_arrow_hover tr a.link_arrow + .arrow_right {
  display: inline-flex;
  opacity: 0;
  transition: all .2s;
}

.tbl_arrow_hover tr:hover a.link_arrow + .arrow_right {
  opacity: 1;
  margin-left: 20px;
  transition: all .2s;
}

.tbl_b {
  width: 100%;
  margin-top: 40px;
  border-top: 2px solid #373737;
}

.tbl_b tr th {
  height: 100px;
  font-size: 17px;
  background-color: #f4f5f5;
  border-bottom: 1px solid #373737;
  font-size: 20px;
}

.tbl_b tr td {
  height: 100px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid #373737;
  text-align: center;
}

.tbl_b tr td:nth-child(1) {
  padding-left: 90px;
}

.pagging {
  margin-top: 60px;
  text-align: center;
}

.pagging a {
  font-size: 17px;
}

.pagging a + a {
  margin-left: 4px;
}

.pagging a.active {
  font-weight: 700;
}

.search_box {
  display: flex;
  justify-content: flex-end;
  margin-top: 100px;
}

.select {
  position: relative;
  width: 100px;
  height: 46px;
}

.select .sel {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #c3c3c3;
}

.select .sel > span {
  font-size: 17px;
  font-weight: 700;
}

.select .sel > i {
  font-size: 0;
}

.sel + ul {
  display: none;
}

.select .sel + ul {
  margin-top: -1px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #c3c3c3;
  box-shadow: 1px 3px 6px #ddd;
}

.select .sel + ul > li {
  border-bottom: 1px solid #c3c3c3;
}

.select .sel + ul > li > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 20px;
}

.search_box .search_write {
  position: relative;
  width: 250px;
  height: 47px;
  margin-left: 10px;
  padding-right: 45px;
  box-sizing: border-box;
  border: 1px solid #c3c3c3;
}

.search_box .search_write input {
  width: 100%;
  height: 45px;
  font-size: 17px;
  font-weight: 700;
  padding: 0 0 0 20px;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.search_box .search_write input::placeholder {
  color: #373737;
  opacity: .2;
}

.search_box .search_write button {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 100%;
  border: none;
  background: url("../img/search.png") no-repeat center center;
  appearance: none;
  -webkit-appearance: none;
}

.news_box {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.news_box .left_box {
  flex: 1;
  padding-right: 40px;
}

.news_box h1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_box h1 a {
  font-size: 45px;
  font-weight: 700;
}

.news_box .date {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

.news_box p {
  font-size: 20px;
  margin-top: 50px;
  line-height: 33px;
}

.news_box .right_box {
  flex: 1;
}

.news_box .img img {
  width: 100%;
}

/* card */
.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  margin-left: -40px;
}

/* .col{
	width: 228px;
	float: left;
	cursor: pointer;
	margin-left: 40px;
	margin-bottom: 40px;
  } */
.col {
  width: calc(25% - 40px);
  margin: 0 0 40px 40px;
  cursor: pointer;
}

.cols2 {
	margin-left: -20px;
}


.col2 {
    /**width: calc(16.6% - 20px);**/
	width: calc(32.6% - 20px);
    margin: 0 0 20px 20px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.col2 .front p {
	color: #7ab5c7;
}

.container {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.front,
.back {
  background-size: cover;
  border-radius: 10px;
  background-position: center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 270px;
  height: 320px;
  border-radius: 20px;
}

.back {
  background: #7ab5c7;
  /* background: -webkit-linear-gradient(45deg,  #7ab5c7 0%,#596a72 100%);
	background: -o-linear-gradient(45deg,  #7ab5c7 0%,#596a72 100%);
	background: linear-gradient(45deg,  #7ab5c7 0%,#596a72 100%); */
}

.front {
  background: #f4f5f5;
}

.container:hover .front,
.container:hover .back {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.back .inner p strong {
  color: #fff;
  font-size: 33px;
}

.back .inner p em {
  color: #fff;
  font-size: 25px;
}

.back .inner span {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
}

.back .inner .line {
  width: 40px;
  margin: 10px auto;
  border-top: 2px solid #fff;
}

.inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}


.col2 .inner {
	padding: 0;
}



.container .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container:hover .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container:hover .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container.active .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container.active .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.front .inner p {
  position: relative;
}

.front .inner p strong {
  font-size: 30px;
}

.front .inner p em {
  font-size: 30px;
}

.front .inner span {
  color: #373737;
  font-size: 24px;
  line-height: 30px;
}

.front .inner .line {
    width: 40px;
    margin: 10px auto;
    border-top: 2px solid rgb(170, 170, 170);
}

/* card end */
.icon_cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  margin-left: -20px;
}

.icon_col {
  width: calc(16.6% - 20px);
  height: 270px;
  padding: 20px;
  margin: 0 0 20px 20px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  border-radius: 10px;
  background-color: #f4f5f5;
}

.icon_col p {
  text-align: center;
}

.icon_col p strong {
  color: #7ab5c7;
  font-size: 45px;
  text-align: center;
}

.icon_col p em {
  color: #7ab5c7;
  font-size: 26px;
}

.icon_col .icon {
  text-align: center;
}

.icon_col span {
  display: block;
  margin-top: 15px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

#history_imgs {
  border-radius: 20px;
  overflow: hidden;
}

.history_box {
  position: relative;
  margin-top: 108px;
  margin-bottom:-150px;
}

.history_box .vodbar.col3 {
  top: -33px;
  right: 0;
  transform: translateX(0);
}

.history_visual {
  position: relative;
}

.history_visual .img {
  height: 427px;
  background-position: center center;
  background-repeat: no-repeat;
}

.history_visual .img img {
  width: 100%;
}

.history_visual .tit {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.history_visual .tit h1 {
  color: #fff;
  font-size: 50px;
  line-height: 1.5em;
}

.history_visual .tit p {
  color: #fff;
  font-size: 17px;
  margin-top: 20px;
  text-align: center;
}

.history_visual .tit span {
  display: block;
  width: 100%;
  opacity: .5;
  position: absolute;
  left: 0;
  bottom: -46px;
  color: #fff;
  font-size: 130px;
  font-weight: 700;
  text-align: center;
}

.history_box .sw_ctl {
  opacity: .6;
  position: absolute;
  top: 190px;
  z-index: 2;
  font-size: 0;
  cursor: pointer;
}

.history_box .sw_ctl:hover {
  opacity: 1;
}

.history_box .sw_ctl svg {
  fill: #fff;
  width: 50px;
  height: 50px;
}

.history_box .sw_prev {
  left: 40px;
}

.history_box .sw_next {
  right: 40px;
}

.history_cont_box {
  display: flex;
  justify-content: flex-start;
}

.history_cont_box .history_cont {
  flex: 1;
  position: relative;
  width: 50%;
  padding: 80px 20px 140px 0px;
  box-sizing: border-box;
}

.history_cont_box .history_cont::after {
  content: '';
  position: absolute;
  left: 160px;
  top: 0;
  z-index: 1;
  height: 100%;
  border-left: 1px solid #c3c3c3;
}

.history_cont_box .history_cont dl {
  overflow: hidden;
}

.history_cont_box .history_cont dl + dl {
  margin-top: 20px;
}

.history_cont_box .history_cont dl dt {
  float: left;
  position: relative;
  width: 160px;
  padding-right: 40px;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-align: right;
}

.history_cont_box .history_cont dl dt::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #7ab5c7;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  transform: translate(50%, -50%);
}

.history_cont_box .history_cont dl dd {
  padding-left: 40px;
  margin-left: 160px;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}

.history_slide .tit h1 {
  opacity: 0;
  transform: translateY(50%);
  transition: all .5s;
}

.history_slide .swiper-slide-active .tit h1 {
  opacity: 1;
  transform: translateY(0);
  transition: all .5s;
}

.history_slide .tit p {
  opacity: 0;
  transform: translateY(50%);
  transition: all .5s .5s;
}

.history_slide .swiper-slide-active .tit p {
  opacity: 1;
  transform: translateY(0);
  transition: all .5s .5s;
}

.history_slide .history_cont_box .history_cont {
  opacity: 0;
  transform: translateY(50px);
  transition: all .5s;
}

.history_slide .swiper-slide-active .history_cont_box .history_cont:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: all .5s;
}

.history_slide .swiper-slide-active .history_cont_box .history_cont:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: all .5s .3s;
}

.history_slide .swiper-pagination {
  display: none;
}

.biz_list_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.biz_list_box {
  max-width: 420px;
  width: 32%;
}

.biz_list_box .img {
  border-radius: 25px;
  font-size: 0;
  overflow: hidden;
}

.biz_list_box .img img {
  width: 100%;
}

.biz_list_box .cont {
  min-height: 170px;
  padding: 40px 8px;
}

.biz_list_box .cont h1 {
  font-size: 30px;
  font-weight: 700;
}

.biz_list_box .cont p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 400;
}

.biz_list_box .biz_list {
  width: 100%;
}

.biz_list_box .biz_list li {
  width: 100%;
  padding: 10px;
}

.biz_list_box .biz_list li + li {
  border-top: 1px solid #f2f2f2;
}

.sns_commend {
  margin-top: 40px;
}

.sns_commend_list {
  width: calc(100% + 20px);
  margin-left: -20px;
}

.sns_commend_list li {
  float: left;
  width: 314px;
  height: 314px;
  margin-left: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #f4f5f5;
  overflow: hidden;
}

.sns_commend_list li .first {
  position: relative;
  color: #fff;
  padding: 0 42px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.sns_commend_list li .first .sns_btn {
  padding-left: 10px;
  margin-top: 48px;
}

.sns_commend_list li .ins {
  background: linear-gradient(to bottom, #753db8, #fa9131);
}

.sns_commend_list li .youtube {
  background-color: #ff0000;
}

.sns_commend_list li .first p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}

.sns_commend_list li .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(22%, 22%);
}

.sns_commend_list li .img {
  position: relative;
  width: 100%;
  height: 166px;
  overflow: hidden;
}

.sns_commend_list li .img img {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.sns_commend_list li .cont {
  padding: 28px;
}

.sns_commend_list li .cont .tit img {
  margin-right: 8px;
  vertical-align: middle;
}

.sns_commend_list li .cont .tit span {
  font-size: 17px;
  font-weight: 500;
  vertical-align: middle;
}

.sns_commend_list li .cont .tit + p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.5em;
}

.ins .btn_more .icon_more em {
  color: #f07f3f;
}

.youtube .btn_more .icon_more em {
  color: #ff0000;
}

@keyframes circle_move {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

.circle_list {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

.circle_list .circle_box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background-color: #f4f5f5;
}

.circle_list .circle_box::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  border: 1px dashed #dbdbdb;
  border-radius: 50%;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  transform: translate(-50%, -50%);
}

.circle_list .circle_box i {
  display: block;
  position: absolute;
  left: -40px;
  top: -40px;
  -webkit-animation: circle_move 10s infinite linear;
  animation: circle_move 10s infinite linear;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
}

.circle_list .circle_box i::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 12px;
  height: 12px;
  background-color: #7ab5c7;
  border-radius: 50%;
  border: 1px solid #373737;
  box-sizing: border-box;
}

.circle_list .circle_box:nth-child(1) i::after {
  left: 50%;
  top: 0;
}

.circle_list .circle_box:nth-child(3) i::after {
  left: 50%;
  top: 0;
  bottom: 0;
}

.circle_list .circle_box .img {
  text-align: center;
}

.circle_list .circle_box dl {
  margin-top: 20px;
  text-align: center;
}

.circle_list .circle_box dl dt {
  font-size: 26px;
  font-weight: bold;
}

.circle_list .circle_box dl dd {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5em;
}

.text_imgs_box {
  margin-top: 40px;
  overflow: hidden;
}

.text_imgs_box h2 {
  display: flex;
  align-items: center;
  margin: 150px 0 40px;
}

.text_imgs_box h2 img {
  margin-right: 20px;
}

.text_imgs_box h2 span {
  color: #7ab5c7;
  font-size: 30px;
  font-weight: 700;
}

.text_imgs_box .text {
  font-size: 20px;
  font-weight: 500;
}

.text_imgs_box .imgs {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  overflow: hidden;
  flex-wrap: wrap;
}

.text_imgs_box .imgs > li {
  max-width: 19%;
  border-radius: 10px;
  overflow: hidden;
}

/*===========================================================================

=============================================================================*/
@media screen and (max-width: 1324px) {
  .world_map .maps_country .country:nth-child(1) {
    left: 10.3474vw;
    top: 7.4773vw;
  }
  .world_map .maps_country .country:nth-child(2) {
    left: 60.1963vw;
    top: 5.1359vw;
  }
  .world_map .maps_country .country:nth-child(3) {
    left: 76.9637vw;
    top: 9.5921vw;
  }
  .world_map .maps_country .country:nth-child(4) {
    left: 85.0453vw;
    top: 11.1027vw;
  }
  .world_map .maps_country .country:nth-child(5) {
    left: 22.0543vw;
    top: 29.4561vw;
  }
  .world_map .maps_country .country:nth-child(6) {
    left: 53.2477vw;
    top: 19.9395vw;
  }
  .world_map .maps_country .country:nth-child(7) {
    left: 79.9093vw;
    top: 20.6948vw;
  }
  .world_map .maps_country .country span img {
    height: 3.7764vw;
  }
  .world_map .maps_country .country > div {
    top: 4.7583vw;
  }
  .world_map .maps_country .country strong {
    font-size: 2.1148vw;
  }
  .world_map .maps_country .country p {
    font-size: 1.5105vw;
  }
  .circle_list {
    padding: 0 15px;
  }
  .circle_list .circle_box {
    width: 29vw;
    height: 29vw;
  }
  .circle_list .circle_box::before {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
  }
  .circle_list .circle_box .img img {
    height: 6.04vw;
  }
  .circle_list .circle_box dl {
    margin-top: 1.51vw;
  }
  .circle_list .circle_box dl dt {
    font-size: 1.96vw;
  }
  .circle_list .circle_box dl dd {
    margin-top: 5px;
    font-size: 1.51vw;
    line-height: 1.5em;
  }
  .circle_list .circle_box i {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    left: -20px;
    top: -20px;
  }
  .text_imgs_box .imgs > li {
    max-width: 48%;
    margin-bottom: 10px;
  }
  .text_imgs_box .imgs > li > img {
    width: 100%;
  }
}

/* 1324 */
@media screen and (max-width: 1324px) {
  .detail_left .tit {
    font-size: 50px;
    line-height: 60px;
  }
  .detail_left .detail_icons {
    margin-top: 30px;
  }
  .detail_left .detail_icons img {
    height: 35px;
  }
  .detail_left .file_download strong {
    font-size: 20px;
  }
  .detail_left .file_download span .img {
    height: 18px;
  }
  .detail_left .txts {
    margin-top: 20px;
  }
  .detail_left .txts p {
    padding-left: 14px;
    font-size: 15px;
    line-height: 24px;
    background-position: 0 5px;
    background-size: 6px 12px;
  }
  .news_box h1 a {
    font-size: 25px;
  }
  .news_box .date {
    font-size: 16px;
  }
  .news_box p {
    font-size: 16px;
    margin-top: 30px;
  }
  .detail_content .detail_info .info_img img {
    max-width: 100%;
  }
  .img_normal .imgcont  {
	width: 48%;

  }
  .img_normal .img img {
	width: 100%;
  }
  .filp_img_box {
	margin-left: 50%;
	margin-top: 20px;
	transform: translateX(-50%);
  }

}

/* 1280 */
@media screen and (max-width: 1280px) {
  .world_map .maps_country .country:nth-child(4) {
    left: 84.0453vw;
    top: 10.1027vw;
  }
  .cols .col {
    width: calc(25% - 40px);
  }
  .icon_col {
    width: calc(33.33333% - 20px);
  }
  .history_box .vodbar.col3 {
    position: static;
    margin-right: 25px;
    margin-left: auto;
  }
  .history_slide {
    margin-top: 70px;
  }
  .history_cont_box .history_cont::after {
    left: 129px;
  }
  .history_cont_box .history_cont dl dt {
    width: 130px;
    padding-right: 5px;
    font-size: 15px;
  }
  .history_cont_box .history_cont dl dd {
    padding-left: 20px;
    margin-left: 130px;
  }
  .history_visual .tit span {
    font-size: 90px;
    bottom: -40px;
  }
  .store_maps .left_box {
    width: 25%;
  }
  .store_maps .left_box img {
    width: 100%;
  }
  .tbl_c tr th {
    height: 40px;
    font-size: 14px;
  }
  .tbl_c tr td {
    height: 40px;
    font-size: 12px;
  }
  .img_normal .img .txt {
	padding-left:9.76vw;
  }
  .img_normal .img .txt h3 {
	margin-left:-2.57vw;
	font-size:3.82vw;
  }
  .img_normal .img .txt h3 + h3 {
	margin-left:0;
  }
  .img_normal .img .txt h3 + p {
	margin-top:1.56vw;
	font-size:1.64vw;
  }
}

/* 1050 */
@media screen and (max-width: 1050px) {
  .sub #mHeader .btn_mypage .default {
    display: none;
  }
  .sub #mHeader .btn_mypage .opposition {
    display: block;
  }
  .sub #mHeader .btn_m_menu > span {
    background-color: #373737;
  }
  .sub_top_box {
    margin-top: 60px;
  }
  .sub_menu_con {
    padding: 0 30px;
  }
  #container {
    padding: 40px 20px;
  }
  .product_list > li .cont {
    padding: 15px 10px;
  }
  .product_list > li .cont h2 {
    font-size: 25px;
  }
  .cols .col {
    width: calc(33.33333% - 40px);
  }
  .bg_text {
    right: -260px;
  }

  .history_box {
    margin-bottom:-100px;
  }
}

/* 800 */
@media screen and (max-width: 800px) {
  .sub #mHeader .btn_mypage .default {
    display: block;
  }
  .sub #mHeader .btn_mypage .opposition {
    display: none;
  }
  .sub #mHeader.open .btn_mypage .default {
    display: none;
  }
  .sub #mHeader.open .btn_mypage .opposition {
    display: block;
  }
  .sub #mHeader .btn_m_menu > span {
    background-color: #fff;
  }
  .sub #mHeader.on .btn_mypage .default {
    display: none;
  }
  .sub #mHeader.on .btn_mypage .opposition {
    display: block;
  }
  .sub #mHeader.on .btn_m_menu > span {
    background-color: #373737;
  }
  .sub #mHeader .btn_m_menu.active > span {
    background-color: #373737;
  }
  .sub #mHeader .m_logo .default {
    display: none;
  }
  .sub #mHeader .m_logo .opposition {
    display: block;
  }
  .sub #mHeader.on .m_logo .opposition {
    display: none;
  }
  .sub #mHeader.on .m_logo .default {
    display: block;
  }
  /* sub visual */
  .sub_top_box {
    margin-top: 0;
  }
  .sub_visual {
    height: 90vw;
    margin-top: 0;
    overflow: hidden;
  }
  .sub_visual .sub_visual_img {
    position: static;
    background: none !important;
  }
  .sub_visual .sub_visual_img img {
    display: block;
    width: 100%;
  }
  .sub_visual .sub_visual_title {
    padding: 0 20px;
    position: absolute;
  }
  .sub_visual .sub_visual_title h1 {
    font-size: 48px;
  }
  .sub_visual .sub_visual_title p {
    width: 80%;
    font-size: 15px;
  }
  /* sub visual end */
  /* sub menu */
  .sub_menu_wrap {
    padding: 0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .sub_menu_con {
    display: none;
  }
  .m_location {
    display: flex;
    background: rgba(244, 245, 245, 0.8);
  }
  .m_location .m_home {
    width: 60px;
  }
  .m_sub_menu {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .m_sub_menu > li {
    flex: 1;
    position: relative;
    border-left: 1px solid #b3b2b2;
    box-sizing: border-box;
  }
  .m_sub_menu > li .sel {
    position: relative;
    width: 100%;
    height: 52px;
    padding: 0 15px;
    justify-content: flex-start;
    font-size: 15px;
    font-weight: 500;
  }
  .m_sub_menu > li .sel i {
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 0;
    margin-top: -3px;
  }
  .sel i img {
    height: 6px;
  }
  .m_sub_menu > li .sel.active i {
    transform: rotate(180deg);
  }
  .m_sub_menu > li > ul {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 1px 3px 6px #ddd;
  }
  .m_sub_menu > li > ul > li {
    border-bottom: 1px solid #f5f5f5;
  }
  .m_sub_menu > li > ul > li a {
    height: 52px;
    padding: 0 15px;
    display: flex;
    align-items: center;
  }
  /* sub menu end */
  /* tab */
  .tab li > a {
    height: 40px;
	padding:0 10px;
    font-size: 14px;
	line-height:16px;
  }
  .tab li > a:hover {
    background: none;
    color: #373737;
  }
  /* tab end */
  .tab_cate {
    margin: 30px 10px 0;
  }
  .tab_cate > li {
    padding: 0 10px;
  }
  .tab_cate > li > a {
    font-size: 12px;
  }
  .product_list_box {
    margin-top: 60px;
  }
  .product_list > li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .product_list > li:nth-child(3n + 1) {
    margin-left: 0;
  }
  .product_list > li:nth-child(even) {
    margin-left: 4%;
  }
  .product_list > li .cont span {
    font-size: 12px;
  }
  .product_list > li .cont h2 {
    font-size: 20px;
  }
  .detail_box {
    margin-top: 80px;
  }
  .detail_left {
    float: none;
    width: 100%;
    padding: 0;
  }
  .detail_left .btn_box {
    text-align: right;
  }
  .detail_left .tit {
    margin-top: 10px;
    font-size: 40px;
    line-height: 1.5em;
  }
  .detail_left .file_download span img {
    height: 20px;
  }
  .detail_right {
    width: 100%;
    margin-top: 50px;
  }
  .detail_content .tab_box {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .detail_content {
    margin-top: 100px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .detail_content .detail_info {
    padding: 70px 20px;
  }
  .detail_content .detail_info dl {
    margin-top: 50px;
  }
  .detail_content .detail_info dl dt {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .detail_content .detail_info dl dd {
    font-size: 15px;
  }
  .detail_content .detail_info .info_img img {
    width: 100%;
  }
  .detail_right .pagination > li + li {
    margin-top: 2vw;
  }
  .store_maps .right_box {
    width: 100%;
    padding: 0 20px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .store_maps .right_box .tbl_c {
    width: 600px;
  }
  .store_cont.gray_box {
    border-radius: 0;
  }
  .store_cont .tab_box {
    padding: 0 20px;
  }
  .tab_box {
    top: -20px;
  }
  .tab02 > li {
    height: 40px;
    font-size: 15px;
  }
  /* table */
  .tbl_a tr td,
  .tbl_a tr td strong,
  .tbl_a tr td a {
    font-size: 12px;
  }
  .tbl_b tr th {
    font-size: 12px;
    height: 60px;
  }
  .tbl_b tr td {
    font-size: 12px;
    height: 60px;
  }
  .tbl_b tr td:nth-child(1) {
    padding-left: 10px;
  }
  a.link_arrow + .arrow_right {
    display: none;
  }
  .pagging {
    margin-top: 40px;
  }
  .pagging a {
    font-size: 15;
  }

  /* select */
  .select {
    width: 90px;
    height: 42px;
  }
  .select .sel {
    height: 42px;
  }
  .select .sel > span {
    font-size: 15px;
  }
  .search_box {
    margin-top: 80px;
  }
  .search_box .search_write {
    flex: 1;
    height: 42px;
  }
  .search_box .search_write input {
    height: 40px;
    font-size: 15px;
  }
  .search_box .search_write button {
    width: 40px;
    height: 40px;
  }
  .news_box {
    flex-direction: column;
  }
  .news_box .left_box {
    padding: 0;
  }
  .news_box h1 a {
    font-size: 40px;
  }
  .news_box .date {
    font-size: 16px;
  }
  .news_box p {
    margin-top: 20px;
    font-size: 16px;
  }
  .news_box .right_box {
    margin-top: 30px;
  }
  .cols {
    margin-left: -20px;
  }
  .cols .col {
    width: calc(50% - 20px);
    margin: 0 0 20px 20px;
  }
  .inner {
    padding: 10px;
  }
  .front .inner .icon img {
    height: 60px;
  }
  .front .inner span {
    font-size: 14px;
    line-height: 24px;
  }
  .front .inner p strong {
    font-size: 26px;
  }
  .back .inner p strong {
    font-size: 20px;
  }
  .back .inner p em {
    font-size: 14px;
  }
  .back .inner span {
    font-size: 14px;
  }
  .front, .back {
    min-height: 210px;
  }
  .icon_col {
    width: calc(50% - 20px);
    height: 210px;
    justify-content: center;
  }
  .icon_col .icon img {
    height: 60px;
  }
  .icon_col p strong {
    font-size: 25px;
  }
  .icon_col p em {
    font-size: 20px;
  }
  .icon_col span {
    font-size: 12px;
  }
  .h1tit {
    margin-top: 70px;
    font-size: 40px;
  }
  .h1tit + p {
    font-size: 17px;
    margin: 20px 0 80px;
  }
  .bg_text {
    left: 80%;
    top: 200px;
    right: 0;
    transform: translateX(-100%);
  }
  .bg_text img {
    height: 400px;
  }
  .history_visual .img {
    height: auto;
  }
  .history_visual .img {
    background-image: none !important;
  }
  .history_visual .tit h1 {
    width: 100%;
    font-size: 40px;
    line-height: 1.2em;
    text-align: center;
  }
  .history_visual .tit p {
    width: 80%;
    margin-top: 20px;
    font-size: 15px;
    word-break: keep-all;
    text-align: center;
  }
  .history_visual .tit p br {
    display: none;
  }
  .history_box .sw_ctl {
    top: 43.88vw;
  }
  .history_box .sw_ctl svg {
    width: 22px;
    height: 22px;
  }
  .history_box .sw_prev {
    left: 10px;
  }
  .history_box .sw_next {
    right: 10px;
  }
  .history_cont_box {
    flex-direction: column;
  }
  .history_cont_box .history_cont {
    width: 100%;
    padding-bottom: 0;
  }
  .history_cont_box .history_cont + .history_cont {
    padding: 0 0 100px;
  }
  .history_cont_box .history_cont::after {
    left: 74px;
  }
  .history_cont_box .history_cont dl dt {
    width: 5px;
  }
  .history_cont_box .history_cont dl dd {
    margin-left: 5px;
  }
  .history_visual .tit span {
    font-size: 14.58vw;
    bottom: -6vw;
  }
  .gray_box {
    padding: 70px 0;
  }
  .store_maps {
    flex-direction: column;
    padding: 0;
  }
  .store_maps .left_box {
    width: 100%;
    padding: 0 40px;
  }
  .store_maps .right_box {
    margin: 50px 0 0 0;
  }
  .store_cont {
    margin-left: -20px;
    margin-right: -20px;
  }
  .chart_box {
    text-align: center;
  }
  .chart_box img {
    max-width: 640px;
    width: 100%;
  }
  .biz_list_wrap {
    flex-direction: column;
  }
  .biz_list_box {
    width: 100%;
    max-width: 100%;
  }
  .biz_list_box + .biz_list_box {
    margin-top: 40px;
  }
  .biz_list_box .cont {
    min-height: auto;
    padding: 35px 0;
  }
  .biz_list_box .cont h1 {
    font-size: 26px;
  }
  .biz_list_box .cont p {
    margin-top: 15px;
    font-size: 17px;
  }
  .sns_commend.swiper-container {
    overflow: visible;
  }
  .sns_commend_list {
    width: 100%;
    margin-left: 0;
  }
  .sns_commend_list li {
    height: 80vw;
    margin-left: 0;
  }
  .sns_commend_list li .img {
    height: auto;
  }
  .sns_commend_list li .img img {
    position: static;
    width: 100%;
    height: auto;
    transform: translateX(0);
  }
  .sns_commend_list li .first .sns_btn {
    margin-top: 25px;
  }
  .sns_commend_list li .cont {
    padding: 20px;
  }
  /* .contents.sns_contents {margin:0 -20px;} */
  .circle_list {
    flex-direction: column;
  }
  .circle_list .circle_box {
    width: 75vw;
    height: 75vw;
    margin: 0 auto;
  }
  .circle_list .circle_box + .circle_box {
    margin-top: 10vw;
  }
  .circle_list .circle_box::before {
    width: calc(100% + 15vw);
    height: calc(100% + 15vw);
  }
  .circle_list .circle_box i {
    left: -7.5vw;
    top: -7.5vw;
    width: calc(100% + 15vw);
    height: calc(100% + 15vw);
  }
  .circle_list .circle_box .img img {
    height: 15vw;
  }
  .circle_list .circle_box dl {
    margin-top: 2.77vw;
  }
  .circle_list .circle_box dl dt {
    font-size: 4.86vw;
  }
  .circle_list .circle_box dl dd {
    font-size: 3.75vw;
  }
  .text_imgs_box {
    margin-top: 30px;
  }
  /**
  .text_imgs_box .imgs {
    display: none;
  }
  **/
  .text_imgs_box h2 {
    margin: 70px 0 24px;
  }
  .text_imgs_box h2 img {
    width: 50px;
  }
  .text_imgs_box h2 span {
    font-size: 20px;
  }
  .text_imgs_box .text {
    font-size: 15px;
  }
  .text_imgs_box .text br {
    display: none;
  }
.scrollx_box {
	position: relative;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.scrollx_box::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50px;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	background: url('../img/bg_ex_scroll.png') no-repeat 0 0;
	background-size: cover;
}
.scrollx_box.touch::before {
	display: none;
}
.scrollx_box .tbl_d {
	min-width: 800px;
}
.img_normal {
	flex-direction: column;
}
.img_normal .imgcont  {
	width: 100%;
  margin: 20px 0px;
}
.img_normal .imgcont dl dt {
	font-size: 25px;
}
.img_normal .imgcont dl dd {
	font-size: 16px;
}
.img_normal .img .txt {
	top:12.91vw;
	padding-left:9.72vw;
	transform: translateY(0);
}
.img_normal .img .txt h3 {
	margin-left:-4.58vw;
	font-size:6.8vw;
	line-height:1.3;
}
.img_normal .img .txt h3 + h3 {
	margin-left:0;
}
.img_normal .img .txt h3 + p {
	font-size:4.16vw;
}
.filp_img_box {
	position: relative;
	width: 100%;
	height: auto;
	padding-bottom:100px;
	margin-top:80px;
	margin-bottom: 0;
	border-bottom: none;
	border-radius: 50% 50% 0 0;
	border:none;
	overflow: visible;
}
.filp_img_box::before {
	content: '';
	width: 960px;
	height: 960px;
	position: absolute;
	left: 50%;
	top: -50px;
	z-index: -1;
	transform: translate(-50%,0);
	border-radius: 50%;
	border:1px solid #f0f0f0;
}
.filp_img_box h1 {
	margin-top: 55px;
	font-size: 100px;
	line-height: 150px;
}
.filp_img {
	position: relative;
	left: auto;
	top: auto;
	width: 250px;
	height: 250px;
	margin: 55px auto 45px;
	transform: translate(0,0);
}
.filp_img img {
	width: 100%;
}
.filp_img::before {
	width: calc(100% + 65px);
	height: calc(100% + 65px);
}
/* .filp_img .swiper-pagination-bullet {
	width:6px;
	height: 6px;
} */
.filp_img .swiper-pagination-bullet:nth-child(1) {
	left: -8px;
	top: -8px;
}
.filp_img .swiper-pagination-bullet:nth-child(2) {
	right: -8px;
	top: -8px;
}
.filp_img .swiper-pagination-bullet:nth-child(3) {
	right: -8px;
	bottom: -8px;
}
.filp_img .swiper-pagination-bullet:nth-child(4) {
	left: -8px;
	bottom: -8px;
}
.icon1 {
	top:210px
}
.icon2 {
	top:210px
}
.icon3 {
	top:auto;
	bottom:210px
}
.icon4 {
	top:auto;
	bottom:210px
}
.vision_cont {
	display: inline-block;
	position: static;
	width:42%;
	vertical-align: top;
}
.vision_cont + .vision_cont {
	margin-left:14%;
}
.vision_cont .icon img {
	height:50px;
}
.vision_cont dl dt {
	font-size: 13px;
}
.vision_cont dl dd {
	font-size: 11px;
	line-height: 16px;
}
.vision_cont.active dl dt {
  color: #7ab5c7;
  font-size: 16px;
}
.vision_cont.active dl dd {
  color: #373737;
  font-weight: 500;
  font-size:12px;
}

}


@media screen and (max-width: 360px) {
  .cols {
    margin-left: 0;
  }
  .cols .col {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .icon_cols {
    margin-left: 0;
  }
  .icon_col {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .h1tit {
    margin-top: 70px;
    font-size: 35px;
  }
  .h1tit + p {
    font-size: 15px;
    margin: 20px 0 50px;
  }
}

@media screen and (min-width: 801px) {
  .sns_commend .swiper-wrapper {
    display: block;
  }
}

/*jssor slider loading skin spin css*/
	.jssorl-009-spin img {
		animation-name: jssorl-009-spin;
		animation-duration: 1.6s;
		animation-iteration-count: infinite;
		animation-timing-function: linear;
	}

	@keyframes jssorl-009-spin {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}

	/*jssor slider arrow skin 106 css*/
	.jssora106 {display:block;position:absolute;cursor:pointer;}
	.jssora106 .c {fill:#fff;opacity:.3;}
	.jssora106 .a {fill:none;stroke:#000;stroke-width:350;stroke-miterlimit:10;}
	.jssora106:hover .c {opacity:.5;}
	.jssora106:hover .a {opacity:.8;}
	.jssora106.jssora106dn .c {opacity:.2;}
	.jssora106.jssora106dn .a {opacity:1;}
	.jssora106.jssora106ds {opacity:.3;pointer-events:none;}

	/*jssor slider thumbnail skin 101 css*/
	.jssort101 .p {position: absolute;top:0;left:0;box-sizing:border-box;background:#fff;}
	.jssort101 .p .cv {position:relative;top:0;left:0;width:100%;height:100%;box-sizing:border-box;z-index:1;}
	.jssort101 .a {fill:none;stroke:#fff;stroke-width:400;stroke-miterlimit:10;visibility:hidden;}
	.jssort101 .p:hover .cv, .jssort101 .p.pdn .cv {border:none;border-color:transparent;}
	.jssort101 .p:hover{padding:2px;}
	.jssort101 .p:hover .cv {background-color:rgba(0,0,0,6);opacity:.35;}
	.jssort101 .p:hover.pdn{padding:0;}
	.jssort101 .p:hover.pdn .cv {border:2px solid #fff;background:none;opacity:.35;}
	.jssort101 .pav .cv {border-color:#fff;opacity:.35;}
	.jssort101 .pav .a, .jssort101 .p:hover .a {visibility:visible;}
	.jssort101 .t {position:absolute;top:0;left:0;width:100%;height:100%;border:none;opacity:.6;}
	.jssort101 .pav .t, .jssort101 .p:hover .t{opacity:1;}


	/**컨텐츠1**/
	.con1 {
		overflow: hidden;
		margin-bottom: 150px;
	}

	.con_right {
		float: right;
		width: 56%;
		height: 496px;
    	position: relative;
	}

	.con_right .building {
		height: 410px;
	}

	.con_right .building img {
		width: 100%;
		height: 100%;
	}

	.list_area {
		position: absolute;
		bottom: 0;
    	left: 0;
		height: 62px;
		width: 100%;
		margin: 22px auto 0;
		overflow: hidden;
	}

	.list_area .list {
		position: absolute;
		height: 62px;
		width: 100%;
		left: 37px;
		margin: 0 auto;
	}

	.list_area .list li {
		float: left;
		width: 94px;
		margin: 0 2px 0 0;
	}

	.list_area .list li a {
		display:block;
	}

	.list_area .list li a img{
		width: 100%;
	}

	.slide_company .sw_prev {
		left: 0px;
		margin-top: 17px;
	}

	.slide_company .sw_next {
		right: 0px;
		margin-top: 17px;
	}

	.slide_company .sw_ctl {
		opacity: .15;
		position: absolute;
		z-index: 2;
		font-size: 0;
		cursor: pointer;
	}

	.slide_company .sw_ctl:hover {
	  opacity: 1;
	}

	.con_left {
		float: left;
	}

	.address {
		border-top: 2px solid #373737;
	}

	.address th {
		width: 90px;
		padding: 20px 30px;
		border-bottom: 1px solid #373737;
		font-size: 20px;
		font-weight: 500;
	}

	.address td {
		border-bottom: 1px solid #373737;
		font-size: 20px;
		padding: 20px 65px 20px 20px;
	}

	/**컨텐츠2**/
	.con2 {
		background: #fff;
		webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		max-width:1324px ;
		margin:0 auto;
		overflow:hidden;
		margin-bottom:110px;
	}

	/**컨텐츠3**/
	.con3 .car h1{
		font-size: 26px;
		font-weight: 600;
		line-height: 34px;
		margin-bottom:50px;
	}

	.con3 .car h1 img {
		margin-right: 10px;
	}

	.location th {
		width: 120px;
		font-size: 20px;
		font-weight: 500;
		text-align: left;
		vertical-align: top;
		line-height: 30px;
		padding-bottom: 20px;

	}

	.location td {
		font-size: 20px;
		line-height: 30px;
		padding-bottom: 20px;
	}

	.subway {
		margin-top:100px;
	}

	.subway h1 span{
		line-height: 40px;
	}

	#h_pc .height { width:741px; height:490px;}
	#h_pc .jssort101 { width:741px; }

@media all and (max-width: 1280px) {
	.con_right, .con_left { float:unset; width:100%;}
	.con_right { height:auto;}
	#h_pc { margin-top:8%;}
	.con1  { margin-bottom: 8%;}
	 #h_pc .height { width:1280px; height:630px;}
	#h_pc .jssort101 { width:1280px; }

}
/**기술경쟁력**/
.rnd1 {
	margin-bottom: 150px;
}

.tec {
	overflow: hidden;
	width: 100%;
}

.tec1,.tec2,.tec3 {
	float: left;
}

.tec .title {
	overflow: hidden;
	margin-bottom: 20px;
}

.tec .title h3{
	width: 50px;
	font-size: 36px;
	font-weight: 600;
	color: #7eb9cc;
	border-bottom: 3px solid #7eb9cc;
	float: left;
	padding: 0 0 0 3px;
	margin-right: 15px;
}

.tec .title p{
	width: 100%;
	font-size: 25px;
	border-bottom: 3px solid #eeeeee;
	padding: 7px 0 8px 0;
}

.tec .box {
	width: 100%;
	height: 167px;
	background-color: #f4f5f5;
	border: 1px solid #eeeeee;
	border-radius: 20px;
	text-align: center;
	display : table;
}

.tec .box .box_inner {
	display : table-cell;
	text-align: center;
	vertical-align: middle;
}

.tec .box .box_inner h3 {
	font-size: 23px;
	font-weight: 600;
	color: #7eb9cc;
	margin-bottom: 10px;
	display: inline-block;
}

.tec .box .box_inner p {
	font-size: 20px;
}

.tec .explain h3 {
	font-size: 20px;
	font-weight: 600;
	color: #7eb9cc;
	line-height: 30px;
	margin-bottom: 10px;
	margin-top: 30px;
}

.tec .explain p {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 30px;
}

.tec1 {
	width: 22.5%;
}

.tec2 {
	width: 37.3%;
}

.tec3 {
	width: 33.3%;
}

.tec2 .title p{
	width: 100%;
}

.tec2 .box {
	width: 100%;
}

.tec3 .title p{
	width: 100%;
}

.tec3 .box {
	width: 100%;
}

/**핵심기술**/
.contents2 {
	padding: 150px 0;
	background-color: #f4f5f5;
}

.contents2 .rnd2 {
	max-width: 1324px;
	margin: 0 auto;
}


/**핵심기술**/
.contents3 {
	padding-top: 150px;
}

.rnd2 img {
	width: 100%;
}


/**네트워크**/
.net {
	width: 100%;
	display : table;
}

.net .net1 {
	width: 100%;
	height: 240px;
	border: 2px solid #eeeeee;
	border-radius: 20px;
	text-align: center;
	display : table-cell;
	vertical-align: middle;
}

.net .title h3 {
	font-size: 24px;
	font-weight: 600;
	padding-bottom: 15px;
}

.net .title div {
	width: 90%;
	margin: 0 auto;
	border-bottom: 3px solid #eeeeee;
	position: relative;
}

.net .title div p {
	width: 15%;
	margin: 0 auto;
	border-bottom: 3px solid #7eb9cc;
	position:absolute;
	left: 50%;
	transform:translateX(-50%);
}

.net .logo {
	padding-top: 30px;
	overflow: hidden;
	display:inline-block;
}

.net .net1 .logo dl {
	float: left;
	margin-right: 60px;
}

.net .net1 .logo dl:nth-child(4) {
	margin-right: 0px;
}

.net .net1 .logo dl dd {
	padding-top: 20px;
}

.net .logo dl dd img{
	padding-top: 8px;
	padding-right: 5px;
}


/**네트워크2**/

.net .net2 {
	width: 59%;
	border: 2px solid #eeeeee;
	border-radius: 20px;
	text-align: center;
	display : table-cell;
	vertical-align: middle;
	float: left;
	padding: 30px;
}

.net .net2 .logo {
	padding-top: 17px;
}

.net .net2 .logo dl {
	float: left;
	margin-right: 20px;
}

.net .net2 .logo dl:nth-child(6) {
	margin-right: 0px;
}

.net .net2 .logo dl dd {
	padding-top: 0;
}

/**네트워크3**/

.net .net3 {
	width: 40%;
	border: 2px solid #eeeeee;
	border-radius: 20px;
	text-align: center;
	display : table-cell;
	vertical-align: middle;
	float: right;
	padding: 30px;
}

.net .net3 .logo {
	padding-top: 17px;
}

.net .net3 .logo dl {
	float: left;
	margin-right: 40px;
}

.net .net3 .logo dl:nth-child(3) {
	margin-right: 0px;
}

.net .net3 .logo dl dd {
	padding-top: 0;
}


@media screen and (max-width: 1371px) {
	.tec>div {
		margin-right: 10px;
	}

	.tec>div:nth-child(2n) {
		display: none;
	}

	.tec2 {
		width: 38.3%;
	}
}

@media screen and (max-width: 1336px) {
	.tec2 {
		width: 41.3%;
	}

}

@media screen and (max-width: 1314px) {
	.tec2 {
		width: 41.3%;
	}
}

@media screen and (max-width: 1280px) {
	.tec1, .tec2, .tec3{
		width: 100%;
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 800px) {
	.net dl dd {
		font-size: 14px;
	}

	.net .net1 {
		padding: 20px;
	}

	.net .net1 .logo dl {
		margin-right: 0px;
		margin-bottom: 30px;
		width: 50%;
	}

	.net .net2 {
		padding: 20px 0;
		width: 100%;
		display : inherit;
		vertical-align: inherit;
		margin: 10px 0;
	}

	.net .net2 .logo dl {
		margin-right: 10px;
		margin-bottom: 30px;
		width: 30%;
	}

	.net .net3 {
		padding: 20px 0;
		width: 100%;
		display : inherit;
		vertical-align: inherit;
	}

	.net .net3 .logo dl {
		margin-right: 15px;
	}

	.contents2 {
		padding: 0px 0;
		background-color: #fff;
	}
}

/* 3가지 사각형 */
.hover_box_list {
  display:-webkit-flex;
  display:flex;
  flex-wrap:wrap;
  max-width:1324px;
  margin:85px auto;
}

.hover_box_list li {
  width:33.3%;
  height:593px;
}

.hover_box_list li .inbox {
  position:relative;
  height:100%;
  box-shadow:inset 0 0 1px 1px #e1e1e1;
  background:#fff;
}

.hover_box_list li .inbox .img {
  width:100%;
  opacity:0;
  transition:all .5s;
  height:100%;
}

.hover_box_list .tablet {
    display: none;
  }

.hover_box_list li .inbox:hover .img {
  opacity:1;
}

.hover_box_list li .inbox1 { 
  border-top-left-radius:20px;
  border-bottom-left-radius:20px;
}

.hover_box_list li .inbox3 {
  border-top-right-radius:20px;
  border-bottom-right-radius:20px;
}

.hover_box_list li .inbox .txt {
  display:-webkit-flex;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  align-content:flex-start;
  position:absolute; top:66px; right:14px; bottom:0; left:14px;
}

.hover_box_list li .inbox .txt .ico {
  display:block;
  margin-bottom:20px;
  background-repeat:no-repeat;
  background-position:center center;
  background-size:auto 100%;
  transition:all .5s;
  font-size: 36px;
  font-weight:600;
}

.hover_box_list li .inbox:hover .txt .ico {
  height:0;
  margin-bottom:0;
}

.hover_box_list li .inbox2:hover .txt .ico {
  opacity: 0;
}

.hover_box_list li .inbox .txt dl {
  width:100%;
  text-align:center;
}

.hover_box_list li .inbox .txt p {
  width:100%;
  text-align:left;
}

.hover_box_list li .inbox .txt dl dd {
  font-size: 25px;
  margin: 20px;
  line-height: 36px;
  font-weight:bold;
}

.hover_box_list li .inbox .txt dl .q_1 {
  font-size:18px;
  line-height:30px;
  font-weight:300;
  display:none;
  margin: auto 30px;
}

.hover_box_list li .inbox .txt dl dt img:nth-child(2) {
  display:none;
  text-align:center;
}

.hover_box_list li .inbox:hover .txt dl dt img:nth-child(1) {
  display:none;
}

.hover_box_list li .inbox:hover .txt dl dt img:nth-child(2) {
  display:inline-block;
  text-align:center;
}

.hover_box_list li .inbox:hover .txt dl dt,
.hover_box_list li .inbox:hover .txt dl dd {
  color:#fff
}

.hover_box_list li .inbox:hover .txt dl .q_1 {
  display:inherit;
} 


/**인증**/

.contents2 {
  padding-top: 150px;
}

.certify h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.certify ul {
  overflow: hidden;
}

.certify ul li {
  float: left;
  margin-right: 15px;
  margin-top: 20px;
}

.certify ul li img {
  width: 230px;
}

.certify .certify2,
.certify .certify3 {
  margin-top: 100px;
}


@media screen and (max-width: 1190px) {
  
  .hover_box_list li {
    width: 100%;
    height: 506px;
  }
  
  .hover_box_list li .inbox1 { 
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
  }
  
  .hover_box_list li .inbox3 {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  
  .hover_box_list .in_pc {
    display: none;
  }
  
  .hover_box_list .tablet {
    display: inherit;
  }
}

@media screen and (max-width: 800px) {
  .certify ul li {
    width: 45%;
    margin-right: 15px;
  }
  
  .certify ul li:nth-child(2n) {
    margin-right: 0px;
  }
  
  .certify ul li img {
    width : 100%
  }
}