@charset "utf-8";
.btn {
  transition: all 0.2s;
}
.btn:hover {
  opacity: 0.85;
}
#layout {
  min-width: auto;
  overflow: hidden;
}
#header_h1 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#header {
}
#header .container {
  position: relative;
}
#header #logo {
  position: absolute;
  left: 0;
  top: 40px;
  width: 220px;
  height: 54px;
}
#header #logo a {
}
#header #logo a img {
}
#header .hdt_nav {
  float: right;
  margin-top: 51px;
}
#header .hdt_nav > ul {
  text-align: center;
}
#header .hdt_nav > ul > li {
  display: inline-block;
}
#header .hdt_nav > ul > li + li {
}
#header .hdt_nav > ul > li + li > a:before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #333333;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  transition: all 0.2s;
}
#header .hdt_nav > ul > li > a:hover {
  color: #000;
  font-weight: 500;
}
#header .hdt_nav > ul > li.active > a {
  color: #000;
  font-weight: 500;
}

#header .hdt_nav > ul > li:hover > ul {
  display: block;
}
#header .hdt_nav > ul > li > a {
  display: block;
  height: 65px;
  line-height: 65px;
  color: #333333;
  font-size: 22px;
  position: relative;
  padding: 0 20px;
}
#header .hdt_nav > ul > li:last-child > a {
  padding-right: 0;
}
#header .hdt_nav > ul > li > ul {
  display: none;
  z-index: 100;
  position: absolute;
  top: 115px;
  left: 0;
  background-color: #222;
  width: 100%;
  text-align: right;
}
#header .hdt_nav > ul > li > ul:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #222;
  z-index: -1;
  height: 50px;
  width: 100vw;
  transform: translate(-50%, 0);
}
#header .hdt_nav > ul > li.active > ul {
  display: block;
}
#header .hdt_nav > ul > li > ul > li {
  display: inline-block;
  margin-left: 28px;
}
#header .hdt_nav > ul > li > ul > li > a {
  display: block;
  padding: 16px 7px 0 7px;
  color: #fff;
  font-size: 15px;
  height: 50px;
}
#header .hdt_nav > ul > li > ul > li > a:hover {
  border-bottom: 4px solid #b30000;
}
#header .hdt_nav > ul > li > ul > li > a.active {
  border-bottom: 4px solid #b30000;
}
#header .lang {
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 12px;
  color: #434343;
  line-height: 20px;
}
#header .lang a {
  display: inline-block;
  font-size: 15px;
  color: #434343;
  margin: 0 10px;
}

.fmenu {
  margin-top: 120px;
  padding: 80px 0;
  border-top: 1px solid #ddd;
  background-color: #f5f5f5;
}
.fmenu .container > ul {
  display: flex;
  justify-content: space-between;
}
.fmenu .container > ul > li {
  width: 120px;
}
.fmenu .container > ul > li > a {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 24px;
  display: block;
  position: relative;
}
.fmenu .container > ul > li > a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #00478f;
  bottom: -12px;
}
.fmenu .container > ul > li li > a {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 400;
  transition: 0.3s ease;
}

.fmenu .container > ul > li:hover > a::before {
  animation: borderHover 0.5s ease;
}

@keyframes borderHover {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.fmenu .container > ul > li li > a:hover {
  color: #00478f;
}

#footer {
  background-color: #404040;

  padding-top: 60px;
  padding-bottom: 60px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 400;
}
#footer .container {
  position: relative;
}
#footer .ft_logo {
  position: absolute;
  left: 40px;
  top: 0;
  width: 200px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  background-image: url("../images/ft_logo.jpg");
  text-indent: -999em;
  overflow: hidden;
}
#footer .ft_box {
  margin-top: 104px;
  padding-top: 30px;
  border-top: 1px solid #666;
}
#footer .ft_cnt {
  margin-bottom: 25px;
}
#footer .ft_cnt > div {
  padding: 0;
  color: #999;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}
#footer .ft_cnt > div + div {
  margin-top: 5px;
}
#footer .ft_cnt > div .ft_txt {
  float: left;
  position: relative;
}
#footer .ft_cnt > div .ft_txt + .ft_txt:before {
  content: "/";
  display: inline-block;
  margin: 0 12px;
}
#footer .ft_copy {
  display: block;
  color: #666;
  text-transform: uppercase;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 300;
}
#footer .ft_copy strong {
  font-weight: 500;
}
.main_visual {
  position: relative;
  /* margin-top: 100px; */
  height: calc(100vh - 100px - 40px);
}
.main_visual .swiper-pagination {
  position: absolute;
  right: 85px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 100;
}
.main_visual .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  margin: 22px 0;
  opacity: 1;
  position: relative;
}
.main_visual .swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.4s;
}
.main_visual
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  border: 1px solid #fff;
}
.swiper-container {
  height: 100%;
}
.swiper-wrapper {
  height: 100%;
}
.swiper-container-fade .swiper-slide {
  height: 100%;
}
.main_visual img {
  filter: brightness(0.9) blur(3px);
  width: 110%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}

.main_svc {
  margin-top: 130px;
  display: flex;
  align-items: center;
}

.renewalBorderBox {
  border: 1px solid #ddd;
  border-radius: 40px;
  padding: 64px;
}

.main_svc .svc_left {
  min-width: 600px;
  max-width: 600px;
  padding-right: 80px;
}
.main_svc .svc_right {
  flex: 1 1 auto;
}

