@charset "utf-8";

/*
font-family: 'Roboto', sans-serif;
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  font-size: 17px;
  font-family: 'Pretendard', sans-serif !important;
  position: relative;
  color: #000;
  font-weight: 400;
}

body.on,
html.on {
  height: 100%;
  overflow: hidden;
}

div,
p,
article,
section,
ul,
li {
  display: block;
}

ul,
li {
  list-style: none;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
}

p,
span,
i,
em {
  word-break: keep-all;
}

i,
em {
  font-style: normal;
}

.pc {
  display: block;
}

.tablet {
  display: none;
}

.mob {
  display: none;
}

#wrap {
  width: 100%;
  overflow: hidden;
}

.inner1 {
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.inner2 {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner3 {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.green {
  color: #328a5c;
}

.white {
  color: #fff;
}

.red {
  color: #c12324;
}

.upper {
  text-transform: uppercase;
}

.move {
  opacity: 0;
}

/*초기화 완료*/

/*header*/
#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 81px;
  z-index: 99;
  transition: all 0.4s;
  overflow: hidden;
}

#header::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 80px;
  transform: translate(-50%, 0);
  width: 95%;
  height: 1px;
  background: #808080;
  opacity: 1;
  transition: all 0.4s;
}

#header:hover {
  height: 320px;
  background: #328a5c;
  overflow: visible;
}

#header:hover::before {
  background: #fff;
}

#header:hover .logo img.s_logo {
  opacity: 0;
}

#header:hover .logo img.w_logo {
  opacity: 1;
}

#header:hover .gnb > li {
  color: #fff;
}

#header:hover #nav-icon span {
  background: #fff;
}

#header:hover .lang {
  background: #fff;
}

#header:hover .lang .lang_tit {
  color: #328a5c;
}

#header_inner {
  position: relative;
  margin: 18px auto 0;
  width: 90%;
  font-size: 0;
}

#header_inner > div {
  display: inline-block;
  vertical-align: top;
}

#header_inner .logo {
  position: relative;
  width: 135px;
  max-width: 135px;
}

#header_inner .logo img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s;
}

#header_inner .logo img.logo {
  opacity: 0;
}

#header_inner .logo img.s_logo {
  opacity: 1;
}

#header_inner .logo img.w_logo {
  opacity: 0;
}

#header_inner .nav {
  margin-top: 14px;
  width: calc(100% - 280px);
  text-align: center;
}

.gnb {
  margin: auto;
  width: 55%;
  margin-left: 45%;
  font-size: 0;
  text-align: end;
}

.gnb > li {
  position: relative;
  display: inline-block;
  width: 25%;
  vertical-align: top;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  text-align: center;
  transition: all 0.4s;
}

.gnb > li > a {
  padding-bottom: 30px;
}

.gnb > li:hover {
  color: #328a5c;
}

.sub_nav {
  margin-top: 15px;
}

.sub_nav > li > a {
  padding: 8px 0;
  font-size: 0.9rem;
  transition: all 0.4s;
}

.sub_nav > li > a:hover {
  font-weight: 600;
}

.lang {
  width: 80px;
  height: 35px;
  margin-top: 5px;
  background: #328a5c;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

.lang .lang_tit {
  width: 100%;
  color: #fff;
  font-size: 0;
  line-height: 35px;
  padding: 0 10px;
}

.lang .lang_tit span {
  display: inline-block;
  vertical-align: middle;
  width: 80%;
  font-size: 0.9rem;
}

.lang .lang_tit i {
  display: inline-block;
  vertical-align: middle;
  width: 20%;
  font-size: 0.9rem;
}

.lang .lang_sub {
  width: 100%;
  background: #fff;
  padding-bottom: 5px;
}

.lang .lang_sub li a {
  display: inline-block;
  text-align: left;
  width: 100%;
  padding: 5px 10px;
  font-size: 0.9rem;
  color: #328a5c;
  position: relative;
}

.lang .lang_sub li a::before {
  content: '';
  position: absolute;
  left: 10px;
  bottom: 2px;
  width: 40%;
  height: 1px;
  background: #328a5c;
  opacity: 0;
  transition: all 0.4s;
}

.lang:hover {
  height: 60px;
  /* 다국어 페이지 높이 */
  overflow: visible;
}

.lang .lang_sub li a:hover::before {
  opacity: 1;
}

.menu_icon {
  position: absolute;
  right: 5%;
  top: 32px;
  width: 35px;
  height: 20px;
  z-index: 99;
}

.menu_icon #nav-icon {
  position: relative;
  width: 100%;
  height: 100%;
}

