@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Roboto:wght@300;400;500;700;900&display=swap");
html,
body {
  min-height: 100%;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
span,
object,
iframe,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
a,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
textarea,
select,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
button,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: Noto Sans KR, HelveticaNeue, AppleSDGothicNeo, Malgun Gothic,
    sans-serif;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

article,
aside,
canvas,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-font-smooting: antialiased;
  -moz-font-smoothing: grayscale;
}

input,
button,
select,
optgroup,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

img {
  vertical-align: top;
}

img,
fieldset {
  border: 0;
}

hr {
  display: none;
}

legend,
caption {
  display: none;
  clear: both;
}

a,
a:visited {
  color: #000;
}

a:link {
  text-decoration: none;
}

a:hover,
a:active {
  color: #222;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

em,
i,
address,
cite {
  font-style: normal;
  font-weight: normal;
}

input,
textarea,
select,
button,
table {
  color: #222;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

textarea,
input {
  outline-color: -moz-use-text-color;
  outline-style: none;
  outline-width: medium;
}

textarea {
  resize: none;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  border-collapse: collapse;
  font-weight: normal;
}

input[type="button"],
input[type="text"],
input[type="image"],
input[type="submit"],
input[type="password"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input:checked[type="checkbox"] {
  background-color: #fff;
  -webkit-appearance: checkbox;
}

button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  line-height: normal;
  border: 0;
}

input::-ms-input-placeholder {
  color: #bbb;
}

input::-webkit-input-placeholder {
  color: #bbb;
}

input::-moz-placeholder {
  color: #bbb;
}

textarea::-ms-input-placeholder {
  color: #bbb;
}

textarea::-webkit-input-placeholder {
  color: #bbb;
}

textarea::-moz-placeholder {
  color: #bbb;
}

.f_clear {
  display: block;
  min-height: 1px;
}

.f_clear:after {
  content: "";
  height: 0;
  display: block;
  visibility: hidden;
  clear: both;
}

.clr {
  clear: both;
  width: 0;
  padding: 0;
  font: 0/0 Arial;
}

.word {
  word-wrap: break-word;
  word-break: break-all;
}

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

.dimmed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}

.a11y,
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip-path: polygon(0 0, 0 0, 0 0);
  clip: rect(0, 0, 0, 0);
}

/* Placeholder */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: 400;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  font-weight: 400;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-weight: 400;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-weight: 400;
}

/* ********************** variables */
:root {
  --view-port: 1920;
}

@media all and (max-width: 1024px) {
  :root {
    --view-port: 1024;
  }
}
@media all and (max-width: 640px) {
  :root {
    --view-port: 360;
    --view-port-h: 680;
  }
}
@keyframes imgFlow {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes imgFlow2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-200%, 0, 0);
  }
}
@keyframes zoomInBannerHeight {
  0% {
    background-size: auto 150%;
  }
  100% {
    background-size: auto 100%;
  }
}
@keyframes zoomInBannerWidth {
  0% {
    background-size: 150% auto;
  }
  100% {
    background-size: 100% auto;
  }
}
.zoom_width {
  animation: zoomInBannerWidth 4s ease-out normal;
}

.zoom_height {
  animation: zoomInBannerHeight 4s ease-out normal;
}

/* //variables  ********************** */
.pc_only {
  display: block;
}

.ta_only {
  display: none;
}

.mo_only {
  display: none;
}

@media all and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
  .ta_only {
    display: block;
  }
  .mo_only {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .pc_only {
    display: none;
  }
  .ta_only {
    display: none;
  }
  .mo_only {
    display: block;
  }
}
.wrap {
  position: relative;
  width: 100%;
  min-width: 280px;
  word-break: keep-all;
}

#skip_navi a {
  overflow: hidden;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

#skip_navi a:focus {
  position: relative;
  width: 100%;
  height: auto;
  padding: 10px;
}

.header {
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 640px) {
  .header.blur {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
  }
}
.header .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1720px;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.header .logo a {
  display: block;
  width: 142px;
  height: 50px;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-image: url(../images/logo_futurewiz.svg);
  mask-image: url(../images/logo_futurewiz.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: none;
  background-color: #fff;
}

.header .btn_gnb_menu {
  display: none;
}

.header .gnb_wrap {
  margin-left: auto;
}

.header .gnb_list {
  display: flex;
  gap: 0 40px;
}

.header .gnb_item {
  margin: 34px 0 27px;
}

.header .gnb_item a {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff;
}

.header .gnb_item a[target*="_blank"] {
  padding: 0 19px 0 0;
}

.header .gnb_item a[target*="_blank"]:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 13px;
  height: 13px;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.66669 13V4.33333L1.00002 4.33333' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M1.4037 12.5973L9.46016 4.54106' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.66669 13V4.33333L1.00002 4.33333' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M1.4037 12.5973L9.46016 4.54106' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #fff;
}

.header .gnb_item a span {
  position: relative;
}

.header .gnb_item a span:before {
  content: "";
  z-index: 2;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: scale(0);
  width: 100%;
  height: 2px;
  transform-origin: 50% 50%;
  transition: transform 0.1s ease-in;
  background-color: #fff;
}

.header .gnb_item a:hover span:before {
  transform: scale(1);
  opacity: 0.4;
}

.header .gnb_item.on span:before {
  transform: scale(1);
}

.header .gnb_item.on:hover span:before {
  opacity: 1;
}

.logo.color a {
  background-image: url(../images/logo_futurewiz.svg);
  background-color: transparent;
}

.gnb_list.color_b .gnb_item a {
  color: #000;
}

.gnb_list.color_b .gnb_item a[target*="_blank"]:after {
  background-image: none;
  background-color: #000;
}

@media screen and (min-width: 640px) {
  .gnb_list.color_b .gnb_item a span:before {
    background-color: #000;
  }
}
.footer {
  display: flex;
  justify-content: center;
  max-width: 2560px;
  margin: 0 auto;
  padding: 60px 60px;
  background-color: #f8f8f8;
}