.renewal_svc_right {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.renewal_svc_right .renewal_img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main_svc .main_title {
  margin-bottom: 30px;
}
.main_svc .main_title span {
  margin-top: 20px;
  color: #999;
  font-weight: 500;
  font-size: 18px;
}
.main_svc .main_title h2 {
  display: block;
  color: #000;
  font-size: 35px;
  font-weight: 700;
}
.main_svc .svc_txt {
}
.main_svc .svc_txt p {
  color: #8b8b8b;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
  font-weight: 400;
}
.main_svc .svc_txt a {
  display: inline-block;
  width: 300px;
  height: 60px;
  line-height: 58px;
  border: 1px solid #ff0000;
  padding-left: 20px;
  color: #ff0000;
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
  position: relative;
}
.main_svc .svc_txt a:before {
  content: "";
  display: block;
  border-top: 6px solid #ff0000;
  border-right: 6px solid #ff0000;
  border-left: 6px solid #fff;
  border-bottom: 6px solid #fff;
  position: absolute;
  right: 20px;
  top: 23px;
  transform: rotate(45deg);
}
.main_svc .svc_txt a:hover {
  text-decoration: underline;
}

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

.board_cnt {
  margin-top: 50px;
  margin-bottom: 120px;
}
.bl_search {
}
.bl_search form {
  float: right;
  position: relative;
}
.bl_search .sc_option {
  width: 120px;
  height: 40px;
  border: 1px solid #d4d4d4;
  background-color: #fff;
  border-radius: 4px;
  display: inline-block;
  font-weight: 300;
  font-size: 15px;
  text-align: left;
  margin-right: 8px;
  padding-left: 10px;
}
.bl_search .sc_ip {
  width: 260px;
  height: 40px;
  padding-right: 70px;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  background-color: #fff;
  display: inline-block;
  font-weight: 300;
  font-size: 15px;
  text-align: left;
  margin-right: 8px;
  padding-left: 10px;
}
.bl_search .sc_submit {
  width: 60px;
  height: 40px;
  background-color: transparent;
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/icon_search3.jpg");
}
.board_cnt .bl_list {
  border-top: 2px solid #000;
  margin-top: 10px;
}
.board_cnt .bl_list table {
  width: 100%;
  border-collapse: collapse;
}
.board_cnt .bl_list table thead {
}
.board_cnt .bl_list table thead th {
  height: 50px;
  background-color: #f7f7f7;
  vertical-align: middle;
  text-align: center;
  color: #000;
  font-size: 15px;
  border-bottom: 1px solid #d4d4d4;
}
.board_cnt .bl_list table tbody td {
  height: 50px;
  vertical-align: middle;
  text-align: center;
  color: #000;
  font-size: 15px;
  border-bottom: 1px solid #d4d4d4;
}
.board_cnt .bl_list table tbody td.subject {
}
.board_cnt .bl_list table tbody td.subject a {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 600px;
}
.board_cnt .bl_list table tbody td.subject a:hover {
  text-decoration: underline;
}

.paging {
  text-align: center;
  margin-top: 80px;
}
.paging a {
  display: inline-block;
  height: 30px;
  margin: 0 4px;
}
.paging a.pg_btn {
  text-indent: -999em;
  overflow: hidden;
  background-position: center center;
  background-size: 10px;
  background-repeat: no-repeat;
  width: 22px;
  height: 30px;
  margin: 0 5px;
  border: 1px solid #d4d3d3;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
.paging a.pg_first {
  background-image: url("../images/pg_first.png");
}
.paging a.pg_prev {
  background-image: url("../images/pg_prev.png");
  margin-right: 22px;
}
.paging a.pg_next {
  background-image: url("../images/pg_next.png");
  margin-left: 22px;
}
.paging a.pg_end {
  background-image: url("../images/pg_end.png");
}
.paging a.pg_num {
  text-align: center;
  color: #000;
  font-size: 15px;
  padding: 0 4px;
  min-width: 30px;
  height: 36px;
  line-height: 36px;
  color: #323232;
}
.paging a.pg_num.active {
  color: #0f97dd;
  border-radius: 15px;
}

.bv_pn {
  border-top: 1px solid #101010;
  border-bottom: 1px solid #d0d0d0;
  margin-top: 80px;
}
.bv_pn div {
  padding: 20px 15px;
}
.bv_pn div + div {
  border-top: 1px solid #efefef;
}
.bv_pn .tit {
  color: #101010;
  font-size: 15px;
  font-weight: 500;
  float: left;
  width: 80px;
}
.bv_pn a {
  color: #323232;
  font-size: 15px;
  font-weight: 300;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 740px;
}
.bv_pn a:hover {
  text-decoration: underline;
}
.bv_pn .date {
  color: #323232;
  font-size: 15px;
  font-weight: 300;
  float: right;
  margin-right: 20px;
}

.bv_btns {
  text-align: right;
  margin-top: 20px;
}
.bv_btns .btn {
  display: inline-block;
  height: 40px;
  line-height: 38px;
  color: #fff;
  padding: 0 8px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  width: 112px;
  text-align: center;
}
.bv_btns .btn + .btn {
  margin-left: 10px;
}
.bv_btns .btn.default {
  background-color: #fff;
  border: 1px solid #656565;
  color: #323232;
}

.board_view {
  border-top: 1px solid #000;
}
.board_view .bv_info {
  border-bottom: 1px solid #d0d0d0;
}
.bv_info {
  padding: 36px 30px 40px;
  border-bottom: 1px solid #efefef;
}
.bv_info h2 {
  color: #101010;
  font-size: 30px;
  font-weight: 500;
}
.bv_info .info {
  margin-top: 10px;
}
.bv_info .info span {
  color: #323232;
  font-size: 15px;
  font-weight: 300;
  display: inline-block;
  float: left;
}
.bv_info .info span + span {
}
.bv_info .info span + span:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #d0d0d0;
  margin: 0 10px;
}
.board_view .bv_cnt {
  border-bottom: 1px solid #d0d0d0;
  color: #323232;
  font-size: 15px;
  font-weight: 300;
}
.board_view .bv_cnt .bv_edit {
  padding: 40px 30px 80px;
  line-height: 1.8;
}
.board_view .bv_cnt .bv_files {
  border-top: 1px solid #efefef;
  padding: 20px 30px;
}
.board_view .bv_cnt .bv_files .file {
  padding-right: 32px;
  color: #101010;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  background-image: url("../images/ico_file.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  margin-right: 35px;
}

.form_basic {
  margin-top: 30px;
}
.form_basic .fb_title {
  display: block;
  color: #222;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 23px;
}
.form_basic .fb_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #222;
}
.form_basic .fb_table tbody {
}
.form_basic .fb_table tbody th {
  padding: 20px 24px 20px;
  width: 200px;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid #ddd;
  height: 65px;
}
.form_basic .fb_table tbody td {
  padding: 7px 35px 7px 0;
  border-bottom: 1px solid #ddd;
}
.form_basic .fb_table tbody td input[type="text"],
.form_basic .fb_table tbody td input[type="password"],
.form_basic .fb_table tbody td select {
  border: 1px solid #dbdbdb;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  height: 50px;
  float: left;
  margin-right: 10px;
  background-position: right 15px center;
}
.form_basic .fb_table tbody td textarea {
  border: 1px solid #dbdbdb;
  padding: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  height: 280px;
  float: left;
  min-height: 280px;
  max-height: 280px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.form_basic .fb_table tbody td .nor {
  width: 255px;
}
.form_basic .fb_table tbody td .tel {
  width: 124px;
}
.form_basic .fb_table tbody td .mail {
  width: 325px;
}
.form_basic .fb_table tbody td select.mail {
  width: 195px;
}
.form_basic .fb_table tbody td .mail_g {
  float: left;
  line-height: 50px;
  float: left;
  color: #999;
  margin-right: 10px;
}
.form_basic .fb_table tbody td .full {
  width: 100%;
}

.form_basic .fb_table tbody td .label_control {
  margin-top: 10px;
}

.ftable_bottom {
  margin-top: 27px;
  float: right;
}
.ftable_bottom .design_check {
  margin-bottom: 30px;
  float: right;
  color: #666;
  font-size: 13px;
}
.ftable_bottom .design_check a {
  text-decoration: underline;
}
.ftable_bottom .ct_robot {
  float: left;
  width: 302px;
  height: 76px;
  background-color: #f9f9f9;
}
.ftable_bottom .ct_submit {
  float: right;
  width: 200px;
  height: 76px;
  border: 1px solid #656565;
  margin-left: 15px;
  border-radius: 3px;
  color: #323232;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 74px;
  position: relative;
  transition: all 0.2s;
}
.ftable_bottom .ct_submit span {
  position: relative;
  z-index: 10;
}
.ftable_bottom .ct_submit:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #66bcdf;
  z-index: 1;
  width: 0;
  transition: all 0.2s;
}
.ftable_bottom .ct_submit:hover {
  color: #fff;
}
.ftable_bottom .ct_submit:hover:before {
  width: 100%;
}