#nav-icon span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.4s;
}

#nav-icon span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  bottom: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 20%;
  top: -1px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  left: 18%;
  bottom: -4px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav_box2 {
  position: fixed;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 100vh;
  background: #328a5c;
  z-index: 9;
  transition: all 0.4s;
}

.nav2_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.nav_box2 > img {
  display: none;
  position: fixed;
  right: -30%;
  bottom: -37%;
  z-index: -1;
  width: 80%;
}

.nav_box2 .nav_box2_cont {
  position: absolute;
  left: 50%;
  top: 24%;
  transform: translate(-50%, 0);
  width: 90%;
  max-width: 1200px;
  text-align: center;
}

.nav_box2 .nav_box2_cont ul {
  width: 100%;
  font-size: 0;
}

.nav_box2 .nav_box2_cont ul#nav2 > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 20%;
  text-align: center;
}

.nav_box2 .nav_box2_cont ul#nav2 > li:last-child:after {
  display: none;
}

.nav_box2 .nav_box2_cont ul#nav2 > li > .tit {
  position: relative;
  padding-bottom: 20px;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.75px;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.4s;
}

.nav_box2 .nav_box2_cont ul#nav2 > li:hover > .tit {
  color: #fff;
}

.nav_box2_cont p.big {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 6vh;
  margin-top: 10px;
  font-weight: 800;
}

.nav_box2.open {
  transform: translateY(0);
}

.nav_box2.open > img {
  display: block;
}

/*footer*/
.footer {
  width: 100%;
  height: auto;
  background: #1a1a1a;
  position: relative;
}

.f_inner {
  width: 90%;
  max-width: 1600px;
  margin: auto;
  font-size: 0;
}

.f_top {
  padding: 17px 0 50px;
}

.f_top .f_inner > div {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.f_left .f_logo {
  width: 200px;
  max-width: 200px;
  margin: 60px 0 90px;
}

.f_left .f_logo img {
  width: 100%;
}

.f_info p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.f_info p:last-child {
  margin-bottom: 0;
}

.f_info p > span {
  display: inline-block;
  vertical-align: middle;
}

.f_info p > span.bold {
  font-weight: 600;
  margin-right: 7px;
}

.f_info p > span.light {
  color: #b2b2b2;
}

.f_right {
  text-align: end;
}

#topBtn {
  display: inline-block;
  width: 115px;
  height: 55px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}

#topBtn > p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.4s;
}

#topBtn:hover {
  background: #ffff;
}

#topBtn:hover > p {
  color: #1a1a1a;
}

.f_nav {
  margin: 35px 115px 0 0;
  width: calc(100% - 115px);
  font-size: 0;
  text-align: center;
}

.f_nav > li {
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin-right: 2vw;
  text-align: left;
}

.f_nav > li a {
  font-size: 1rem;
  font-weight: 400;
}

.f_nav > li > .f_nav_sub {
  margin-top: 7px;
  text-align: left;
}

.f_nav > li > .f_nav_sub li a {
  padding: 5px 0;
  font-size: 0.8rem;
  color: #b2b2b2;
}

.f_bot {
  padding: 12px 0;
  border-top: 1px solid #bbb;
}

.f_bot .f_inner > div {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}

.f_bot_cont {
  width: 100%;
  font-size: 0;
}

.f_bot_cont > .f_copy {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9rem;
  font-weight: 300;
  color: #666;
  position: relative;
}

.f_bot_cont > .f_copy:first-child {
  margin-right: 15px;
  padding-right: 15px;
}

.f_bot_cont > .f_copy:first-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 1px;
  height: 80%;
  background: #666;
}

.f_bot_right {
  text-align: end;
}

