@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-white: #fff;
}

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;
}

ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
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;
}
em {
  font-style: normal;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
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: relative;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  margin: 0 auto;
  z-index: 99;
  background: transparent;
  &.on,
  &:hover {
    .container {
      background-color: #fff;
      transition: all 0.3s ease-in-out;
      .logo {
        display: inline-block;
      }
      .logo_white {
        display: none;
      }
      .langBox .lang li,
      .langBox .currentLang li {
        color: #414141;
        cursor: pointer;
      }
    }
    .topnav .navbar li a {
      color: #111;
    }
    .topnav .nav_icon .nav_btn .nav_menu em {
      background-color: #414141;
    }
  }
}



.header .langBox .lang li:hover {
  color: #03d2fc !important;
}
.header.main {
  position: fixed;
  border-bottom: none;
}
.header .container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 25px 0px;
}

.header .logo {
  display: none;
  width: 210px;
  height: 50px;
  margin-left: 30px;
}

.header .logo a {
  display: block;
  width: 100%;
  height: 50px;
  background: url(../../images/logo.png) no-repeat;
  filter: drop-shadow(0px 0px 10px rgba(256, 256, 256, 0.5));
  overflow: hidden;
}
.header .logo_white {
  display: inline-block;
  width: 210px;
  height: 50px;
  margin-left: 30px;
}
.header .logo_white a {
  display: block;
  width: 100%;
  height: 50px;
  background: url(../../images/logo_white.png) no-repeat;
  filter: drop-shadow(0px 0px 10px rgba(256, 256, 256, 0.5));
  overflow: hidden;
}

.header .topnav .navbar {
  display: flex;
  align-items: center;
  margin-right: 0;
}
.header .topnav .navbar li {
  margin-right: 60px;
}
.header .topnav .navbar li a {
  position: relative;
  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: 1px;
  background: #01caf4;
  border-radius: 10px;
}
.header .topnav .navbar li a.on:after {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 100%;
  height: 1px;
  background: #01caf4;
  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;
  right: 30px;
  width: 75px;
  text-align: left;
  border-radius: 8px;
  transition: ease 0.1s;
  z-index: 100;
  &.kor {
    &:before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      left: 0;
      background: url(../../images/flag_kor.png) no-repeat center;
      background-size: 18px 18px;
      border-radius: 50%;
      border: 2px solid #fff;
    }
  }
  &.eng {
    &:before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      left: 0;
      background: url(../../images/flag_eng.png) no-repeat center;
      background-size: 18px 18px;
      border-radius: 50%;
      border: 2px solid #fff;
    }
  }
}
.header .langBox:hover {
  transition: ease 0.3s;
}

.header .langBox:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  width: 24px;
  height: 24px;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
}
.header .langBox .lang,
#currentLang {
  position: absolute;
  display: block;
  left: 30px;
  top: 0;
  cursor: pointer;
}
.header .langBox .lang li,
#currentLang li {
  display: block;
  color: #333 !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  padding-left: 25px;
  margin-left: -25px;
  cursor: pointer;
}
.header .langBox .lang {
  display: none;
  &.active {
    display: block;
  }
}
.header .langBox .lang li:hover {
  color: #000 !important;
}

.header .langBox .lang li.active {
  color: #666;
}

.header .langBox .lang li:hover {
  color: #c2c2c2;
}
.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: auto;
}
.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: #fff;
}

/*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;
  display: none;
}
.header .topnav .nav_icon .nav_btn .nav_menu em {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  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 {
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  z-index: 100;
  &.on {
    display: block;
  }
}

.offcanvas1-contents {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5%;
  color: #333;
  left: 0;
  z-index: 100;
}

.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;
  color: #333;
}
.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 {
  display: none;
  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;
  &.mnav {
    display: block;
    width: 40%;
  }
}
.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: 120px 0 100px 0;
  margin: auto 0;
}
.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: #111111;
  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: 44px;
  color: #111;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -1px;
  padding-bottom: 15px;
}
.subWrap .sub_title h2 {
  font-size: 42px;
  color: #111;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -1px;
  padding-bottom: 15px;
}
.subWrap .sub_title h3 {
  font-size: 32px;
  color: #111;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -1px;
}
.subWrap .sub_title h4 {
  display: block;
  width: 95%;
  max-width: 1200px;
  font-size: 18px;
  color: #111;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-left: auto;
  margin-right: auto;
}
.subWrap .sub_title h5 {
  font-size: 0.95em;
  color: #666666;
  font-weight: 400;
  line-height: 1.4;
}

/************************************************************************************************************/
/**** Main ****/
/************************************************************************************************************/
.container_main {
}

.main_sec .inner {
  width: 1300px;
  margin: 0 auto;
}
.main_sec.visual {
  position: relative;
  width: 100%;
  height: 90vh;

  min-height: 900px;
  color: #fff;
  background-size: cover;
  font-size: 0;
  overflow: hidden;
}
.main_sec.visual video {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 100%;
  object-fit: fill;
  min-height: 90%;
  transform: translate(-50%, 0%);
}
.main_sec.visual .txt_box {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-size: 1em;
  transform: translate(-50%, -50%);
  text-align: center;
}
.main_sec.visual .txt_box h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 500;
}
.main_sec.visual .txt_box h1 {
  color: #fff;
  font-size: 120px;
  font-weight: 600;
}
.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.visual .txt_box_1 {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 100%;
  object-fit: fill;
  transform: translate(-50%, -50%);
}
.main_sec.visual .txt_box_1 .box {
  width: 950px;
  height: 130px;
  margin: auto;
  cursor: pointer;
  -webkit-perspective: 100px;
  perspective: 10px;
}
.main_sec.visual .txt_box_1 .box .img {
  width: 950px;
  height: 130px;
  position: relative;
  background: url(../../images/main_visual_txt1.png) no-repeat;
  background-size: cover;
  margin-top: 200px;
  -webkit-transition: 0.3s;
  transform: skew(-25deg);
  -webkit-transform: rotateX(4deg);
  transform: rotateX(3deg);

  animation: mainTxt1 1.5s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}

