@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600&family=Open+Sans:wght@400;500;600&display=swap');
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --main-color: #019129;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
nav,
output,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: 'Poppins', 'Lato', 'Open Sans', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  color: #333;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
tr,
th,
td {
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  font: 100%;
  color: #000;
}
strong {
  font-weight: 600;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
em {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: underline;
  color: #111;
}
caption,
legend {
  display: none;
}
.txt_c {
  text-align: center;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: transparent;
  transition: all 0.3s;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 25px 35px;
}
.header .logo {
  display: inline-block;
  width: 110px;
  height: 33px;
}
.header .logo a {
  display: block;
  width: 100%;
  height: 33px;
  background: url(../../images/logo.png) no-repeat;
  filter: drop-shadow(0px 0px 5px rgba(256, 256, 256, 0.2));
  overflow: hidden;
}

.header .topnav .navbar {
  display: flex;
  align-items: center;
  margin-right: 25px;
}
.header .topnav .navbar li {
  margin-right: 60px;
}
.header .topnav .navbar li a {
  position: relative;
  color: #000;
  font-weight: 400;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.header .topnav .navbar li a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 0;
  height: 3px;
  background: #019129;
  border-radius: 10px;
}
.header .topnav .navbar li a.on:after {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 100%;
  height: 3px;
  background: #019129;
  border-radius: 10px;
}
.header .topnav .navbar li a:hover {
  text-decoration: none;
}
.header .topnav .navbar li a:hover:after {
  opacity: 1;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.header .topnav .navbar li a.active {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.header.sub .topnav .navbar li a {
  color: #000 !important;
}
.header .langBox {
  display: inline-block;
  position: relative;
  top: 2px;
  right: 30px;
  width: 75px;
  text-align: left;
  border-radius: 8px;
  transition: ease 0.1s;
  z-index: 100;
}
.header .langBox:hover {
  transition: ease 0.3s;
}
.header .langBox:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  background: url(../../images/lang_en.jpg) no-repeat;
  background-size: 18px 18px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.header .langBox:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  width: 24px;
  height: 24px;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
}
.header .langBox .lang {
  position: absolute;
  display: block;
  left: 30px;
  top: 0;
}
.header .langBox .lang li {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  padding-left: 25px;
  margin-left: -25px;
}
.header .langBox .lang li:hover {
}
.header .langBox .lang li.off {
  display: none;
}
.header .langBox .lang li.active {
  color: #666;
}

.header .langBox:hover li.off {
  display: block;
}
.header .nav .nav_icon {
  display: inline-block;
  width: 24px;
  cursor: pointer;
  position: absolute;
  top: 36px;
  right: 32px;
  z-index: 100;
  transition: ease 0.1s;
}
.header .nav .nav_icon .menu-trigger,
.header .nav .nav_icon .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.header .nav .nav_icon .menu-trigger {
  position: relative;
  width: 24px;
  height: 16px;
}
.header .nav .nav_icon .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}
.header .nav .nav_icon .menu-trigger span:nth-of-type(1) {
  top: 0;
}
.header .nav .nav_icon .menu-trigger span:nth-of-type(2) {
  top: 7px;
}
.header .nav .nav_icon .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*btn_scroll*/
.header.sub .container {
  height: 86px;
  background: rgba(255, 255, 255, 0.4);
}
.header.btn_scroll .container {
  height: 60px;
}
.header.btn_scroll .logo {
  width: 110px;
  height: 33px;
}
.header.btn_scroll .logo a {
  height: 33px;
  background: url(../../images/logo.png);
  background-size: 110px 33px;
}
.header.btn_scroll .langBox {
  background: rgba(255, 255, 255, 0.8);
}
.header.btn_scroll .langBox:hover {
  border: 1px solid #eaeaea;
  transition: ease 0.3s;
}
.header.btn_scroll .lang li {
  color: #666 !important;
}
.header.btn_scroll .lang li:hover {
  color: #111 !important;
}
.header.btn_scroll .topnav .nav_icon {
  top: 24px;
}
.header.btn_scroll .topnav .nav_icon .nav_btn .nav_menu em {
  background-color: #414141;
}

/*nav*/
.nav {
  background-color: transparent;
  overflow: hidden;
  transition: 0.5s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
  padding: 50px 0px;
}
.nav-logo {
  float: left;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
}
.nav-logo-a {
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 50px;
  font-weight: bold;
}
.nav-menu {
  float: none;
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
}
.nav-menu-a {
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.25rem;
}
.nav-menu-a:hover {
  color: grey;
}
.header .topnav {
  display: flex;
}
.header .topnav .nav_icon {
  display: inline-block;
  width: 24px;
  cursor: pointer;
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 100;
}
.header .topnav .nav_icon .nav_btn {
  position: relative;
  width: 24px;
  height: 16px;
}
.header .topnav .nav_icon .nav_btn .nav_menu {
  display: block;
  width: 100%;
  height: 20px;
}
.header .topnav .nav_icon .nav_btn .nav_menu em {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #414141;
  border-radius: 1px;
}
.header .topnav .nav_icon .nav_btn.nav_btn_scroll .nav_menu em {
  background-color: #000;
}
.header .topnav .nav_icon .nav_btn .nav_menu em:nth-of-type(1) {
  top: 0;
}
.header .topnav .nav_icon .nav_btn .nav_menu em:nth-of-type(2) {
  top: 7px;
}
.header .topnav .nav_icon .nav_btn .nav_menu em:nth-of-type(3) {
  bottom: 0;
}
#offcanvas1 {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 100;
}

.offcanvas1-contents {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5%;
}

.offcanvas1-contents .menu_item {
  display: block;
}
.offcanvas1-contents .offcanvas1-a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-weight: 800;
  font-size: 60px;
  color: transparent;
  margin-bottom: 20px;
}
.offcanvas1-contents .offcanvas1-a::before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 17px;
  height: 15px;
  background: #05a030;
  width: 0%;
  border-radius: 25px;
  transition: all linear 0.5s;
  z-index: -1;
}
.offcanvas1-contents .offcanvas1-a:hover {
  color: #fff;
}
.offcanvas1-contents .offcanvas1-a:hover:before {
  width: 100%;
  transition: all linear 0.5s;
}
#offcanvas2 {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  background-color: black;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 200;
}
.offcanvas2-a {
  text-decoration: none;
  font-weight: bold;
  font-size: 50px;
  color: transparent;
  display: block;
  margin-bottom: 20px;
}
.offcanvas2-a:hover {
  text-decoration: underline;
}
.offcanvas2-contents .infoBox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 12%;
}
.offcanvas2-contents .company_info {
  color: #fff;
  font-size: 20px;
}
.offcanvas2-contents .company_info p {
  color: #fff;
  margin-bottom: 10px;
}
.offcanvas2-contents .company_info p.tel {
  font-size: 28px;
}
.offcanvas2-contents .company_info p.tel a {
  color: #fff;
}
.offcanvas2-contents .company_info p.email {
  color: #db7a63;
  margin-bottom: 60px;
}
.offcanvas2-contents .company_info p.address {
  font-size: 18px;
  margin-bottom: 60px;
}
.offcanvas2-contents .infoBox .langBox {
  position: relative;
  margin-left: 22px;
}
.offcanvas2-contents .infoBox .langBox::before {
  content: '\f57d';
  position: absolute;
  left: -22px;
  color: rgb(162, 162, 162);
  font-size: 14px;
  font-family: fontAwesome;
  line-height: 1.5;
}
.offcanvas2-contents .infoBox .langBox .lang li {
  display: inline-block;
  color: #888 !important;
  margin-right: 10px;
}
.offcanvas2-contents .infoBox .langBox .lang li.active,
.offcanvas2-contents .infoBox .langBox .lang li:hover {
  color: #fff !important;
}
.allnav .closebtn {
  text-decoration: none;
  position: absolute;
  top: 0px;
  right: 32px;
  font-size: 50px;
  padding: 10px;
  transition: 0.3s;
}
.allnav .closebtn:hover {
  color: gray;
}
@keyframes textFadeIn1 {
  from {
    color: white;
    left: -100px;
  }

  to {
    color: black;
    left: 0;
  }
}

@keyframes textFadeIn2 {
  from {
    color: black;
    left: -100px;
  }

  to {
    color: white;
    left: 0;
  }
}
.header.sub .langBox {
  top: 19px;
}
.header.sub .lang li,
.header.sub .lang li.active {
  color: #666 !important;
}