/*main*/
.main {
  width: 100%;
  position: relative;
}

/*main1*/
.m1 {
  margin-top: 155px;
}

.m1_bg {
  width: 100%;
}

.m1_bg img {
  width: 100%;
  display: block;
}

.m1_inner {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translate(-50%, 0);
  font-size: 0;
}

.m1_inner > div {
  display: inline-block;
  vertical-align: top;
}

.m1_inner .m1_left {
  width: 50%;
  padding-right: 4%;
  margin-top: 20px;
}

.m1_inner .m1_left img {
  width: 100%;
}

.m1_inner .m1_right {
  width: 50%;
  padding-left: 4%;
}

.m1_inner .m1_right .big {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.m1_inner .m1_right .small {
  font-size: 1.2rem;
  font-weight: 300;
  color: #333;
  line-height: 1.4;
}

.scroll {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, 0);
}

.scroll p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #808080;
  margin-bottom: 10px;
  text-align: center;
}

.scroll img {
  display: block;
  text-align: center;
  margin: auto;
  animation: m1_scroll 3s infinite;
}

@keyframes m1_scroll {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

.m1_list_wrap {
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translate(-50%, 0);
  width: 48%;
}

.m1_list_wrap .m1_list {
  width: 100%;
  font-size: 0;
}

.m1_list_wrap .m1_list > li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: calc(100%/3);
  height: auto;
}

.m1_list_wrap .m1_list > li::before {
  content: '';
  position: absolute;
  right: -33%;
  top: 42.5%;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 12px;
  background: url(../img/main/m1_line.png) no-repeat center/cover;
}

.m1_list_wrap .m1_list > li::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.m1_list_wrap .m1_list > li:first-child {
  background: unset;
}

.m1_list_wrap .m1_list > li:last-child:before {
  display: none;
}

.m1_list_wrap .m1_list > li > img {
  width: 82%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.m1_list_wrap .m1_list > li .m1_list_inner {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 84%;
  height: 100%;
  text-align: center;
}

.m1_list_wrap .m1_list > li .m1_list_inner .m1_inner_bg {
  width: 100%;
}

.m1_list_wrap .m1_list > li .m1_list_inner .m1_inner_bg img {
  width: 100%;
}

.m1_list_wrap .m1_list > li .m1_list_inner > p {
  font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.7;
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9;
  width: 100%;
}

.m1_list_wrap .m1_list > li .m1_list_inner > p .bold {
  font-size: 1.5rem;
  font-weight: 800;
}

/*m2*/
.m2 {
  padding: 20vh 0 0;
}

.m2 p {
  text-align: center;
}

.m2 .big {
  font-size: 2.8rem;
  font-weight: 700;
}

.m2 .m2_txt {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  margin: 40px 0 12vh;
}

.m2_bot_img {
  width: 100%;
}

.m2_bot_img img {
  display: block;
  width: 100%;
}

/*m3*/
.m3_cont {
  margin: 18vh 0 20vh;
}

.m3 .m_tit {
  position: relative;
  margin-bottom: 0;
}

.m_tit p {
  text-align: center;
}

.tit_p1 {
  font-size: 1.2rem;
}

.m3_cont .tit_p1 {
  margin-bottom: 12px;
}

.tit_p2 {
  font-size: 3.5rem;
  line-height: 1.5;
}

.m3_cont .m_tit .tit_p2 span {
  display: inline-block;
  position: relative;
}

.m3_cont .m_tit .tit_p2 em {
  font-style: normal;
  display: inline-block;
  vertical-align: baseline;
}

.m3_cont .m_tit .tit_p2 span:last-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #b2b2b2;
}

.m3_cont .m_tit .tit_p2 span:last-child::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #b2b2b2;
}

.m3_cont .m_tit .m3_img {
  position: absolute;
  left: 60%;
  top: -28%;
}

.m3_txt {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  margin: 45px 0 17vh;
}

.tit_p2 {
  margin-bottom: 85px;
  text-align: center;
}

.m3_list {
  width: 58%;
  font-size: 0;
  margin: auto;
}

.m3_list > li {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  text-align: center;
  border-right: 1px solid #ccc;
}