@keyframes mainTxt1 {
  0% {
    margin-top: 300px;
    transform: skew(-25deg);
    transform: rotateX(6deg);
    opacity: 0;
  }
  70% {
    margin-top: 0px;
    transform: skew(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  100% {
    margin-top: 0px;
    transform: skew(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
.main_sec.visual .txt_box_1 h3 {
  display: block;
  position: relative;
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin-top: 50px;
}

.main_sec.package {
  position: relative;
  width: 100%;
  color: #000;
  text-align: center;
  padding: 50px 0 0 0;
}
.main_sec.package .txt_box {
  display: block;
	width:80%;
	max-width:1000px;
  text-align: center;
  margin: 80px auto 0 auto;
}
.main_sec.package .txt_box .txt.txt01 {
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.2;
	margin-bottom: 30px;
}
.main_sec.package .txt_box .txt {
  color: #000;
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1;
  height: 105%;
  letter-spacing: -1px;
  /*transform: perspective(700px);*/
  transform-origin: 50% 0%;
  opacity: 1;
  scale: 0.7;
}
.main_sec.package .roller {
  position: absolute;
  top: 60%;
  width: 100%;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.main_sec.package .roller_inner {
  font-size: 8em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  animation: textroller_left 80s linear infinite;
}
.main_sec.package .roller_inner span {
  margin: 0 40px;
  color: #eee;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1;
  font-weight: 700;
}

@keyframes textroller_left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.main_sec.package .img_box {
  position: relative;
  display: block;
  margin: 50px 0 0px 0;
  text-align: center;
  z-index: 1;
}
.main_sec.package .img_box .imgs {
  position: relative;
  width: 440px;
  height: 550px;
  margin: 0 auto;
}
.main_sec.package .img_box .imgs .package_logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  scale: 0.9;
  padding-left: 20px;
  animation: package-logo 1s ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
@keyframes package-logo {
  0% {
    opacity: 0;
  }
  80%,
  100% {
    opacity: 1;
    scale: 1;
    padding-left: 45px;
  }
}

.main_sec.package .waves {
  width: 100%;
  height: 11vh;
  position: relative;
  text-align: center;
  overflow-y: hidden;
  background: rgb(255, 255, 255);
}
.main_sec.package .waves_header {
  margin: 0;
  padding: 0;
  height: 5vh;
  width: 100%;
}
.main_sec.package .waves_inner {
  width: 100%;
  height: 10vh;
  min-height: 100px;
  max-height: 150px;
  position: relative;
  margin-bottom: -7px;
}

.parallax > use {
  animation: waves 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes waves {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 768px) {
  .waves_inner {
    height: 40px;
    min-height: 40px;
  }
}

.main_sec.package .wave_box {
  position: relative;
  height: 50px;
  margin: auto;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(315deg, rgba(132 232 251, 1) 3%, rgba(60, 132, 206, 1) 38%, rgba(48, 238, 226, 1) 68%, rgba(251 205 141, 1) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  overflow: hidden;
  display: none;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.main_sec.package .wave {
  top: 0px;
  background: rgb(3 173 215 / 30%);
  border-radius: 500% 1000% 0 0;
  width: 300%;
  height: 600px;
  animation: wave 8s -3s linear infinite;
  transform: translate3d(0, 2, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.main_sec.package .wave:nth-of-type(2) {
  position: absolute;
  top: 15px;
  height: 500px;
  background: rgb(254 157 4 / 60%);
  border-radius: 100% 500% 0 0;
  animation: wave 8s linear reverse infinite;
  opacity: 0.9;
  z-index: 2;
}
.main_sec.package .wave:nth-of-type(3) {
  position: absolute;
  top: 0px;
  height: 400px;
  background: rgb(158 241 154 / 80%);
  bottom: 0em;
  border-radius: 500% 200% 0 0;
  animation: wave 15s -1s reverse infinite;
  opacity: 0.9;
  z-index: 1;
}

@keyframes wave {
  2% {
    transform: translateX(1);
  }

  25% {
    transform: translateX(-25%);
  }

  50% {
    transform: translateX(-50%);
  }

  75% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(1);
  }
}

.main_sec.storyBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.main_sec.storyBox .item {
  position: relative;
  display: inline-block;
  width: 33.4%;
  height: 700px;
  text-align: left;
  background: #000;
  padding: 120px 5% 0px 2.5%;
  margin: 0;
  overflow: hidden;
}
.main_sec.storyBox .item.opacity-on::after {
  opacity: 0.2;
  transition: opacity 0.3s ease-in-out;
}
.main_sec.storyBox .item.opacity-on h3.title {
  scale: 1;
  transition: all 0.3s ease-in-out;
}
.main_sec.storyBox .item:nth-child(2).wide-on {
  width: 76%;
  transition: width 0.5s ease-in-out;
  background: #d9770e url(../../images/main_story_img02.jpg) no-repeat center;
  background-size: cover;
}
.main_sec.storyBox .item.active:nth-child(1) {
  background: #137b0e url(../../images/main_story_img01.jpg) no-repeat center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.main_sec.storyBox .item.active:nth-child(2) {
  background: #d9770e url(../../images/main_story_img02.jpg) no-repeat center;
  background-size: cover;
}
.main_sec.storyBox .item.active:nth-child(3) {
  background: url(../../images/main_story_img03.jpg) no-repeat center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.main_sec.storyBox .item:nth-child(2) {
  background: #05444b url(../../images/main_story_img03.jpg) no-repeat center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.main_sec.storyBox .item:nth-child(1) {
  background: #137b0e;
  transition: all 0.3s ease-in-out;
}
.main_sec.storyBox .item:nth-child(2) {
  background: #d9770e;
  transition: all 0.3s ease-in-out;
}
.main_sec.storyBox .item:nth-child(3) {
  background: #05444b;
  transition: all 0.3s ease-in-out;
}
.main_sec.storyBox .item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.07;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}
.main_sec.storyBox .item.active:after {
  opacity: 0.4 !important;
}
.main_sec.storyBox .item h3.title {
  position: relative;
  display: block;
  color: #fff;
  font-size: 3.6em;
  font-weight: 600;
  text-align: left;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 30px;
  transition: ease-in-out 0.3s;
  scale: 0.8;
  transform-origin: left center;
  z-index: 2;
}
.main_sec.storyBox .item h3.title em {
  display: block;
  color: #fff;
  font-size: 0.7em;
  font-weight: 500;
  margin-right: 10px;
}
.main_sec.storyBox .item .txt {
  position: absolute;
  display: block;
  top: 70%;
  width: 90%;
  height: 250px;
  transform: translateY(-50%);
}
.main_sec.storyBox .item .txt p {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.1em;
  text-align: left;
  letter-spacing: -0.5px;
  margin: 0 0 15px 0;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  opacity: 0.8;
  scale: 0.9;
  transform-origin: left top;
}
.main_sec.storyBox .item .txt p[data-langnum="105"]{
	margin: 0 0 2px 0;
}
.main_sec.storyBox .item .txt p[data-langnum="106"]{
  font-size:1em;
}
.main_sec.storyBox .item.active,
.main_sec.storyBox .item:hover {
  width: 76%;
  transition: all 0.3s ease-in;
}
.main_sec.storyBox .item:hover:after,
.main_sec.storyBox .item.active:after {
  opacity: 0.2;
  transition: all 0.3s ease-in;
}
.main_sec.storyBox .item:hover h3.title,
.main_sec.storyBox .item.active h3.title {
  opacity: 1;
  scale: 1;
  transition: all 0.3s ease-in-out;
}
.main_sec.storyBox .item:hover .txt,
.main_sec.storyBox .item.active .txt {
  z-index: 1;
  transform-origin: left top;
  opacity: 0.9;
}
.main_sec.storyBox .item:hover .txt p,
.main_sec.storyBox .item.active .txt p {
  scale: 1.05;
  transition: ease-in-out 0.3s;
  opacity: 1;
  z-index: 2;
}

.main_sec.games {
  display: block;
  margin: 80px 0;
}
.main_sec.games h3.title {
  display: block;
  width: 100%;
  color: #000;
  font-size: 3em;
  font-weight: 600;
  text-align: center;
  letter-spacing: -1px;
  padding: 100px 0 80px 0;
}
.main_sec.games .games_wrap {
	position: relative;
  display: flex;
  justify-content: space-between;
  width: 94%;
  background: #0c7cb6;
  border-radius: 30px;
  margin: 0 3%;
  overflow: hidden;
}
.main_sec.games .games_wrap .txt_box {
	position: absolute;
	width: 30%;
  min-width: 400px;
  margin: 130px 0;
}
.main_sec.games .games_wrap .txt_box h2 {
	width: 100%;
  color: #fff;
  font-size: 3.2vw;
  letter-spacing: -0.5px;
  font-weight: 600;
  line-height: 1.1;
  padding: 0px 0 0 50px;
}
.main_sec.games .games_wrap .txt_box h2 strong {
  color: #fff;
  font-weight: 600;
}
.main_sec.games .games_wrap .game_list {
  position: relative;
  width: 65%;
  min-width: 850px;
  height: 850px;
	margin-left: 33%;
  overflow: hidden;
}
.main_sec.games .games_wrap .game_list ul {
  top: -50px;
  position: absolute;
  display: inline-block;
}
.main_sec.games .games_wrap .game_list ul:nth-child(2) {
  margin: -100px 0 0 50%;
}
.main_sec.games .games_wrap .game_list ul li {
}
.main_sec.games .games_wrap .game_list ul li .item {
  position: relative;
  width: 400px;
  height: 380px;
  min-height: 380px;
  text-align: center;
  border-radius: 25px;
  background: #fff;
  padding: 30px 20px;
  margin: 50px 0;
}
.main_sec.games .games_wrap .game_list ul li .item_r {
  animation: slideAnimation_r 15s linear infinite;
}
.main_sec.games .games_wrap .game_list ul li .item_l {
  animation: slideAnimation_l 15s linear infinite;
}
.main_sec.games .games_wrap .game_list ul li .item strong {
  display: block;
  color: #000;
  font-size: 1.8em;
  font-weight: 600;
  text-align: left;
	line-height: 1.1;
  text-transform: uppercase;
}
.main_sec.games .games_wrap .game_list ul li .item span {
  display: block;
  color: #000;
  font-size: 0.9em;
  font-weight: 400;
  text-align: left;
  line-height: 1.3;
  margin: 15px 0 10px 0;
}
.main_sec.games .games_wrap .game_list ul li .item .imgs {
  display: block;
  width: 96%;
  height: 200px;
  border-radius: 10px;
  margin: 15px auto 0 auto;
  overflow: hidden;
}
.main_sec.games .games_wrap .game_list ul li .item .imgs.lotto {
  background: url(../../images/main_games_bg01.jpg) no-repeat center;
  background-size: cover;
}
.main_sec.games .games_wrap .game_list ul li .item .imgs.bingo {
  background: url(../../images/main_games_bg02.jpg) no-repeat center;
  background-size: cover;
}
.main_sec.games .games_wrap .game_list ul li .item .imgs.print {
  background: url(../../images/main_games_bg03.jpg) no-repeat center;
  background-size: cover;
}
.main_sec.games .games_wrap .game_list ul li .item .imgs.keno {
  background: url(../../images/main_games_bg04.jpg) no-repeat center;
  background-size: cover;
}
.main_sec.games .games_wrap .game_list ul li .item .imgs.instant {
  background: url(../../images/main_games_bg05.jpg) no-repeat center;
  background-size: cover;
}
.main_sec.games .games_wrap .game_list ul li .item .imgs.numbers {
  background: url(../../images/main_games_bg06.jpg) no-repeat center;
  background-size: cover;
}

@keyframes slideAnimation_r {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200%);
  }
}
@keyframes slideAnimation_l {
  0% {
    transform: translateY(-200%);
  }
  100% {
    transform: translateY(0%);
  }
}

.footer {
  display: block;
  border-top: 1px solid #333;
  padding: 40px 0;
  background: #fff;
  position: relative;
}
.footer .ftBox {
  display: flex;
  justify-content: space-between;
  width: 1300px;
  font-size: 12px;
  margin: 0 auto;
}
.footer .ftBox .ft_info {
  color: #777;
  font-weight: 500;
}
.footer .ftBox .ft_info .copy {
  display: block;
  color: #999;
  margin-top: 10px;
}
#footer #ft_partners {
  position: relative;
  width: 180px;
  height: 34px;
  &.ft_partners_on {
    ul {
      display: block;
    }
  }
}

#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: 2;
}
#ft_partners ul li a {
  font-size: 13px;
  color: #666;
}

/**** Sub Common****/
.subWrap {
  width: 100%;
  margin: 86px auto 0 auto;
}

.subWrap .top_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 150px 0px 80px 5%;
  margin: 0;
  z-index: 2;
}
.subWrap .top_title .top_titlBox {
  width: 100%;
  padding: 100px 180px 50px;
}
.subWrap .top_title h1 {
  color: #fff;
  font-size: 70px;
  font-weight: 600;
}
.subWrap .top_title h3 {
  color: #fff;
  font-size: 2.2vw;
  font-weight: 400;
  letter-spacing: -0.5px;
}

/**** About ****/

.aboutArea .topBox {
  position: relative;
}
.aboutArea .topBox .top_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 150px 0px 80px 100px;
  margin: 0;
  z-index: 2;
}
.aboutArea .topBox .top_title h1 {
  color: #fff;
  font-size: 6em;
}
.aboutArea .topBox .top_title h3 {
  color: #fff;
}
.aboutArea .top_img {
  width: 100%;
  height: 75vh;
  background: url(../../images/about_top_img.jpg) no-repeat center;
  background-size: cover;
}
.aboutArea .inBox {
  padding: 200px 0 0 0;
  overflow: hidden;
}
.aboutArea .greeting {
	width: 95%;
	max-width: 1200px;
	padding: 150px 0 100px 0;
	margin: 0 auto;
}
.aboutArea .greeting > * {
  display: block;
  color: #000;
  text-align: center;
}
.aboutArea .greeting h2 {
  font-size: 3.5vw;
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1.3;
	margin: 0 0 25px 0px;
}

.aboutArea .greeting h3 {
  font-size: 1.4vw;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 80px 0;
}
.aboutArea .greeting .txt_area {
	width:95%;
  color: #333;
  font-size: 1em;
  font-weight: 500;
  margin: 0 auto 40px auto;
}
.aboutArea .greeting .signiture em {
  font-size: 0.95em;
  font-weight: 500;
}
.aboutArea .greeting .signiture strong {
  display: block;
  font-weight: 600;
}

.aboutArea .identity {
  width: 100%;
  height: 5500px;
  position: relative;
  overflow: inherit;
  padding: 0;
  margin-top: 200px;
}
.aboutArea .inBox .sticky_box {
  position: sticky;
  top: 35%;
}
.aboutArea .identity .inner {
  position: relative;
  width: 1200px;
  height: 100vh;
  margin: 0 auto;
}
.aboutArea .title_box h2 {
  color: #000;
  font-size: 3.2em;
  font-weight: 600;
  line-height: 1.1;
}
.aboutArea .title_box h3 {
  color: #666;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 30px;
}

.aboutArea .circle-slide-display {
  width: 40rem;
  margin: 0 auto;
  &.act1 {
    margin-right: 0rem;
  }
}
.aboutArea .circle-slide-display .circle-slide-wrap {
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn {
  position: relative;
  transition: 0.4s ease;
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside {
  width: 34rem;
  height: 34rem;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  background: #000 url(../../images/about_circle_bg01.jpg) no-repeat bottom center;
  transition: 0.4s ease;
  margin: 30px auto 0 150px;
  z-index: 1;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-head {
  width: 100%;
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  margin: 0 auto;
  z-index: 1;
  transition: 0.4s ease;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-head .tit {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 4rem;
  color: #fff;
  text-align: center;
  letter-spacing: -0.5px;
	line-height: 1.1;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-head .s-tit {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.6rem;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-head .desc {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  padding: 30px 50px 0 50px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-head .s-tit + .tit {
  margin-top: 1.4rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data {
  width: 36rem;
  position: absolute;
  left: 36rem;
  top: 0;
  transition: 0.4s ease;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item {
  width: 36rem;
  height: 36rem;
  display: flex;
  align-items: center;
  padding: 0 20px 0px 0;
  justify-content: center;
  flex-direction: column;
  transition: 0.4s ease;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item .data-item-wrap {
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  transform: scale(1);
  width: 36rem;
  height: 36rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item .data-item-wrap img,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item .data-item-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid lime;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item .data-item-wrap:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item.item1 .data-item-wrap {
  width: 36rem;
  height: 36rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item.item2 .data-item-wrap,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item.item3 .data-item-wrap {
  width: 36rem;
  height: 36rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item.item3 .data-item-wrap {
  transform: scale(1) rotate(30deg);
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .inside .inside-bg {
  height: 36rem;
  width: 36rem;
  background: url(/assets/images/photo/main/knowhow-circle-bg.svg) no-repeat 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s ease;
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-data {
  width: 100%;
  height: 36rem;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s ease;
  padding: 0 0 30px 0;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  color: #000;
  position: absolute;
  display: -webkit-box;
  /*
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
	*/
  overflow: hidden;
  transition: 0.4s ease;
  width: 14rem;
  height: auto;
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item em.txt_s {
  font-size: 18px;
  font-style: normal;
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item1 {
  top: 1.6em;
  left: -2.5rem;
  text-align: left;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item2 {
  bottom: 23rem;
  left: -3em;
  text-align: left;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item3 {
  bottom: 17rem;
  left: -3rem;
  text-align: left;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-bg {
  width: 36rem;
  height: 36rem;
  position: absolute;
  top: 35%;
  left: 0%;
  transform: translate(-20%, -50%);
  border: 5px solid #f4f4f4;
  border-radius: 50%;
  transition: 0.4s ease;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot {
  width: 25px;
  height: 25px;
  background-color: #33c3df;
  border-radius: 100%;
  border: 7px solid #c1edf5;
  position: absolute;
  transition: 0.2s ease;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot1 {
  top: 8.5rem;
  left: 2rem;
  transform: translateX(-50%) !important;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot2 {
  bottom: 18rem;
  left: -1em;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot3 {
  bottom: 10.5rem;
  left: 0.3rem;
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item {
  width: 30rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  left: -29rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  right: -29.5rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item {
  width: 20rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  left: -19.5rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  right: -19.5rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item {
  width: 21rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  left: -20rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  right: -20rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info {
  width: 44.2rem;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 1;
  transition: 0.4s ease;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list {
  height: 100%;
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item {
  height: 100vh;
  display: flex;
  width: 70%;
  /* align-items: center; */
  /* justify-content: center; */
  transform: scale(1.7);
  transform-origin: top left;
  transition: 0.4s ease;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-wrap .item-head .num {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 120%;
  color: #000;
  position: relative;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-wrap .item-head .num + .tit {
  margin-top: 0.5rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-wrap .item-head .tit {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.1;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #000;
}
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info:nth-child(1) {
  font-size: 1.85rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-wrap .item-head + .item-body {
  width: 90%;
  margin-top: 1.2rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-wrap .item-body .des {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
  word-break: keep-all;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head {
  max-width: 38.5rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num {
  font-size: 3.2rem;
  font-weight: 700;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num + .tit,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num + .tit,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num + .tit {
  margin-top: 4.4rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num:before,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num:before,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .num:before {
  content: '';
  top: 1.8rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .tit,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .tit,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head .tit {
  font-size: 4.4rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head + .item-body,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head + .item-body,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-head + .item-body {
  margin-top: 4rem;
}

.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-body .des,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-body .des,
.aboutArea .circle-slide-display .circle-slide-wrap .circle-slide-info .info-list .info-item .item-body .des {
  font-size: 2.4rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn {
  /* edit */
  /* margin-left: 65.9rem; */
  margin-left: 0rem;
}
.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .inside {
  transform: scale(0.86);
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .inside .inside-head {
  left: -40rem;
  transform: scale(0.9);
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .inside .inside-data {
  left: 0;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item.item1 {
  transform: scale(1);
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .inside .inside-bg {
  transform: rotate(-90deg);
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-data {
  transform: scale(0.86) rotate(-90deg);
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item {
  transform: rotate(90deg) scale(1.14);
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item1 {
  top: 0rem;
  left: 25rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item2 {
  width: 150px;
  font-weight: 500;
  font-size: 1.1rem;
  text-align: left;
  left: 14rem;
  bottom: 32rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item3 {
  font-size: 1.2rem;
  font-weight: 500;
  left: 36.5rem;
  bottom: 20rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-bg {
  width: 36rem;
  height: 36rem;
  border: 4px solid #f4f4f4;
  transform: rotate(-20deg) scale(0.86);
  top: -8rem;
  left: -6rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot1 {
  background-color: #33c3df;
  border-color: #c1edf5;
  transform: scale(0.72);
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot2 {
  background-color: #fff;
  border-color: #c1edf5;
  transform: scale(0.72);
  left: 0rem;
  bottom: 11.5rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot3 {
  background-color: #fff;
  border-color: #c1edf5;
  transform: scale(0.425);
  left: 31.5rem;
  bottom: 27.5rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-info {
  opacity: 1;
  top: 0;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-info .info-list .info-item.item1 {
  transform: scale(1);
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 2.8rem;
  top: -23.5rem;
  left: 18.7rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 1.8rem;
  bottom: 14.5rem;
  left: -18rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.6rem;
  bottom: 8rem;
  right: -16rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 2.8rem;
  left: 23.7rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 1.8rem;
  bottom: 14.7rem;
  left: -13.5rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.6rem;
  bottom: 11rem;
  right: -12rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 1.8rem;
  top: -20rem;
  left: 23rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 1.8rem;
  bottom: 14.7rem;
  left: -13.5rem;
}

.aboutArea .circle-slide-display.act1 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.6rem;
  bottom: 11.5rem;
  right: -12rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .inside .inside-data {
  top: -100%;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item.item2 {
  transform: scale(1.2);
  margin-top: -3rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .inside .inside-bg {
  transform: rotate(30deg);
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-data {
  transform: scale(0.86) rotate(30deg);
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item {
  transform: rotate(-30deg) scale(1.14);
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item1 {
  font-size: 1.2rem;
  font-weight: 500;
  top: 1rem;
  left: -7rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item2 {
  width: 240px;
  bottom: 17rem;
  left: -7rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item3 {
  font-size: 1.2rem;
  bottom: 9rem;
  left: 3rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-bg {
  width: 36rem;
  height: 36rem;
  border: 1px solid #eaeaea;
  transform: rotate(-317deg) scale(0.86);
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot1 {
  background-color: #fff;
  border-color: #c1edf5;
  transform: scale(0.425);
  top: 12.5rem;
  left: 0.7rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot2 {
  background-color: #33c3df;
  border-color: #c1edf5;
  transform: scale(1);
  bottom: 6rem;
  left: 3rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot3 {
  background-color: #fff;
  border-color: #c1edf5;
  transform: scale(0.72);
  bottom: -0.5rem;
  left: 15rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-info {
  top: -100vh;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-info .info-list .info-item.item2 {
  transform: scale(1);
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 1.6rem;
  top: -10rem;
  left: 21rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 2.4rem;
  bottom: 2.5rem;
  left: -27rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.6rem;
  bottom: 7rem;
  right: -14.5rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 1.6rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 2.8rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.6rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 1.3rem;
  top: -9rem;
  left: 22.5rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 2.4rem;
  bottom: 5rem;
}

.aboutArea .circle-slide-display.act2 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.3rem;
  bottom: 7.5rem;
  right: -9rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .inside .inside-data {
  top: -200%;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .inside .inside-data .data-item.item3 {
  transform: scale(1);
  rotate: -30deg;
  margin-top: -2rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-data {
  transform: scale(0.86) rotate(150deg);
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item {
  transform: rotate(-150deg) scale(1.14);
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item1 {
  font-size: 1.2rem;
  top: 23rem;
  left: 25rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item2 {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  bottom: -8rem;
  left: 10rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-data .data-item.item3 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  left: 12em;
  bottom: -1.5rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-bg {
  width: 36rem;
  height: 36rem;
  border: 1px solid #eaeaea;
  transform: rotate(-315deg) scale(0.86);
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot1 {
  background-color: #fff;
  border-color: #c1edf5;
  transform: scale(0.72);
  top: 35rem;
  left: 15rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot2 {
  background-color: #fff;
  border-color: #c1edf5;
  transform: scale(0.425);
  left: 0.5rem;
  bottom: 24rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .outside-bg .dot.dot3 {
  background-color: #33c3df;
  border-color: #c1edf5;
  transform: scale(1);
  left: 3rem;
  bottom: 6rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-info {
  top: -200vh;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-info .info-list .info-item.item3 {
  transform: scale(1);
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 1.8rem;
  top: -9.5rem;
  left: 22.5rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 1.6rem;
  bottom: 12.5rem;
  left: -18.5rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.8rem;
  bottom: 2rem;
  right: -26.5rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 1.8rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 1.6rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.8rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item1 {
  font-size: 1.8rem;
  top: -8.5rem;
  left: 27rem;
}

.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item2 {
  font-size: 1.6rem;
  bottom: 10.5rem;
  left: -11.5rem;
}
.aboutArea .circle-slide-display.act3 .circle-slide-wrap .circle-slide-turn .outside .data-item.item3 {
  font-size: 1.8rem;
  bottom: 4.5rem;
  right: -18.5rem;
}

.aboutArea .sec02 {
  padding: 120px 0 50px 0;
  border-top: 1px solid #eaeaea;
}
.aboutArea .sec02 .imgArea {
  display: grid;
  margin: 80px auto 0 auto;
  padding-left: 100px;
  max-width: 1300px;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 120px;
}
.aboutArea .sec02 .title_box {
  width: 1200px;
  margin: 0 auto;
}
.aboutArea .sec02 .title_box h3 {
  display: inline-block;
  width: 400px;
}
.aboutArea .sec02 .imgArea .item_box {
  display: inline-block;
}
.aboutArea .sec02 .imgArea .item_box .imgs {
  overflow: hidden;
}
.aboutArea .sec02 .imgArea .item_box:nth-child(1) {
  margin-top: 100px;
}
.aboutArea .sec02 .item_box:nth-child(2) {
  margin-top: -190px;
  padding-left: 100px;
}
.aboutArea .sec02 .item_box:nth-child(3) {
  margin: 50px 0 0 0px;
}
.aboutArea .sec02 .item_box:nth-child(4) {
  margin: -40px 0 60px 0;
}

.aboutArea .sec02 .txt_box {
  margin-top: 10px;
}
.aboutArea .sec02 .txt_box h3 {
  color: #000;
  font-size: 1.5em;
  font-weight: 600;
	padding: 5px 0;
}
.aboutArea .sec02 .txt_box .txt {
	position: relative;
  color: #666;
  font-size: 1em;
  font-weight: 400;
	line-height: 1.2;
	padding:0 0 3px 12px;
	&::before {
		content: '';
		position: absolute;
		top:6px;
		left:0;
		display: inline-block;
		width:4px;
		height: 4px;
		background: #ddd;
		border-radius: 50%;
	}
}

.aboutArea .sec_busi {
  border-top: 1px solid #eaeaea;
  margin-top: 120px;
  padding-bottom: 100px;
}
.aboutArea .sec_busi .title_box {
  display: block;
  text-align: center;
  margin-bottom: 100px;
}
.aboutArea .sec_busi .title_box h3 {
  color: #000;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0px 0;
}
.aboutArea .sec_busi .title_box h1 {
  color: #000;
  font-size: 3.4em;
  font-weight: 600;
  padding: 4px 0;
}
.aboutArea .sec_busi .sec_body {
  display: flex;
  justify-content: space-around;
}
.aboutArea .sec_busi .sec_body .img_box {
  display: flex;
  position: relative;
  align-items: center;
  margin: 50px 0 0 80px;
}
.aboutArea .sec_busi .sec_body .img_box .title {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  width: 220px;
  height: 220px;
  text-align: center;
  background: #33c3df;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}
.aboutArea .sec_busi .sec_body .img_box .title .title_outline {
  position: absolute;
  display: inline-block;
  width: 236px;
  height: 236px;
  transform: translate(-8px, 0px);
  border: 2px dotted #33c3df;
  border-radius: 50%;
}
.aboutArea .sec_busi .sec_body .img_box .title span {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.4;
}
.aboutArea .sec_busi .sec_body .img_box .item_box {
  width: 500px;
  height: 500px;
  border: 3px solid #eee;
  border-radius: 50%;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item {
  position: absolute;
  width: 125px;
  height: 125px;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  padding: 35px 8px;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item h3 {
  color: #000;
  font-size: 1.1em;
	line-height: 1.1;
	font-weight: 500;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item p {
  color: #777;
  font-size: 0.9em;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item:nth-child(1) {
  top: 30px;
  left: 0px;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item:nth-child(2) {
  top: -50px;
  left: 35%;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item:nth-child(3) {
  top: 30px;
  right: 0px;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item:nth-child(4) {
  top: 200px;
  right: -50px;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item:nth-child(5) {
  bottom: 0;
  right: 10px;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item:nth-child(6) {
  bottom: -50px;
  left: 39%;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item:nth-child(7) {
  bottom: 0px;
  left: 0px;
}
.aboutArea .sec_busi .sec_body .img_box .item_box .item:nth-child(8) {
  top: 200px;
  left: -50px;
}
.aboutArea .sec_busi .sec_body .txt_box {
  display: flex;
  align-items: center;
  margin: 0 50px 0 0;
}
.aboutArea .sec_busi .sec_body .txt_box ul li {
  position: relative;
  color: #000;
  font-size: 1.4em;
  font-weight: 500;
  padding: 4px 0 4px 15px;

  &::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #33c3df;
    border-radius: 50%;
  }
}

.aboutArea .sec03 {
  width: 100%;
  padding-top: 50px;
  margin: 150px 0;
}
.aboutArea .sec03 h3 {
  position: relative;
  display: block;
  color: #000;
  font-size: 3.6em;
  font-weight: 600;
  text-align: center;
}
.aboutArea .sec03 h3:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: #000;
}
.aboutArea .sec03 .group_box {
  width: 100%;
  margin-top: 220px;
  border-top: 1px solid #333;
}
.aboutArea .sec03 .group_box > *,
.aboutArea .sec03 .group_box .group_list li > * {
  color: #000;
}
.aboutArea .sec03 .group_box .txt_ceo {
  position: relative;
  display: block;
  width: 100%;
  font-size: 2.8em;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  margin-top: -100px;
}
.aboutArea .sec03 .group_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 94%;
  max-width: 1300px;
  margin: 80px auto 0 auto;
}
.aboutArea .sec03 .group_list:before {
  content: '';
  position: absolute;
  top: -30px;
  display: block;
  width: 76%;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: none;
  margin: 0 12%;
}
.aboutArea .sec03 .group_list li {
  display: inline-block;
  width: 160px;
  text-align: center;
  margin: 0 10px;
  vertical-align: top;
}
.aboutArea .sec03 .group_list li strong {
  display: block;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
  margin: 0 auto 15px auto;
}
.aboutArea .sec03 .group_list li p.txt {
  color: #666;
  font-size: 1.1em;
}

.aboutArea .sec04 {
  width: 100%;
  height: 10000px;
  margin: 200px 0 0 0;
  position: relative;
  overflow: inherit;
  padding: 0;
}

.aboutArea .sec04 .sticky_box {
  position: sticky;
  top: 80px;
}

.aboutArea .sec04 .title_box {
  position: absolute;
  top: 50px;
  left: 5%;
  margin: 0 auto;
  z-index: 1;
}
.aboutArea .sec04 .title_box h3 {
  color: #fff;
  font-size: 2.8em;
  font-weight: 500;
}
.aboutArea .sec04 .historyBox {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  padding: 80px 0 50px 0;
  &.on {
    .txt_box h1 {
      color: var(--main-color-white);
      font-size: 8rem;
      transition: all 0.5s ease-in-out;
    }
    .txt_box h3 {
      color: var(--main-color-white);
      font-size: 2.6rem;
      transition: all 0.5s ease-in-out;
    }
  }
  &.on.y2024,
  &.on.y2018,
  &.on.y2013,
  &.on.y2010 {
    z-index: 5;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
    position: relative;
  }
}

.aboutArea .sec04 .sticky_box .y2024,
.aboutArea .sec04 .sticky_box .y2018,
.aboutArea .sec04 .sticky_box .y2013,
.aboutArea .sec04 .sticky_box .y2010 {
  transform: translateY(300px);
}

.aboutArea .sec04 .historyBox:nth-child(1) {
  background: url(../../images/about_history_bg01.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
}
.aboutArea .sec04 .historyBox:nth-child(2) {
  background: url(../../images/about_history_bg02.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
}
.aboutArea .sec04 .historyBox:nth-child(3) {
  background: url(../../images/about_history_bg03.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
}
.aboutArea .sec04 .historyBox:nth-child(4) {
  background: url(../../images/about_history_bg04.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
}
.aboutArea .sec04 .historyBox .txt_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1300px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}
.aboutArea .sec04 .historyBox .txt_box h1 {
  color: #fff;
  font-size: 7.6em;
  font-weight: 600;
  line-height: 1.6;
}
.aboutArea .sec04 .historyBox .txt_box h3 {
  color: #fff;
  font-size: 3.25em;
  font-weight: 400;
  line-height: 1.2;
}
.aboutArea .sec04 .historyBox .item_list {
  position: relative;
  padding: 20px 0 30px 0;
}
.aboutArea .sec04 .historyBox .item_list:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.8);
}
.aboutArea .sec04 .historyBox .item_list li {
  left: 50%;
  width: 50%;
  margin: 0 0 40px 0;
  padding: 50px 0 0 70px;

  &::before {
    content: '';
    position: absolute;
    left: 50%;
    border-radius: 100%;
    width: 22px;
    height: 22px;
    margin: 10px 0 0 0;
    background: #49e0fd;
    transform: scale(0);
  }
  &.on {
    &::before {
      transform-origin: 0% 50%;
      transform: scale(1) translate(-49%, 100%);
      transition: all 0.4s ease-in-out;
    }
    h3 {
      font-size: 3.5rem;
      transition: all 0.4s ease-in-out;
    }
    .txt_box .txt {
      font-size: 1.15rem;
      transition: all 0.4s ease-in-out;
    }
  }
}
.aboutArea .sec04 .historyBox.y2010 .item_list li {
  &::before {
    margin: -10px 0 0 0;
  }
}
.aboutArea .sec04 .historyBox .item_list li h3:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(100%) scale(0);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: var(--main-color-white);
}

.aboutArea .sec04 .historyBox .item_list h3,
.aboutArea .sec04 .historyBox .item_list .txt_box .txt {
  color: #fff;
  word-break: keep-all;
}

.aboutArea .sec04 .historyBox .item_list h3 {
  font-size: 3rem;
  font-weight: 600;
}
.aboutArea .sec04 .historyBox .item_list .txt_box {
  position: relative;
  width: 100%;
  display: block;
  text-align: left;
  left: unset;
  transform: unset;
  margin-left: unset;
}
.aboutArea .sec04 .historyBox .item_list .txt_box .txt {
  font-size: 1.2rem;
  line-height: 1.3;
}
.aboutArea .sec04 .historyBox.y2013 .item_list {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 20px 0 30px 0;
}
.aboutArea .sec04 .historyBox.y2013 .item_list li {
  margin: 0 0 20px 50%;
}
.aboutArea .sec04 .historyBox.y2010 .item_list {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 20px 0 30px 0;
  z-index: 200;
}
.aboutArea .sec04 .historyBox.y2010 .item_list h3 {
  display: inline-block;
  width: 280px;
  font-size: 3em;
  font-weight: 600;
  line-height: 1;
  padding-right: 20px;
}
.aboutArea .sec04 .historyBox.y2010 .item_list li {
  display: flex;
	padding: 25px 0 0 50px;
  margin: 0 0 20px 50%;
}
.aboutArea .sec04 .historyBox.y2010 .item_list .txt_box .txt {
  font-size: 1em;
  line-height: 1.2;
	padding-bottom:5px;
}

/**** Business ****/

.busiArea .topBox {
  position: relative;
}
.busiArea .topBox .top_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 150px 0px 80px 100px;
  margin: 0;
  z-index: 2;
}
.busiArea .topBox .top_title h1 {
  color: #fff;
  font-size: 6em;
}
.busiArea .topBox .top_title h3 {
  color: #fff;
}
.busiArea .top_img {
  width: 100%;
  height: 70vh;
  background: url(../../images/busi_top_img.jpg) no-repeat center;
  background-size: cover;
}
.busiArea .inBox {
  margin: 140px 0;
}
.busiArea .mag_box {
  width: 1300px;
  height: 45vh;
  text-align: center;
  padding: 150px 0 0 0;
  margin: 0 auto;
  position: relative;
}
.busiArea .mag_box h2 {
  color: #000;
  font-size: 3.4em;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
}
.busiArea .mag_box h5 {
  color: #000;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 20px;
  letter-spacing: -0.5px;
}
.busiArea .sec01 {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.busiArea .sec01 .sticky_box {
  position: sticky;
  top: 0;
  z-index: 100;
}

.busiArea .sec01 .result_2 {
  z-index: 2;
  &.on {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
.busiArea .sec01 .sec_head {
  display: block;
  color: #fff;
  font-size: 3.6em;
  font-weight: 600;
  text-align: center;
  background: #000;
  padding: 100px 0 0 0;
}
.busiArea .sec01 .sec_body {
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: inherit;
  background: #000;
  padding: 70px 4% 150px 4%;
}

.busiArea .sec01 .itemBox {
  position: relative;
  width: 90%;
  height: 850px;
  &.on {
    &::after {
      background-color: rgba(0, 0, 0, 0.4);
      transition: all 1.2s ease-in-out;
    }
  }
}
.busiArea .sec01 .itemBox::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.busiArea .sec01 .itemBox {
  position: relative;
  padding: 60px 0;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto;
}

/**0305-b*/

.busiArea .sec01 .itemBox .item_list {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
	max-width: 920px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.busiArea .sec01 .itemBox .item_list li {
  margin: 80px 0 80px 0;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  &.on {
    h3 {
      word-break: keep-all;
      color: var(--main-color-white);
      font-size: 2.6rem;
      transition: all 0.3s ease-in-out;
    }
    p {
      display: block;
      color: var(--main-color-white);
      font-size: 1.4rem;
      transition: transform 0.3s ease-in-out;
    }
  }
}
.busiArea .sec01 .itemBox .item_list li:first-child {
}
.busiArea .sec01 .itemBox .item_list li h3 {
  display: block;
  font-size: 2em;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 5px;
  background: linear-gradient(to right top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
  color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 5px;
}
.busiArea .sec01 .itemBox .item_list li p {
  color: #fff;
  font-size: 1.3em;
  font-weight: 400;
  margin-top: 15px;
}
.busiArea .sec01 .itemBox .item_list li em {
  display: inline-block;
  color: rgba(255, 255, 255, 1);
  font-size: 0.8em;
  font-style: normal;
  margin-top: 10px;
  line-height: 1.4;
}
.busiArea .sec01 .itemBox .item_list li:hover,
.busiArea .sec01 .itemBox .item_list li.on {
  opacity: 1;
}
.busiArea .sec01 .itemBox .item_list li:hover h3,
.busiArea .sec01 .itemBox .item_list li:hover p,
.busiArea .sec01 .itemBox .item_list li:hover em,
.busiArea .sec01 .itemBox .item_list li.on h3,
.busiArea .sec01 .itemBox .item_list li.on p,
.busiArea .sec01 .itemBox .item_list li.on em {
  color: rgba(255, 255, 255, 1);
}

.busiArea .sec01 .itemBox:nth-child(1) {
  background: url(../../images/busi_sec01_bg01.jpg) no-repeat center;
  background-size: cover;
}
.busiArea .sec01 .itemBox:nth-child(2) {
  background: url(../../images/busi_sec01_bg02.jpg) no-repeat center;
  background-size: cover;
}
.busiArea .sec01 .itemBox.result_1 {
  height: 70vh;
  margin-bottom: 70px;
}
.busiArea .sec01 .itemBox.result_1 h3.title {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 4.6vw;
  font-weight: 600;
  text-align: center;
  padding: 40px 0 0 0;
  z-index: 1;
}
.busiArea .sec01 .itemBox.result_1 .list01 {
  position: absolute;
  display: flex;
  justify-content: space-around;
  top: 50%;
  left: 50%;
  width: 94%;
  max-width: 1200px;
  transform: translate(-50%, -50%) !important;
  transition: all 0.5s ease-in-out;
  max-width: 1400px;
  z-index: 2;
}
.busiArea .sec01 .itemBox.result_1 .item_list li {
  width: 28.5%;
  height: 260px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 120px 20px 40px 20px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  h3 {
    position: relative;
    font-size: 1.35em;
    color: #fff;
    font-weight: 500;
  }
  p {
    color: #fff;
    font-size: 1em;
    font-weight: 400;
    margin-top: 7px;
		line-height: 1.3;
  }
}
.busiArea .sec01 .itemBox.result_1 .item_list li.on,
.busiArea .sec01 .itemBox.result_1 .item_list li:hover {
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
  scale: 1.15;
  h3 {
    position: relative;
    font-size: 1.5em;
    color: #fff;
    font-weight: 500;
  }
  p {
    color: #fff;
    font-size: 1em;
    font-weight: 400;		
    margin-top: 7px;
  }
}
.busiArea .sec01 .itemBox.result_1 .list01 li h3:before {
  content: '';
  position: absolute;
  top: -90px;
  left: 50%;
  display: inline-block;
  width: 70px;
  height: 70px;
  transform: translateX(-50%);
  background-size: 70px 70px;
}
.busiArea .sec01 .itemBox.result_1 .list01 li:nth-child(1) h3:before {
  background: url(../../images/busi_sec01_icon01.png) no-repeat center;
}
.busiArea .sec01 .itemBox.result_1 .list01 li:nth-child(2) h3:before {
  background: url(../../images/busi_sec01_icon02.png) no-repeat center;
}
.busiArea .sec01 .itemBox.result_1 .list01 li:nth-child(3) h3:before {
  background: url(../../images/busi_sec01_icon03.png) no-repeat center;
}

.busiArea .sec01 .itemBox:nth-child(2) {
  background: url(../../images/busi_sec01_bg02.jpg) no-repeat center;
  background-size: cover;
}
.busiArea .sec01 .itemBox.result_2 {
}
.busiArea .sec01 .itemBox.result_2 .item_list li p {
  font-size: 1em;
  line-height: 1.3;
}
.busiArea .sec02 {
  width: 100%;
  max-width: 1300px;
  margin: 120px auto 50px auto;
}
.busiArea .sec02 .sec_head {
  display: block;
  color: #000;
  font-size: 3.6em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 80px;
}
.busiArea .sec02 .sec_body {
  overflow: hidden;
}
.busiArea .sec02 .itemBox {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #111;
  margin: 140px 0;
  padding-bottom: 120px;
  overflow: hidden;
}
.busiArea .sec02 .itemBox:first-child {
  margin: 30px 0 140px 0;
}
.busiArea .sec02 .itemBox:last-child {
  border: none;
  padding-bottom: 20px;
  margin: 140px 0 0 0;
}
.busiArea .sec02 .itemBox:nth-child(even) {
  flex-direction: row-reverse;
}
.busiArea .sec02 .itemBox .txt_box {
  display: block;
  width: 350px;
  margin: 25px auto;
}
.busiArea .sec02 .itemBox .txt_box .title h3 {
  display: block;
  color: #000;
  font-size: 3.8em;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
.busiArea .sec02 .itemBox .txt_box .title .txt span {
  display: inline-block;
  color: #000;
  font-size: 1.7em;
  font-weight: 500;
}
.busiArea .sec02 .itemBox .txt_box .title .txt em {
  display: inline-block;
  color: #333;
  font-size: 1.2em;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase; 
}
.busiArea .sec02 .itemBox .txt_box .flag {
  display: block;
  margin: 30px 0 20px 0;
}
.busiArea .sec02 .itemBox .txt_box .desc_box {
  display: block;
  margin: 60px 0 0 0;
}
.busiArea .sec02 .itemBox .txt_box .desc_box dl {
  display: block;
  overflow: hidden;
}
.busiArea .sec02 .itemBox .txt_box .desc_box dl dt,
.busiArea .sec02 .itemBox .txt_box .desc_box dl dd {
  display: inline-block;
  color: #000;
  font-size: 0.95em;
  padding: 2px 0;
}
.busiArea .sec02 .itemBox .txt_box .desc_box dl dt {
  width: 23%;
	font-weight: 500;
	vertical-align: top;
}
.busiArea .sec02 .itemBox .txt_box .desc_box dl dd {
  width: 72%;
	color:#333;
  font-weight: 400;
}
.busiArea .sec02 .itemBox .txt_box .desc_box p {
  color: #000;
  font-size: 1.1em;
  font-weight: 500;
}
.busiArea .sec02 .itemBox .row {
  width: auto;
  padding: 20px 70px;
  margin: 0 auto;
  border-radius: 25px;
}

.busiArea .sec02 .itemBox .con_box {
  display: flex;
  justify-content: space-between;
  width: 98%;
  margin: 0 auto;
}
.busiArea .sec02 .itemBox .con_box .txt_box {
  position: relative;
  overflow: hidden;
  width: 30%;
  padding-left: 40px;
}
.busiArea .sec02 .itemBox .con_box .txt_box dl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.busiArea .sec02 .itemBox .con_box .txt_box dl dt {
  color: #000;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 35px 0 5px 0;
}
.busiArea .sec02 .itemBox .con_box .img_box {
  width: 70%;
}
.busiArea .sec02 .itemBox .con_box .img_box img {
  width: 100%;
  max-width: 840px;
}
.busiArea .sec03 {
  background: #f4f4f4;
  padding: 140px 0 100px 0;
  margin: 140px 0 0 0;
}
.busiArea .sec03 .conWrap {
  display: flex;
  justify-content: space-between;
}
.busiArea .sec03 .conWrap {
  display: flex;
  justify-content: space-between;
}
.busiArea .sec03 .sec_head {
  width: 25%;
  color: #000;
  font-size: 3.8em;
  font-weight: 600;
  line-height: 1.1;
}
.busiArea .sec03 .sec_head p.txt {
  display: block;
  color: #666;
  font-size: 17px;
  line-height: 1.5;
  margin-top: 20px;
}
.busiArea .sec03 .sec_body {
  width: 70%;
}
.busiArea .sec03 .solutionBox {
  display: block;
  width: 100%;
}
.busiArea .sec03 .solutionBox .item_box {
  position: relative;
  display: inline-block;
  width: 45%;
  height: 320px;
  color: #fff;
  border-radius: 20px;
  margin: 0 0% 40px 4%;
  vertical-align: top;
  overflow: hidden;
}
.busiArea .sec03 .solutionBox .item_box .cover_img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  opacity: 0;
  transition: ease-in-out 0.3s;
}
.busiArea .sec03 .solutionBox .item_box:hover .cover_img {
  opacity: 1;
  transform: scale(1.07);
  transition: ease 0.3s;
}
.busiArea .sec03 .solutionBox .item_box .item {
  width: 100%;
  height: 100%;
  padding: 25px 30px 10px 40px;
}
.busiArea .sec03 .solutionBox .item_box:hover .item {
  transition: ease-in-out 0.3s;
}
.busiArea .sec03 .solutionBox .item_box:nth-child(1) {
  background: #bdb792;
}
.busiArea .sec03 .solutionBox .item_box:nth-child(2) {
  background: #94ad7d;
}
.busiArea .sec03 .solutionBox .item_box:nth-child(3) {
  background: #aa8a82;
}
.busiArea .sec03 .solutionBox .item_box:nth-child(4) {
  background: #8a9ca0;
}
.busiArea .sec03 .solutionBox .item_box .item h3,
.busiArea .sec03 .solutionBox .item_box .item .txt_box li {
  color: #fff;
}
.busiArea .sec03 .solutionBox .item_box .item h3 {
  position: relative;
  display: block;
  font-size: 1.5em;
  font-weight: 600;
	line-height: 1.1;
  margin: 13px 0 15px 0;
}
.busiArea .sec03 .solutionBox .item_box .txt_box li {
  position: relative;
  font-size: 0.95em;
  line-height: 1.3;
  letter-spacing: -0.5px;
  padding: 2px 0 2px 13px;
}
.busiArea .sec03 .solutionBox .item_box .txt_box li:before {
  content: '-';
  position: absolute;
  top: 2px;
  left: 0;
}

/**** Product ****/

.proArea .top_title {
}
.proArea .top_img {
  width: 100%;
  height: 75vh;
  background: url(../../images/pro_top_img.jpg) no-repeat center;
  background-size: cover;
}
.proArea .top_txt {
  display: block;
  width: 100%;
  text-align: center;
  margin: 150px 0;
}
.proArea .top_txt h3 {
  color: #000;
	font-size: 2.8vw;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.5px;
	padding: 0 0 15px 0;
}
.proArea .top_txt h1 {
  color: #000;
  font-size: 4vw;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.5px;
}
.proArea .inBox {
  padding: 90px 0;
}
.proArea .sec_head {
  display: block;
  color: #000;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 35px 20px;
}
.proArea .sec_head strong,
.proArea .sec_head span {
	color:#000
}
.proArea .sec_head em {
  font-size: 0.9em;
  font-weight: 400;
}
.proArea .product {
  display: flex;
}
.proArea .product .sec_head {
  width: 18%;
	text-transform: uppercase;
  margin-right: 2%;
}
.proArea .product .sec_head strong,
.proArea .product .sec_head span {
	font-weight: 600;
}
.proArea .product .sec_body {
  width: 80%;
}
.proArea .product .systemBox {
  display: flex;
  justify-content: space-between;
  margin: 0 15px;
}
.proArea .product .systemBox .item_box {
  position: relative;
  width: 30%;
  vertical-align: top;
  overflow: hidden;
}
.proArea .product .systemBox .item_box .item {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 230px;
  border-radius: 20px;
  background: #f1f3f5;
  padding: 5px 15px 5px 15px;
}
.proArea .product .systemBox .item_box .item img {
  border: 2px solid #000;
  border-radius: 3px;
  margin: 0 auto;
}
.proArea .product .systemBox .item_box h3 {
  display: block;
  color: #000;
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  padding: 13px 5px;
}
.proArea .product .txt_box {
  margin: 30px 0 0 0;
}
.proArea .product .txt_box h3 {
  display: block;
  font-size: 1.1em;
  color: #000;
  font-weight: 600;
  border-bottom: 1px solid #e2e2e2;
  padding: 8px;
}
.proArea .product .txt_box .txt_desc {
  display: flex;
  margin: 20px 6px;
}
.proArea .product .txt_box .txt_desc ul {
  width: 45%;
}
.proArea .product .txt_box .txt_desc ul li {
  position: relative;
  color: #666;
  font-size: 1em;
  letter-spacing: -0.5px;
  padding: 2px 0 2px 14px;
}
.proArea .product .txt_box .txt_desc ul li:after {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  background: #d4d4d4;
  border-radius: 50%;
}
.proArea .product .systemBox .item_box .item h3 {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
}
.proArea .sec01 .systemBox .item_box .item:hover h3 {
  font-size: 1.2em;
  color: #000;
  background: rgba(255, 255, 255, 1);
  transition: ease-in-out 0.3s;
}
.proArea .product.sec02 .systemBox .item_box .item img {
  border: none;
}
.proArea .sec03 {
  width: 100%;
  background: #f4f4f4;
}
.proArea .sec03 .inner {
	width:100%;
	max-width:1200px;
}
.proArea .sec03 .sec_head {
  margin: 0px;
}
.proArea .sec03 .sec_body .systemBox {
  display: flex;
  justify-content: space-between;
	border-bottom: 1px solid #ccc;
	padding:80px 0;
}
.proArea .sec03 .sec_body .systemBox:nth-child(even) {
	flex-direction: row-reverse;
}
.proArea .sec03 .sec_body .systemBox:last-child {
	border: none;
	padding: 80px 0 0 0;
}
.proArea .sec03 .systemBox .txt_box {
	width:40%;
}
.proArea .sec03 .systemBox .txt_box h3.title {
  display: block;
  width: 100%;
	color: #000;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.2;
  margin: 30px 0 20px 0;
}
.proArea .sec03 .systemBox .txt_box .desc_box {
  display: block;
  width: 100%;
}
.proArea .sec03 .systemBox .txt_box .desc_box ul {
  width: 100%;
}
.proArea .sec03 .systemBox .txt_box .desc_box li {
	position: relative;
	color: #666;
  font-size: 1em;
  line-height: 1.3;
  padding: 2px 0 2px 12px;
}
.proArea .sec03 .systemBox .txt_box .desc_box li:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
}
.proArea .sec03 .systemBox .img_box {
  display: flex;
  width: 50%;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  scale: 0.9;
  transform-origin: top left;
}
.proArea .sec03 .systemBox .img_box .imgs {
}
.proArea .sec03 .systemBox .img_box img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

/**** Contact ****/
.contact {
}
.contact .top_title {
  display: block;
  position: relative;
  padding: 50px 0 30px 30px;
}
.contact .top_title h1 {
  color: #000;
}
.contact .inner {
  display: flex;
  justify-content: space-around;
	width: 100%;
  max-width: 1300px;
}
.contact .contents {
  display: block;
  color: #fff;
  background: #000;
  padding: 140px 0;
}
.contact .contents .con_item h3 {
  display: block;
  height: 55px;
  color: #fff;
  font-size: 2.4em;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.contact .contents .con_item .addr_list > *,
.contact .contents .con_item .cs_list > * {
  color: #fff;
}
.contact .contents .con_item .addr_list {
  display: block;
  margin: 0 0 18px 0;
}
.contact .contents .con_item .addr_list dt {
  font-size: 1em;	
}
.contact .contents .con_item .addr_list dd {
	color:#aaaaaa;
}
.contact .contents .con_item .cs_list {
  display: flex;
  align-items: center;
  margin: 0 0 18px 0;
}
.contact .contents .con_item .cs_list dt {
  width: 60px;
	color:#aaa;
  font-size: 16px;
}
.contact .contents .con_item .cs_list dd strong {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}
.contact .map_box {
  display: block;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