.terms_layer {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 430px;
  margin-left: -200px;
  margin-top: -215px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  padding: 25px;
  z-index: 500;
}
.terms_layer .layer_title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #222;
}
.terms_layer .layer_close {
  position: absolute;
  right: 25px;
  top: 27px;
  width: 25px;
  height: 25px;
  display: block;
  border: 1px solid #dcdcdc;
  text-indent: -999em;
  overflow: hidden;
  background-position: center center;
  background-image: url("../images/btn_close.png");
  background-repeat: no-repeat;
  background-size: 10px;
}
.terms_layer .layer_cnt {
  font-size: 14px;
  overflow-y: scroll;
  height: 330px;
  background-color: #f1f1f1;
  padding: 20px;
}
.terms_layer .layer_cnt strong {
  display: block;
  color: #444;
  font-weight: 500;
}
.terms_layer .layer_cnt p {
  margin-top: 10px;
  color: #777;
}
.terms_layer .layer_cnt p + strong {
  margin-top: 15px;
}
.terms_layer .layer_cnt p:last-of-type {
  margin-bottom: 20px;
}

.sub_content {
  margin-top: 130px;
}
.sub_inner {
  padding: 0 35px;
  margin-top: 70px;
}
.tap_btns {
}
.tap_btns a {
  display: inline-block;
  height: 62px;
  color: #fff;
  width: 330px;
  font-size: 28px;
  font-weight: 500;
  background-color: #c6c6c6;
  box-shadow: 10px 10px 0 #f2f2f2;
  padding-top: 9px;
  text-align: center;
  margin-right: 35px;
}
.tap_btns a.active {
  background-color: #222;
}
.sub_imgs {
  border: 1px solid #d4d4d4;
  background-color: #fff;
  display: flex;
}
.sub_imgs .item {
  text-align: center;
  flex: 1 1;
}
.sub_imgs .item img {
  width: 50%;
}
.sub_imgs .item .tit {
  display: block;
  color: #000;
  margin: 25px 0;
  font-size: 26px;
}
.sub_imgs.fx {
  padding: 0 16%;
}
.sub_txt {
  line-height: 1.6;
  word-break: keep-all;
  margin-top: 80px;
}
.sub_txt .txt_box {
}
.sub_txt .txt_box + .txt_box {
  margin-top: 50px;
}
.sub_txt .txt_box .title {
  display: block;
  color: #000000;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}
.sub_txt .txt_box p {
  color: #5d5d5d;
  font-size: 18px;
}
.sub_txt .txt_box dl {
}
.sub_txt .txt_box dl + dl {
  margin-top: 30px;
}
.sub_txt .txt_box dl dt {
  color: #000;
  font-size: 18px;
  margin-bottom: 12px;
}
.sub_txt .txt_box dl dd {
  color: #5d5d5d;
  font-size: 18px;
  margin-top: 5px;
}
.sub_txt .txt_box .stg1 {
  color: #444;
  font-size: 18px;
  font-weight: 500;
  vertical-align: baseline;
}
.sub_txt .txt_box .stg2 {
  color: #222;
  font-size: 22px;
  font-weight: 500;
  vertical-align: baseline;
}
.sub_txt .txt_box ul {
}
.sub_txt .txt_box ul + ul {
  margin-top: 30px;
}
.sub_txt .txt_box ul li {
  color: #5d5d5d;
  font-size: 18px;
  margin-top: 5px;
  text-indent: -10px;
  padding-left: 10px;
}

.sub_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #2f6a9f;
}
.sub_table thead {
}
.sub_table thead th {
  background-color: #5d9bcb;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: 12px 0;
  border-bottom: 1px solid #b2b2b2;
}
.sub_table tbody {
}
.sub_table tbody td {
  background-color: #fff;
  color: #666666;
  font-size: 17px;
  font-weight: 500;
  padding: 25px 0;
  border-bottom: 1px solid #b2b2b2;
  vertical-align: middle;
  text-align: center;
  line-height: 1.7;
}
.sub_table tbody td img {
  width: 300px;
}

.history {
}
.history table {
  width: 85%;
  margin: 0 auto;
  border-collapse: collapse;
}
.history table tr td {
  color: #b2b2b2;
  font-size: 24px;
  font-weight: 500;
  padding: 20px 0;
  vertical-align: middle;
  text-align: left;
  line-height: 1.7;
  position: relative;
  width: 200px;
}
.history table tr td + td {
  color: #939393;
  font-size: 17px;
  font-weight: 500;
  padding: 20px 0 20px 70px;
  width: auto;
  border-left: 1px solid #cccccc;
}
.history table tr td + td:before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #6bb3b7;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: -13px;
  top: 50%;
  margin-top: -11px;
}
.history table tbody tr:first-child td {
  color: #333;
}
.history table tbody tr:first-child td + td {
  font-size: 19px;
  color: #333333;
}
.history table tbody tr:first-child td + td:before {
  background-color: #ff6946;
}
.location_info {
  padding-left: 20px;
  border-left: 10px solid #d61f1f;
  margin-left: 15px;
  margin-top: 50px;
}
.location_info strong {
  display: block;
  color: #000000;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1;
}
.location_info span {
  display: inline-block;
  font-size: 20px;
  color: #454545;
  font-weight: 400;
  margin-top: 5px;
  border-bottom: 1px solid #d9d9d9;
  padding: 5px 0;
}