.m3_list > li:last-child {
  border-right: 0;
}

.m3_list > li img {}

.m3_list > li .m3_list_p {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.05em;
  margin-top: 30px;
}

.main__link__btn {
  text-align: center;
  margin-top: 150px;
}

.main__link__btn a {
  display: inline-block;
  background-color: #c12324;
  color: #ffffff;
  padding: 1rem 3rem;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.main__link__btn a:hover {
  background-color: #9e1d1d;
}

@media screen and (max-width: 780px) {
  .main__link__btn {
    text-align: center;
    margin-top: 100px;
  }

  .main__link__btn a {
    font-size: 1.5rem;
  }
}

.m3_bot {
  width: 100%;
}

.m3_bot img {
  width: 100%;
  display: block;
}

/*m4*/
.m4 {
  margin: 18vh 0 20vh;
}

.m4 .tit_p2 {
  margin: 40px 0;
}

.m4_cont {
  width: 100%;
}

.m4_list {
  width: 100%;
  font-size: 0;
}

.m4_list > li {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: calc(100%/3 - 77px);
  margin-right: 115px;
}

.m4_list > li:last-child {
  margin-right: 0;
}

.m4_list > li .list_top {
  width: 100%;
  position: relative;
  border: 1px solid #c12324;
  border-radius: 50%;
}

.m4_list > li .list_top.dot {
  border: 0;
  background: url(../img/main/m4_list_bg.png) no-repeat center/cover;
}

.m4_list > li .list_top::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.m4_list > li .list_top .list_cont {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.m4_list > li .list_top .list_cont p {
  text-align: center;
  width: 100%;
}

.m4_list > li .list_top .list_cont .red {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 25px 0;
}

.m4_list > li .list_top .list_cont .small {
  font-size: 1.1rem;
  line-height: 1.3;
}

.m4_list > li .list_bot {
  position: relative;
  margin-top: 30px;
  padding-top: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.m4_list > li .list_bot::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 18px;
  height: 16px;
  background: url(../img/main/bot_ico.png) no-repeat center/cover;
}

/*m5*/
.m_tit {
  margin: 0 0 20vh;
}

.m5 .tit_p2 {
  margin: 22px 0 50px;
  position: relative;
}

.m5 .tit_p2 img {
  display: inline-block;
  vertical-align: top;
}

.m5 .tit_p2 .m5_tit_img01 {
  margin-right: 30px;
}

.m5 .tit_p2 .m5_tit_img02 {
  margin-left: 30px;
}

.m5 .m3_txt {
  font-weight: 400;
}

.m5_bot {
  width: 100%;
  position: relative;
}

.m5_bot_bg {
  width: 100%;
}

.m5_bot_bg img {
  width: 100%;
  display: block;
}

.m5_bot .m_tit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.m5_bot .m_tit p {
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.45);
}

.m5_bot .m_tit .tit_p2 {
  margin: 10px 0 50px;
}

.m5_bot .m_tit .tit_p2 img {
  display: inline-block;
  vertical-align: middle;
  margin: -7px 10px 0 0;
}

/*m6*/
.m6 {
  width: 100%;
  height: auto;
  padding: 105px 0;
  background: #f6f7f8;
}

.m6 .inner1 {
  max-width: 1465px;
  padding: 80px 5%;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 34px;
  font-size: 0;
}

.m6 .inner1 > div {
  display: inline-block;
  vertical-align: middle;
}

.m6_left {
  width: 30%;
  position: relative;
}

.m6_left::after {
  content: '';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translate(0, -50%);
  width: 45px;
  height: 20px;
  background: url(../img/main/m6_right_ico.png) no-repeat center/cover;
}

.m6_left .m6_left_p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.m6_left .m6_left_p span {
  font-size: 1.7rem;
}

.m6_left .m6_left_list {
  width: 70%;
}

.m6_left .m6_left_list > li {
  width: 100%;
  font-size: 0;
  margin-bottom: 12px;
}

.m6_left .m6_left_list > li:last-child {
  margin-bottom: 0;
}

.m6_left .m6_left_list > li > p {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.1rem;
}

.m6_left .m6_left_list > li > p.num {
  font-weight: 600;
  width: 15%;
}

.m6_left .m6_left_list > li > p.txt {
  font-weight: 400;
  width: 85%;
  color: #333;
}

.m6_right {
  width: 70%;
}

.m6_right .m6_right_list {
  width: 100%;
  font-size: 0;
}

.m6_right .m6_right_list > ul {
  display: inline-block;
  vertical-align: middle;
  padding: 20px 0 25px;
  width: calc(100%/3);
  position: relative;
  border-right: 1px solid #ccc;
}

.m6_right .m6_right_list > ul:last-child {
  border-right: 0;
}

.m6_right .m6_right_list > ul li {
  width: 100%;
  margin-bottom: 65px;
}

.m6_right .m6_right_list > ul li:last-child {
  margin-bottom: 0;
}

.m6_right .m6_right_list > ul li p {
  text-align: center;
}

.m6_right .m6_right_list > ul li .m6_list_p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  letter-spacing: -0.025em;
  margin-top: 25px;
}