.footer .copyright {
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.footer .info_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  line-height: 23px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.footer .info_wrap > div:before,
.footer .info_wrap .info + .info:before {
  display: inline-block;
  margin: 0 15px;
  content: "·";
}

.footer .info_wrap > div:first-child:before,
.footer .info_wrap .info:first-child:before {
  display: none;
}

/* Tablet Device */
@media all and (max-width: 1024px) {
  .header {
    background-color: #fff;
    height: 90px;
  }
  .header .inner {
    padding: 0;
    margin: 0 60px;
  }
  .header .logo a {
    width: 142px;
    height: 50px;
    -webkit-mask-image: none;
    mask-image: none;
    background-image: url(../images/logo_futurewiz.svg);
    background-color: transparent;
  }
  .header .btn_gnb_menu {
    display: block;
    margin-left: auto;
    width: 40px;
    height: 40px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2H18' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M2 10H18' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M2 18H18' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-position: 50% 50%;
    background-size: 16px;
    background-repeat: no-repeat;
  }
  .header .gnb_wrap {
    display: none;
    float: none;
    position: absolute;
    top: 90px;
    left: -50%;
    right: -50%;
    background-color: #fff;
  }
  .header .gnb_list {
    padding: 40px 0;
    flex-direction: column;
    gap: 15px;
  }
  .header .gnb_list .gnb_item {
    margin: 0;
  }
  .header .gnb_list .gnb_item a {
    padding: 0;
    color: #000;
    font-size: 20px;
    line-height: 36px;
  }
  .header .gnb_list .gnb_item a[target*="_blank"] span {
    padding: 0 19px;
  }
  .header .gnb_list .gnb_item a[target*="_blank"] span:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.66669 13V4.33333L1.00002 4.33333' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M1.4037 12.5973L9.46016 4.54106' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E%0A");
    mask-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.66669 13V4.33333L1.00002 4.33333' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M1.4037 12.5973L9.46016 4.54106' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E%0A");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    width: 13px;
    height: 13px;
    background-color: #000;
  }
  .header .menu_open.btn_gnb_menu {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4L15.3137 15.3137' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M15.3145 4L4.00074 15.3137' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  }
  .header .menu_open + .gnb_wrap {
    display: block;
  }
  .header .menu_open + .gnb_wrap:before {
    z-index: -1;
    position: fixed;
    left: 0;
    right: 0;
    top: 90px;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
  }
}
/* mobile Device */
@media all and (max-width: 640px) {
  .header {
    height: calc(50 / var(--view-port) * 100vw);
  }
  .header .inner {
    margin: 0 calc(15 / var(--view-port) * 100vw);
  }
  .header .logo a {
    width: calc(116 / var(--view-port) * 100vw);
    height: calc(40 / var(--view-port) * 100vw);
  }
  .header .btn_gnb_menu {
    width: calc(20 / var(--view-port) * 100vw);
    height: calc(20 / var(--view-port) * 100vw);
    background-size: calc(16 / var(--view-port) * 100vw);
  }
  .header .gnb_wrap {
    top: calc(50 / var(--view-port) * 100vw);
  }
  .header .gnb_list {
    padding: calc(40 / var(--view-port) * 100vw) 0;
    gap: calc(15 / var(--view-port) * 100vw);
  }
  .header .gnb_list .gnb_item a {
    font-size: calc(20 / var(--view-port) * 100vw);
    line-height: calc(36 / var(--view-port) * 100vw);
  }
  .header .gnb_list .gnb_item a[target*="_blank"]:after {
    display: none;
  }
  .header .gnb_list .gnb_item a[target*="_blank"] span {
    padding: 0 calc(19 / var(--view-port) * 100vw);
  }
  .header .gnb_list .gnb_item a[target*="_blank"] span:after {
    width: calc(13 / var(--view-port) * 100vw);
    height: calc(13 / var(--view-port) * 100vw);
  }
  .header .menu_open + .gnb_wrap:before {
    top: calc(50 / var(--view-port) * 100vw);
  }
  .footer {
    padding: calc(30 / var(--view-port) * 100vw);
  }
  .footer .info_wrap {
    margin-bottom: calc(10 / var(--view-port) * 100vw);
    line-height: calc(20 / var(--view-port) * 100vw);
    font-size: calc(14 / var(--view-port) * 100vw);
  }
  .footer .info_wrap .info + .info:before {
    margin: 0 calc(12 / var(--view-port) * 100vw);
  }
  .footer .info_wrap > div {
    width: 100%;
  }
  .footer .info_wrap > div:before {
    display: none;
  }
  .footer .copyright {
    font-size: calc(12 / var(--view-port) * 100vw);
    line-height: calc(17 / var(--view-port) * 100vw);
  }
}
.wrap.home {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
}

.home {
  overflow: hidden;
}

.home .container {
  position: relative;
  max-width: 100%;
}

@media all and (min-width: 1024px) {
  .home .container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
    -ms-overflow-style: none;
    scrollbar-width: 0;
  }
  .home .container::-webkit-scrollbar {
    display: none;
  }
}
.home [class*="_section"] {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.home [class*="_section"] .inner {
  width: 100%;
  max-width: 1600px;
  padding: 0 80px;
  margin: 0 auto;
  flex-grow: 1;
}

@media all and (max-width: 1366px) {
  .home [class*="_section"] .inner {
    max-width: 1246px;
    padding: 0 60px;
  }
}
@media all and (max-width: 1024px) {
  .home [class*="_section"] .inner {
    max-width: 100%;
  }
}
@media all and (max-width: 640px) {
  .home [class*="_section"] .inner {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.home .footer_section {
  display: block;
  height: auto;
  width: 100%;
}

.home .footer_section .footer {
  max-width: 100%;
}

.home .btn_more {
  display: inline-block;
  height: 60px;
  padding: 0 30px;
  border-radius: 50px;
  border: 1px solid #dddddd;
  line-height: 60px;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  transition: all 0.3s ease;
}

.home .btn_more.c_white {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

@media all and (min-width: 1367px) {
  .home .btn_more.c_white:hover {
    border-color: #fff;
    background-color: #fff;
    color: #1569ab;
  }
}
.home .btn_more.c_black {
  border-color: #ddd;
}

@media all and (min-width: 1367px) {
  .home .btn_more.c_black:hover {
    border-color: #034fc0;
    background-color: #034fc0;
    color: #fff;
  }
}
.home .txt_wrap {
  position: relative;
}

.home .txt_wrap .txt_tit {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 72px;
  line-height: 104px;
}

.home .txt_wrap .txt_desc {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
}

.home .txt_wrap.txt_white {
  color: #fff;
}

.home .kv_section {
  position: relative;
}

.home .kv_section .kv_img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/home/kv_home.jpg) no-repeat center;
  background-size: cover;
  animation: home_kv_img 12s ease-out;
  animation-fill-mode: forwards;
}

@keyframes home_kv_img {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
.home .kv_section:after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 16px;
  background: url(../images/home/arrow_down.svg) no-repeat 50% 50%;
  background-size: cover;
}

.home .kv_section .fade_txt_wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.home .kv_section .fade_txt_wrap .fade_txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 56px;
  line-height: 72px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.home .kv_section .fade_txt_wrap .fade_txt:nth-child(1) {
  animation: fade_txt_one 0.6s 3s;
  animation-fill-mode: forwards;
}

.home .kv_section .fade_txt_wrap .fade_txt:nth-child(2) {
  opacity: 0;
  animation: fade_txt_two 0.6s 3s;
  animation-fill-mode: forwards;
}

@keyframes fade_txt_one {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-35px);
  }
}
@keyframes fade_txt_two {
  0% {
    transform: translateY(70px);
    opacity: 0;
  }
  100% {
    transform: translateY(35px);
    opacity: 1;
  }
}
.home .service_section .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 20px;
}

.home .service_section .txt_wrap {
  max-width: 380px;
}

.home .service_section .service_list {
  display: flex;
  gap: 0 20px;
  align-items: center;
}

.home .service_section .service_list .service_item {
  flex-shrink: 0;
  border-radius: 150px;
  overflow: hidden;
}

.home .service_section .service_item .item_txt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 300px;
  padding-top: 180px;
  transition: all 0.3s ease;
  text-align: center;
}

.home .service_section .service_item .item_txt:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translate(-50%, 0);
  width: 80px;
  height: 80px;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #000;
  transition: all 0.3s ease;
}

.home .service_section .service_item .item_txt.backoffice:before {
  -webkit-mask-image: url(../images/ico/ico_service03.svg);
  mask-image: url(../images/ico/ico_service03.svg);
}

.home .service_section .service_item .item_txt.rms:before {
  -webkit-mask-image: url(../images/ico/ico_service02.svg);
  mask-image: url(../images/ico/ico_service02.svg);
}

.home .service_section .service_item .item_txt.solution:before {
  -webkit-mask-image: url(../images/ico/ico_service01.svg);
  mask-image: url(../images/ico/ico_service01.svg);
}

.home .service_section .service_item .item_txt:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #999;
  border-radius: 150px;
  content: "";
  box-sizing: border-box;
}