.company {
}
.cp_table {
}
.cp_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #222;
}
.cp_table tbody th {
  background-color: #f1f1f1;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  padding: 18px 20px;
  border-bottom: 1px solid #b2b2b2;
}
.cp_table tbody {
}
.cp_table tbody td {
  background-color: #fff;
  color: #444;
  font-size: 17px;
  font-weight: 400;
  padding: 18px 20px;
  border-bottom: 1px solid #b2b2b2;
  vertical-align: middle;
  text-align: left;
  line-height: 1.7;
}
.cp_table tbody td img {
  width: 300px;
}
.cp_txt {
  padding: 20px;
  text-align: center;
  background-color: #ddd;
  font-size: 18px;
  color: #444;
}
.sub_bg {
  background-color: #fbfbfb;
  margin: 70px 0;
  padding: 70px 0;
}

.product {
}
.pd_table {
}
.pd_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #222;
}
.pd_table tbody th {
  background-color: #f1f1f1;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  padding: 18px 20px;
  border-bottom: 1px solid #b2b2b2;
}
.pd_table tbody {
}
.pd_table tbody td {
  background-color: #fff;
  color: #444;
  font-size: 17px;
  font-weight: 400;
  padding: 18px 20px;
  border-bottom: 1px solid #b2b2b2;
  vertical-align: middle;
  text-align: left;
  line-height: 1.7;
}
.pd_table tbody td img {
  width: 300px;
}
.pd_txt {
  padding: 20px;
  text-align: center;
  background-color: #ddd;
  font-size: 18px;
  color: #444;
}
.sub_bg {
  background-color: #fbfbfb;
  margin: 70px 0;
  padding: 70px 0;
}
div.pd_list div.pd_list ul {
  list-style-type: disc;
  font-size: 18px;
}
div.pd_list ul li {
  list-style-position: inside;
  text-indent: -20px;
  padding-left: 20px;
}

.solution {
}
.sl_table {
}
.sl_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #222;
}
.sl_table tbody th {
  background-color: #f1f1f1;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  padding: 18px 20px;
  border-bottom: 1px solid #b2b2b2;
}
.sl_table tbody {
}
.sl_table tbody td {
  background-color: #fff;
  color: #444;
  font-size: 17px;
  font-weight: 400;
  padding: 18px 20px;
  border-bottom: 1px solid #b2b2b2;
  vertical-align: middle;
  text-align: left;
  line-height: 1.7;
}
.sl_table tbody td img {
  width: 300px;
}
.sl_txt {
  padding: 20px;
  text-align: center;
  background-color: #ddd;
  font-size: 18px;
  color: #444;
}
.sub_bg {
  background-color: #fbfbfb;
  margin: 70px 0;
  padding: 70px 0;
}

.service {
}
.sv_table {
}
.sv_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #222;
}
.sv_table tbody th {
  background-color: #f1f1f1;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  padding: 18px 20px;
  border-bottom: 1px solid #b2b2b2;
}
.sv_table tbody {
}
.sv_table tbody td {
  background-color: #fff;
  color: #444;
  font-size: 17px;
  font-weight: 400;
  padding: 18px 20px;
  border-bottom: 1px solid #b2b2b2;
  vertical-align: middle;
  text-align: left;
  line-height: 1.7;
}
.sv_table tbody td img {
  width: 300px;
}
.sv_txt {
  padding: 20px;
  text-align: center;
  background-color: #ddd;
  font-size: 18px;
  color: #444;
}
.sub_bg {
  background-color: #fbfbfb;
  margin: 70px 0;
  padding: 70px 0;
}

.contact_wrap {
  padding: 25px 2px 0 2px;
  background-repeat: cover;
  background-size: 380px;
  background-position: center top;
  background-image: url("../images/contact_bg.jpg");
  border-radius: 20px;
}
.contact {
  border: 1px solid #dbdbdb;
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 60px 60px 400px;
  background-repeat: no-repeat;
  background-size: 380px;
  background-position: left bottom;
  background-image: url("../images/contact.jpg");
}
.contact .row {
}
.contact .row + .row {
  margin-top: 18px;
}
.contact .row .tit {
  display: block;
  color: #4b4b4b;
  font-size: 18px;
  margin-bottom: 12px;
}
.contact .row .cnt {
}
.contact .row .cnt input {
  border: 1px solid #b8b8b8;
  height: 45px;
  width: 100%;
  padding-left: 15px;
}
.contact .row .cnt textarea {
  border: 1px solid #b8b8b8;
  height: 200px;
  min-height: 200px;
  width: 100%;
  padding-left: 15px;
}
.contact .btns {
  display: flex;
}
.contact .btns a {
  flex: 1 1;
  background-color: #bdbdbd;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}
.contact .btns a + a {
  margin-left: 10px;
}
.contact .btns a.submit {
  background-color: #393939;
}

/* -----------------리뉴얼---------------------- */

.r24,
.item.normal {
  -webkit-border-radius: 24px;
  border-radius: 24px;
}

#header {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 20;
}
#header .inner-wrap {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.inner-wrap {
  padding: 0 40px;
}
#header #logo {
  position: initial;
  width: 130px;
  height: auto;
  display: flex;
  align-items: center;
}
#nav {
  width: calc(100% - 180px);
  height: 100%;
  align-self: flex-start;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .lang {
  position: static;
}
#header > ul > li + li > a:before {
  content: none;
}
#nav > ul > li > a {
  position: relative;
  display: block;
  height: 100px;
  line-height: 100px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