/*m7*/
.m7 {
  margin: 20vh 0 18vh;
}

.m7 .inner3 {
  font-size: 0;
}

.m7 .inner3 > div {
  display: inline-block;
  vertical-align: top;
}

.m7_left {
  width: 55%;
  margin-top: 35px;
}

.m7_left .tit_p1 {
  text-align: left;
}

.m7_left .tit_p2 {
  text-align: left;
  margin: 15px 0 75px;
}

.m7_left .m3_txt {
  text-align: left;
  color: #3d3a39;
  font-weight: 400;
}

.m7_left .m3_txt .red {
  font-weight: 600;
}

.m7_right {
  width: 45%;
}

.m7_right img {
  width: 100%;
}

/*m8*/
.m8 .m_tit {
  position: relative;
}

.m8 .tit_p2 {
  margin-bottom: 42px;
  text-align: left;
}

.m8 .tit_p2 img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}

.m8 .m3_txt {
  text-align: left;
  color: #3d3a39;
}

.m8_more {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 148px;
  height: auto;
  padding: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.4s;
}

.m8_more span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  transition: all 0.4s;
}

.m8_more i {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  color: #999;
  margin-left: 15px;
  transition: all 0.4s;
}

.m8_more:hover {
  background: rgba(0, 0, 0, 0.3);
}

.m8_more:hover span,
.m8_more:hover i {
  color: #fff;
}

.m8_list_wrap {
  margin-top: 50px;
}

.m8_list {
  width: 100%;
  font-size: 0;
}

.m8_list > li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: calc(100%/6);
  overflow: hidden;
}

.m8_list > li::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.m8_list > li .m8_list_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.m8_list > li .m8_list_bg img {
  width: 100%;
}

.m8_list > li .hov {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}

.m8_list > li .hov .hov_bg {
  width: 100%;
  height: 100%;
  background: rgba(178, 31, 35, 0.72);
}

.m8_list > li .hov .hov_p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.m8_list > li .hov .hov_p .hov_p1 {
  font-size: 0.8rem;
}

.m8_list > li .hov .hov_p .hov_p2 {
  font-size: 1.2rem;
  margin-top: 5px;
}

.m8_list > li:hover .hov {
  opacity: 1;
}

/*m9*/
.m9 {
  margin: 20vh 0 22vh;
}

.m9 .inner3 {
  font-size: 0;
}

.m9 .inner3 > div {
  display: inline-block;
  vertical-align: top;
}

.m9_left {
  width: 70%;
  padding-right: 10%;
}

.m9_left .m_tit {
  margin-bottom: 0;
}

.m9_left .tit_p1 {
  text-align: left;
}

.m9_left .tit_p2 {
  text-align: left;
  margin: 20px 0 35px;
}

.m9_left .m3_txt {
  text-align: left;
  color: #3d3a39;
  margin: 70px 0 35px;
}

.m9_left .m9_left_img {
  width: 100%;
}

.m9_left .m9_left_img img {
  width: 100%;
}

.m9_right {
  width: 30%;
  font-size: 0;
  margin-top: 45px;
}