/**** Common ****/
.container_sub {
  position: relative;
  margin-top: 60px;
}
.subWrap .inner {
  width: 1300px;
  margin: 0 auto;
}
.container_sub .sub_top_title {
  display: block;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  padding: 180px 0 150px 0;
  margin: 0 auto;
}
.container_sub .sub_top_title.cont {
  padding: 60px 0 40px 0;
}
.sub_top_title h1 {
  font-size: 5em;
  color: #000;
  font-weight: 700;
  letter-spacing: -1px;
}
.sub_top_title h2 {
  font-size: 3.2em;
  color: #000;
  font-weight: 600;
  letter-spacing: -1px;
}
.sub_top_title h3 {
  font-size: 1.4em;
  color: #000;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.sub_top_title h5 {
  font-size: 1em;
  line-height: 1.4;
}
.sub_top_title .vertical_line {
  width: 100%;
  margin: 70px 0 0px 0;
}
.sub_top_title .vertical_line span {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 150px;
  background: #d4d4d4;
  margin: 0 auto;
}
.sub_top_title .vertical_line span:after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: #000;
  animation: lineani 1.9s ease-in-out;
}
@keyframes lineani {
  0% {
    height: 0%;
  }
  50% {
    height: 50%;
  }
  100% {
    height: 100%;
  }
}
.container_sub .sub_top_title.cont h1 {
  font-size: 3.8em;
}
.container_sub .sub_top_title.cont h3 {
  font-size: 1.3em;
}
.subWrap .sub_title h1 {
  font-size: 2.2em;
  color: #111;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
  padding-bottom: 35px;
}
.subWrap .sub_title h2,
.subWrap .sub_title h2 span {
  font-size: 3rem;
  color: #000;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.subWrap .sub_title h2 strong {
  color: var(--main-color);
}
.subWrap .sub_title h3 {
  font-size: 2.8rem;
  color: #000;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
}
.subWrap .sub_title h3 strong {
  color: var(--main-color);
}
.subWrap .sub_title h4 {
  display: block;
  width: 95%;
  max-width: 1200px;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-left: auto;
  margin-right: auto;
}
.subWrap .sub_title h5 {
  font-size: 1em;
  color: #666666;
  font-weight: 400;
  line-height: 1.4;
}