#nav > ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
  padding: 40px 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
}
#nav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
#nav > ul > li,
#nav a {
  position: relative;
}
#nav > ul::before {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  content: "";
  height: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  background-color: #fff;
}
#nav > ul:hover::before,
#nav > ul:focus::before {
  height: 104px;
  opacity: 1;
  visibility: visible;
  border-top: 1px solid #eee;
  -webkit-box-shadow: 0 12px 40px 0 rgb(16 24 64 / 24%);
  box-shadow: 0 12px 40px 0 rgb(16 24 64 / 24%);
}
#nav ul > li:hover > ul,
#nav ul > li:focus > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
#nav ul > li:hover > ul,
#nav ul > li:focus > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
#nav > ul ul > li + li {
  margin-left: 20px;
}
#nav > ul ul a {
  padding: 8px 20px 8px 0;
  font-weight: 600;
  color: #666;
}
#nav ul ul a:hover {
  color: #00478f;
}
#nav > ul > li > a:hover::after,
#nav > ul > li > a::after {
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #00478f;
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -o-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: bottom center;
}
#nav > ul > li:hover > a::after,
#nav > ul > li:focus > a::after {
  -moz-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -o-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: bottom center;
}
#nav,
#nav > ul > li > a::after,
#nav > ul > li > ul {
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.main_visual .textbox {
  color: #fff;
  position: absolute;
  bottom: 35%;
  right: 10%;
  transform: translateY(50%);
  font-size: 48px;
  font-weight: 600;
}
.main_visual .textbox b {
  font-weight: 800;
  font-size: 67px;
}
.main_visual .textbox p:first-of-type {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.btn_visual {
  display: flex;
  align-items: center;
  width: 120px;
  justify-content: space-between;
  padding: 8px 20px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 160px;
  transition: all 0.2s;
  font-size: 16px;
  margin-top: 32px;
}
.btn_visual:hover {
  border: 1px solid #008acc;
  background-color: #008acc;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  display: none;
}

#content .visual {
  overflow: hidden;
  position: relative;
  height: 500px;
  margin: 0 40px 0;
  border-radius: 48px;
}
.inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
#content .visual img {
  width: 120%;
  filter: brightness(0.9);
  max-width: 120%;
}
#content .visual .title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#content .visual .title .motion {
  overflow: hidden;
}
#content .visual .title h2 {
  text-align: center;
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  z-index: 1;
  animation: fadeInUp 1s both;
}
h3 {
  line-height: 1.5;
  font-weight: 700;
  font-size: 32px;
  animation: fadeInUp 1s both;
  margin-top: 80px;
  margin-bottom: 50px;
}
h4 {
  line-height: 1.5;
  font-weight: 700;
  font-size: 24px;
  animation: fadeInUp 1s both;
  margin-top: 40px;
  margin-bottom: 20px;
}
section {
  margin-top: 60px;
}
.company .ceo .message {
  overflow: hidden;
  background: rgba(0, 92, 170, 0.1);
}
.company .ceo .message .substance {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 80px 0;
}
.company .ceo .message .substance h4 {
  color: #00478f;
  line-height: 1.3;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  width: 50%;
}
.company .ceo .message .substance .content {
  font-size: 19px;
  color: #333;
  display: flex;
  font-weight: 400;
  margin-bottom: 30px;
}
.company .ceo .message .substance .content p:first-of-type {
  font-weight: 600;
  width: 80px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.history .contents > li {
  display: flex;
}
.history .contents > li > p {
  display: block;
  color: #00478f;
  line-height: 36px;
  font-size: 24px;
  font-weight: 700;
  margin-right: 160px;
  min-width: 100px;
  max-width: 100px;
  position: relative;
}
.history .contents > li > p::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #008acc;
  top: 20px;
  transform: translateY(-50%);
  right: -88px;
  z-index: 1;
}

.history .contents > li > ul {
  padding-bottom: 120px;
  position: relative;
}

.history .contents > li > ul li {
  font-size: 17px;
  color: #666;
  font-weight: 400;
  line-height: 2;
  display: flex;
}

.history .contents > li > ul li b {
  min-width: 80px;
  max-width: 80px;
  display: block;
  color: #222;
}

.history .contents > li > ul::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #ddd;
  left: -80px;
}

.location .info {
  display: flex;
  margin-top: 50px;
}
.location .info strong {
  width: 30%;
  font-size: 24px;
  color: #222;
  font-weight: 700;
}
.location .txt_list li {
  margin-bottom: 16px;
  display: flex;
}
.location .txt_list li > div {
  margin-right: 100px;
}
.location .txt_list li em {
  display: inline-block;
  width: 80px;
  line-height: 22px;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}
.location .txt_list li .txt {
  display: inline-block;
  letter-spacing: -0.5px;
  line-height: 20px;
  font-size: 17px;
}