.m9_right .m9_right_img {
  width: 100%;
  margin-bottom: 65px;
}

.m9_right .m9_right_img img {
  width: 100%;
}

.m9_right .m9_img_list {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding-left: 5%;
}

.m9_right .m9_img_list li {
  margin-bottom: 25px;
  width: 100%;
}

.m9_right .m9_img_list li .num {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9rem;
  font-weight: 500;
  width: 12%;
}

.m9_right .m9_img_list li .txt {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9rem;
  color: #4d4d4d;
  width: 88%;
  letter-spacing: -1.8px;
}

/*m10*/
.m10 {
  width: 100%;
  height: auto;
  padding: 85px 0;
  background: #c12324;
}

.m10 .m10_inner {
  width: 85%;
  font-size: 0;
}

.m10 .m10_inner > div {
  display: inline-block;
  vertical-align: middle;
}

.m10_left {
  width: 55%;
}

.m10_left img {
  width: 100%;
}

.m10_right {
  width: 45%;
  padding-left: 5%;
}

.m10_right .m_tit {
  margin-bottom: 0;
}

.m10_right .tit_p1 {
  text-align: left;
}

.m10_right .tit_p2 {
  text-align: left;
  margin: 15px 0 0;
}

.m10_cont {
  width: 90%;
  height: auto;
  margin-top: 30px;
  padding: 40px 0 40px 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
}

.m10_cont .bold {
  font-size: 1.5rem;
}

.m10_cont .medium {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 25px;
}

/*m11*/
.m11 {
  margin: 105px 0 15vh;
}

.m11 .m_tit {
  margin-bottom: 65px;
}

.m11 .m_tit .tit_p2 {
  margin: 15px 0 0;
}

.m11_cont {
  width: 100%;
}

.m11_list {
  width: 100%;
  font-size: 0;
}

.m11_list > li {
  display: inline-block;
  vertical-align: top;
  width: calc(100%/3 - 30px);
  margin-right: 45px;
}

.m11_list > li:last-child {
  margin-right: 0;
}

.m11_list > li .m11_list_img {
  width: 100%;
}

.m11_list > li .m11_list_img img {
  width: 100%;
}

.m11_list > li .m11_list_p {
  margin-top: 50px;
  padding-top: 45px;
  border-top: 1px solid #808080;
  text-align: center;
}

.m11_list > li:first-child .m11_list_p {
  border-top: 3px solid #c12324;
}

.m11_list > li .m11_list_p .bold {
  font-size: 1.7rem;
}

.m11_list > li .m11_list_p .medium {
  margin-top: 30px;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/*m12*/
.m12 {
  width: 100%;
  height: 95vh;
  background: url(../img/main/m12_bg.png) no-repeat center/cover;
}

.m12 .inner3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
}

.m12 .inner3 > div {
  display: inline-block;
  vertical-align: top;
}

.m12_left {
  width: 30%;
  position: relative;
}

.m12_left .m12_tit {
  font-size: 2.3rem;
  line-height: 1.25;
  margin-top: -25px;
}

.m12_left .m12_tit_img {}

.m12_right {
  width: 70%;
  padding-left: 6%;
  margin-top: 35px;
}

.m12_right img {
  width: 100%;
}

/*m13*/
.m13 {
  margin: 150px 0;
  padding-bottom: 185px;
}

.m13::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 28px;
  height: 70px;
  background: url(../img/main/m12_ico.png) no-repeat center/cover;
}

.m13 .tit_p2 {
  margin-bottom: 85px;
}

.m13 .tit_p2 img {
  display: block;
  margin: 0 auto 20px;
}

.m13_cont {
  width: 100%;
  font-size: 0;
}

.m13_cont > div {
  display: inline-block;
  vertical-align: bottom;
}

.m13_cont .m13_left {
  width: 60%;
  padding-right: 5%;
  margin-bottom: 70px;
}

.m13_cont .m13_left img {
  width: 100%;
}

.m13_cont .m13_right {
  width: 40%;
}

.m13_right .swiper-container {
  width: 100%;
}

.m13_right .swiper-container .swiper-slide img {
  width: 100%;
}