.home .service_section .service_item .item_txt .service_tit {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.home .service_section .service_item .item_txt .service_desc {
  margin-top: 20px;
  opacity: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.home .service_section .service_item .item_txt .dot_desc:before {
  content: "·";
  margin-right: 0.25em;
}

.home .service_section .service_item .item_txt .full_tit {
  margin-bottom: 12px;
}

@media all and (min-width: 1367px) {
  .home .service_section .service_item a:hover .item_txt:before {
    top: 50px;
    background-color: #fff;
  }
  .home .service_section .service_item a:hover .item_txt {
    height: 360px;
    padding-top: 150px;
    background: linear-gradient(301.51deg, #56c65d 10.56%, #024ec0 63.55%);
    color: #fff;
  }
  .home .service_section .service_item a:hover .item_txt:after {
    opacity: 0;
  }
  .home .service_section .service_item a:hover .item_txt .service_desc {
    opacity: 1;
  }
}
.home .about_section {
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(301.51deg, #56c65d 10.56%, #024ec0 63.55%);
}

.home .about_section .inner {
  flex-grow: 0;
}

.home .about_section .txt_wrap {
  position: relative;
  max-width: 460px;
  margin-left: 50%;
}

.home .about_section .point_tit {
  display: block;
  width: 100%;
  max-width: 1600px;
  padding: 0 80px;
  margin: -185px auto 0;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  -webkit-background-clip: text;
  font-weight: 900;
  font-size: 100px;
  line-height: 112px;
  letter-spacing: 0.04em;
  font-family: "Roboto", sans-serif;
}

@media all and (max-width: 1366px) {
  .home .about_section .point_tit {
    max-width: 1246px;
    padding: 0 60px;
  }
}
@media all and (max-width: 1024px) {
  .home .about_section .point_tit {
    max-width: 100%;
  }
}
@media all and (max-width: 640px) {
  .home .about_section .point_tit {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.home .about_section .point_flow_wrap {
  max-width: 2750px;
  margin: 0 auto;
  padding: 0 80px;
}

.home .about_section .point_flow_wrap .flow_track {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.home .about_section .point_flow_wrap .flow_img_wrap {
  flex-shrink: 0;
  display: flex;
  flex-wrap: nowrap;
  height: 300px;
  margin-top: 60px;
}

.home .about_section .point_flow_wrap .flow_img_wrap img {
  width: auto;
  height: 100%;
}

.home .about_section .point_flow_wrap .flow_img_wrap picture {
  flex-shrink: 0;
  height: 100%;
  border-radius: 150px;
  overflow: hidden;
}

.home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(2) {
  margin-left: -100px;
  box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.25);
}

.home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(3) {
  margin-left: 30px;
}

.home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(4) {
  margin-left: 30px;
}

.home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(5) {
  margin-left: -100px;
  box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.25);
}

.home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(6) {
  margin-left: 30px;
}

.home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(7) {
  margin-left: -100px;
  margin-right: 30px;
  box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.25);
}

/* 홈 이미지 흐름 속도 조정 */
.home .about_section .flow_img_wrap:nth-child(1) {
  animation: imgFlow 50s linear infinite;
  animation-delay: -50s;
  will-change: transform;
}

.home .about_section .flow_img_wrap:nth-child(2) {
  animation: imgFlow2 50s linear infinite;
  animation-delay: -25s;
  will-change: transform;
}

.home .culture_section[class*="_section"] .inner {
  max-width: 1920px;
  padding: 0;
  flex-grow: 0;
}

.home .culture_section .txt_wrap {
  max-width: 1600px;
  padding: 0 80px;
  margin: 0 auto;
}

@media all and (max-width: 1366px) {
  .home .culture_section .txt_wrap {
    max-width: 1246px;
    padding: 0 60px;
  }
}
@media all and (max-width: 1024px) {
  .home .culture_section .txt_wrap {
    max-width: 100%;
  }
}
@media all and (max-width: 640px) {
  .home .culture_section .txt_wrap {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.home .culture_section .catch {
  max-width: 50%;
  margin-bottom: 30px;
  padding-right: 20px;
  font-weight: 900;
  font-size: 50px;
  line-height: 59px;
  font-family: "Roboto", sans-serif;
  color: #034fc0;
}

.home .culture_section .culture_list {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  max-width: 50%;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 24px;
}

.home .culture_section .culture_list [class*="item"] {
  display: flex;
  align-items: center;
}

.home .culture_section .culture_list [class*="item"]:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.home .culture_section .culture_list .item01:before {
  background-image: url(../images/ico/ico_culture01.svg);
}

.home .culture_section .culture_list .item02:before {
  background-image: url(../images/ico/ico_culture02.svg);
}

.home .culture_section .culture_list .item03:before {
  background-image: url(../images/ico/ico_culture03.svg);
}

.home .culture_section .img_slide_wrap {
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}

.home .culture_section .img_slide_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .culture_section .img_slide_wrap .slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.home .culture_section .img_slide_wrap .slider_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.home .culture_section .img_slide_wrap .slider_wrapper .slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.home .culture_section .img_slide_wrap .dot_pagination {
  z-index: 10;
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
}

.home .culture_section .img_slide_wrap .dot_wrap {
  z-index: 1;
  position: absolute;
  bottom: 2.77%;
  left: 0;
  right: 0;
  display: flex;
  gap: 0 10px;
  justify-content: center;
}

.home .culture_section .img_slide_wrap .dot_wrap .dot {
  width: 13px;
  height: 13px;
  background-color: #fff;
  opacity: 0.3;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.home .culture_section .img_slide_wrap .dot_wrap .dot.on {
  opacity: 1;
}

/* Tablet Device */
@media all and (max-width: 1366px) {
  .home .service_section .inner {
    flex-direction: column;
    justify-content: center;
    gap: 60px 0;
  }
  .home .service_section .txt_wrap {
    max-width: 100%;
  }
  .home .service_section .service_item a .item_txt:before {
    top: 50px;
    background-color: #fff;
  }
  .home .service_section .service_item a .item_txt {
    height: 360px;
    padding-top: 150px;
    background: linear-gradient(301.51deg, #56c65d 10.56%, #024ec0 63.55%);
    color: #fff;
  }
  .home .service_section .service_item a .item_txt:after {
    opacity: 0;
  }
  .home .service_section .service_item a .item_txt .service_desc {
    opacity: 1;
  }
  .home .about_section .point_tit {
    margin-top: -80px;
    font-size: 80px;
    line-height: 80px;
  }
}
@media all and (max-width: 1024px) {
  .home section[class*="_section"] {
    padding: 200px 0;
    height: auto;
  }
  .home section.kv_section {
    height: 100vh;
  }
  .home .service_section .inner {
    align-items: flex-start;
    padding: 0;
  }
  .home .service_section .txt_wrap {
    padding: 0 60px;
  }
  .home .service_section .service_list {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 42px;
    justify-content: left;
    width: 100%;
    flex-grow: 1;
    scrollbar-width: none;
  }
  .home .service_section .service_list::-webkit-scrollbar {
    display: none;
  }
  .home .service_section .service_list a .item_txt {
    border-radius: 150px;
  }
  .home .about_section .txt_wrap {
    margin-left: 0;
    margin-bottom: 158px;
  }
  .home .about_section .point_tit {
    margin-top: 0;
  }
  .home .about_section .point_flow_wrap {
    padding: 0 60px;
  }
  .home .culture_section[class*="_section"] {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
  }
  .home .culture_section .inner {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    height: 50%;
  }
  .home .culture_section .txt_wrap {
    width: 100%;
  }
  .home .culture_section .catch {
    max-width: 100%;
  }
  .home .culture_section .culture_list {
    max-width: 100%;
  }
  .home .culture_section .img_slide_wrap {
    flex-shrink: 1;
    position: static;
    width: 100%;
    margin-top: 94px;
  }
}
@media all and (max-width: 640px) {
  @keyframes fade_txt_one {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(calc(-45 / var(--view-port) * 100vw));
    }
  }
  @keyframes fade_txt_two {
    0% {
      transform: translateY(calc(90 / var(--view-port) * 100vw));
      opacity: 0;
    }
    100% {
      transform: translateY(calc(45 / var(--view-port) * 100vw));
      opacity: 1;
    }
  }
  .home section[class*="_section"] {
    padding: calc(80 / var(--view-port) * 100vw) 0
      calc(80 / var(--view-port) * 100vw);
  }
  .home .txt_wrap .txt_tit {
    font-size: calc(40 / var(--view-port) * 100vw);
    line-height: calc(58 / var(--view-port) * 100vw);
  }
  .home .txt_wrap .txt_desc {
    margin-bottom: 0;
    font-size: calc(16 / var(--view-port) * 100vw);
    line-height: calc(28 / var(--view-port) * 100vw);
  }
  .home .btn_more {
    position: absolute;
    right: 0;
    top: calc(12 / var(--view-port) * 100vw);
    width: calc(30 / var(--view-port) * 100vw);
    height: calc(30 / var(--view-port) * 100vw);
    padding: 0;
    border: 1px solid #dddddd;
    background: #fff url(../images/ico/ico_plus.svg) no-repeat 50% 50%;
    background-size: calc(10 / var(--view-port) * 100vw)
      calc(10 / var(--view-port) * 100vw);
    color: transparent;
    font-size: 0;
  }
  .home .kv_section {
    height: 100vh;
  }
  .home .kv_section .kv_img {
    background-image: url(../images/home/kv_home_mo.jpg);
  }
  .home .kv_section:after {
    bottom: calc(30 / var(--view-port) * 100vw);
    width: calc(26 / var(--view-port) * 100vw);
    height: calc(16 / var(--view-port) * 100vw);
  }
  .home .kv_section .fade_txt_wrap .fade_txt {
    font-size: calc(32 / var(--view-port) * 100vw);
    line-height: calc(44 / var(--view-port) * 100vw);
  }
  .home .kv_section .fade_txt_wrap .fade_txt:nth-child(1) {
    animation: fade_txt_one 0.6s 3s;
    animation-fill-mode: forwards;
  }
  .home .kv_section .fade_txt_wrap .fade_txt:nth-child(2) {
    opacity: 0;
    animation: fade_txt_two 0.6s 3s;
    animation-fill-mode: forwards;
  }
  .home .service_section .inner {
    gap: calc(40 / var(--view-port) * 100vw) 0;
  }
  .home .service_section .btn_more {
    right: calc(30 / var(--view-port) * 100vw);
  }
  .home .service_section .txt_wrap {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
  .home .service_section .service_list {
    padding: 0 calc(30 / var(--view-port) * 100vw);
    gap: 0 calc(15 / var(--view-port) * 100vw);
  }
  .home .service_section .service_item a .item_txt {
    padding-top: calc(120 / var(--view-port) * 100vw);
    width: calc(260 / var(--view-port) * 100vw);
    height: calc(300 / var(--view-port) * 100vw);
    border-radius: calc(150 / var(--view-port) * 100vw);
  }
  .home .service_section .service_item a .item_txt:before {
    top: calc(36 / var(--view-port) * 100vw);
    width: calc(70 / var(--view-port) * 100vw);
    height: calc(70 / var(--view-port) * 100vw);
  }
  .home .service_section .service_item a .item_txt .service_tit {
    font-size: calc(20 / var(--view-port) * 100vw);
    line-height: calc(32 / var(--view-port) * 100vw);
  }
  .home .service_section .service_item a .item_txt .service_desc {
    margin-top: calc(12 / var(--view-port) * 100vw);
    font-size: calc(12 / var(--view-port) * 100vw);
    line-height: calc(26 / var(--view-port) * 100vw);
  }
  .home .service_section .service_item a .item_txt .full_tit {
    margin-bottom: calc(12 / var(--view-port) * 100vw);
  }
  .home .about_section .txt_wrap {
    margin-bottom: calc(86 / var(--view-port) * 100vw);
  }
  .home .about_section .point_tit {
    -webkit-text-stroke-width: 1px;
    font-size: calc(50 / var(--view-port) * 100vw);
    line-height: calc(58 / var(--view-port) * 100vw);
  }
  .home .about_section .point_flow_wrap {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
  .home .about_section .point_flow_wrap .flow_img_wrap {
    height: calc(170 / var(--view-port) * 100vw);
    margin-top: calc(30 / var(--view-port) * 100vw);
  }
  .home .about_section .point_flow_wrap .flow_img_wrap picture {
    flex-shrink: 0;
    border-radius: 150px;
    overflow: hidden;
    height: 100%;
  }
  .home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(2) {
    margin-left: calc(-56 / var(--view-port) * 100vw);
  }
  .home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(3) {
    margin-left: calc(17 / var(--view-port) * 100vw);
  }
  .home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(4) {
    margin-left: calc(17 / var(--view-port) * 100vw);
  }
  .home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(5) {
    margin-left: calc(-56 / var(--view-port) * 100vw);
  }
  .home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(6) {
    margin-left: calc(17 / var(--view-port) * 100vw);
  }
  .home .about_section .point_flow_wrap .flow_img_wrap picture:nth-child(7) {
    margin-left: calc(-56 / var(--view-port) * 100vw);
    margin-right: calc(30 / var(--view-port) * 100vw);
  }
  .home .culture_section .btn_more {
    right: calc(30 / var(--view-port) * 100vw);
  }
  .home .culture_section .catch {
    padding-right: 0;
    font-size: calc(32 / var(--view-port) * 100vw);
    line-height: calc(38 / var(--view-port) * 100vw);
    letter-spacing: -0.02em;
  }
  .home .culture_section .culture_list {
    gap: calc(6 / var(--view-port) * 100vw) 0;
    max-width: 100%;
    font-size: calc(14 / var(--view-port) * 100vw);
    line-height: calc(24 / var(--view-port) * 100vw);
  }
  .home .culture_section .culture_list [class*="item"]:before {
    width: calc(24 / var(--view-port) * 100vw);
    height: calc(24 / var(--view-port) * 100vw);
    margin: 0 calc(20 / var(--view-port) * 100vw) 0
      calc(4 / var(--view-port) * 100vw);
  }
  .home .culture_section .img_slide_wrap {
    margin-top: calc(40 / var(--view-port) * 100vw);
  }
  .home .culture_section .img_slide_wrap .dot_wrap {
    bottom: calc(15 / var(--view-port) * 100vw);
    gap: 0 calc(10 / var(--view-port) * 100vw);
  }
  .home .culture_section .img_slide_wrap .dot_wrap .dot {
    width: calc(13 / var(--view-port) * 100vw);
    height: calc(13 / var(--view-port) * 100vw);
  }
}
@media all and (max-width: 1024px) and (orientation: landscape) {
  .home section[class*="_section"] {
    min-height: 1280px;
  }
}
/* pc */
.container {
  max-width: 2560px;
  margin: 0 auto;
}

.container .kv_wrap {
  z-index: -1;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff;
}

.container .kv_wrap .kv_img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 2560px;
  margin: 0 auto;
  max-height: 700px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transform-origin: center;
}

.container .kv_wrap .tit_wrap {
  position: relative;
}

.container .kv_wrap .main_tit {
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 64px;
  text-align: center;
  font-weight: 900;
}

.container .kv_wrap .sub_tit {
  font-size: 24px;
  line-height: 35px;
  text-align: center;
}

.container.about .kv_wrap .kv_img {
  background-image: url(../images/sub/kv_about.jpg);
}

.container.service .kv_wrap .kv_img {
  background-image: url(../images/sub/kv_service.jpg);
}

.container.culture .kv_wrap .kv_img {
  background-image: url(../images/sub/kv_culture.jpg);
}

.container.contact .kv_wrap .kv_img {
  background-image: url(../images/sub/kv_contact.jpg);
}

.contents_wrap {
  position: relative;
  margin-top: 700px;
  padding-top: 80px;
  background-color: #fff;
}

.contents_wrap .txt_wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  margin-top: 80px;
}

@media all and (max-width: 640px) {
  .contents_wrap .txt_wrap {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.contents_wrap .txt_wrap .tit {
  margin-bottom: 26px;
  font-size: 42px;
  line-height: 61px;
  font-weight: 700;
}

@media all and (max-width: 640px) {
  .contents_wrap .txt_wrap .tit {
    margin-bottom: calc(20 / var(--view-port) * 100vw);
    font-size: calc(30 / var(--view-port) * 100vw);
    line-height: calc(36 / var(--view-port) * 100vw);
  }
}
.contents_wrap .txt_wrap .desc {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
}

.contents_wrap .bottom_box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 600px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  color: #fff;
}

.contents_wrap .bottom_box .comment {
  padding: 0 20px;
  font-weight: 500;
  font-size: 30px;
  line-height: 43px;
}

.contents_wrap .bottom_box .links_wrap {
  display: flex;
  gap: 0 30px;
}

.contents_wrap .bottom_box .links_wrap .link {
  display: flex;
  gap: 0 30px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
}

.contents_wrap .bottom_box .links_wrap .link span {
  position: relative;
  padding: 0 26px;
}

.contents_wrap .bottom_box .links_wrap .link span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8491 16.2739V5.42469L0.99989 5.42469' stroke='black' stroke-width='2'/%3E%3Cpath d='M1.50524 15.7679L11.5906 5.68285' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

@media all and (max-width: 640px) {
  .contents_wrap .bottom_box .links_wrap .link span {
    padding: 0 calc(20 / var(--view-port) * 100vw);
  }
  .contents_wrap .bottom_box .links_wrap .link span:after {
    top: 0.16em;
    width: calc(15 / var(--view-port) * 100vw);
    height: calc(15 / var(--view-port) * 100vw);
  }
}
.contents_wrap .bottom_box .links_wrap .link.bg_blue:hover {
  background-color: #024ec0;
  color: #fff;
}

.contents_wrap .bottom_box .links_wrap .link.bg_green:hover {
  background-color: #56c65d;
  color: #fff;
}

.contents_wrap .bottom_box .links_wrap .link:hover span:after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8491 16.2739V5.42469L0.99989 5.42469' stroke='black' stroke-width='2'/%3E%3Cpath d='M1.50524 15.7679L11.5906 5.68285' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8491 16.2739V5.42469L0.99989 5.42469' stroke='black' stroke-width='2'/%3E%3Cpath d='M1.50524 15.7679L11.5906 5.68285' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
  -webkit-mask-size: cover;
  mask-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: none;
  background-color: #fff;
}

.contents_wrap .bottom_box.service {
  background-image: url(../images/sub/bg_service_box.jpg);
}

.contents_wrap .bottom_box.culture {
  background-image: url(../images/sub/bg_culture_box.jpg);
}

/* Tablet Device */
@media all and (max-width: 1024px) {
  .container .kv_wrap {
    height: 610px;
    margin-top: 90px;
  }
  .container.about .kv_wrap .kv_img {
    background-image: url(../images/sub/kv_about_ta.jpg);
  }
  .container.service .kv_wrap .kv_img {
    background-image: url(../images/sub/kv_service_ta.jpg);
  }
  .container.culture .kv_wrap .kv_img {
    background-image: url(../images/sub/kv_culture_ta.jpg);
  }
  .container.contact .kv_wrap .kv_img {
    background-image: url(../images/sub/kv_contact_ta.jpg);
  }
}
/* Mobile Device */
@media all and (max-width: 640px) {
  .container .kv_wrap {
    height: calc(360 / var(--view-port) * 100vw);
    margin-top: calc(50 / var(--view-port) * 100vw);
  }
  .container .kv_wrap .main_tit {
    margin-bottom: calc(10 / var(--view-port) * 100vw);
    font-size: calc(32 / var(--view-port) * 100vw);
    line-height: calc(36 / var(--view-port) * 100vw);
  }
  .container .kv_wrap .sub_tit {
    font-size: calc(18 / var(--view-port) * 100vw);
    line-height: calc(26 / var(--view-port) * 100vw);
  }
  .container.about .kv_wrap .kv_img {
    background-image: url(../images/sub/kv_about_mo.jpg);
  }
  .container.service .kv_wrap .kv_img {
    background-image: url(../images/sub/kv_service_mo.jpg);
  }
  .container.culture .kv_wrap .kv_img {
    background-image: url(../images/sub/kv_culture_mo.jpg);
  }
  .container.contact .kv_wrap .kv_img {
    background-image: url(../images/sub/kv_contact_mo.jpg);
  }
  .contents_wrap {
    margin-top: calc(410 / var(--view-port) * 100vw);
    padding-top: calc(80 / var(--view-port) * 100vw);
  }
  .contents_wrap .txt_wrap {
    margin-top: 0;
  }
  .contents_wrap .txt_wrap .desc {
    font-size: calc(16 / var(--view-port) * 100vw);
    line-height: calc(28 / var(--view-port) * 100vw);
  }
  .contents_wrap .bottom_box {
    height: calc(600 / var(--view-port) * 100vw);
  }
  .contents_wrap .bottom_box .comment {
    padding: 0 calc(30 / var(--view-port) * 100vw);
    font-size: calc(22 / var(--view-port) * 100vw);
    line-height: calc(40 / var(--view-port) * 100vw);
  }
  .contents_wrap .bottom_box .links_wrap {
    flex-direction: column;
    gap: calc(20 / var(--view-port) * 100vw) 0;
  }
  .contents_wrap .bottom_box .links_wrap .link {
    width: calc(180 / var(--view-port) * 100vw);
    height: calc(180 / var(--view-port) * 100vw);
    font-size: calc(20 / var(--view-port) * 100vw);
    line-height: calc(29 / var(--view-port) * 100vw);
  }
  .contents_wrap .bottom_box.service {
    background-image: url(../images/sub/bg_service_box_mo.jpg);
  }
  .contents_wrap .bottom_box.culture {
    background-image: url(../images/sub/bg_culture_box_mo.jpg);
  }
}
/* [pc]-about */
.img_flow_wrap {
  position: relative;
  margin-top: 240px;
}

.img_flow_wrap .point_tit {
  z-index: 1;
  display: block;
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  font-family: Roboto, Noto Sans KR, sans-serif;
  font-weight: 900;
  font-size: 120px;
  line-height: 130px;
  letter-spacing: -0.02em;
}

@media all and (max-width: 640px) {
  .img_flow_wrap .point_tit {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.img_flow_wrap .img_box {
  overflow: hidden;
  height: 400px;
}

.img_flow_wrap .img_track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
}

.img_flow_wrap .imgs_wrap:nth-child(1) {
  animation: imgFlow 100s linear infinite;
  animation-delay: -100s;
  will-change: transform;
}

.img_flow_wrap .imgs_wrap:nth-child(2) {
  animation: imgFlow2 100s linear infinite;
  animation-delay: -50s;
  will-change: transform;
}

.img_flow_wrap .imgs_wrap {
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
  height: 100%;
}

.img_flow_wrap .imgs_wrap img {
  height: 100%;
}

.worth_section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  margin: 80px auto 160px;
}

@media all and (max-width: 640px) {
  .worth_section {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.worth_section .tit {
  margin-bottom: 26px;
  font-size: 42px;
  line-height: 61px;
  font-weight: 700;
}

@media all and (max-width: 640px) {
  .worth_section .tit {
    margin-bottom: calc(20 / var(--view-port) * 100vw);
    font-size: calc(30 / var(--view-port) * 100vw);
    line-height: calc(36 / var(--view-port) * 100vw);
  }
}
.worth_section .worth_list {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
}

.worth_section .worth_list li {
  position: relative;
  max-width: 290px;
}

.worth_section .worth_list i {
  display: block;
  width: 60px;
  height: 60px;
  margin-left: -8px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.worth_section .worth_list strong {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.worth_section .worth_list p {
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.worth_section .worth_list .challenge i {
  background-image: url(../images/ico/ico_challenge.svg);
}

.worth_section .worth_list .creative i {
  background-image: url(../images/ico/ico_creative.svg);
}

.worth_section .worth_list .trust i {
  background-image: url(../images/ico/ico_heart.svg);
}

.history_section {
  position: relative;
  padding: 160px 0 240px;
  background-image: linear-gradient(301.51deg, #56c65d 10.56%, #024ec0 63.55%);
  background-attachment: fixed;
  color: #fff;
}

.history_section a {
  color: #fff;
}

.history_section .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

@media all and (max-width: 640px) {
  .history_section .inner {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.history_section .history_wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 90px auto;
}

.history_section .tit {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-bottom: 26px;
  font-size: 42px;
  line-height: 61px;
  font-weight: 700;
  position: sticky;
  top: 160px;
  left: 0;
  align-self: flex-start;
}

@media all and (max-width: 640px) {
  .history_section .tit {
    margin-bottom: calc(20 / var(--view-port) * 100vw);
    font-size: calc(30 / var(--view-port) * 100vw);
    line-height: calc(36 / var(--view-port) * 100vw);
  }
}
.history_section .history_group_list {
  grid-column: 1/2;
  grid-row: 2/3;
  position: sticky;
  top: 250px;
  left: 0;
  align-self: flex-start;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.history_section .group_item {
  margin-bottom: 30px;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.history_section .group_item.active {
  opacity: 1;
}

.history_section .group_item.active .years {
  font-weight: 700;
  font-size: 56px;
  line-height: 66px;
}

.history_section .group_item .years {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  font-family: Roboto, Noto Sans KR, sans-serif;
  transition: all 0.3s ease;
}

.history_section .group_item .short_desc {
  margin-top: 10px;
  font-size: 18px;
  line-height: 26px;
}

.history_section .history_list {
  grid-column: 2/3;
  grid-row: 1 / span 2;
  margin-top: 60px;
}

.history_section .history_item {
  position: relative;
}

.history_section .history_item + .history_item {
  margin-top: 60px;
}

.history_section .history_item .results_box {
  max-width: 360px;
  padding: 20px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  font-size: 16px;
  line-height: 23px;
}

.history_section .history_item .results_box.significant {
  background-color: #fff;
  color: #000;
}

.history_section .history_item .year {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}

.history_section .history_item .month {
  font-weight: 700;
}

.history_section .history_item .dot_desc {
  position: relative;
  padding-left: 0.55em;
  font-weight: 500;
}

.history_section .history_item .dot_desc:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "·";
}

/* //[pc]-about */
/* [ta]-about */
@media all and (max-width: 1024px) {
  .img_flow_wrap .point_tit {
    top: calc(-80 / var(--view-port) * 100vw);
    font-size: calc(120 / var(--view-port) * 100vw);
    line-height: calc(130px / var(--view-port) * 100vw);
  }
  .worth_section .worth_list {
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #dddddd;
  }
  .worth_section .worth_list li {
    max-width: 100%;
    padding: 30px 0 30px 90px;
    border-bottom: 1px solid #dddddd;
  }
  .worth_section .worth_list i {
    position: absolute;
    left: 0;
    top: 30px;
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 50%;
    background-size: 70%;
    background-color: #f7f7f7;
  }
  .history_section .history_group_list {
    max-width: calc(285 / var(--view-port) * 100vw);
  }
  .history_section .group_item.active .years {
    font-size: calc(56 / var(--view-port) * 100vw);
    line-height: calc(66 / var(--view-port) * 100vw);
  }
  .history_section .group_item .years {
    font-size: calc(32 / var(--view-port) * 100vw);
    line-height: calc(38 / var(--view-port) * 100vw);
  }
  .history_section .group_item .short_desc {
    margin-top: calc(10 / var(--view-port) * 100vw);
    font-size: calc(18 / var(--view-port) * 100vw);
    line-height: calc(26 / var(--view-port) * 100vw);
  }
  .history_section .history_item .results_box {
    padding: calc(20 / var(--view-port) * 100vw);
    margin-top: calc(10 / var(--view-port) * 100vw);
    font-size: calc(16 / var(--view-port) * 100vw);
    line-height: calc(23 / var(--view-port) * 100vw);
  }
  .history_section .history_item .year {
    font-size: calc(24 / var(--view-port) * 100vw);
    line-height: calc(28 / var(--view-port) * 100vw);
  }
}
/* //[ta]-about */
/* [mo]-about */
@media all and (max-width: 640px) {
  .img_flow_wrap {
    margin-top: calc(188 / var(--view-port) * 100vw);
  }
  .img_flow_wrap .img_box {
    height: calc(275 / var(--view-port) * 100vw);
  }
  .img_flow_wrap .point_tit {
    top: calc(-100 / var(--view-port) * 100vw);
    font-size: calc(60 / var(--view-port) * 100vw);
    line-height: calc(60 / var(--view-port) * 100vw);
  }
  .worth_section {
    margin: calc(40 / var(--view-port) * 100vw) auto
      calc(80 / var(--view-port) * 100vw);
  }
  .worth_section .worth_list {
    padding-top: calc(23 / var(--view-port) * 100vw);
  }
  .worth_section .worth_list li {
    padding: calc(20 / var(--view-port) * 100vw) 0
      calc(20 / var(--view-port) * 100vw) calc(80 / var(--view-port) * 100vw);
  }
  .worth_section .worth_list i {
    top: calc(20 / var(--view-port) * 100vw);
    width: calc(60 / var(--view-port) * 100vw);
    height: calc(60 / var(--view-port) * 100vw);
  }
  .worth_section .worth_list strong {
    font-size: calc(18 / var(--view-port) * 100vw);
    line-height: calc(26 / var(--view-port) * 100vw);
  }
  .worth_section .worth_list p {
    margin-top: calc(10 / var(--view-port) * 100vw);
    font-size: calc(16 / var(--view-port) * 100vw);
    line-height: calc(22 / var(--view-port) * 100vw);
  }
  .history_section {
    padding: calc(80 / var(--view-port) * 100vw) 0
      calc(160 / var(--view-port) * 100vw);
  }
  .history_section .sticky_box {
    position: static;
    height: calc(100vh - 50px);
    margin: 0 calc(-30 / var(--view-port) * 100vw);
  }
  .history_section .history_wrap {
    display: block;
  }
  .history_section .tit {
    position: static;
    margin-bottom: calc(20 / var(--view-port) * 100vw);
  }
  .history_section .history_group_list {
    z-index: 10;
    position: sticky;
    top: calc(50 / var(--view-port) * 100vw);
    left: 0;
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    max-width: 100vw;
    height: calc(50 / var(--view-port) * 100vw);
    gap: 0 calc(30 / var(--view-port) * 100vw);
    padding: 0 calc(30 / var(--view-port) * 100vw);
    margin: 0 calc(-30 / var(--view-port) * 100vw);
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .history_section .history_group_list.backdrop {
    top: calc(50 / var(--view-port) * 100vw);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
  }
  .history_section .history_group_list::-webkit-scrollbar {
    display: none;
  }
  .history_section .history_group_list.sticky_black {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
  }
  .history_section .group_item {
    margin-bottom: 0;
  }
  .history_section .group_item.active .years,
  .history_section .group_item .years {
    font-weight: 700;
    font-size: calc(20 / var(--view-port) * 100vw);
    line-height: calc(29 / var(--view-port) * 100vw);
  }
  .history_section .group_item .short_desc {
    display: none;
  }
  .history_section .history_item {
    max-width: 100%;
  }
  .history_section .history_item + .history_item {
    margin-top: calc(30 / var(--view-port) * 100vw);
  }
  .history_section .history_item .results_box {
    max-width: 100%;
    padding: calc(20 / var(--view-port) * 100vw);
    font-size: calc(14 / var(--view-port) * 100vw);
    line-height: calc(20 / var(--view-port) * 100vw);
  }
  .history_section .history_item .year {
    font-size: calc(24 / var(--view-port) * 100vw);
    line-height: calc(28 / var(--view-port) * 100vw);
  }
  .history_section .history_item:first-child .group_desc {
    margin-top: calc(70 / var(--view-port) * 100vw);
  }
  .history_section .history_item .group_desc {
    margin: calc(80 / var(--view-port) * 100vw) 0
      calc(60 / var(--view-port) * 100vw);
  }
  .history_section .history_item .group_desc .years {
    font-weight: 700;
    font-size: calc(40 / var(--view-port) * 100vw);
    line-height: calc(47 / var(--view-port) * 100vw);
  }
  .history_section .history_item .group_desc .short_desc {
    margin-top: calc(10 / var(--view-port) * 100vw);
    font-size: calc(18 / var(--view-port) * 100vw);
    line-height: calc(26 / var(--view-port) * 100vw);
  }
}
/* //[mo]-about */
/* [pc]-contact */
.bg_img {
  max-width: 1440px;
  height: 400px;
  margin: 60px auto 160px;
  background-color: rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.bg_img.backoffice {
  background-image: url(../images/sub/bg_service_backoffice.jpg);
}

.bg_img.rms {
  background-image: url(../images/sub/bg_service_rms.jpg);
}

.bg_img.solution {
  background-image: url(../images/sub/bg_service_solution.jpg);
}

/* //[pc]-contact */
/* [ta]-contact */
@media all and (max-width: 1024px) {
  .bg_img.backoffice {
    background-image: url(../images/sub/bg_service_backoffice_ta.jpg);
  }
  .bg_img.rms {
    background-image: url(../images/sub/bg_service_rms_ta.jpg);
  }
  .bg_img.solution {
    background-image: url(../images/sub/bg_service_solution_ta.jpg);
  }
}
/* //[ta]-contact */
/* [mo]-contact */
@media all and (max-width: 640px) {
  .bg_img {
    height: calc(260 / var(--view-port) * 100vw);
    margin: calc(30 / var(--view-port) * 100vw) auto
      calc(80 / var(--view-port) * 100vw);
  }
  .bg_img.backoffice {
    background-image: url(../images/sub/bg_service_backoffice_mo.jpg);
  }
  .bg_img.rms {
    background-image: url(../images/sub/bg_service_rms_mo.jpg);
  }
  .bg_img.solution {
    background-image: url(../images/sub/bg_service_solution_mo.jpg);
  }
}
/* [mo]-contact */
/* [pc]-culture */
.culture .contents_wrap {
  padding-top: 60px;
}

.tab_wrap {
  position: relative;
  width: 100%;
  margin: 0 0 160px;
}

.tab_wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #f1f3f6;
}

.tab_wrap .tab_list {
  z-index: 1;
  position: relative;
  display: flex;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.tab_wrap .tab_list .tab_item {
  position: relative;
  flex-grow: 1;
  font-size: 30px;
  line-height: 43px;
}

.tab_wrap .tab_list .tab_item span {
  display: inline-block;
  margin: 20px 0;
}

.tab_wrap .tab_list .tab_item.c_blue {
  font-weight: 700;
  color: #024ec0;
}

.tab_wrap .tab_list .tab_item.c_blue:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #024ec0;
}

.tab_wrap .tab_list .tab_item a {
  display: block;
  position: relative;
}

.tab_wrap .tab_list .tab_item a[target="_blank"]:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #56c65d;
}

.tab_wrap .tab_list .tab_item a[target="_blank"] span {
  position: relative;
  padding: 0 26px;
}

.tab_wrap .tab_list .tab_item a[target="_blank"] span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8491 16.2739V5.42469L0.99989 5.42469' stroke='black' stroke-width='2'/%3E%3Cpath d='M1.50524 15.7679L11.5906 5.68285' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

@media all and (max-width: 640px) {
  .tab_wrap .tab_list .tab_item a[target="_blank"] span {
    padding: 0 calc(20 / var(--view-port) * 100vw);
  }
  .tab_wrap .tab_list .tab_item a[target="_blank"] span:after {
    top: 0.16em;
    width: calc(15 / var(--view-port) * 100vw);
    height: calc(15 / var(--view-port) * 100vw);
  }
}
.catch_wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  margin-bottom: 60px;
}

@media all and (max-width: 640px) {
  .catch_wrap {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.catch_wrap .catch_tit {
  display: inline-block;
  max-width: 630px;
  background: linear-gradient(101.46deg, #024ec0 19.34%, #56c65d 71.53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 120px;
  line-height: 108px;
  letter-spacing: -0.02em;
  color: transparent;
}

.catch_wrap .catch_desc {
  padding-left: 50%;
  margin-top: -68px;
  font-size: 18px;
  line-height: 34px;
}

.culture_desc_wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  padding-top: 30px;
  padding-bottom: 80px;
}

@media all and (max-width: 640px) {
  .culture_desc_wrap {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.culture_desc_wrap .desc_box {
  width: 50%;
  font-weight: 500;
  font-size: 24px;
  line-height: 42px;
}

.culture_desc_wrap .desc_box p {
  position: relative;
  padding-left: 0.55em;
}

.culture_desc_wrap .desc_box p:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "·";
}

.slide_wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  padding: 0;
}

@media all and (max-width: 640px) {
  .slide_wrap {
    padding: 0 calc(30 / var(--view-port) * 100vw);
  }
}
.slide_wrap img {
  width: 100%;
}

.slide_wrap .slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slide_wrap .slider_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.slide_wrap .slider_wrapper .slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.slide_wrap [class^="btn_slide"] {
  z-index: 1;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
  cursor: pointer;
}

.slide_wrap .btn_slide_prev {
  left: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='60' rx='30' fill='white'/%3E%3Cpath d='M21.2929 29.2929C20.9024 29.6834 20.9024 30.3166 21.2929 30.7071L27.6569 37.0711C28.0474 37.4616 28.6805 37.4616 29.0711 37.0711C29.4616 36.6805 29.4616 36.0474 29.0711 35.6569L23.4142 30L29.0711 24.3431C29.4616 23.9526 29.4616 23.3195 29.0711 22.9289C28.6805 22.5384 28.0474 22.5384 27.6569 22.9289L21.2929 29.2929ZM38 31C38.5523 31 39 30.5523 39 30C39 29.4477 38.5523 29 38 29V31ZM22 31H38V29H22V31Z' fill='black'/%3E%3C/svg%3E%0A");
}

.slide_wrap .btn_slide_next {
  right: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='60' rx='30' transform='matrix(-1 0 0 1 60 0)' fill='white'/%3E%3Cpath d='M38.7071 29.2929C39.0976 29.6834 39.0976 30.3166 38.7071 30.7071L32.3431 37.0711C31.9526 37.4616 31.3195 37.4616 30.9289 37.0711C30.5384 36.6805 30.5384 36.0474 30.9289 35.6569L36.5858 30L30.9289 24.3431C30.5384 23.9526 30.5384 23.3195 30.9289 22.9289C31.3195 22.5384 31.9526 22.5384 32.3431 22.9289L38.7071 29.2929ZM22 31C21.4477 31 21 30.5523 21 30C21 29.4477 21.4477 29 22 29V31ZM38 31H22V29H38V31Z' fill='black'/%3E%3C/svg%3E%0A");
}

.slide_wrap .slide_progress {
  z-index: 1;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 300px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
}

.slide_wrap .slide_progress .progress_bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #56c65d;
}

.round_tab {
  display: flex;
  gap: 0 10px;
  margin: 30px 0;
}

.round_tab .tab_item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  height: 40px;
  padding: 0 16px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  background-color: #efefef;
  cursor: pointer;
}

.round_tab .tab_item:hover,
.round_tab .tab_item.on {
  background-color: #000;
  color: #fff;
}

.benefit_list_wrap {
  margin-bottom: 160px;
}

.benefit_list_wrap .benefit_list {
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #dddddd;
}

.benefit_list_wrap .benefit_list .benefit_item {
  position: relative;
  max-width: 100%;
  padding: 30px 0 30px 90px;
  border-bottom: 1px solid #dddddd;
}

.benefit_list_wrap .benefit_list .benefit_item strong {
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
}

.benefit_list_wrap .benefit_list .benefit_item div {
  display: flex;
  gap: 0 30px;
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  line-height: 26px;
}

.benefit_list_wrap .benefit_list .benefit_item div p {
  position: relative;
  padding-left: 0.55em;
}

.benefit_list_wrap .benefit_list .benefit_item div p:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "·";
}

.benefit_list_wrap .benefit_list i {
  position: absolute;
  left: 0;
  top: 30px;
  width: 60px;
  height: 60px;
  margin: 0;
  border-radius: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #f7f7f7;
}

.benefit_list_wrap .benefit_list .work_benefit01 i {
  background-image: url(../images/ico/ico_work01.svg);
}

.benefit_list_wrap .benefit_list .work_benefit02 i {
  background-image: url(../images/ico/ico_work02.svg);
}

.benefit_list_wrap .benefit_list .work_benefit03 i {
  background-image: url(../images/ico/ico_work03.svg);
}

.benefit_list_wrap .benefit_list .work_benefit04 i {
  background-image: url(../images/ico/ico_work04.svg);
}

.benefit_list_wrap .benefit_list .health_benefit01 i {
  background-image: url(../images/ico/ico_health01.svg);
}

.benefit_list_wrap .benefit_list .health_benefit02 i {
  background-image: url(../images/ico/ico_health02.svg);
}

.benefit_list_wrap .benefit_list .health_benefit03 i {
  background-image: url(../images/ico/ico_health03.svg);
}

.benefit_list_wrap .benefit_list .health_benefit04 i {
  background-image: url(../images/ico/ico_health04.svg);
}

.benefit_list_wrap .benefit_list .refresh_benefit01 i {
  background-image: url(../images/ico/ico_refresh01.svg);
}

.benefit_list_wrap .benefit_list .refresh_benefit02 i {
  background-image: url(../images/ico/ico_refresh02.svg);
}

.benefit_list_wrap .benefit_list .refresh_benefit03 i {
  background-image: url(../images/ico/ico_refresh03.svg);
}

.benefit_list_wrap .benefit_list .refresh_benefit04 i {
  background-image: url(../images/ico/ico_refresh04.svg);
}

/* //[pc]-culture */
/* [ta]-culture */
@media all and (max-width: 1024px) {
  .catch_wrap .catch_desc {
    padding-left: 0;
    margin-top: 30px;
  }
  .culture_desc_wrap .desc_box {
    width: 100%;
  }
}
/* //[ta]-culture */
/* [mo]-culture */
@media all and (max-width: 640px) {
  .culture .contents_wrap {
    padding-top: calc(10 / var(--view-port) * 100vw);
  }
  .tab_wrap {
    padding: 0 calc(30 / var(--view-port) * 100vw);
    margin-bottom: calc(80 / var(--view-port) * 100vw);
  }
  .tab_wrap .tab_list .tab_item {
    font-size: calc(20 / var(--view-port) * 100vw);
    line-height: calc(36 / var(--view-port) * 100vw);
  }
  .tab_wrap .tab_list .tab_item span {
    margin: calc(10 / var(--view-port) * 100vw) 0;
  }
  .catch_wrap {
    margin-bottom: calc(30 / var(--view-port) * 100vw);
  }
  .catch_wrap .catch_tit {
    width: 100%;
    font-size: calc(56 / var(--view-port) * 100vw);
    line-height: calc(54 / var(--view-port) * 100vw);
  }
  .catch_wrap .catch_desc {
    margin-top: calc(30 / var(--view-port) * 100vw);
    font-size: calc(16 / var(--view-port) * 100vw);
    line-height: calc(26 / var(--view-port) * 100vw);
  }
  .catch_wrap .catch_desc p {
    display: inline;
  }
  .slide_wrap {
    padding: 0;
  }
  .slide_wrap [class^="btn_slide"] {
    width: calc(40 / var(--view-port) * 100vw);
    height: calc(40 / var(--view-port) * 100vw);
  }
  .slide_wrap .btn_slide_prev {
    left: calc(15 / var(--view-port) * 100vw);
  }
  .slide_wrap .btn_slide_next {
    right: calc(15 / var(--view-port) * 100vw);
  }
  .slide_wrap .slide_progress {
    left: calc(30 / var(--view-port) * 100vw);
    right: calc(30 / var(--view-port) * 100vw);
    bottom: calc(10 / var(--view-port) * 100vw);
    height: calc(3 / var(--view-port) * 100vw);
    transform: none;
    width: auto;
  }
  .culture_desc_wrap {
    margin: calc(30 / var(--view-port) * 100vw) 0
      calc(80 / var(--view-port) * 100vw);
  }
  .culture_desc_wrap .desc_box {
    font-size: calc(16 / var(--view-port) * 100vw);
    line-height: calc(30 / var(--view-port) * 100vw);
  }
  .round_tab {
    gap: 0 calc(10 / var(--view-port) * 100vw);
    margin: calc(20 / var(--view-port) * 100vw) 0
      calc(30 / var(--view-port) * 100vw);
  }
  .round_tab .tab_item {
    min-width: calc(80 / var(--view-port) * 100vw);
    height: calc(40 / var(--view-port) * 100vw);
    padding: 0 calc(15 / var(--view-port) * 100vw);
    font-size: calc(16 / var(--view-port) * 100vw);
    line-height: calc(23 / var(--view-port) * 100vw);
  }
  .benefit_list_wrap {
    margin-bottom: calc(80 / var(--view-port) * 100vw);
  }
  .benefit_list_wrap .benefit_list i {
    width: calc(60 / var(--view-port) * 100vw);
    height: calc(60 / var(--view-port) * 100vw);
  }
  .benefit_list_wrap .benefit_list .benefit_item {
    min-height: calc(146 / var(--view-port) * 100vw);
    padding: calc(20 / var(--view-port) * 100vw) 0
      calc(20 / var(--view-port) * 100vw) calc(80 / var(--view-port) * 100vw);
  }
  .benefit_list_wrap .benefit_list .benefit_item div {
    flex-direction: column;
    margin-top: calc(6 / var(--view-port) * 100vw);
    font-size: calc(16 / var(--view-port) * 100vw);
    line-height: calc(26 / var(--view-port) * 100vw);
  }
  .benefit_list_wrap .benefit_list .benefit_item strong {
    font-size: calc(18 / var(--view-port) * 100vw);
    line-height: calc(26 / var(--view-port) * 100vw);
  }
}
/* //[mo]-culture */
/* [pc]-contact */
.map_wrap {
  max-width: 1440px;
  height: 600px;
  margin: 30px auto 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.map_wrap iframe {
  width: 100%;
  height: 100%;
}

.contact .contents_wrap {
  padding-bottom: 160px;
  background-color: #fff;
}

.contact .btn_more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.contact .btn_more {
  display: inline-block;
  height: 60px;
  padding: 0 30px;
  border-radius: 50px;
  border: 1px solid #dddddd;
  line-height: 60px;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  transition: all 0.3s ease;
}

.contact .btn_more.c_white {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

@media all and (min-width: 1367px) {
  .contact .btn_more.c_white:hover {
    border-color: #fff;
    background-color: #fff;
    color: #1569ab;
  }
}
.contact .btn_more.c_black {
  border-color: #ddd;
}

@media all and (min-width: 1367px) {
  .contact .btn_more.c_black:hover {
    border-color: #034fc0;
    background-color: #034fc0;
    color: #fff;
  }
}
/* //[pc]-contact */
/* [mo]-contact */
@media all and (max-width: 640px) {
  .map_wrap {
    height: calc(260 / var(--view-port) * 100vw);
  }
  .contact .contents_wrap {
    padding-bottom: 0;
  }
  .contact .btn_more {
    top: auto;
    bottom: 0;
    transform: none;
    height: calc(40 / var(--view-port) * 100vw);
    padding: 0 calc(17 / var(--view-port) * 100vw);
    background-color: #034fc0;
    border-width: 0;
    line-height: calc(38 / var(--view-port) * 100vw);
    font-size: calc(16 / var(--view-port) * 100vw);
    color: #fff;
  }
}
/* //[mo]-contact */