.product1 .info {
  display: flex;
  gap: 70px;
  margin-bottom: 80px;
}
.product1 .info .thumb {
  padding: 0 20px;
  width: 460px;
  height: auto;
  border-radius: 30px;
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product1 .info .thumb img {
  max-width: 100%;
}
.product1 .info .title strong {
  vertical-align: middle;
  line-height: 38px;
  font-size: 30px;
  color: #222;
  font-weight: 700;
}
.product1 .info .title b {
  display: block;
  margin: 36px 0 20px;
  line-height: 26px;
  color: #222;
  font-size: 22px;
  font-weight: 700;
}
.product1 .info .title small {
  line-height: 26px;
  color: #666;
  font-size: 14px;
  font-weight: 400;
}
.product1 .info .title p {
  font-size: 16px;
  color: #666;
  max-width: 650px;
  line-height: 1.5;
  word-break: keep-all;
}
.product1 .funcBox {
  width: 100%;
  padding: 40px 60px;
  border-radius: 30px;
  background-color: #eee;
  margin-bottom: 40px;
}
.product1 .funcBox b {
  line-height: 26px;
  font-size: 22px;
  color: #222;
  font-weight: 700;
  margin-bottom: 22px;
  display: block;
}
.product1 .funcBox p {
  position: relative;
  letter-spacing: -0.3px;
  line-height: 31px;
  font-size: 17px;
  z-index: 1;
  position: relative;
  margin-left: 20px;
}
.product1 .funcBox p::before {
  position: absolute;
  content: "";
  background-color: #00478f;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 16px;
  transform: translateY(-50%);
  left: -20px;
}
.product1 .sell {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 80px;
}
.product1 .sell th {
  background: #eee;
  padding: 19px 21px;
  text-align: center;
  color: #222;
  line-height: 20px;
  letter-spacing: -0.3px;
  font-weight: 600;
  border: 0;
  font-size: 17px;
}
.product1 .sell {
  border-top: 1px solid #ddd;
  box-sizing: border-box;
}
.product1 .sell td {
  padding: 30px 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  color: #222;
  line-height: 22px;
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}
.product1 .sell td:first-of-type {
  text-align: center;
}
.product1 .sell td p {
  line-height: 2;
}

.product2 .info {
  display: flex;
  gap: 70px;
  margin-bottom: 80px;
}
.product2 .info .thumb {
  padding: 0 20px;
  width: 100%;
  height: 460px;
  border-radius: 30px;
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.product2 .info .thumb img {
  max-width: 70%;
}
.product2 .info strong {
  vertical-align: middle;
  line-height: 38px;
  font-size: 32px;
  color: #222;
  font-weight: 700;
}
.product2 .info b {
  display: block;
  margin: 36px 0 20px;
  line-height: 26px;
  color: #222;
  font-size: 22px;
  font-weight: 700;
}
.product2 .info span {
  margin-left: 4px;
  padding: 4px 12px 6px;
  border: 2px solid #00478f;
  border-radius: 10rem;
  vertical-align: middle;
  text-transform: uppercase;
  color: #00478f;
  /* line-height: 1.92rem; */
  font-weight: 600;
  font-size: 16px;
}
.product12.info .title small {
  line-height: 26px;
  color: #666;
  font-size: 14px;
  font-weight: 400;
}
.product2 .info .title p {
  font-size: 16px;
  color: #666;
  max-width: 650px;
  line-height: 1.5;
  word-break: keep-all;
}
.product2 .funcBox {
  width: 100%;
  padding: 40px 60px;
  border-radius: 30px;
  background-color: #eee;
  margin-bottom: 40px;
}
.product2 .funcBox b {
  line-height: 26px;
  font-size: 22px;
  color: #222;
  font-weight: 700;
  margin-bottom: 22px;
  display: block;
}
.product2 .funcBox p {
  position: relative;
  letter-spacing: -0.3px;
  line-height: 31px;
  font-size: 17px;
  z-index: 1;
  position: relative;
  margin-left: 20px;
}
.product2 .funcBox p::before {
  position: absolute;
  content: "";
  background-color: #00478f;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}
.product2 .sell {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 80px;
}
.product2 .sell th {
  background: #eee;
  padding: 19px 21px;
  text-align: center;
  color: #222;
  line-height: 20px;
  letter-spacing: -0.3px;
  font-weight: 600;
  border: 0;
  font-size: 17px;
}
.product2 .sell {
  border-top: 1px solid #ddd;
  box-sizing: border-box;
}
.product2 .sell td {
  padding: 30px 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  color: #222;
  line-height: 22px;
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}
.product2 .sell td:first-of-type {
  text-align: center;
}
.product2 .sell td p {
  line-height: 2;
}

.product1 .subTitle {
  letter-spacing: -0.3px;
  color: #666;
  line-height: 35px;
  font-size: 22px;
  font-weight: 400;
  word-break: keep-all;
}
.product1 .subTitle > b {
  color: #222;
}
.product1 .imgBox {
  width: 100%;
  height: 600px;
  border: 1px solid #ddd;
  padding: 40px;
  border-radius: 40px;
}
.product1 .imgBox img {
  max-height: 100%;
  width: auto;
  margin: auto;
  display: block;
}
.imgBox2 {
  width: 100%;
  height: 600px;
  border: 1px solid #ddd;
  padding: 40px;
  border-radius: 40px;
  display: flex;
  margin: 40px 0;
  justify-content: center;
}
.product1 .imgBox2 img {
  width: auto;
  margin: auto;
  padding: 0 80px;
  max-height: 90%;
  display: block;
}
.product1 .imgBox2 > div {
  display: flex;
  flex-direction: column;
}
.product1 .subTitle2 {
  letter-spacing: -0.3px;
  color: #666;
  line-height: 35px;
  font-size: 20px;
  font-weight: 400;
  word-break: keep-all;
}

.roundTxt {
  margin: auto;
  padding: 4px 12px 6px;
  border: 2px solid #00478f;
  border-radius: 10rem;
  vertical-align: middle;
  text-transform: uppercase;
  color: #00478f;
  /* line-height: 1.92rem; */
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.product1 input {
  border-radius: 10px;
  border: solid 1px #ddd;
  background-color: #fff;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-bottom: 40px;
  margin-top: 10px;
}
.product1 textarea {
  margin-bottom: 40px;
  border-radius: 10px;
  border: solid 1px #ddd;
  background-color: #fff;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  padding: 30px;
  margin-top: 10px;
  max-width: 100%;
  min-width: 100%;
}
.product1 form span {
  font-size: 20px;
  color: #666;
  font-weight: 500;
}
.btn_visual_ok {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 245px;
  width: 100%;
  height: 65px;
  border-radius: 15px;
  box-shadow: 0px 4px 9.6px 0.4px rgb(0 0 0 / 5%);
  background-color: #008acc;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: auto;
  transition: 0.3s ease;
}
.btn_visual_ok:hover {
  background-color: #00478f;
}
#nav > ul > li > ul.column > div {
  display: flex;
  margin-bottom: 16px;
}

#nav > ul > li > ul.column {
  display: flex;
  flex-direction: column;
  padding: 20px 32px;
}

#pcham {
  border: none;
  background-color: transparent;
  padding: 0;
  position: relative;
  width: 27px;
  height: 20px;
  cursor: pointer;
  z-index: 9999;
  display: none;
}
#pcham > div:nth-child(1) {
  top: 0;
  left: 0;
  transition: 0.3s ease;
}
#pcham > div:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
#pcham > div:nth-child(3) {
  bottom: 0%;
  right: 0;
  transition: 0.3s ease;
}
#pcham > div {
  width: 27px;
  height: 2px;
  background-color: #666;
  position: absolute;
  cursor: pointer;
}
#pcham.active > div:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#pcham.active > div:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}
#pcham.active > div:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.mheader {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.mmenu {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
#mlnb {
  padding: 60px 40px;
  width: 800px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#mlnb .mmain:first-of-type {
  margin-top: 0;
}
#mlnb .mmain {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 30px 0;
  flex-direction: column;
}
#mlnb .mmain > a {
  display: block;
  width: 150px;
  font-size: 18px;
  color: #222;
  font-weight: 700;
  transition: 0.3s ease;
}
#mlnb .mmain .sub {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
#mlnb .mmain .sub a {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  transition: 0.3s ease;
}
#mlnb .mmain .sub a:hover {
  color: #00478f;
}

body.act {
  overflow: hidden;
}
.imgBox3 {
  width: 50%;
}