/*m14*/
.m14 .m_tit {
  margin-bottom: 15vh;
}

.m14 .tit_p2 {
  margin: 20px 0 45px;
}

.m14_list {
  width: 70%;
  margin: 0 auto 80px;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m14_list > li {
  width: 188px;
  height: 45px;
  position: relative;
  background: #eeedee;
  border-radius: 25px;
}

.m14_list > li.dashed {
  background: #fff;
  border: 1px dashed #c8c9ca;
}

.m14_list > li p {
  text-align: center;
  font-size: 0.85rem;
  line-height: 45px;
  color: #3d3a39;
}

.m14_slide {
  width: 100%;
  position: relative;
}

.m14_slide .swiper-container {
  width: 100%;
  overflow: hidden;
}

.m14_slide .swiper-container .swiper-slide {
  width: 100%;
}

.m14_slide .swiper-container .swiper-slide img {
  width: 100%;
}

.m14_slide .swiper-button-next {
  right: -4%;
  color: #3e3a39;
  font-weight: 300;
  font-size: 2rem;
}

.m14_slide .swiper-button-next::after {
  display: none;
}

/*m15*/
.m15 {
  margin: 15vh 0;
}

.m15 .m_tit {
  margin-bottom: 120px;
}

.m15 .tit_p2 {
  margin: 30px 0 0;
}

.m15_list_wrap {
  width: 100%;
}

.m15_list {
  width: 100%;
  font-size: 0;
}

.m15_list > li {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: calc(50% - 20px);
  margin: 0 40px 80px 0;
}

.m15_list > li:nth-child(2n) {
  margin-right: 0;
}

.m15_list > li::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.m15_list > li .m15_list_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.m15_list > li .m15_list_bg img {
  width: 100%;
}

.m15_list > li .hov {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}

.m15_list > li .hov_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.m15_list > li .hov_bg img {
  width: 100%;
}

.m15_list > li .hov_cont {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 30px 55px 25px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 0 0 25px 25px;
}

.m15_list > li .hov_cont .bold {
  font-size: 1.8rem;
  padding-bottom: 35px;
  border-bottom: 1px solid #b2b2b2;
  margin-bottom: 30px;
}

.m15_list > li .hov_cont .light {
  font-size: 1.2rem;
  font-weight: 200;
  color: #666;
}

.m15_list > li .hov_cont .light:nth-child(3) {
  margin-top: -5px;
}

.goBtn {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0, -50%);
  width: 75px;
}

.goBtn img {
  width: 100%;
}

.m15_list > li:hover .hov {
  opacity: 1;
}

/*m16*/
.m16 {
  margin-bottom: 20vh;
}

.m16 .inner {
  width: 90%;
  max-width: 1600px;
  margin: auto;
}

.m16 .m_tit {
  margin-bottom: 65px;
}

.m16 .tit_p2 {
  margin: 40px 0 0;
}

.m16 .tit_p2 img {
  display: inline-block;
  vertical-align: middle;
  margin-top: -65px;
}

.m16 .tit_p2 img.m5_tit_img01 {
  margin-right: 30px;
}

.m16 .tit_p2 img.m5_tit_img02 {
  margin-left: 30px;
}

.m16_cont {
  width: 100%;
}

.m16_list {
  width: 100%;
  font-size: 0;
}

.m16_list > li {
  display: inline-block;
  vertical-align: top;
  width: calc(100%/3 - 35px);
  height: auto;
  padding: 50px 0;
  border: 1px solid #d9d9d9;
  border-radius: 35px;
  margin-right: 52px;
}

.m16_list > li:last-child {
  margin-right: 0;
}

.m16_list > li p {
  text-align: center;
}

.m16_list > li .bold {
  font-size: 2.3rem;
  line-height: 1.15;
}

.m16_list > li .m16_img {
  margin: 30px 0 25px;
}

.m16_list > li .m16_txt {
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: #333;
  position: relative;
}

.m16_list > li .m16_txt.name {
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.m16_list > li .m16_txt.name::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 130px;
  height: 4px;
  background: url(../img/main/m16_line.png) no-repeat center/cover;
}