/************************************************************************************************************/
/**** Main ****/
/************************************************************************************************************/
.container_main {
  background: #fafafa;
}
.main_sec .inner {
  width: 1300px;
  margin: 0 auto;
}
.main_sec.visual {
  position: relative;
  width: 100%;
  height: 700px;
  min-height: 700px;
  color: #fff;
  background-size: cover;
  font-size: 0;
  overflow: hidden;
}
.main_sec.visual:after {
	content: '';
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.main_sec.visual .main_img_box {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 115%;
  transform: translate(-50%, -50%);
}
.main_sec.visual .main_img_box video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  object-fit: fill;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.main_sec.visual .txt_box {
  position: absolute;
  top: 45%;
  left: 7%;
  width: 100%;
  transform: translate(0, -50%);
  text-align: left;
}
.main_sec.visual .txt_box h1 {
  color: #fff;
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 1px 2px 12px rgba(0, 0, 0, 0.2);
}
.main_sec.visual .txt_box h3 {
  color: #fff;
  font-size: 1.325rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 3px;
  /*text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #5271ff, 0 0 82px #5271ff, 0 0 92px #5271ff, 0 0 102px #5271ff, 0 0 151px #5271ff;*/
}
.main_sec.visual .txt_box .title_02 {
  position: relative;
  z-index: 0;
}
.main_sec.visual .txt_box .title_02:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 15px;
  background: #019129;
  border-radius: 20px;
  z-index: -1;
  animation: mainTxt 1.9s ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
@keyframes mainTxt {
  0% {
    width: 0%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
.main_sec .title {
  display: block;
  margin: 50px 0 60px 0;
}
.main_sec .title h2 {
  position: relative;
  color: #000;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.main_sec .title h3 {
  display: block;
  max-width: 1000px;
  color: #666;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 auto;
}
.main_sec .title h4 {
  display: block;
  max-width: 1000px;
  color: #111111;
  font-size: 1.4em;
  font-weight: 500;
  margin: 0 auto;
}
.main_sec.serviceItem {
  width: 100%;
  color: #000;
  text-align: center;
  background: #fff;
  padding:100px 0 10px 0;
}
.main_sec.serviceItem .inner {
  width: 96%;
  margin: 0 auto;
}
.main_sec.serviceItem .txt_box {
	width:96%;
	max-width:1300px;
	text-align: left;
	margin:0 auto;
}
.main_sec.serviceItem .txt_box h2 {
  font-size: 150px;
  color: #000;
  font-weight: 600;
  letter-spacing: -2px;
	line-height: 94%;
  text-transform: uppercase;
}
.main_sec.serviceItem .txt_box h2.title2 {
	color:#fff;
	text-shadow: 0px 0px 1px #000;
}
.main_sec.serviceItem .txt_box h3 {
  width: 100%;
  font-size: 22px;
  color: #000;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 40px auto 20px auto;
}
.main_sec.serviceItem .txt_box h3 span {
	color:#019129;
	font-weight: 500;
}
.main_sec.serviceItem .txt_box h5 {
  width: 100%;
  font-size: 17px;
  color: #666;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 20px auto;
}
.main_sec.serviceItem .line {
	display: block;
	width:100%;
	height:1px;
	background: #333;
	margin:100px 0 30px 0;
}
.main_sec.serviceItem .itemList {
	width:96%;
  max-width: 1400px;
  margin: 60px auto 0 auto;
}
.main_sec.serviceItem .itemList ul li {
  display: inline-block;
  width: 24%;
  height: 300px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  vertical-align: top;
}
.main_sec.serviceItem .itemList ul li h3 {
  display: block;
	color:#019129;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.main_sec.serviceItem .itemList ul li p.text {
  display: block;
  font-size: 16px;
  color: #666;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}

.main_sec.serviceItem .itemList ul li .service_icon {
  width: 68px;
  height: 68px;
  text-align: center;
	border:2px solid #333;
	border-radius: 50%;
  margin: 0 auto 15px auto;
}
.main_sec.serviceItem .itemList ul li:nth-child(1) .service_icon {
  background: url(../../images/main_serviceItem_icon01.png) no-repeat center;
  background-size: 56px 56px;
}
.main_sec.serviceItem .itemList ul li:nth-child(2) .service_icon {
  background: url(../../images/main_serviceItem_icon02.png) no-repeat center;
	background-size: 56px 56px;
}
.main_sec.serviceItem .itemList ul li:nth-child(3) .service_icon {
  background: url(../../images/main_serviceItem_icon03.png) no-repeat center;
	background-size: 56px 56px;
}
.main_sec.serviceItem .itemList ul li:nth-child(4) .service_icon {
  background: url(../../images/main_serviceItem_icon04.png) no-repeat center;
	background-size: 56px 56px;
}

/* Main:cont */
.main_sec.cont {
}
.main_sec.cont .box {
  width: 100%;
  background: #fff;
}
.main_sec.cont .box:nth-child(1) {
	background: #f3f7f5;
}
.main_sec.cont .box dl {
  position: relative;
  display: flex;
  width: 95%;
  min-width: 1300px;
  max-width: 1350px;
  align-items: center;
  margin: 0 auto;
}
.main_sec.cont .box dl {
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
.main_sec.cont .box:nth-child(odd) dl {
  flex-flow: row-reverse wrap;
}
.main_sec.cont .box:nth-child(even) dl {
  flex-flow: row wrap;
}
.main_sec.cont .box dt {
  position: relative;
  width: calc(50% + 80px);
  text-align: right;
}
.main_sec.cont .box:nth-child(even) dt {
  text-align: left;
}
.main_sec.cont .box:nth-child(2) .imgBox {
  position: relative;
  width: 700px;
  height: 550px;
  background: url(../../images/main_imgbg_map.png) no-repeat left top;
}
.main_sec.cont .box:nth-child(2) .imgBox .gameImg_case {
  position: relative;
  width: 320px;
  height: 528px;
  background: url(../../images/main_gameImg_case.png) no-repeat center top;
  margin: 0 auto 0 auto;
	overflow: hidden;
}
.main_sec.cont .box:nth-child(2) .imgBox .slide {
  width: 243px;
  height: 422px;
  margin: 30px auto 0 auto;
  animation: game_fadein 3s;
  -moz-animation: game_fadein 3s; /* Firefox */
  -webkit-animation: game_fadein 3s; /* Safari and Chrome */
  -o-animation: game_fadein 3s;
}
.main_sec.cont .box:nth-child(2) .imgBox .slide img {
  transition: ease-in-out 0.3s;
  margin-top: 47px;
}
@keyframes game_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main_sec.cont .box dd {
  width: calc(50% - 80px);
}
.main_sec.cont .box dd .title {
  display: block;
  margin: 50px 0 30px 0;
}
.main_sec.cont .box dd .title span {
  display: block;
	color: #019115;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 30px;
}
.main_sec.cont .box dd .title h2 {
  position: relative;
  color: #000;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
	text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.main_sec.cont .box dd .title p.text {
  color: #666;
  font-size: 17px;
  margin: 40px 0 0 0;
}
.main_sec.cont .box dd .hashtag {
	display: block;
}
.main_sec.cont .box dd .hashtag .tag_list li {
	display: block;
}
.main_sec.cont .box dd .hashtag .tag_list .txt {
  display: inline-block;
	width:215px;
	height:36px;
	line-height: 34px;
	color:#333;
	font-size:15px;
	background: #f4f4f4;
	border:1px solid #ddd;
	border-radius: 30px;
  padding:0 10px 0 25px;
	margin:0 0 10px 0;
}
.main_sec.cont .box.anyone {
	background: #000 url(../../images/main_sec_img02.jpg) no-repeat center;
	background-size: cover;
	padding:120px 0;
}
.main_sec.cont .box.anyone dl {
	justify-content: space-around;
}
.main_sec.cont .box.anyone .title span  {
  color:#fcd418;
}
.main_sec.cont .box.anyone dd .title h2 {
	color:#fff;
}
.main_sec.cont .box.anyone dd .title p.text {
  color:rgba(255, 255, 255, 0.8);
}
.main_sec.cont .box.anyone dt {
	width:40%;
	margin-top:50px;
}
.main_sec.cont .box.anyone dt .imgBox .shape {
	position: relative;
  width: 177px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
}
.main_sec.cont .box.anyone dt .imgBox .shape:nth-child(2) {
	margin: -100px 0 0 192px;
}
.main_sec.cont .box.anyone dt .imgBox .shape:nth-child(3) {
	margin: 68px 0 0 96px;
}
.main_sec.cont .box.anyone dt .imgBox .shape:before {
	content: "";
  position: absolute;
  top: -45px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 45px solid rgba(255, 255, 255, 0.2);
}
.main_sec.cont .box.anyone dt .imgBox .shape:after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-top: 45px solid rgba(255, 255, 255, 0.2);
}
.main_sec.cont .box.anyone dt .imgBox .shape .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 18px;
}


.main_sec.numbering {
  background: #fff;
  padding: 100px 0;
}
.main_sec.numbering h2 {
  font-size: 2.6em;
  color: #000;
  font-weight: 600;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
}
.main_sec.numbering .itemList ul li {
  display: inline-block;
  width: 27%;
  text-align: center;
  margin: 0 3%;
  vertical-align: top;
}
.main_sec.numbering .itemList ul li .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px auto;
}
.main_sec.numbering .itemList ul li:nth-child(1) .icon {
  background: url(../../images/main_numbering_icon01.png) no-repeat center;
}
.main_sec.numbering .itemList ul li:nth-child(2) .icon {
  background: url(../../images/main_numbering_icon02.png) no-repeat center;
}
.main_sec.numbering .itemList ul li:nth-child(3) .icon {
  background: url(../../images/main_numbering_icon03.png) no-repeat center;
}
.main_sec.numbering .itemList ul li h3 {
  display: block;
  width: 200px;
  height: 50px;
  color: #777;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 auto 5px auto;
}
.main_sec.numbering .itemList ul li .number {
  position: relative;
  width: 240px;
  height: 80px;
  color: #000;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -3px;
  text-align: center;
  background: url(../../images/main_numbering_arrowbg_off.png) no-repeat left bottom;
  background-size: 240px 35px;
  margin: 0 auto;
  padding: 0 0 0 0px;
  z-index: 0;
}
.main_sec.numbering .itemList ul li:nth-child(2) .number {
  padding: 0 0 0 0px;
}
.main_sec.numbering .itemList ul li .number:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 35px;
  background: url(../../images/main_numbering_arrowbg_on.png) no-repeat left bottom;
  background-size: 240px 35px;
  z-index: -1;
  animation: numbering 1.9s ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes numbering {
  0% {
    width: 0%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

.main_sec.numbering .itemList ul li .number strong {
  display: inline-block;
  color: #000;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -3px;
  text-align: left;
  margin: 0px auto;
  z-index: 1;
}

/* Main-security */
.main_sec.security {
  position: relative;
  width: 100%;
  padding: 80px 0 100px 0;
  background: #000 url(../../images/main_security_img03.jpg) no-repeat center;
	background-size: cover;
}
.main_sec.security .title {
  margin: 30px 0 40px 0;
	opacity: 1;
}
.main_sec.security .title h2,
.main_sec.security .title h3{
  color:#fff;
}
.main_sec.security .itemList {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 80px 0px 0 0px;
}
.main_sec.security .itemList ul {
  position: relative;
  width: 100%;
  z-index: 0;
}
.main_sec.security .itemList ul:before {
  content: '';
  position: absolute;
  top: 70px;
  left: 150px;
  width: 70%;
  height: 3px;
  border-top: 3px dashed #d4d4d4;
  margin: 0 auto;
  z-index: -1;
}
.main_sec.security .itemList ul li {
  display: inline-block;
  width: 27%;
  text-align: center;
  margin: 0 3%;
}
.main_sec.security .itemList ul li .icon {
  display: inline-block;
  font-size: 0;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  padding: 25px;
  margin: 0 auto;
}
.main_sec.security .itemList ul li .icon span {
  display: inline-block;
  width: 98px;
  height: 98px;
}
.main_sec.security .itemList ul li:nth-child(1) .icon span {
  background: url(../../images/icon_security.png) no-repeat center;
}
.main_sec.security .itemList ul li:nth-child(2) .icon span {
  background: url(../../images/certificate_logo_gli.png) no-repeat center;
}
.main_sec.security .itemList ul li:nth-child(3) .icon span {
  background: url(../../images/certificate_logo_bmm.png) no-repeat center;
}
.main_sec.security .itemList ul li strong {
  display: block;
  color: #fff;
  font-size: 0.9em;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}

#footer {
  position: relative;
  display: block;
  background: #fff;
  padding: 30px 0 30px 0;
}
.footer .inner {
  display: black;
  width: 98%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0 0px 0;
}
.footer .ft_links {
  text-align: right;
  padding: 0 13px;
}
.footer .ft_links a {
  display: inline-block;
  font-size: 14px;
  margin-left: 18px;
}
.footer .ftBox {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0 0;
}
.footer .ft_info {
  display: block;
  max-width: 700px;
  margin: -50px 0 0 0;
}
.footer .ft_info .txt_logo {
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer .ft_info p {
  color: #888;
  font-size: 12px;
  font-family: Lato;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4;
}
.footer .ft_info p em {
  display: inline-block;
  width: 1px;
  height: 9px;
  position: relative;
  z-index: 10;
  margin: auto 0;
  line-height: 1.2;
  background-color: #414141;
  margin: 0px 10px 0 10px;
}
.footer .ft_right p strong {
  color: #fff;
  font-weight: 600;
}

iframe.ft_iframe {
  padding: 0 0 30px 0;
}
#footer #ft_partners {
  position: relative;
  width: 180px;
  height: 34px;
}
#ft_partners span {
  position: relative;
  display: block;
  line-height: 32px;
  padding: 0 20px;
  font-weight: normal;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  background: #f2f2f2;
  border-radius: 20px;
  z-index: 1;
}
#ft_partners span:after {
  content: '+';
  position: absolute;
  right: 20px;
}
#ft_partners ul {
  display: none;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #f2f2f2;
  border-bottom: none;
  padding: 7px 15px 7px 15px;
  box-sizing: border-box;
  margin-bottom: -2px;
}
#ft_partners ul li {
  line-height: 1.4;
}
#ft_partners ul li a {
	display: block;
  font-size: 13px;
  color: #666;
	margin:2px 0;
}