.lang2 {
  font-size: 12px;
  color: #434343;
  line-height: 20px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.noticeContents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

/* ---------------------------------------반응형-------------------------------------------- */
@media screen and (max-width: 1199px) {
  /* 타블렛 가로 */
  .main_content {
    width: 100vw;
  }
  .main_visual img {
    width: auto;
    max-height: 100%;
  }
  .main_visual {
    height: calc(100vh - 80px - 40px);
  }
  .main_visual .textbox b {
    font-size: 48px;
  }
  .main_visual .textbox p:first-of-type {
    font-size: 24px;
  }
  #header {
    width: 100vw;
    height: 80px;
  }
  #nav > ul > li > a {
    line-height: 80px;
    height: 80px;
    padding: 0 14px;
    font-size: 14px;
  }
  #header .inner-wrap {
    height: 100%;
  }
  .main_svc .main_title h2 {
    font-size: 28px;
  }
  .main_svc .main_title {
    margin-bottom: 20px;
  }
  .main_svc .svc_txt p {
    font-size: 15px;
  }
  .renewal_svc_right {
    min-width: 300px;
  }
  .main_svc .svc_left {
    min-width: auto;
    padding-right: 20px;
  }
  .renewalBorderBox {
    border-radius: 36px;
    padding: 36px;
  }
  .fmenu {
    margin-top: 80px;
    padding: 40px 0;
    width: 100vw;
  }
  #footer {
    padding-top: 48px;
    padding-bottom: 48px;
    font-size: 14px;
    width: 100vw;
  }
  .fmenu .container > ul > li > a {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .fmenu .container > ul > li > a::before {
    bottom: -10px;
  }
  .main_svc .main_title span {
    margin-top: 18px;
    font-size: 16px;
  }

  #content .visual {
    height: 400px;
    border-radius: 40px;
  }
  #content .visual .title h2 {
    font-size: 40px;
  }
  section {
    margin-top: 30px;
  }
  h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .company .ceo .message .substance h4 {
    font-size: 28px;
    margin-right: 100px;
  }
  .company .ceo .message .substance .content {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .company .ceo .message .substance .content p:first-of-type {
    min-width: 70px;
    max-width: 70px;
  }

  .location .info strong {
    width: 25%;
    font-size: 20px;
  }

  .product1 .info .title strong {
    font-size: 26px;
  }
  .product1 .info .title b {
    margin: 20px 0 10px;
    font-size: 18px;
  }
  .product1 .info .title p {
    font-size: 15px;
    line-height: 1.4;
  }
  .product1 .info {
    gap: 30px;
    margin-bottom: 60px;
  }
  .product1 .funcBox {
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 30px;
  }
  .product1 .funcBox b {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .product1 .funcBox p {
    line-height: 25px;
    font-size: 16px;
    margin-left: 20px;
  }

  .product1 .sell th {
    padding: 10px 10px;
    font-size: 16px;
  }
  .product1 .sell td {
    padding: 15px 15px;
    font-size: 16px;
  }

  .product2 .info {
    gap: 30px;
    margin-bottom: 60px;
  }
  .product2 .info b {
    margin: 20px 0 10px;
    font-size: 18px;
  }
  .product2 .sell th {
    padding: 10px 10px;
    font-size: 16px;
  }
  .product2 .sell td {
    padding: 15px 15px;
    font-size: 16px;
  }
  .product1 .subTitle {
    line-height: 25px;
    font-size: 18px;
  }

  .noticeContents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 899px) {
  /* 모바일 가로, 타블렛 세로 */

  #nav > ul {
    display: none;
  }
  .lang {
    display: none;
  }
  #nav {
    justify-content: end;
  }
  body.act .lang {
    display: block;
  }
  .main_visual .textbox p:first-of-type {
    font-size: 20px;
  }
  .main_visual .textbox b {
    font-size: 36px;
  }
  .main_svc .main_title h2 {
    font-size: 24px;
  }
  .main_svc {
    margin-top: 80px;
  }
  .main_svc .main_title span {
    margin-top: 14px;
    font-size: 14px;
  }
  .renewalBorderBox {
    border-radius: 24px;
    padding: 24px;
    flex-direction: column;
  }
  .fmenu {
    display: none;
  }
  #footer {
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 13px;
  }
  #footer .ft_box {
    margin-top: 60px;
    padding-top: 20px;
  }
  #footer .ft_cnt > div {
    font-size: 13px;
    font-weight: 400;
  }
  #footer .ft_logo {
    width: 150px;
    height: 50px;
  }
  #footer .ft_copy {
    font-size: 12px;
  }
  .main_visual .textbox {
    line-height: 1;
  }

  #pcham {
    display: block;
  }

  #content .visual {
    height: 250px;
    border-radius: 30px;
  }
  #content .visual .title h2 {
    font-size: 30px;
  }
  section {
    margin-top: 20px;
  }
  h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .company .ceo .message .substance {
    padding: 40px 0;
    flex-direction: column;
  }
  .company .ceo .message .substance h4 {
    font-size: 24px;
    margin-right: 0;
    margin-top: 0;
  }
  .company .ceo .message .substance .content {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .history .contents > li > p {
    font-size: 20px;
    margin-right: 50px;
    min-width: 80px;
    max-width: 80px;
  }
  .history .contents > li > p::before {
    right: -10px;
  }
  .history .contents > li > ul::before {
    left: -48px;
  }
  .history .contents > li > ul li b {
    min-width: 60px;
    max-width: 60px;
  }
  .history .contents > li > ul li {
    font-size: 15px;
  }
  .history .contents > li > ul {
    padding-bottom: 60px;
  }
  .location .info {
    margin-top: 30px;
    flex-direction: column;
  }
  .location .info strong {
    width: 100%;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .location .txt_list li em {
    width: 50px;
    font-size: 16px;
  }
  .location .txt_list li .txt {
    font-size: 15px;
  }

  .product1 .info .title strong {
    font-size: 17px;
  }
  .product1 .info .title b {
    margin: 8px 0 4px;
    font-size: 15px;
  }
  .product1 .info .title p {
    font-size: 14px;
    line-height: 1.4;
  }
  .product1 .info {
    gap: 30px;
    margin-bottom: 0;
    flex-direction: column;
  }
  .product1 .info .thumb {
    border-radius: 30px;
    width: 100%;
  }
  .product1 .funcBox b {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .product1 .funcBox p {
    line-height: 20px;
    font-size: 14px;
  }
  .product1 .funcBox p::before {
    top: 11px;
  }
  .product1 .funcBox {
    border-radius: 20px;
  }

  .product1 .sell th {
    padding: 8px 8px;
    font-size: 14px;
  }
  .product1 .sell td {
    padding: 10px 10px;
    font-size: 14px;
  }

  .product2 .info {
    gap: 30px;
    margin-bottom: 0;
    flex-direction: column;
  }
  .product2 .info .thumb img {
    max-height: 150px;
    max-width: 50%;
  }
  .product2 .info .thumb {
    width: 100%;
    height: 300px;
  }
  .product2 .info b {
    margin: 8px 0 4px;
    font-size: 15px;
  }
  .product2 .info span {
    margin-left: 0;
    font-size: 14px;
  }
  .product2 .sell th {
    padding: 8px 8px;
    font-size: 14px;
  }
  .product2 .sell td {
    padding: 10px 10px;
    font-size: 14px;
  }

  .product1 .subTitle {
    font-size: 16px;
  }
  .product1 .subTitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .product1 .imgBox {
    padding: 20px;
    border-radius: 40px;
    height: auto;
  }

  .imgBox3 {
    width: 100%;
  }
  h4 {
    line-height: 1;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .product1 .subTitle2 {
    font-size: 14px;
    line-height: 1.5;
  }
  .roundTxt {
    margin: 8px auto;
    font-size: 14px;
  }
  .product1 .imgBox2 img {
    margin: 0 auto;
    padding: 0 20px;
  }
  .imgBox2 {
    padding: 20px;
    border-radius: 30px;
    margin: 30px 0;
    height: auto;
  }

  .product1 form span {
    font-size: 16px;
  }
  .product1 input {
    border-radius: 5px;
    height: 40px;
    padding-left: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .company .ceo .message .substance h4 {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  /* 모바일 세로 */
  #header #logo {
    width: 80px;
  }
  .inner-wrap {
    padding: 0 20px;
  }
  #header {
    height: 40px;
  }
  #header #logo a {
    display: flex;
  }
  #header #logo a {
    display: flex;
  }
  .r24,
  .item.normal {
    -webkit-border-radius: 16px;
    border-radius: 16px;
  }
  .main_visual {
    height: calc(100vh - 40px - 40px);
  }
  .main_visual .textbox p:first-of-type {
    font-size: 14px;
  }
  .main_visual .textbox b {
    font-size: 24px;
  }
  .container {
    padding: 0 20px;
  }
  .main_svc {
    margin-top: 40px;
  }
  .renewalBorderBox {
    border-radius: 16px;
    padding: 16px;
  }
  .main_svc .main_title h2 {
    font-size: 20px;
  }
  .main_visual .textbox p,
  .main_visual .textbox b,
  .main_visual .textbox {
    vertical-align: middle;
  }
  .main_svc .svc_txt p {
    font-size: 14px;
    line-height: 1.4;
  }
  .renewal_svc_right {
    min-width: 100%;
    height: 150px;
  }
  #footer .ft_logo {
    width: 100px;
    height: 25px;
    left: 20px;
  }
  #footer .ft_box {
    margin-top: 40px;
    padding-top: 16px;
  }
  #footer .ft_cnt > div {
    font-size: 12px;
  }
  #footer .ft_copy {
    font-size: 10px;
  }
  #footer .ft_cnt {
    margin-bottom: 16px;
  }
  #footer {
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #mlnb .mmain {
    gap: 10px;
    margin: 30px 10px 0;
  }
  #mlnb .mmain > a {
    font-size: 15px;
  }
  #mlnb .mmain .sub {
    gap: 8px;
  }
  #mlnb .mmain .sub a {
    font-size: 12px;
  }

  #content .visual img {
    width: auto;
    max-width: 200%;
  }
  #content .visual {
    height: 200px;
    border-radius: 20px;
    margin: 0 20px 0;
  }
  #content .visual .title h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 16px;
  }
  .company .ceo .message .substance {
    padding: 30px 0;
  }
  .company .ceo .message .substance h4 {
    font-size: 20px;
  }
  .company .ceo .message .substance .content {
    font-size: 14px;
  }
  .company .ceo .message .substance .content p:first-of-type {
    min-width: 60px;
    max-width: 60px;
  }

  .history .contents > li > p::before {
    display: none;
  }
  .history .contents > li > ul::before {
    display: none;
  }
  .history .contents > li {
    flex-direction: column;
  }
  .history .contents > li > p {
    font-size: 16px;
  }
  .history .contents > li > ul {
    padding-bottom: 20px;
  }
  .history .contents > li > ul li {
    font-size: 14px;
    line-height: 1.5;
  }
  .history .contents > li > ul li b {
    min-width: 50px;
    max-width: 50px;
  }

  .root_daum_roughmap .wrap_map {
    height: 200px !important;
  }
  .location .info {
    margin-top: 20px;
  }
  .location .info strong {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .location .txt_list li em {
    max-width: 30px;
    min-width: 30px;
    width: 30px;
    font-size: 13px;
  }
  .location .txt_list li .txt {
    font-size: 12px;
  }
  .location .txt_list li > div {
    margin-right: 10px;
  }
  .product1 .info .title strong {
    font-size: 16px;
  }
  .product1 .info .title b {
    font-size: 14px;
  }
  .product1 .info .title p {
    font-size: 13px;
  }
  .product1 .funcBox b {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .product1 .funcBox {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .product1 .funcBox p {
    line-height: 16px;
    font-size: 12px;
  }

  .product1 .sell th {
    padding: 4px 4px;
    font-size: 12px;
  }
  .product1 .sell td {
    font-size: 12px;
  }

  .product2 .info b {
    font-size: 12px;
  }
  .product2 .info span {
    font-size: 12px;
  }
  .product2 .info .thumb {
    height: 200px;
  }
  .product2 .info .thumb img {
    max-height: 100px;
  }
  .product2 .sell th {
    padding: 4px 4px;
    font-size: 12px;
  }
  .product2 .sell td {
    font-size: 12px;
  }
  .sellGroup {
    width: 100%;
    overflow: scroll;
  }
  .product1 .sell,
  .product2 .sell {
    width: 100%;
    border-spacing: 0;
    margin-bottom: 40px;
  }
  .product1 .info .thumb {
    border-radius: 10px;
    min-height: 150px;
  }

  .product1 .imgBox {
    padding: 10px;
    border-radius: 20px;
  }

  .product1 .sellGroup .sell,
  .product2 .sellGroup .sell {
    /* width: 200%; */
    width: 800px !important;
    border-spacing: 0;
    margin-bottom: 40px;
  }

  h4 {
    font-size: 16px;
    margin-top: 20px;
  }
  .roundTxt {
    margin: 8px auto;
    font-size: 12px;
    padding: 2px 4px 2px;
  }
  .product1 .imgBox2 img {
    padding: 0;
  }
  .imgBox2 {
    padding: 10px;
    border-radius: 20px;
    margin: 20px 0;
  }
  .noticeContents {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* -----------------리뉴얼---------------------- */

/* contact
<div class="contact">
					<form action="">
						<div class="row">
							<span class="tit">Name & Surname</span>
							<div class="cnt"><input type="text"></div>
						</div>
						<div class="row">
							<span class="tit">E-mail</span>
							<div class="cnt"><input type="email"></div>
						</div>
						<div class="row">
							<span class="tit">Comments</span>
							<div class="cnt"><textarea name="" id=""></textarea></div>
						</div>

						<div class="btns">
							<a href="javascript:;" class="submit">Send</a>
							<a href="javascript:;">Cancel</a>
						</div> */