/****************************************************************************/
/**** About ****/
/****************************************************************************/
.subWrap.about {
  background: #f2f2f2;
}
.about .sec01 {
  display: block;
  padding: 140px 0 120px 0;
}
.about .sec01 .sub_title h2 {
  margin-bottom: 30px;
}
.about .sec01 .sub_title h2 span {
  color: var(--main-color);
}
.about .sec01 .imgBox {
  display: flex;
  position: relative;
  align-items: center;
  width: 1000px;
  height: 800px;
  background: url(../../images/about_sec01_bg.png) no-repeat center;
  margin: 40px auto 0 auto;
}
.about .sec01 .imgBox .title {
  display: flex;
  align-items: center;
  width: 298px;
  height: 298px;
  text-align: center;
  background: #019129;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}
.about .sec01 .imgBox .title span {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}
.about .sec01 .imgBox .item {
  position: absolute;
  width: 290px;
  height: 290px;
  background: #fff;
  border-radius: 50%;
  padding: 30px 20px;
}
.about .sec01 .imgBox .item:nth-child(1) {
  top: 255px;
  left: 355px;
  &.active {
    animation: company01 1.5s ease-in-out 0.3s 1 forwards;
  }
}
@keyframes company01 {
  0% {
  }
  70% {
    top: 50px;
    left: 50px;
  }
  100% {
    top: 50px;
    left: 50px;
  }
}
.about .sec01 .imgBox .item:nth-child(2) {
  top: 255px;
  right: 355px;
  &.active {
    animation: company02 1.5s ease-in-out 0.3s 1 forwards;
  }
}
@keyframes company02 {
  0% {
  }
  70% {
    top: 50px;
    right: 50px;
  }
  100% {
    top: 50px;
    right: 50px;
  }
}
.about .sec01 .imgBox .item:nth-child(3) {
  bottom: 255px;
  left: 355px;
  &.active {
    animation: company03 1.5s ease-in-out 0.3s 1 forwards;
  }
}
@keyframes company03 {
  0% {
  }
  70% {
    bottom: 50px;
    left: 50px;
  }
  100% {
    bottom: 50px;
    left: 50px;
  }
}
.about .sec01 .imgBox .item:nth-child(4) {
  bottom: 255px;
  right: 355px;
  &.active {
    animation: company04 1.5s ease-in-out 0.3s 1 forwards;
  }
}
@keyframes company04 {
  0% {
  }
  70% {
    bottom: 50px;
    right: 50px;
  }
  100% {
    bottom: 50px;
    right: 50px;
  }
}
.about .sec01 .imgBox .item .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
}
.about .sec01 .imgBox .item:nth-child(1) .icon {
  background: url(../../images/about_sec01_icon01.png) no-repeat center;
}
.about .sec01 .imgBox .item:nth-child(2) .icon {
  background: url(../../images/about_sec01_icon02.png) no-repeat center;
}
.about .sec01 .imgBox .item:nth-child(3) .icon {
  background: url(../../images/about_sec01_icon03.png) no-repeat center;
}
.about .sec01 .imgBox .item:nth-child(4) .icon {
  background: url(../../images/about_sec01_icon04.png) no-repeat center;
}
.about .sec01 .imgBox .item strong {
  display: block;
  color: #333;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  padding: 5px 5px 15px 5px;
}
.about .sec01 .imgBox .item p.txt {
  display: block;
  color: #777;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  padding: 0 15px;
}
.about .sec02 {
  display: block;
  padding: 80px 0 60px 0;
}
.about .sec02 .sub_title {
  padding-bottom: 80px;
}
.about .sec02 .itemBox {
  width: 100%;
}
.about .sec02 .itemBox .item {
  background: #fff;
  border-radius: 15px;
  padding: 0 50px;
  margin: 0 2% 50px 2%;
}
.about .sec02 .itemBox .item dl {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.about .sec02 .itemBox .item:nth-child(odd) dl {
  flex-flow: row-reverse wrap;
}
.about .sec02 .itemBox .item:nth-child(even) dl {
  flex-flow: row wrap;
}
.about .sec02 .itemBox .item dt {
  position: relative;
  width: calc(50% + 80px);
  text-align: right;
}
.about .sec02 .itemBox .item:nth-child(even) dt {
  text-align: left;
}
.about .sec02 .itemBox .item dd {
  width: calc(50% - 80px);
}
.about .sec02 .itemBox .item .title {
  display: block;
  margin: 20px 0 30px 0;
}
.about .sec02 .itemBox .item .title span {
  display: block;
  color: #019129;
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about .sec02 .itemBox .item .title h3 {
  position: relative;
  color: #000;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.about .sec02 .itemBox .item .title p.text {
  color: #777;
  font-size: 16px;
  line-height: 1.4;
  margin: 30px 0 0 0;
}
.about .sec02 .certificate {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  text-align: center;
  padding: 0 0 50px 0;
  overflow: hidden;
}
.about .sec02 .certificate li {
  display: inline-block;
  width: 19%;
  text-align: center;
  font-size: 0;
  margin: 0 1% 0 0;
}
.about .sec02 .certificate li .imgs {
  display: inline-block;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 10px;
  margin: 0 auto;
  overflow: hidden;
}
.about .sec02 .certificate li .imgs img {
  width: 150px;
}
.about .sec02 .certificate li strong {
  display: block;
  color: #777;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}
.about .sec03 {
  padding: 80px 0 50px 0;
}
.about .sec03 .partnerBox {
  margin: 70px 0 0 0;
}
.about .sec03 .partnerBox .partner_list {
  overflow: hidden;
}
.about .sec03 .partnerBox .partner_list li {
  display: flex;
  align-items: center;
  width: 44%;
  position: relative;
  float: left;
  height: 210px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 35px;
  margin: 0 2% 30px 2%;
}
.about .sec03 .partnerBox .partner_list li .imgs {
  width: 40%;
}
.about .sec03 .partnerBox .partner_list li .info_box {
  padding: 0px 0 0 20px;
}
.about .sec03 .partnerBox .partner_list li .info_box strong {
  display: block;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.about .sec03 .partnerBox .partner_list li .info_box .txt {
  color: #777;
  font-size: 0.85em;
  line-height: 1.4;
}
.about .sec04 {
  margin: 140px 0 0 0;
}
.about .sec04 .historyWrap .title_box {
  margin: 50px 0;
}
.about .sec04 .historyWrap .title_box h3 {
  color: #333;
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.about .sec04 .historyWrap .title_box h5 {
  color: #666;
  font-size: 18px;
}
.about .sec04 .historyWrap .historyBox {
  display: flex;
  flex-flow: row wrap;
  padding-bottom: 80px;
}
.about .sec04 .historyBox .imgs {
  width: calc(50% - 20px);
}
.about .sec04 .historyBox .history_list {
  position: relative;
  width: 40%;
  padding-left: 30px;
}
.about .sec04 .historyBox .history_list .line {
  position: absolute;
  left: 0;
  top: 20px;
  height: calc(100% - 100px);
  border-left: 1px solid #ddd;
}
.about .sec04 .historyBox .history_list dl {
  padding-bottom: 30px;
}
.about .sec04 .historyBox .history_list dl dt {
  position: relative;
  color: #333;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
}
.about .sec04 .historyBox .history_list dl dt:after {
  content: '';
  position: absolute;
  top: 15px;
  left: -33px;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
}
.about .sec04 .historyBox .history_list dl dd {
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

/****************************************************************************/
/**** Platform ****/
/****************************************************************************/
.subWrap.platform {
  background: #f7f7f7;
}
.platform .sec_rng {
  padding: 140px 0 80px 0;
}
.platform .sec_rng .sub_title {
  position: relative;
  z-index: 2;
}
.platform .sec_rng .sub_title h1 {
  color: #000;
  font-size: 44px;
}
.platform .sec_rng .sub_title h4 {
  font-size: 17px;
  color: #414141;
  font-weight: 400;
}
.platform .sub_title img {
  width: 320px;
  height: auto;
}
.platform .sec_rng .videoWrap {
  margin: 120px 0 80px 0;
}
/*
.platform .sec_rng .video_box {
  width:740px;
	height:463px;
	background: url(../../images/platform_video_bg.jpg) no-repeat top;
	background-size: 740px 463px;
	text-align: center;
	padding:28px 0 0  0; 
	margin:40px auto 0px auto;
}
*/

.platform .sec_rng .video_box {
  position: relative;
  width: 860px;
  height: 470px;
  background: url(../../images/platform_video_bg_02.png) no-repeat top;
  background-size: 860px 470px;
  text-align: center;
  padding: 36px 152px 0 0;
  margin: 40px 0 0px 96px;
}
.platform .sec_rng .video_box:before {
  content: '';
  position: absolute;
  display: inline-block;
  top: -230px;
  right: 0;
  width: 370px;
  height: 230px;
  background: url(../../images/tv_antenna.jpg) no-repeat right bottom;
  z-index: 0;
}
.platform .sec_rng .video_box video {
  width: 641px;
  border-radius: 34px;
  margin: 0 auto;
}
.platform .sec_rng .video_box .video_view video {
  position: absolute;
  top: 38px;
  left: 33px;
}
.platform .sec_rng .video_box .video_bottom {
  display: none;
}
.platform .sec_rng .video_box .maskBox {
  position: absolute;
  display: block;
  top: 34px;
  left: 33px;
  width: 641px;
  height: 364px;
  border-radius: 35px;
  overflow: hidden;
}
.platform .sec_rng .video_box .maskBox .mask_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 364px;
  background: #0a0907;
  border-radius: 35px 0 0 35px;
  animation: videoRng 3s ease-in-out;
}
@keyframes videoRng {
  0% {
    width: 322px;
  }
  70% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}

.platform .sec_rng .video_box .maskBox .mask_right {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 364px;
  background: #0a0907;
  border-radius: 0 35px 35px 0;
  animation: videoRng 3s ease-in-out;
}
@keyframes videoRng {
  0% {
    width: 320px;
  }
  70% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}

.platform .sec_rng .video_box .remoteWrap {
  position: absolute;
  right: -200px;
  bottom: 37px;
  width: 167px;
  height: 330px;
  text-align: center;
  border-radius: 8px;
  margin: 0 auto;
  background: url(../../images/remote_bg.png) no-repeat top left;
  padding: 20px 12px 20px 12px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.platform .sec_rng .video_box .remoteWrap .remote_box_inner {
  background: #2c2821;
  padding: 10px 5px;
  text-align: center;
}

.platform .sec_rng .videoWrap .btn_box {
  text-align: center;
  margin: 10px auto 0 auto;
}
.platform .sec_rng .videoWrap .btn_box a {
  text-decoration: none;
}
.platform .sec_rng .videoWrap .btn_box .btn_more {
  display: block;
  width: 100%;
  line-height: 25px;
  background: #2c2821;
  color: #fff;
  font-size: 0.75em;
  text-align: center;
  font-family: 'Lato';
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #d1c7b5;
  border-radius: 20px;
  transition: ease 0.3s;
  margin: 0 0px 7px 0px;
}
.platform .sec_rng .videoWrap .btn_box .btn_more.on {
  font-weight: 600;
  border: 1px solid #fdc80a;
  background: #fdc80a;
  color: #231f1d;
}
.platform .sec_rng .videoWrap .btn_box a:hover .btn_more {
  border: 1px solid #fdc80a;
  transition: ease 0.3s;
}
.platform .sec_rng .sub_txt {
  display: block;
  font-size: 17px;
  color: #414141;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  padding: 0 30px;
}
.platform .sec_rng .icon_box {
  width: 100%;
	max-width: 1200px;
  text-align: center;
  margin: 60px auto;
}
.platform .sec_rng .icon_box ul {
  position: relative;
  width: 100%;
}
.platform .sec_rng .icon_box li {
  display: inline-block;
  width: 100%;
  margin: 0 auto 40px auto;
}
.platform .sec_rng .icon_box li:last-child {
  margin: 0 auto 0 auto;
}
.platform .sec_rng .icon_box .item {
  display: inline-block;
  width: 13%;
  vertical-align: top;
  margin: 0 auto;
}
.platform .sec_rng .icon_box .item .icons {
  position: relative;
  display: block;
  width: 110px;
  height: 110px;
  text-align: center;
	background: #fff;
  border-radius: 50%;
  margin: 0 auto;
}
.platform .sec_rng .icon_box .item .icons img {
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	width: 80px;
	height: auto;
}
.platform .sec_rng .icon_box .item strong {
  display: block;
  color: #414141;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  margin-top: 15px;
}
.platform .sec01 {
  background: #fff;
  padding: 140px 0;
}
.platform .sec01 .inner {
  width: 1200px;
  margin: 0 auto;
}
.platform .sec01 .sub_title h1 {
  color: #000;
  font-size: 44px;
}

.platform .sec01 .wlottoBox {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 80px 0 0 0;
}
.platform .sec01 .wlottoBox .icon_box {
  display: block;
  width: 550px;
  text-align: center;
}
.platform .sec01 .wlottoBox .icon_box ul {
	position: relative;
  display: block;
  text-align: center;
}
.platform .sec01 .wlottoBox .icon_box ul::before {
	content: '';
	position: absolute;
	display: inline-block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 400px;
	border-radius: 50%;
	border: 3px dotted #d4d4d4;
	z-index: 0;
}
.platform .sec01 .wlottoBox .icon_box ul li {
	position: relative;
  padding: 10px 0;
	z-index: 1;
}
.platform .sec01 .wlottoBox .icon_box .item {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  margin: 0 1%;
}
.platform .sec01 .wlottoBox .icon_box .item .icons {
	position: relative;
  display: block;
  width: 120px;
  height: 120px;
  text-align: center;
  background: #f4f7fb;
  border-radius: 50%;
  margin: 0 auto;
}
.platform .sec01 .wlottoBox .icon_box .item .icons img {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width:80px;
	height:auto;
}
.platform .sec01 .wlottoBox .icon_box .item strong {
  display: block;
  color: #414141;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  margin-top: 10px;
}
.platform .sec01 .wlottoBox .img_box {
  width: 500px;
  text-align: center;
  background: url() no-repeat center;
}

.platform .sec01 .wlotto_img_box {
  position: relative;
  width: 500px;
  height: 570px;
  border-radius: 5px;
  background: lighten(#f0f4c3, 10%);
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.platform .sec01 .wlotto_img_box .imgs {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.platform .sec01 .wlotto_img_box .wlotto_img_box:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(#e8a, 1), rgba(#def, 0) 80%, rgba(white, 0.5));
  z-index: 11;
  transform: translate3d(0, 0, 0);
}
@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}

.platform .sec02 {
  background: #f6f6f6;
  padding: 140px 0 50px 0;
}
.platform .sec02 .sub_title h1 {
  font-size: 44px;
}
.platform .sec02 .sub_title h4 {
  color: #414141;
  font-size: 17px;
}
.platform .sec02 .sub_title h5 {
  color: #414141;
  font-size: 17px;
}
.platform .sec02 .iconBox {
	width:95%;
	background: #fff;
	border-radius: 20px;
  margin: 60px auto 40px auto;
}
.platform .sec02 .iconBox ul {
  display: block;
  overflow: hidden;
}
.platform .sec02 .iconBox ul li {
  position: relative;
  display: inline-block;
  width: 33%;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	padding: 8px 0 8px 30px;
}
.platform .sec02 .iconBox ul li:nth-child(3),
.platform .sec02 .iconBox ul li:nth-child(6) {
  border-right: none;
}
.platform .sec02 .iconBox ul li:nth-child(7),
.platform .sec02 .iconBox ul li:nth-child(8) {
  border-bottom: none;
}
.platform .sec02 .iconBox ul li .icons {
  display: inline-block;
  width: 100px;
  text-align: center;
  padding: 0px;
}
.platform .sec02 .iconBox ul li .icons img {
	width:85px;
	height: auto;
}
.platform .sec02 .iconBox ul li strong {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 140px;
  transform: translateY(-50%);
  color: #414141;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  line-height: 1.3;
  vertical-align: top;
  padding-right: 15px;
}

.platform .sec03 {
  padding: 80px 0;
}

.platform .sec04 {
  background: #f4f4f4;
  padding: 140px 0 80px 0;
}
.platform .sec04 .sub_title {	
	text-align: center;
	background: url(../../images/platform_donation_img01.jpg) no-repeat center;
	background-size: cover;
	padding:220px 50px;
}
.platform .sec04 .sub_title h1 {
	color:#fff;
  position: relative;
  display: inline-block;
  font-size: 60px;
  margin: 50px auto 0  auto;
}
.platform .sec04 .sub_title h2 {
	color:#fff;
  padding: 0;
  line-height: 1.1;
}
.platform .sec04 .sub_title h4 {
  width: 80%;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}
.platform .sec04 .imgBox {
  position: relative;
  text-align: center;
  margin: 40px 0;
}
.platform .sec04 .imgBox .txt_box {
  width: 70%;
  color: #111;
  font-size: 20px;
  margin: 0 auto;
  padding: 50px 30px 30px 30px;
}
.platform .sec04 .itemBox {
  position: relative;
  width: 100%;
	max-width: 1200px;
  height: 1050px;
  background: url(../../images/platform_donation_icon_bg.png) no-repeat top center;
  margin: 50px auto 0 auto;
}
.platform .sec04 .itemBox .item {
  position: absolute;
  display: inline-block;
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 50%;
  padding: 18px 0 0 0;
}
.platform .sec04 .itemBox .item:nth-child(1) {
  top: 200px;
  left: 90px;
}
.platform .sec04 .itemBox .item:nth-child(2) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.platform .sec04 .itemBox .item:nth-child(3) {
  top: 80px;
  right: 70px;
}
.platform .sec04 .itemBox .item:nth-child(4) {
  top: 400px;
  left: 650px;
}
.platform .sec04 .itemBox .item:nth-child(5) {
  top: 700px;
  left: 300px;
}
.platform .sec04 .itemBox .item .icon {
  width: 100px;
  margin: 0 auto 10px auto;
}
.platform .sec04 .itemBox .item .icon span {
  display: block;
  width: 100px;
  height: 100px;
}
.platform .sec04 .itemBox .item .txt_box {
  display: block;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  vertical-align: top;
}
.platform .sec04 .itemBox .item .txt_box strong {
  display: block;
  color: #333;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.platform .sec04 .itemBox .item .txt_box p.txt {
  display: block;
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

/****************************************************************************/
/**** Games ****/
/****************************************************************************/
.games .inner {
  width: 1240px;
}
.games .sec01 {
  background: #eef3fa;
  padding: 80px 0;
}
.games .sec02,
.games .sec04 {
  padding: 80px 0;
}
.games .sec03 {
  background: #eaeaf7;
  padding: 80px 0;
}
.games .sub_title {
  margin-bottom: 20px;
}
.games .sub_title h2.title {
  display: block;
  font-size: 3.4em;
  color: #000;
  font-weight: 700;
  letter-spacing: -2px;
  padding: 0 0 10px 0;
}
.games .sub_title .txt_desc p {
  color: #333;
  font-size: 17px;
	line-height: 1.3;
}
.games .game_list {
  display: flex;
  justify-content: space-between;
}
.games .game_list li {
  width: 290px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
  padding: 13px 13px 20px 13px;
}
.games .game_list li .imgs {
  position: relative;
  text-align: center;
  border-radius: 8px 8px 0 0;
  background: url(../../images/game_list_bg.jpg) no-repeat center;
  background-size: cover;
  margin: 0 0 3px 0;
  overflow: hidden;
}
.games .game_list.lotto li .imgs:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 5px;
  display: inline-block;
  width: 65px;
  height: 30px;
  background: url(../../images/game_logo_wlotto.png) no-repeat left top;
  background-size: 65px auto;
}
.games .game_list.numbers li .imgs:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 5px;
  display: inline-block;
  width: 70px;
  height: 30px;
  background: url(../../images/game_logo_numbers.png) no-repeat left top;
  background-size: 70px auto;
}
.games .game_list.powerball li .imgs:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 5px;
  display: inline-block;
  width: 70px;
  height: 30px;
  background: url(../../images/game_logo_powerball.png) no-repeat left top;
  background-size: 70px auto;
}
.games .game_list.instants li .imgs {
  background: none;
}
.games .game_list li .game_name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
}
.games .game_list li .game_name h3 {
  color: #111;
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  padding: 5px 5px;
}
.games .game_list li .game_name .coin_logo img {
  width: 25px;
}
.games .game_list li .game_info {
  display: block;
  margin: 20px 0 20px 0;
}
.games .game_list li .game_info h2 {
  color: #000;
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -1px;
  margin: 0 0 8px 0;
}
.games .game_list li .game_info h2 em {
  color: #000;
  font-size: 21px;
  font-style: normal;
  letter-spacing: 0;
}
.games .game_list li .game_info .txt_sub {
  display: block;
  color: #414141;
  font-size: 13px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 10px;
}
.games .game_list li .game_info .desc {
  padding: 0 0 0 10px;
}
.games .game_list li .game_info .desc p.txt {
  position: relative;
  color: #888;
  font-size: 13px;
  padding-left: 10px;
}
.games .game_list li .game_info .desc p.txt strong {
  font-weight: 500;
}
.games .game_list li .game_info .desc p.txt:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 8px;
  width: 3px;
  height: 3px;
  background: #d4d4d4;
  border-radius: 50%;
}
.games .game_list li .btn_box {
  display: block;
  text-align: center;
}
.games .game_list li .btn_box .btn {
  display: inline-block;
  min-width: 130px;
  background: #f4f3f3;
  text-align: center;
  border-radius: 3px;
  padding: 0 10px;
}
.games .game_list li .btn_box .btn a {
  display: block;
  color: #666;
  font-size: 13px;
  line-height: 30px;
  text-decoration: none;
}
.games .game_list li .btn_box .btn a:hover {
  color: #111;
}
.games .sec03 .game_list {
  width: 50%;
}

.gamesInfo .infoWrap {
  position: relative;
  width: 1200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.08);
  padding: 45px 40px 35px 40px;
  margin: 0px auto 150px auto;
}
.gamesInfo .infoWrap .game_btn {
  display: block;
  position: absolute;
  top: 400px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.gamesInfo .infoWrap .game_btn .btn_left {
  position: absolute;
  top: 40%;
  left: 0px;
  width: 60px;
  height: 60px;
  background: url(../../images/game_btn_left.png) no-repeat center;
  margin-left: -60px;
  z-index: 1;
}
.gamesInfo .infoWrap .game_btn .btn_right {
  position: absolute;
  top: 40%;
  right: -60px;
  width: 60px;
  height: 60px;
  background: url(../../images/game_btn_right.png) no-repeat center;
  z-index: 1;
}
.gamesInfo .info_top {
  display: flex;
  align-items: center;
  width: 750px;
  margin: 0 0 20px 0;
}
.gamesInfo .info_top h3,
.gamesInfo .info_top .tab_menu {
  display: inline-block;
  vertical-align: top;
}
.gamesInfo .info_top .tab_menu a {
  display: inline-block;
  line-height: 36px;
  border: 1px solid #eaeaea;
  border-radius: 25px;
  padding: 0 12px;
  margin: 0 4px;
}
.gamesInfo .info_top .tab_menu a span {
  color: #666;
  font-size: 13.5px;
  text-transform: uppercase;
}
.gamesInfo .info_top .tab_menu a.on,
.gamesInfo .info_top .tab_menu a:hover {
  color: #fff;
  text-decoration: none;
  background: #111;
}
.gamesInfo .info_top .tab_menu a.on span,
.gamesInfo .info_top .tab_menu a:hover span {
  color: #fff;
}
.gamesInfo .gameBox {
  display: flex;
  display: block;
}
.gamesInfo .gameBox .game_cont {
  display: flex;
  justify-content: space-between;
}
.gamesInfo .gameBox .game_cont .imgs {
  display: block;
  margin: 0 0 20px 0;
}
.gamesInfo .gameBox .descBox {
  display: block;
  margin: 60px 0 20px 0;
}
.gamesInfo .gameBox .descBox h3.title {
  display: block;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.gamesInfo .gameBox .descBox .desc_list {
  display: block;
  margin: 0 0 40px 0;
}
.gamesInfo .gameBox .descBox .desc_list li {
  position: relative;
  color: #777;
  font-size: 0.85em;
  padding: 2px 0 2px 10px;
}
.gamesInfo .gameBox .descBox .desc_list li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #d4d4d4;
  border-radius: 50%;
}
.gamesInfo .gameBox .descBox .desc_list li strong {
  color: #000;
  font-weight: 500;
}
.gamesInfo .gameBox .descBox .game_info_add {
  margin: 10px 0 0 0;
}
.gamesInfo .gameBox .descBox .game_info_add dl {
  display: block;
  margin: 15px 0;
}
.gamesInfo .gameBox .descBox .game_info_add dt {
  display: block;
  color: #111;
  font-size: 1.1em;
  font-weight: 500;
  padding: 5px 0;
}
.gamesInfo .gameBox .descBox .game_info_add dd {
  display: block;
  color: #666;
  font-size: 0.9em;
}
.gamesInfo .gameBox .descBox .winning_rate .sub_title {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px 0;
}
.gamesInfo .gameBox .descBox .winning_rate .rate_box {
  min-width: 700px;
  background: #f7f7f7;
  padding: 10px 30px;
  border-radius: 10px;
}
.gamesInfo .gameBox .descBox .winning_rate .rate_box li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e2e2e2;
  padding: 15px 0;
}
.gamesInfo .gameBox .descBox .winning_rate .rate_box li:last-child {
  border: none;
}
.gamesInfo .gameBox .descBox .winning_rate .rate_box li p {
  display: inline-block;
  width: 100%;
  color: #414141;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}
.gamesInfo .gameBox .descBox .winning_rate .rate_box li p.title {
  color: #000;
  font-size: 0.85em;
  font-weight: 500;
}
.gamesInfo .gameBox .descBox .winning_rate .rate_box li p strong {
}
.gamesInfo .gameBox .game_info {
  position: absolute;
  right: 40px;
  top: 110px;
}
.gamesInfo .gameBox .game_info .game_name {
  margin-top: -105px;
}
.gamesInfo .gameBox .game_info .info_box {
  width: 280px;
  border: 2px solid #eeeeee;
  border-radius: 10px;
  margin: 17px 0 0 0;
}
.gamesInfo .gameBox .game_info h3 {
  display: block;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0px 0 10px 5px;
}
.gamesInfo .gameBox .game_info .info_summary {
  background: #f9f9f9;
  padding: 17px 12px 20px 12px;
}
.gamesInfo .gameBox .game_info .info_summary ul {
  display: inline-flex;
  justify-content: flex-start;
  width: 100%;
}
.gamesInfo .gameBox .game_info .info_summary li {
  display: inline-block;
  width: 46.6%;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding: 7px 3px;
  margin: 3px 1.6%;
}
.gamesInfo .gameBox .game_info .info_summary li .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 34px;
  margin: 0 auto;
  color: #888;
  font-size: 12px;
  line-height: 1.3;
}
.gamesInfo .gameBox .game_info .info_summary li em {
  color: #a07a43;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 4px 0px 0;
}
.gamesInfo .gameBox .game_info .info_summary li strong {
  display: block;
  color: #0376ba;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin: 2px 0 8px 0;
}
.gamesInfo .gameBox .game_info .info_summary li strong.win {
  padding: 0 5px;
  width: 100%;
}

.gamesInfo .gameBox .game_info .item_box {
  padding: 0 0 25px 0;
  margin: 20px 20px 25px 20px;
  border-bottom: 1px solid #e2e2e2;
}
.gamesInfo .gameBox .game_info .item_box:last-child {
  border: none;
  margin-bottom: 0;
}
.gamesInfo .gameBox .game_info .item_box dl {
  display: block;
}
.gamesInfo .gameBox .game_info .item_box dl > * {
  font-size: 13px;
}
.gamesInfo .gameBox .game_info .item_box dt,
.gamesInfo .gameBox .game_info .item_box dd {
  display: inline-block;
}
.gamesInfo .gameBox .game_info .item_box dt {
  position: relative;
  width: 70%;
  color: #888;
  padding-left: 10px;
}
.gamesInfo .gameBox .game_info .item_box dt:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 8px;
  width: 3px;
  height: 3px;
  background: #d4d4d4;
  border-radius: 50%;
}
.gamesInfo .gameBox .game_info .item_box dd {
  width: 28%;
  color: #000;
  text-align: center;
}

/****************************************************************************/
/**** Media ****/
/****************************************************************************/
.media .inner {
  width: 1200px;
}
.media .media_list {
  overflow: hidden;
}
.media .media_list a {
  text-decoration: none;
}
.media .media_list .list_item {
  position: relative;
  display: inline-block;
  width: 30%;
  height: 260px;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 25px 30px 10px 30px;
  margin: 0 1.5% 30px 1.5%;
  vertical-align: top;
}
.media .media_list .list_item:hover {
  background: #019129;
}
.media .media_list a:hover div > * {
  color: #fff !important;
}
.media .media_list .list_item.windyplan .media_logo {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 15px;
  width: 130px;
  height: 30px;
  background: url(../../images/media_logo_windyplan.png) no-repeat left bottom;
  background-size: 110px auto;
}
.media .media_list .list_item.wlotto .media_logo {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 15px;
  width: 130px;
  height: 30px;
  background: url(../../images/media_logo_wlotto.png) no-repeat left bottom;
  background-size: 80px auto;
}
.media .media_list .list_item.wlotto {
  background-size: 140px auto;
}
.media .media_list .list_item .thumb_cont span.date {
  display: block;
  color: #31a90f;
  font-size: 16px;
  margin-bottom: 25px;
}
.media .media_list .list_item .thumb_cont h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #111;
  font-weight: 500;
  letter-spacing: -0.5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 15px;
  overflow: hidden;
}
.media .media_list .list_item .thumb_cont p.txt {
  color: #999;
  font-size: 14px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.mediaView {
  padding: 0 0 150px 0;
}
.mediaView .imgArea {
  display: block;
  text-align: center;
  margin: 80px auto;
}

.mediaView .view_head {
  overflow: hidden;
  position: relative;
  padding: 30px 55px;
  border: 1px solid #e9e9e9;
  border-left: 0 none;
  border-right: 0 none;
  background-color: #fafafa;
}
.mediaView .view_head h3 {
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  word-break: break-all;
  word-wrap: break-word;
  overflow: hidden;
}
.mediaView .view_detail {
  font-size: 15px;
  margin: 20px 55px;
}
.mediaView .view_detail strong {
  display: block;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  padding: 30px 0;
}

.contact {
  margin: 60px 0;
}
.contact .sec01 .cs_list {
  display: flex;
  justify-content: space-around;
  margin: 0 100px;
}
.contact .sec01 .cs_list li {
  text-align: center;
}
.contact .sec01 .cs_list li .csimg {
  display: inline-block;
  width: 130px;
  height: 130px;
  padding: 15px;
}
.contact .sec01 .cs_list li .csimg span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.contact .sec01 .cs_list li .csimg.telegram span {
  background: #fae7a8 url(../../images/contact_icon_telegram.png) no-repeat center;
  background-size: 68px 68px;
}
.contact .sec01 .cs_list li .csimg.email span {
  background: #d0f4c9 url(../../images/contact_icon_email.png) no-repeat center;
  background-size: 68px 68px;
}
.contact .sec01 .cs_list li h3 {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
}
.contact .sec01 .cs_list li .channel_name,
.contact .sec01 .cs_list li .channel_name a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0 20px 0;
}
.contact .sec02 {
  margin: 60px 0 120px 0;
}
.contact .sec02 h3 {
  display: block;
  font-size: 26px;
  font-weight: 500;
}
.contact .sec02 .contact_info {
  margin: 10px 0 0 0;
}
.contact .sec02 .contact_info ul {
  margin: 0 0 60px 0;
  border-top: 1px solid #eaeaea;
}
.contact .sec02 .contact_info ul li {
  font-size: 16px;
  border-bottom: 1px solid #eaeaea;
  padding: 15px 10px;
}

.contact .imgBox {
  position: relative;
  width: 100%;
  height: 750px;
  margin-bottom: 25px;
  margin-top: -50px;
  overflow: hidden;
}
.contact .imgBox .video_box {
}
.contact .imgBox .video_box video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  object-fit: fill;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.contact .imgBox .txt_box {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  width: 90%;
  text-align: center;
  z-index: 9;
  transform: translate(-50%, -50%);
}
.contact .imgBox .txt_box h2.title {
  display: block;
  color: #fff;
  font-size: 45px;
  text-align: center;
  margin: 0 0 20px;
}
.contact .imgBox .txt_box .cs_info {
  display: inline-block;
  width: 500px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  margin: 30px auto 0 auto;
}
.contact .imgBox .txt_box .cs_info .sns_info {
  display: flex;
  justify-content: space-around;
}
.contact .imgBox .txt_box .cs_info .sns_info .txt,
.contact .imgBox .txt_box .cs_info .sns_info .txt a {
  color: #fff;
  font-size: 16px;
}
.contact .imgBox .txt_box .cs_info p.address {
  color: #fff;
  font-size: 13px;
  padding-top: 10px;
  opacity: 0.8;
}

.contWrap {
  width: 100%;
}
.ethicsArea {
  margin: 40px 0 80px 0;
  border-top: 1px solid #333;
}
.ethicsArea .itemBox {
  padding: 120px 0;
}
.ethicsArea .itemBox:nth-child(2) {
  padding: 120px 0 0 0;
}
.ethicsArea .itemBox:nth-child(even) {
  background: #f4f4f4;
}
.ethicsArea .itemBox:nth-child(even) dl {
  flex-flow: row-reverse wrap;
}
.ethicsArea .itemBox dl {
  display: flex;
  align-items: center;
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
.ethicsArea .itemBox dl dt {
  position: relative;
  width: calc(25% + 110px);
  text-align: center;
}
.ethicsArea .itemBox dl dt .imgs {
  display: flex;
  align-items: center;
  width: 180px;
  height: 180px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
}
.ethicsArea .itemBox:nth-child(odd) dl dt .imgs {
  background: #f7f7f7;
}
.ethicsArea .itemBox dl dt .imgs span {
  display: block;
  width: 100%;
  text-align: center;
}
.ethicsArea .itemBox dl dd {
  width: calc(75% - 110px);
}
.ethicsArea .itemBox dl dd h3 {
  display: block;
  color: #111;
  font-size: 1.6em;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.ethicsArea .itemBox dl dd .text {
  color: #666;
  font-size: 0.95em;
}
.ethicsArea .itemBox .desc_box {
  background: #1a9434;
  padding: 80px 0;
  margin-top: 120px;
}
.ethicsArea .itemBox .desc_box ul {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.ethicsArea .itemBox .desc_box ul li {
  display: inline-block;
  width: 28%;
  min-height: 300px;
  background: #fff;
  padding: 25px 30px 15px 30px;
  border-radius: 15px;
  margin: 0 2.4%;
  vertical-align: top;
}
.ethicsArea .itemBox .desc_box ul li span {
  display: inline-block;
  width: 56px;
  height: 56px;
}
.ethicsArea .itemBox .desc_box ul li:nth-child(1) span {
  background: url(../../images/ethics_icon0201.png) no-repeat;
  background-size: 56px 56px;
}
.ethicsArea .itemBox .desc_box ul li:nth-child(2) span {
  background: url(../../images/ethics_icon0202.png) no-repeat;
  background-size: 56px 56px;
}
.ethicsArea .itemBox .desc_box ul li:nth-child(3) span {
  background: url(../../images/ethics_icon0203.png) no-repeat;
  background-size: 56px 56px;
}
.ethicsArea .itemBox .desc_box ul li h3 {
  display: block;
  color: #111;
  font-size: 1.2em;
  font-weight: 600;
  margin: 10px 0 20px 0;
}
.ethicsArea .itemBox .desc_box ul li .desc {
  color: #666;
  font-size: 0.95em;
  line-height: 1.4;
}
.ethicsArea .ethicsMsg {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 120px auto 30px auto;
}
.ethicsArea .ethicsMsg h1 {
  color: #000;
  font-size: 4.8em;
  font-weight: 600;
  text-align: center;
  letter-spacing: -2px;
  border-bottom: 1px solid #eaeaea;
  padding: 0 0 30px 0;
  margin-bottom: 10px;
}
.ethicsArea .ethicsMsg h3 {
  position: relative;
  display: block;
  color: #666;
  font-size: 1em;
  background: url(../../images/icon_quotes.png) no-repeat left top;
	background-size: 90px 90px;
  padding: 40px 50px 0 50px;
}
.ethicsArea .ethicsMsg h3 strong {
  display: block;
  font-size: 1.2em;
  color: #111;
  font-weight: 500;
  text-align: center;
  padding: 0 0 8px 0;
}
.ethicsArea .ethicsMsg .btn_box {
  text-align: center;
  margin: 40px 0 0 0;
}
.ethicsArea .ethicsMsg .btn_box a {
  display: inline-block;
  min-width: 250px;
  line-height: 38px;
  color: #777;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #d4d4d4;
  border-radius: 30px;
  padding: 0 30px;
}
.ethicsArea .ethicsMsg .btn_box a:hover {
  color: #111;
}
.career .inner {
  width: 1250px;
  margin: 40px auto 80px auto;
}
.career .tabMenu {
  display: block;
  text-align: center;
  margin: 20px auto 60px auto;
}
.career .tabMenu a:hover .tab {
  color: #111;
  border: 1px solid #191919;
  transition: ease-in-out 0.3s;
}
.career .tabMenu .tab {
  display: inline-block;
  min-width: 220px;
  line-height: 30px;
  color: #414141;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 25px;
  padding: 6px 10px;
  margin: 0 5px;
  transition: ease-in-out 0.3s;
}
.career .tabMenu .tab.on {
  color: #fff;
  font-weight: 500;
  background: #191919;
}
.career .person_list {
  display: block;
  text-align: center;
}
.career .person_list .list_item {
  display: inline-block;
  width: 45%;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  padding: 40px 30px 30px 30px;
  margin: 0 2% 60px 2%;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
}
.career .person_list .list_item .thumb_cont {
  display: flex;
  justify-content: space-between;
}
.career .person_list .list_item .thumb_cont .txt_box {
  text-align: left;
  padding: 0px 0 0 20px;
}
.career .person_list .list_item .thumb_cont .txt_box h3 {
  color: #111111;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.5px;
  padding-bottom: 10px;
}
.career .person_list .list_item .thumb_cont .txt_box p.desc {
  color: #777;
  font-size: 0.9em;
  line-height: 1.4;
}
.career .career_list {
  display: block;
}
.career .career_list .list_item > a {
  text-decoration: none;
}
.career .career_list .list_item .title_box {
  display: block;
  border-top: 1px solid #d4d4d4;
  padding: 30px 30px 30px 30px;
}
.career .career_list .list_item .title_box:hover {
  background: #f9f9f9;
}
.career .career_list .list_item .title_box > * {
  display: inline-block;
  line-height: 36px;
  vertical-align: middle;
}
.career .career_list .list_item .title_box .category {
  width: 14%;
  color: #888;
  font-size: 15px;
}
.career .career_list .list_item .title_box h3.title {
  width: auto;
  color: #111;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.career .career_list .list_item .title_box small {
  float: right;
  color: #888;
  font-size: 14px;
}
.career .career_list .list_item.on .title_box > * {
  color: #019129 !important;
}
.career .career_list .list_item .career_view {
  display: none;
  position: relative;
  border-radius: 10px;
  background: #f9f9f9;
  padding: 20px 50px 40px 50px;
  margin: 20px 0px 80px 0;
}
.career .career_list .list_item .career_view .btn_close {
  content: '';
  position: absolute;
  display: inline-block;
  top: 30px;
  right: 35px;
}
.career .career_list .list_item .career_view .btn_close span {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../../images/icon_close.png) no-repeat center;
  background-size: 40px 40px;
}
.career .career_list .list_item .career_view .view_head {
  border-bottom: 1px solid #191919;
  padding: 20px 0 20px 10px;
}
.career .career_list .list_item .career_view .view_head h3 {
  display: block;
  color: #000;
  font-size: 45px;
  font-weight: 600;
  text-transform: uppercase;
}
.career .career_list .list_item .career_view .view_head h3 em {
  display: inline-block;
  color: #888;
  font-size: 18px;
  font-family: 'Lato';
  font-style: normal;
  margin-left: 10px;
}
.career .career_list .list_item .career_view .view_head .txt_tag {
  display: block;
  margin: 20px 0 20px 0px;
}
.career .career_list .list_item .career_view .view_head .txt_tag .tag {
  display: inline-block;
  width: auto;
  line-height: 30px;
  font-size: 13px;
  padding: 0 15px;
  background: #eeeeee;
  border-radius: 25px;
  margin-right: 5px;
}
.career .career_list .list_item .career_view .view_cont {
  margin: 50px 10px 40px 10px;
}
.career .career_list .list_item .career_view .view_cont dl {
  display: block;
  margin: 0 0 50px 0;
}
.career .career_list .list_item .career_view .view_cont dl.txt_box {
  display: block;
}
.career .career_list .list_item .career_view .view_cont dl.txt_box dt.title {
  color: #111;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
}
.career .career_list .list_item .career_view .view_cont dl.txt_box dd.sub_title {
  display: block;
  color: #019129;
  font-size: 17px;
  font-weight: 500;
  font-style: normal;
  padding: 15px 0 15px 0;
}
.career .career_list .list_item .career_view .view_cont dl.txt_box dd.bul {
  position: relative;
  display: block;
  color: #666;
  font-size: 0.9em;
  padding-left: 10px;
  margin-bottom: 8px;
}
.career .career_list .list_item .career_view .view_cont dl.txt_box dd.bul:before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #d4d4d4;
  border-radius: 50%;
}

/*  POPUP  */
.modal_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}
.modal_wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 530px;
  height: 760px;
  background: #fff;
  z-index: 1000;
}
.modal_wrap .img_box {
  background: #fff;
  padding: 10px;
  font-size: 0;
}
.modal_wrap .img_box img {
  width: 100%;
  border: 1px solid #d4d4d4;
}
.modal_wrap .btn_pop_close {
  position: absolute;
  display: inline-block;
  top: 0;
  right: -50px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
}
.modal_wrap .btn_pop_close span {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../../images/icon_pop_close.png) no-repeat center;
}
