@charset "UTF-8";

body:before {
  content: "";
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;

}

.w_point{color:#1ce5fa}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  z-index: 99;
  transition: transform 0.6s;
  transform: translateY(0);
}
header.active {
  transform: translateY(-100%);
}
header > div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
  background-color: #000;
  transition: background 0.3s, border 0.3s;
}
header .inner {
  width: calc(100% - 154px);
  max-width: 100%;
  padding: 0;
}
header .gnb_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
header h1 a {
  display: block;
}
header h1 a .logo {
  font-size: 0;
  text-indent: -9999px;
  display: block;
  width: 154px;
  height: 36px;
  background-image: url(/images/logo.svg?ver=1.3);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  
}
header nav {
 
}
header nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
header nav > ul > li {
  position: relative;
  padding: 0 20px;
  cursor: pointer;
}
header nav > ul > li.long {
  margin: 0;
}
header nav > ul > li.on > a, header nav > ul > li.current > a {
  color: #1ce5fa;
}
header nav > ul > li.on > a:after, header nav > ul > li.current > a:after {
  width: 100%;
}
header nav > ul > li > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 40px 25px;
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.15s ease-in-out;
}

header nav > ul > li > a:hover {
  color:#1ce5fa
}
header nav > ul > li > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #000000;
  transition: all 0.15s ease-in-out;
}

.m_nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -200vh;
	left:0;
    z-index: 9998;
    background-color: #222222;
    border-bottom-right-radius: 100%;
    border-bottom-left-radius: 100%;
    transition: all 650ms cubic-bezier(1,0,0,1);

}
.m_nav.open {
    top: 0;
    border-radius: initial;
}
.nav-list {
    width: 100%;
    list-style: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.m_nav li {
    margin: 0 2rem;
}
.nav-link {
    font-family: cursive;
    font-size: 2rem;
    padding: 1rem;
}
.nav-link:hover, .nav-link:focus {
    color: #fff;
}

.m_bar {display:none;z-index:9999} 


.menu-toggler {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 999;
    transition: all 650ms ease-out;
}
.menu-toggler.open {
    transform: rotate(-45deg);
}
.bar {
    background-color: #fff;
    width: 100%;
    height: 4px;
    border-radius: 0.8rem;
}
.bar.half {
    width: 50%;
}
.bar.top {
    transform-origin: right;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
.open .bar.top {
    transform: rotate(-450deg) translateX(0.5rem);
}
.bar.bottom {
    align-self: flex-end;
    transform-origin: left;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
.open .bar.bottom {
    transform: rotate(-450deg) translateX(-0.5rem);
}

/****************************************************/
:root {
	--pr-color: #fff;
	--second-color: #0a0a0a;
	--cubicbz: cubic-bezier(.9, 0, .1, 1);
}



/******************************************/
.wrapp {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: 1;
	top:0;left:0;
	background:#222222
}

/* hover menu with pictures **********************************/
.menu-img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .4;
	filter: blur(6px);
	overflow: hidden;
	transform: scale(1.1);
}

.menu-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	transition: .8s var(--cubicbz);
	transform: scale(1.2);
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.menu-img img.active {
	transform: scale(1);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.menu__item {
	position: relative;
	list-style: none;
}

.menu__item+.menu__item {
	margin-top: 60px;
}

.menu__item::before {
	position: absolute;
	content: '';
	width: 60px;
	height: 60px;
	top: 50%;
	left: 0;
	transform: translate(-80px, -50%) rotate(225deg);
	opacity: 0;
	background: url(/images/arrow.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	will-change: transform;
	transition: .8s var(--cubicbz);
}

.menu__link {
	position: relative;
	display: block;
	text-transform: uppercase;
	font-size: 55px;
	line-height: .8;
	text-decoration: none;
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
	z-index: 2;
	transition: .8s var(--cubicbz);
	font-weight:900
}

.menu__item:hover .menu__link {
	transform: translateX(80px);
	color: var(--pr-color);
	-webkit-text-stroke: 1px transparent;
}

.menu__item:hover::before {
	opacity: 1;
	transform: translate(0%, -50%) rotate(180deg);
}


@media (max-width: 1480px) {
	.m_bar {display:block}
	.menu__link {
		font-size: 40px;
	}
}



@media (max-width: 1480px) {
  body.gnb-open {
    overflow: hidden;
  }
  
  
  header {
    height: 68px;
  }
  header > div {
    align-items: flex-start;
    padding: 16px 65px;
  }
  header .inner {
    position: fixed;
    top: 0;
    right: -100%;
    transition: right 0.3s linear;
    z-index: 9;
  }
  header .gnb_wrap {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 440px;
    min-height: 100vh;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow-y: auto;
    z-index: 999;
  }
  header .gnb_wrap:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
  }
  
  
  header nav > ul {
    flex-direction: column;
    align-items: baseline;
  }
  header nav > ul > li {
    width: 100%;
    margin: 0;
  }
  header nav > ul > li.on > a:after, header nav > ul > li.current > a:after {
    width: 0;
  }
  header nav > ul > li.on .depth2, header nav > ul > li.current .depth2 {
    height: auto;
    opacity: 1;
  }
  header nav > ul > li > a {
    width: 100%;
    padding: 20px 0;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
  }
  
}
@media (max-width: 1023px) {
  header > div {
    padding: 16px 20px;
  }
}
@media (max-width: 767px) {
  header .inner {
    width: 100%;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
footer {
  position: relative;
  width: 100%;
  padding:100px 0 100px 0;
  background-color: #000000;
  border-top:solid 2px #333
}
.mo_map {display:none; margin-bottom:50px}
footer .footer_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 48px 60px;

}
footer .left {
  line-height:1.5;flex:1.1
}

footer .left .info {
  margin-top: 32px;
}
footer .left strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  color: #555;
}
footer .left p {
  line-height: 1.4;
  color: #555;
}
footer .left .copyright {
  margin-top: 30px;
  color: #999999;
}
footer .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: baseline;
  margin-top: 22px;
  color: #107AF2;flex:0.9
}

footer .right img{
  width:100%
}

@media (max-width: 1449px) {
  footer .left .logo {
    margin-right: 40px;
  }
}
@media (max-width: 1399px) {
  footer .footer_inner {
    width: 100%;
    padding: 45px 65px;
  }
  footer .left {
    order: 2;
    margin-top: 0;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.2;
  }
  footer .left .logo {
    display: none;
  }
  footer .left .info {
    margin-top: 0;
  }
  footer .left strong {
    margin-bottom: 5px;
  }
  footer .left .copyright {
    margin-top: 8px;
  }
  footer .right {
    justify-content: space-between;
    width: 100%;
    margin: 0 0 32px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
  }
  footer .right button {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
  }
  footer .right .link a, footer .right .link button {
    padding: 0 16px;
  }
  footer .right .link li:nth-child(1) button {
    padding-left: 0;
  }
  footer .right .link li:last-child {
    margin-right: 0;
  }
  footer .right .family_site button {
    min-width: 180px;
    padding: 17px 16px 19px;
    text-align: center;
  }
  footer .right .family_site .site {
    bottom: 58px;
    padding: 16px 32px;
  }
  footer .right .family_site .site a {
    font-size: 14px;
    letter-spacing: 0em;
    /* 0.0625 * 16 = 1px */
    line-height: 0.75rem;
    padding: 12px 0;
  }
  footer .right .family_site .site a span:after {
    bottom: -5px;
    height: 1px;
  }
  footer .right .sns ul {
    top: 75px;
  }
}
@media (max-width: 1023px) {
  footer {
    margin-top: 96px;
  }
  footer .footer_inner {
    width: 100%;
    padding: 48px 20px;
  }
}
@media (max-width: 767px) {
	footer {
	  padding:50px 0 50px 0;
	  
	}
	footer .footer_inner {
  display:block

}
.mo_map {display:block}
  footer .right {
    display:none
  }
  footer .right .link li:last-child a {
    padding-right: 0;
  }
  footer .right .family_site {
    width: 100%;
    margin-top: 24px;
  }
  footer .right .family_site button {
    min-width: auto;
    width: 100%;
  }
  footer .right .sns {
    margin-top: 24px;
  }
  footer .right .sns ul {
    position: unset;
  }
}
@media (max-width: 376px) {
  footer .right .link a, footer .right .link button {
    padding: 0 6px;
  }
}


#wrap {
  overflow: hidden;
}

body {
  position: relative;
}

.inner {
  width: 100%;
  max-width: 1480px;
  padding: 0 65px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .inner {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

/* visual_wrap */
.sub_tit {overflow:hidden;  height:100px; margin:0 0 50px 0}
.sub_tit2 {overflow:hidden;  height:130px; margin:0 0 130px 0}

.sub_visual {
  padding-top: 165px;
  margin: 0 auto;
  background:#000
}

.sub_tit[data-motion] h2 {
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0, 0, 0.5, 1) 0.1s;
  opacity:0	;
  line-height:1
  
}

.sub_tit2[data-motion] h3 {
 transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0, 0, 0.5, 1) 0.6s;
   opacity:0
}


.sub_visual[data-motion] p {
  transform: translateY(100%);
   transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0.1s;
   opacity:0
}


.sub_visual[data-motion] .vision_area {
  transform: translateY(10%);
  transition: transform 0.75s;
}

.sub_tit[data-motion].is_animated h2 {
  transform: translateY(0);
  opacity:1
}

.sub_tit2[data-motion].is_animated h3 {
  transform: translateY(0);
  opacity:1
}

.sub_visual[data-motion].is_animated p {
  transform: translateY(0);
  opacity:1
}





.sub_visual[data-motion].is_animated .vision_area {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .sub_visual[data-motion] p {
    transform: translateY(50%);
  }
  .sub_visual[data-motion].is_animated p {
    transform: translateY(0);
  }
}

.sub_visual h2 {
	font-size: 70px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 3.75rem;
  font-weight: 600;
  color: #fff;
  font-family:"Poppins"; 
  /* text-transform:uppercase */
  margin:0 0 100px 0
 }
.sub_visual h3 {
	font-size: 40px;
	letter-spacing: -0.03em;
	/* 0.0625 * 16 = 1px */
	line-height: 1.5;
	font-weight: 600;
	color: #fff;
	word-break:keep-all;
	margin:0 0 100px 0
}


@media (max-width: 1539px) {
	.sub_visual {
		padding-top: 80px;
	  }
  .sub_visual h2 {
  font-size: 60px;
  margin:0 0 50px 0
	}

  .sub_visual h3 {
    letter-spacing: -0.03em;
    /* 0.0625 * 16 = 1px */
    line-height: 3.5rem;
	margin:0 0 50px 0
  }
}


@media (max-width: 1023px) {
	.sub_visual {
    padding-top: 50px;
  }
  .sub_visual h2 {
  font-size: 40px;
	}
  .sub_visual h3 {
    font-size: 25px;
    letter-spacing: -0.03em;
    /* 0.0625 * 16 = 1px */
    line-height: 2.25rem;
  }
  .sub_tit {overflow:hidden;  height:50px; margin:0 0 50px 0}
	.sub_tit2 {overflow:hidden;  height:125px; margin:0 0 90px 0}

}







.sub_visual .vision_area {
  position: relative;
  width: 100%;
  height: 400px;
  padding: 1px 0;
  margin: 0 auto 100px;
  overflow: hidden;
  box-sizing: border-box;
  backface-visibility: hidden;
  border-radius:20px
}
.sub_visual .vision_area:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: 10;
}
.sub_visual .vision_area:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 10;
}
.sub_visual .vision_area .curtain_wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.sub_visual .vision_area .curtain_wrap > div {
  position: absolute;
  top: 0;
  width: calc(50% - 600px);
  height: 100%;
  background-color: #000;
}
.sub_visual .vision_area .curtain_wrap .left {
  left: 0;
}
.sub_visual .vision_area .curtain_wrap .right {
  right: 0;
}
.people .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_people.jpg");
}
.jobs .sub_visual .vision_area .bg {
  background-image: url("/images/sub_visual03.png");
}
.welfare .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_welfare.jpg");
}
.newsroom .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_newsroom.jpg");
}
.site .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_site.jpg");
}
.esg .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_esg.jpg");
}
.scope-lift .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_scope-lift.jpg");
}
.new-installation .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_new-installation.jpg");
}
.full-replacement .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_full-replacement.jpg");
}
.project .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_project.jpg");
}
.gs-careplus .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_gs-careplus.jpg");
}
.partial-replacement .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_partial-replacement.jpg");
}
.parts-information .sub_visual .vision_area .bg {
  background-image: url("../images/sub_visual/visual_parts-information.jpg");
}
.sub_visual .vision_area .bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  transform-origin: bottom;
  min-width: 1920px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
  z-index: 10;
}
@media (max-width: 1023px) {
  .sub_visual .vision_area {
    width: 100%;
    height: 0;
    padding-top: 66.666%;
    margin: 0 auto 80px;
  }
  .sub_visual .vision_area .curtain_wrap {
    display: none;
  }
  .sub_visual .vision_area .bg {
    width: 100%;
    height: 100%;
    background-size: auto 100%;
  }
}

/* components */
/* font */
h2 {
  font-size: 50px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 4.625rem;
  font-weight: 600;
}
@media (max-width: 1023px) {
  h2 {
    font-size: 34px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 3rem;
  }
}

h3, .h3 {
  font-size: 34px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 3.0625rem;
  font-weight: 600;
}
@media (max-width: 1023px) {
  h3, .h3 {
    font-size: 26px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 2.25rem;
  }
}

h4 {
  font-size: 26px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.375rem;
  font-weight: 600;
}
@media (max-width: 1023px) {
  h4 {
    font-size: 22px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.875rem;
  }
}

h5 {
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2rem;
  font-weight: 600;
}
@media (max-width: 1023px) {
  h5 {
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
}

.p1 {
  font-size: 20px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.75rem;
}
@media (max-width: 1023px) {
  .p1 {
    font-size: 17px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
}

.p2 {
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
}
@media (max-width: 1023px) {
  .p2 {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
}

.p3 {
  font-size: 16px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.375rem;
}
@media (max-width: 1023px) {
  .p3 {
    font-size: 14px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.25rem;
  }
}

.p4 {
  font-size: 14px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.25rem;
}
@media (max-width: 1023px) {
  .p4 {
    font-size: 12px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.0625rem;
  }
}







.scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.scroll::-webkit-scrollbar-thumb {
  background-color: #107AF2;
  border-radius: 10px;
  background-clip: padding-box;
}
.scroll::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 10px;
}

.w_block {
  display: block;
}
@media (max-width: 1023px) {
  .w_block {
    display: inline-block;
  }
}

.m_block {
  display: inline-block;
}
@media (max-width: 1023px) {
  .m_block {
    display: block;
  }
}

.m_none {
  display: inline-block;
}
@media (min-width: 768px) {
  .m_none {
    display: block;
  }
}








/* page */
#wrap.main header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
#wrap.main header > div {
  background-color: transparent;
  border-bottom-color: transparent;
}
#wrap.main header h1 a .logo {
  background-image: url("/images/logo.svg");
}
#wrap.main header nav > ul > li > a {
  color: #fff;
}

#wrap.main header nav > ul > li > a:hover {
  color: #1ce5fa!important;
}
#wrap.main header nav > ul > li.on > a, #wrap.main header nav > ul > li.current > a {
  color: #1ce5fa;
}

#wrap.main header .help {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media (min-width: 1024px) {
  #wrap.main header .help:hover {
    background-color: #3463C1;
  }
  #wrap.main header .help:hover span {
    transform: rotate(180deg);
    transition: transform 0.5s;
  }
}
#wrap.main header .mo_menu:after {
  background-image: url(../images/common/icon_menu.svg);
}
#wrap.main header.white > div {
  background-color: #000;
}
#wrap.main header.white h1 a .logo {
  background-image: url("/images/logo.svg?ver=1.1");
}
#wrap.main header.white nav > ul > li > a {
  color: #fff;
}


#wrap.main header.white .mo_menu:after {
  background-image: url(../images/common/icon_menu_bk.svg);
}
#wrap.main #content .header_main {
  height: 100px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#wrap.main #content .header_main header {
  width: 100%;
  position: absolute;
}
#wrap.main #content .header_main header .inner {
  width: calc(100% - 154px);
  max-width: none;
}
#wrap.main footer {
  margin-top: 0;
}


#wrap.main .tit {
  margin-bottom: 60px;
}

#wrap.main .tit h2 {
  font-size: 70px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 3.75rem;
  font-weight: 600;
  color: #000;
  font-family:"Poppins";

}


#wrap.main .tit h3 {
  font-size: 45px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 3.75rem;
  font-weight: 600;
  color: #000;
  word-break:keep-all
}


#wrap.main .text p {
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  font-weight: 400;
  color: #333;
  margin-top: 30px;
}
#wrap.main .tit .btn {
  margin-top: 45px;
}
#wrap.main .tit.white h2, #wrap.main .tit.white h3, #wrap.main .text.white p {
  color: #fff;
}
#wrap.main .tit.left {
  text-align: left;
}
#wrap.main .tit[data-motion] h2 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}
#wrap.main .tit[data-motion] h3 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}
#wrap.main .text[data-motion] p {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}
#wrap.main .tit[data-motion] .btn {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s, opacity 0.4s, color 0.2s linear;
}
#wrap.main .tit[data-motion].is_animated h2 {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .tit[data-motion].is_animated h3 {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .text[data-motion].is_animated p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
#wrap.main .tit[data-motion].is_animated a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
  transition: transform 0.6s 0.3s, opacity 0.6s 0.3s, color 0.2s linear;
}
@media (max-width: 1539px) {
  #wrap.main .tit {
    margin-bottom: 48px;
  }
  #wrap.main .tit h2 {
  font-size: 60px;
	}

  #wrap.main .tit h3 {
    font-size: 56px;
    letter-spacing: -0.03em;
    /* 0.0625 * 16 = 1px */
    line-height: 3.5rem;
  }
  #wrap.main .tit p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.main .text p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
}
@media (max-width: 1023px) {
  #wrap.main .tit {
    margin-bottom: 35px;
  }
  #wrap.main .tit h2 {
  font-size: 40px;
	}
  #wrap.main .tit h3 {
    font-size: 30px;
    letter-spacing: -0.03em;
    /* 0.0625 * 16 = 1px */
    line-height: 2.25rem;
  }
  #wrap.main .tit p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 16px;
  }
  #wrap.main .text p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 16px;
  }
  #wrap.main .tit .btn {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  #wrap.main .tit p br {
    display: none;
  }
}
#wrap.main #content .inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
}

#wrap.main .sec_visual {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#wrap.main .sec_visual .dim {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #000;
}
#wrap.main .sec_visual .video_wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:#000
}
#wrap.main .sec_visual .video_wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#wrap.main .sec_visual .box {
  position: absolute;
  left: 0;
  bottom: 40%;
  width: 100%;
  z-index: 2;
}
#wrap.main .sec_visual .box .txt_area {
  position: relative;
  overflow: hidden;
}
#wrap.main .sec_visual .box .txt_area .motion {
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0.3s;
}
#wrap.main .sec_visual .box .txt_area h3 {
  font-size: 100px;
  letter-spacing: 0em;
  /* 0.0625 * 16 = 1px */
  line-height: 6.875rem;
  color: #fff;
  font-weight: 600;
  font-family: 'Poppins'
}
#wrap.main .sec_visual .box .txt_area h3 span {
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
#wrap.main .sec_visual .box .txt_area p {
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  color: #fff;
  font-weight: 400;
  margin-top: 10px;
  word-break: keep-all;
  word-wrap: break-word;
}
#wrap.main .sec_visual .box .txt_area p br {
  display: none;
}
#wrap.main .sec_visual .box .txt_area.active .motion {
  transform: translateY(0);
}
#wrap.main .sec_visual .box .txt_area.active .motion h3 span:nth-of-type(1) {
  width: 413px;
  transition: width 1s 1.5s;
}
#wrap.main .sec_visual .box .txt_area.active .motion h3 span:nth-of-type(2) {
  width: 135px;
  transition: width 1s 2s;
}
#wrap.main .sec_visual .box .bot_btn {
  position: relative;
}
#wrap.main .sec_visual .box .bot_btn .progress_area {
  margin-top: 96px;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
#wrap.main .sec_visual .box .bot_btn .progress_area .bar {
  display: block;
  width: 0;
  height: 100%;
  background-color: #fff;
}
#wrap.main .sec_visual .box .bot_btn .controller_btn {
  position: absolute;
  right: 0;
  bottom: 98px;
}
#wrap.main .sec_visual .box .bot_btn .controller_btn a {
  display: block;
  width: 56px;
  height: 56px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
#wrap.main .sec_visual .box .bot_btn .controller_btn a.pause {
  background-image: url("../images/main/btn_pause.svg");
}
#wrap.main .sec_visual .box .bot_btn .controller_btn a.play {
  background-image: url("../images/main/btn_play.svg");
}
@media (max-width: 1539px) {
  
  #wrap.main .sec_visual .box .txt_area h3 {
    font-size: 84px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.1;
  }
  #wrap.main .sec_visual .box .txt_area p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.main .sec_visual .box .txt_area.active .motion h3 span:nth-of-type(1) {
    width: 346px;
  }
  #wrap.main .sec_visual .box .txt_area.active .motion h3 span:nth-of-type(2) {
    width: 114px;
  }
  #wrap.main .sec_visual .box .bot_btn .progress_area {
    margin-top: 67px;
  }
  #wrap.main .sec_visual .box .bot_btn .controller_btn {
    bottom: 70px;
  }
}
@media (max-width: 1023px) {

  #wrap.main .sec_visual .box .txt_area h3 {
    font-size: 60px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.1;
  }
  #wrap.main .sec_visual .box .txt_area p {
    font-size: 20px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 24px;
  }
  #wrap.main .sec_visual .box .txt_area p br {
    display: block;
  }
  #wrap.main .sec_visual .box .txt_area.active .motion h3 span:nth-of-type(1) {
    width: 248px;
  }
  #wrap.main .sec_visual .box .txt_area.active .motion h3 span:nth-of-type(2) {
    width: 81px;
  }
  #wrap.main .sec_visual .box .bot_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
  #wrap.main .sec_visual .box .bot_btn .progress_area {
    width: calc(100% - 66px);
    margin-top: 0;
  }
  #wrap.main .sec_visual .box .bot_btn .controller_btn {
    width: 66px;
    padding-left: 26px;
    box-sizing: border-box;
    position: relative;
    inset: auto;
  }
  #wrap.main .sec_visual .box .bot_btn .controller_btn a {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  #wrap.main .sec_visual .box .txt_area h3 {
    font-size: 46px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.1;
  }
  #wrap.main .sec_visual .box .txt_area p {
    font-size: 16px;
  }
  #wrap.main .sec_visual .box .txt_area.active .motion h3 span:nth-of-type(1) {
    width: 178px;
  }
  #wrap.main .sec_visual .box .txt_area.active .motion h3 span:nth-of-type(2) {
    width: 58px;
  }
}
#wrap.main .sec01 {
  padding: 200px 0;
  overflow: hidden;
}


@media (max-width: 1539px) {
  #wrap.main .sec01 {
    padding: 144px 0;
  }
}
@media (max-width: 1023px) {
  #wrap.main .sec01 {
    padding: 80px 0;
  }
}

#wrap.main .sec02 {
  padding: 200px 0 200px;
 
}
#wrap.main .sec02 ul {
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}
#wrap.main .sec02 ul[data-motion] li {
  opacity: 0;
  transform: translateY(30%);
  transition: transform 0.45s, opacity 0.45s;
}


#wrap.main .sec02 ul[data-motion].is_animated li {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(2) {
  transition-delay: 0.1s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(3) {
  transition-delay: 0.2s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(4) {
  transition-delay: 0.3s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(5) {
  transition-delay: 0.4s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(6) {
  transition-delay: 0.5s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(7) {
  transition-delay: 0.6s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(8) {
  transition-delay: 0.7s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(9) {
  transition-delay: 0.8s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(10) {
  transition-delay: 0.9s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(11) {
  transition-delay: 1.0s;
}
#wrap.main .sec02 ul[data-motion].is_animated li:nth-of-type(12) {
  transition-delay: 1.1s;
}
#wrap.main .sec02 ul li {
  width: calc(25% - 20px);
  text-align: center;
}
#wrap.main .sec02 ul li i {
  display: block;
  margin: 0 auto;
}
#wrap.main .sec02 ul li strong {
  display: block;
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  line-height: 1.1;
  color: #107AF2;
  margin-top: 35px;
}
#wrap.main .sec02 ul li p {
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
  margin-top: 15px;
}
#wrap.main .sec02 ul li .btn {
  margin-top: 30px;
}
@media (max-width: 1539px) {
  #wrap.main .sec02 {
    padding: 0 0 144px;
  }
  #wrap.main .sec02 ul li strong {
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.1;
    margin-top: 32px;
  }
  #wrap.main .sec02 ul li p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
}
@media (max-width: 1023px) {
  #wrap.main .sec02 {
    padding: 0 0 80px;
  }
  #wrap.main .sec02 ul {
    display:block
  }
  #wrap.main .sec02 ul li {
   display:inline-block; margin-right:-4px;
    width: 50%;
  }
  #wrap.main .sec02 ul li i img {
    width: 80px;
  }
  #wrap.main .sec02 ul li strong {
    font-size: 27px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.1;
    margin-top: 20px;
  }
  #wrap.main .sec02 ul li p {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 16px;
  }
  #wrap.main .sec02 ul li .btn {
    margin-top: 16px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) and (max-width: 1023px) {
  #wrap.main .sec02 ul li:nth-of-type(n+3) {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  #wrap.main .sec02 {
    padding: 0 0 80px;
  }
 
  #wrap.main .sec02 ul li + li {
    margin-top: 0;
  }
}
#wrap.main .sec03 {
  position: relative;
  z-index: 1;
  padding: 200px 0;
  overflow: hidden;
}
#wrap.main .sec03 .tit {
  margin-bottom: 0;
  text-align:center
}
#wrap.main .sec03 .tit h3{
  font-size:60px;
  font-weight:600;
  font-family:'Poppins'
}
#wrap.main .sec03 .text {
  text-align:center
}

#wrap.main .sec03 .text p{
  text-align:center;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  font-weight: 400;
  color: #333;
  margin-top: 30px;
}


#wrap.main .sec03 .tit[data-motion] h3 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}

#wrap.main .sec03 .tit[data-motion].is_animated h3 {
  opacity: 1;
  transform: translateY(0);
}

#wrap.main .sec03 .text[data-motion] p {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}
#wrap.main .sec03 .text[data-motion].is_animated p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}


#wrap.main .sec03 .tit.white h2, #wrap.main .sec03  .tit.white h3, #wrap.main .sec03  .text.white p {
  color: #fff;
}


#wrap.main .sec03 .bg {
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 160%;
  z-index: -1;
  background: url("/images/camera_bg.png?ver=1.1") no-repeat center/cover;
}
#wrap.main .sec03 a.btn {
  color: #fff;
  border: 1px solid #CACACA;
  background: rgba(0, 0, 0, 0.5);
}
#wrap.main .sec03 a.btn:before {
  background: #fff;
}
#wrap.main .sec03 a.btn span:after {
  background-image: url("../images/common/btn_arrow.svg");
  transition: all 0.2s linear;
}
@media (min-width: 1024px) {
  #wrap.main .sec03 a.btn:hover {
    color: #333;
  }
  #wrap.main .sec03 a.btn:hover:before {
    height: 100%;
  }
  #wrap.main .sec03 a.btn:hover span:after {
    background-image: url("../images/common/btn_arrow_bk.svg");
  }
}
@media (max-width: 1539px) {
  #wrap.main .sec03 {
    padding: 160px 0;
  }
  #wrap.main .sec03.text p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }


}
@media (max-width: 1023px) {
  #wrap.main .sec03 {
    padding: 151px 0;
	
  }
  #wrap.main .sec03 .tit h3{
	  font-size:40px;
	}
}
@media (max-width: 767px) {
  #wrap.main .sec03 {
    padding: 95px 0 85px;
  }
  #wrap.main .sec03 a.btn {
    padding: 14px 18px;
  }
  #wrap.main .sec03 a.btn span {
    padding-right: 24px;
  }
  #wrap.main .sec03 .text p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 16px;
  }
}
#wrap.main .sec04 {
  padding: 200px 0;
  background: #fff;
}
#wrap.main .sec04 .box_wrap {
  height: 680px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
#wrap.main .sec04 .box_wrap .curtain {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
#wrap.main .sec04 .box_wrap .curtain:before {
  content: "";
  width: 55%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-color: #fff;
  transition: 0.75s;
}
#wrap.main .sec04 .box_wrap .curtain:after {
  content: "";
  width: 55%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  background-color: #fff;
  transition: 0.75s;
}
#wrap.main .sec04 .box_wrap .video_area {
  position: absolute;
  left: 1%;
  top: 1%;
  width: 98%;
  height: 98%;
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
}
#wrap.main .sec04 .box_wrap .video_area:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(15, 122, 242, 0.7);
  opacity: 0;
  transition: 0.75s;
}
#wrap.main .sec04 .box_wrap .video_area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#wrap.main .sec04 .box_wrap .list_area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 130px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(10%);
  transition: transform 0.75s, opacity 0.75s;
  transition-delay: 0.5s;
}
#wrap.main .sec04 .box_wrap .list_area > li {
  width: 20%;
  text-align: center;
}
#wrap.main .sec04 .box_wrap .list_area > li .icon {
  display: block;
  margin: 0 auto;
}
#wrap.main .sec04 .box_wrap .list_area > li .counter {
  margin: 8px 0;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#wrap.main .sec04 .box_wrap .list_area > li .counter .digit {
  display: inline-block;
  vertical-align: top;
  font-size: 100px;
  letter-spacing: 0em;
  /* 0.0625 * 16 = 1px */
  line-height: 6.25rem;
  height: 100px;
  font-weight: 400;
  color: #fff;
  overflow: hidden;
}
#wrap.main .sec04 .box_wrap .list_area > li p {
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.1;
  color: #fff;
}
#wrap.main .sec04 .box_wrap .list_area > li p + p {
  margin-top: 30px;
}
#wrap.main .sec04 .box_wrap.active .curtain {
  visibility: hidden;
}
#wrap.main .sec04 .box_wrap.active .curtain:before, #wrap.main .sec04 .box_wrap.active .curtain:after {
  width: 0;
}
#wrap.main .sec04 .box_wrap.active .video_area:before {
  opacity: 1;
}
#wrap.main .sec04 .box_wrap.active .list_area {
  opacity: 1;
  transform: translateY(0%);
}
@media (max-width: 1539px) {
  #wrap.main .sec04 {
    padding: 144px 0;
  }
  #wrap.main .sec04 .box_wrap {
    width: 100%;
    height: 556px;
  }
  #wrap.main .sec04 .box_wrap .list_area {
    padding: 0 53px;
  }
  #wrap.main .sec04 .box_wrap .list_area li .counter .digit {
    font-size: 80px;
    letter-spacing: 0em;
    /* 0.0625 * 16 = 1px */
    line-height: 5rem;
    height: 80px;
  }
  #wrap.main .sec04 .box_wrap .list_area li p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.1;
  }
}
@media (max-width: 1199px) {
  #wrap.main .sec04 .box_wrap .list_area {
    padding: 0 30px;
  }
  #wrap.main .sec04 .box_wrap .list_area li .counter .digit {
    font-size: 70px;
    letter-spacing: 0em;
    /* 0.0625 * 16 = 1px */
    line-height: 4.375rem;
    height: 70px;
  }
  #wrap.main .sec04 .box_wrap .list_area li p {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.1;
  }
}
@media (max-width: 1023px) {
  #wrap.main .sec04 {
    padding: 80px 0;
  }
  #wrap.main .sec04 .box_wrap {
    height: 430px;
  }
  #wrap.main .sec04 .box_wrap .list_area {
    display: flex;
    padding: 0;
  }
  #wrap.main .sec04 .box_wrap .list_area > li .icon {
    display: block;
    margin: 0 auto;
  }
  #wrap.main .sec04 .box_wrap .list_area > li .counter .digit {
    font-size: 48px;
    letter-spacing: 0em;
    /* 0.0625 * 16 = 1px */
    line-height: 3rem;
    height: 48px;
  }
  #wrap.main .sec04 .box_wrap .list_area > li p {
    font-size: 13px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.1;
  }
  #wrap.main .sec04 .box_wrap .list_area > li p + p {
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  #wrap.main .sec04 .box_wrap {
    height: 712px;
  }
  #wrap.main .sec04 .box_wrap .list_area {
    display: flex;
    padding: 0;
  }
  #wrap.main .sec04 .box_wrap .list_area > li {
    width: 50%;
  }
  #wrap.main .sec04 .box_wrap .list_area > li:nth-of-type(1) {
    width: 100%;
  }
  #wrap.main .sec04 .box_wrap .list_area > li + li {
    margin-top: 60px;
  }
  #wrap.main .sec04 .box_wrap .list_area > li .counter .digit {
    font-size: 56px;
    letter-spacing: 0em;
    /* 0.0625 * 16 = 1px */
    line-height: 3.5rem;
    height: 56px;
  }
  #wrap.main .sec04 .box_wrap .list_area > li p {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.1;
  }
}
#wrap.main .sec05 {
  padding: 200px 0 0;
  overflow: hidden;
}
#wrap.main .sec05 .slider_wrap[data-motion] .swiper-container {
  opacity: 0;
  transform: translateX(20%);
  transition: 1s;
  transition-delay: 0.2s;
}
#wrap.main .sec05 .slider_wrap[data-motion] .bot_btn {
  opacity: 0;
  transform: translateY(50%);
  transition: 1s;
  transition-delay: 0.4s;
}
#wrap.main .sec05 .slider_wrap[data-motion].is_animated .swiper-container {
  opacity: 1;
  transform: translateX(0);
}
#wrap.main .sec05 .slider_wrap[data-motion].is_animated .bot_btn {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .sec05 .slider_wrap .swiper-container {
  overflow: visible;
}
#wrap.main .sec05 .slider_wrap .swiper-slide {
  width: 360px;
}
#wrap.main .sec05 .slider_wrap .swiper-slide a {
  display: block;
  height: 100%;
}
@media (min-width: 1024px) {
  #wrap.main .sec05 .slider_wrap .swiper-slide a:hover .img_area img {
    transform: scale(1.1);
  }
  #wrap.main .sec05 .slider_wrap .swiper-slide a:hover .txt_area p {
    color: #107AF2;
  }
}
#wrap.main .sec05 .slider_wrap .swiper-slide .img_area {
  width: 100%;
  height: 340px;
  overflow: hidden;
  transform: rotate(0.003deg);

}
#wrap.main .sec05 .slider_wrap .swiper-slide .img_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
#wrap.main .sec05 .slider_wrap .swiper-slide .txt_area {
  padding: 16px 0;
}
#wrap.main .sec05 .slider_wrap .swiper-slide .txt_area p {
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  font-weight: 400;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.6s;
}
#wrap.main .sec05 .slider_wrap .bot_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 48px;
  position:absolute;
  right:0; top:-40px
}
#wrap.main .sec05 .slider_wrap .bot_btn .swiper-pagination {
  position: relative;
  width: calc(100% - 200px);
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
  background-color: #D9D9D9;
}
#wrap.main .sec05 .slider_wrap .bot_btn .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #107AF2;
}
#wrap.main .sec05 .slider_wrap .bot_btn .button {
  width: 200px;
  padding-left: 80px;
  font-size: 0;
}
#wrap.main .sec05 .slider_wrap .bot_btn .button > div {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  inset: auto;
  margin: 0;
  background: #000;
  opacity: 1;
  transition: border 0.3s;
  border: 1px solid #999;

}
#wrap.main .sec05 .slider_wrap .bot_btn .button > div:before {
  content: "";
  width: 22px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.3s;
}


	#wrap.main .sec05 .slider_wrap .bot_btn .button > div.swiper-button-prev:before {
  background-image: url("/images/crea_slider_prev_off.svg");
}
  #wrap.main .sec05 .slider_wrap .bot_btn .button > div.swiper-button-prev:hover {
    border-color: #1ce5f9;
  }
  #wrap.main .sec05 .slider_wrap .bot_btn .button > div.swiper-button-prev:hover:before {
    background-image: url("/images/crea_slider_prev_on.svg");
  }
#wrap.main .sec05 .slider_wrap .bot_btn .button > div.swiper-button-next {
  margin-left: 8px;
}
#wrap.main .sec05 .slider_wrap .bot_btn .button > div.swiper-button-next:before {
  background-image: url("/images/crea_slider_next_off.svg");
}

#wrap.main .sec05 .slider_wrap .bot_btn .button > div.swiper-button-next:hover {
	border-color: #1ce5f9;
}
#wrap.main .sec05 .slider_wrap .bot_btn .button > div.swiper-button-next:hover:before {
background-image: url("/images/crea_slider_next_on.svg");
}

@media (max-width: 1539px) {
  #wrap.main .sec05 {
    padding: 144px 0 144px;
  }
  #wrap.main .sec05 .slider_wrap .swiper-slide .txt_area {
    padding: 16px 0;
  }
  #wrap.main .sec05 .slider_wrap .swiper-slide .txt_area p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
}
@media (max-width: 1023px) {
  #wrap.main .sec05 {
    padding: 80px 0 80px;
  }
  #wrap.main .sec05 .slider_wrap .swiper-slide {
    width: 300px;
  }
  #wrap.main .sec05 .slider_wrap .swiper-slide .img_area {
    height: 280px;
  }
  #wrap.main .sec05 .slider_wrap .swiper-slide .txt_area {
    padding: 16px 0;
  }
  #wrap.main .sec05 .slider_wrap .swiper-slide .txt_area p {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.2;
  }
  #wrap.main .sec05 .slider_wrap .bot_btn {
	  display: flex;
	  align-items: center;
	  justify-content: flex-end;
	  margin-top: 48px;
	  position:absolute;
	  right:20px; top:-30px
	}
  #wrap.main .sec05 .slider_wrap .bot_btn .swiper-pagination {
    width: calc(100% - 112px);
  }
  #wrap.main .sec05 .slider_wrap .bot_btn .button {
    width: 112px;
    padding-left: 24px;
    font-size: 0;
  }
  #wrap.main .sec05 .slider_wrap .bot_btn .button > div {
    width: 40px;
    height: 40px;
  }
  #wrap.main .sec05 .slider_wrap .bot_btn .button > div:before {
    width: 20px;
    height: 20px;
  }
}
#wrap.main .sec06 {
  padding: 120px 0 192px;
  background-color: #F3F3F3;
}
#wrap.main .sec06 .top {
  margin-bottom: 64px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
#wrap.main .sec06 .top .tit {
  margin-bottom: 0;
}
#wrap.main .sec06 .top .link_area {
  background-color: #fff;
  padding: 19px 26px;
  border-radius: 10px;
}
#wrap.main .sec06 .top .link_area[data-motion] {
  opacity: 0;
  transform: translateY(30%);
  transition: 0.45s;
  transition-delay: 0.1s;
}
#wrap.main .sec06 .top .link_area[data-motion].is_animated {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .sec06 .top .link_area ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#wrap.main .sec06 .top .link_area ul li a {
  padding: 20px 40px;
  display: block;
  position: relative;
  font-size: 26px;
  letter-spacing: 0em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.625rem;
  font-weight: 400;
  color: #666;
}
#wrap.main .sec06 .top .link_area ul li a:before {
  content: "";
  width: 2px;
  height: 26px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D9D9D9;
  border-radius: 2px;
}
@media (min-width: 1024px) {
  #wrap.main .sec06 .top .link_area ul li a:hover {
    color: #107AF2;
    font-weight: 600;
  }
}
#wrap.main .sec06 .top .link_area ul li:last-child a:before {
  display: none;
}
#wrap.main .sec06 .banner_wrap {
  width: 100%;
  background-color: #1ab5c3;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0;
}
#wrap.main .sec06 .banner_wrap[data-motion] {
  opacity: 0;
  transform: translateY(30%);
  transition: 0.45s;
}
#wrap.main .sec06 .banner_wrap[data-motion] a .symbol {
  transform: translateY(20%);
  transition: 1s;
  transition-delay: 0.2s;
}
#wrap.main .sec06 .banner_wrap[data-motion] a .txt_area .icon {
  opacity: 0;
  transform: translateY(30%);
  transition: 0.45s;
}
#wrap.main .sec06 .banner_wrap[data-motion] a .txt_area strong {
  opacity: 0;
  transform: translateY(30%);
  transition: 0.45s;
  transition-delay: 0.1s;
}
#wrap.main .sec06 .banner_wrap[data-motion] a .txt_area p {
  opacity: 0;
  transform: translateY(30%);
  transition: 0.45s;
  transition-delay: 0.2s;
}
#wrap.main .sec06 .banner_wrap[data-motion].is_animated {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .sec06 .banner_wrap[data-motion].is_animated a .symbol {
  transform: translateY(0);
}
#wrap.main .sec06 .banner_wrap[data-motion].is_animated a .txt_area .icon {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .sec06 .banner_wrap[data-motion].is_animated a .txt_area strong {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .sec06 .banner_wrap[data-motion].is_animated a .txt_area p {
  opacity: 1;
  transform: translateY(0);
}
#wrap.main .sec06 .banner_wrap a {
  padding: 44px 40px;
  box-sizing: border-box;
  position: relative;
  display: block;
}
#wrap.main .sec06 .banner_wrap a .symbol {
  width: 276px;
  height: 289px;
  position: absolute;
  left: 100px;
  top: -12px;
  background: url("../images/main/sec06_symbol.svg") no-repeat center/100% 100%;
}
#wrap.main .sec06 .banner_wrap a .txt_area {
  text-align: right;
  padding-left: 300px;
  box-sizing: border-box;
}
#wrap.main .sec06 .banner_wrap a .txt_area .icon {
  display: block;
}
#wrap.main .sec06 .banner_wrap a .txt_area strong {
  display: block;
  font-size: 36px;
  letter-spacing: 0em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin: 26px 0 15px;
}
#wrap.main .sec06 .banner_wrap a .txt_area p {
  font-size: 26px;
  letter-spacing: 0em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 1539px) {
  #wrap.main .sec06 {
    padding: 104px 0 178px;
  }
  #wrap.main .sec06 .top {
    margin-bottom: 56px;
  }
  #wrap.main .sec06 .top .link_area {
    min-width: 760px;
    margin-left: 10px;
    padding: 19px 18px;
  }
  #wrap.main .sec06 .top .link_area ul li a {
    padding: 20px 32px;
    font-size: 24px;
    letter-spacing: 0em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.625rem;
  }
  #wrap.main .sec06 .banner_wrap a {
    padding: 42px 40px;
  }
  #wrap.main .sec06 .banner_wrap a .symbol {
    left: 38px;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area strong {
    font-size: 34px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.2;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area p {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.2;
  }
}
@media (max-width: 1199px) {
  #wrap.main .sec06 .top .link_area {
    min-width: 623px;
    padding: 19px 0;
  }
  #wrap.main .sec06 .top .link_area ul li a {
    padding: 20px;
  }
}
@media (max-width: 1023px) {
  #wrap.main .sec06 {
    padding: 80px 0 96px;
  }
  #wrap.main .sec06 .top {
    margin-bottom: 24px;
    flex-direction: column;
  }
  #wrap.main .sec06 .top .tit {
    width: 100%;
    margin-bottom: 32px;
  }
  #wrap.main .sec06 .top .link_area {
    min-width: 0;
    width: 100%;
    padding: 3px 8px;
    margin: 0;
  }
  #wrap.main .sec06 .top .link_area ul li a {
    padding: 20px 32px;
    font-size: 18px;
    letter-spacing: 0em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.125rem;
  }
  #wrap.main .sec06 .top .link_area ul li a:before {
    width: 1px;
    height: 16px;
  }
  #wrap.main .sec06 .banner_wrap {
    width: 100%;
  }
  #wrap.main .sec06 .banner_wrap a {
    padding: 26px 24px;
  }
  #wrap.main .sec06 .banner_wrap a .symbol {
    width: 187px;
    height: 197px;
    left: -8px;
    top: -13px;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area {
    padding-left: 170px;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area i img {
    width: 30px;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area strong {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.1;
    margin: 14px 0 16px;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area p {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  #wrap.main .sec06 .top .tit {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  #wrap.main .sec06 .top .link_area {
    padding: 8px 0;
  }
  #wrap.main .sec06 .top .link_area ul li {
    width: 50%;
  }
  #wrap.main .sec06 .top .link_area ul li a {
    padding: 12px 23px;
    text-align: center;
  }
  #wrap.main .sec06 .top .link_area ul li:nth-of-type(2n) a:before {
    display: none;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area {
    padding-left: 0;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area strong {
    line-height: 1.5;
    margin: 40px 0 16px;
  }
  #wrap.main .sec06 .banner_wrap a .txt_area p {
    line-height: 1.5;
  }
}

@media (min-width: 1400px) {
  body.gnb-open #wrap.main header > div, body.gnb-search #wrap.main header > div {
    background: #fff;
    border-bottom-color: #BEDEFC;
  }
  body.gnb-open #wrap.main header > div:not(.bg), body.gnb-search #wrap.main header > div:not(.bg) {
    transition: 0s;
  }
  body.gnb-open #wrap.main header h1 a .logo, body.gnb-search #wrap.main header h1 a .logo {
    background-image: url("/images/logo.svg?ver=1.1");
  }
  body.gnb-open #wrap.main header nav > ul > li > a, body.gnb-search #wrap.main header nav > ul > li > a {
    color: #333333;
  }
  body.gnb-open #wrap.main header nav > ul > li.current > a, body.gnb-search #wrap.main header nav > ul > li.current > a {
    color: #107AF2;
  }
  body.gnb-open #wrap.main header .utility > li.search button:before, body.gnb-search #wrap.main header .utility > li.search button:before {
    background-image: url("../images/common/icon_search.svg");
  }
  body.gnb-open #wrap.main header .utility > li.search button:hover:before, body.gnb-search #wrap.main header .utility > li.search button:hover:before {
    background-image: url("../images/common/icon_search_hover.svg");
  }
  body.gnb-open #wrap.main header .utility > li.search button:hover:after, body.gnb-search #wrap.main header .utility > li.search button:hover:after {
    width: 100%;
  }
  body.gnb-open #wrap.main header .utility > li.search.open button:before, body.gnb-search #wrap.main header .utility > li.search.open button:before {
    background-image: url("../images/common/icon_close.svg");
  }
  body.gnb-open #wrap.main header .utility > li.lang button:before, body.gnb-search #wrap.main header .utility > li.lang button:before {
    background-image: url("../images/common/icon_lang.svg");
  }
  body.gnb-open #wrap.main header .utility > li.lang button:hover:before, body.gnb-search #wrap.main header .utility > li.lang button:hover:before {
    background-image: url("../images/common/icon_lang_hover.svg");
  }
  body.gnb-open #wrap.main header .help, body.gnb-search #wrap.main header .help {
    background: #107AF2;
  }
  body.gnb-open #wrap.main header .mo_menu:after, body.gnb-search #wrap.main header .mo_menu:after {
    background-image: url(../images/common/icon_close_bk.svg);
  }
}
@media (max-width: 1399px) {
  body.gnb-open #wrap.main header nav > ul > li > a, body.gnb-search #wrap.main header nav > ul > li > a {
    color: #333333;
  }
  body.gnb-open #wrap.main header nav > ul > li.current > a, body.gnb-search #wrap.main header nav > ul > li.current > a {
    color: #107AF2;
  }
  body.gnb-open #wrap.main header .utility > li.search button:before, body.gnb-search #wrap.main header .utility > li.search button:before {
    background-image: url("../images/common/icon_search.svg");
  }
  body.gnb-open #wrap.main header .utility > li.search button:hover:before, body.gnb-search #wrap.main header .utility > li.search button:hover:before {
    background-image: url("../images/common/icon_search_hover.svg");
  }
  body.gnb-open #wrap.main header .utility > li.search button:hover:after, body.gnb-search #wrap.main header .utility > li.search button:hover:after {
    width: 100%;
  }
  body.gnb-open #wrap.main header .utility > li.search.open button:before, body.gnb-search #wrap.main header .utility > li.search.open button:before {
    background-image: url("../images/common/icon_close.svg");
  }
  body.gnb-open #wrap.main header .utility > li.lang button:before, body.gnb-search #wrap.main header .utility > li.lang button:before {
    background-image: url("../images/common/icon_lang.svg");
  }
  body.gnb-open #wrap.main header .utility > li.lang button:hover:before, body.gnb-search #wrap.main header .utility > li.lang button:hover:before {
    background-image: url("../images/common/icon_lang_hover.svg");
  }
  body.gnb-open #wrap.main header .utility > li.help, body.gnb-search #wrap.main header .utility > li.help {
    background: #107AF2;
  }
  body.gnb-open #wrap.main header .mo_menu:after, body.gnb-search #wrap.main header .mo_menu:after {
    background-image: url(../images/common/icon_close_bk.svg);
  }
}

#wrap {
  /* 인재상 */
  /* 인사제도 */
  /* 직무소개 */
  /* 채용공고 */
}
#wrap .jobs #content{
	padding:0 0 150px 0
}
@media (max-width: 767px) {
	#wrap .jobs #content{
		padding:0 0 0px 0
	}
}

#wrap .jobs .sec01{
  margin-top:100px;
}


#wrap .jobs .sec01 h4 {
	font-size:40px;
	font-weight:600;
	margin-bottom:70px;
	letter-spacing: -0.03em;
	line-height: 3.75rem;
}

#wrap .jobs .sec01 .text_flex {
	display:flex;
	margin-bottom:50px;
	word-break:keep-all;
	letter-spacing: -0.03em;
	line-height: 1.5;
} 

.text_flex_left {
	width:30%;
	font-size:22px;
	font-weight:600;
}
.text_flex_right {
	width:70%;
	font-size:22px;
	
	}

#wrap .jobs .sec01 .text_flex[data-motion]{
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}

#wrap .jobs .sec01 .text_flex[data-motion].is_animated{
  opacity: 1;
  transform: translateY(0);
}




@media (max-width: 1023px) {
  #wrap .jobs .sec01 h4 {
		font-size:30px;
		font-weight:600;
		margin-bottom:70px;
		letter-spacing: -0.03em;
		line-height: 3.75rem;
	}
}



@media (max-width: 767px) {
		#wrap .jobs .sec01 .text_flex {display:block}
	 .text_flex_left {
		width:100%;
		font-size:18px;
		display:block;
		margin-bottom:20px
	}
	.text_flex_right {
		width:100%;
		font-size:18px;
		display:block;
	}
}



.w_text_center p{
	padding:50px 0 0; text-align:center;font-size:26px; font-weight:600; margin-top:100px; margin-bottom:100px; line-height:1.5; word-break:keep-all}

#wrap .jobs .sec01 .w_text_center[data-motion] p{
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}

#wrap .jobs .sec01 .w_text_center[data-motion].is_animated  p{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
	.w_text_center p{
	font-size:20px; }

}


#wrap .jobs .sec03 {
  position: relative;
  z-index: 1;
  padding: 200px 0;
  overflow: hidden;
}
#wrap .jobs .sec03 .tit {
  margin-bottom: 0;
  text-align:center
}
#wrap .jobs .sec03 .tit h3{
  font-size:60px;
  font-weight:600;
  font-family:'Poppins'
}
#wrap .jobs .sec03 .text {
  text-align:center
}

#wrap .jobs .sec03 .text p{
  text-align:center;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  font-weight: 400;
  color: #333;
  margin-top: 30px;
}


#wrap .jobs .tit.white h2, #wrap .jobs .tit.white h3, #wrap .jobs .text.white p {
  color: #fff;
}


#wrap .jobs .sec03 .tit[data-motion] h3 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}

#wrap .jobs .sec03 .tit[data-motion].is_animated h3 {
  opacity: 1;
  transform: translateY(0);
}

#wrap .jobs .sec03 .text[data-motion] p {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}
#wrap .jobs .sec03 .text[data-motion].is_animated p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

#wrap .jobs .sec03 .bg {
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 160%;
  z-index: -1;
}


#wrap .jobs .sec03 .bg.bg01 {
  background: url("/images/camera_bg.png?ver=1.1") no-repeat center/cover;
}


@media (max-width: 1539px) {
  #wrap .jobs .sec03 {
    padding: 160px 0;
  }
  #wrap .jobs .sec03.text p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
}



@media (max-width: 1023px) {
  #wrap .jobs .sec03 {
    padding: 151px 0;
	
  }
  #wrap .jobs .sec03 .tit h3{
	  font-size:40px;
	}
}
@media (max-width: 767px) {
  #wrap .jobs .sec03 {
    padding: 95px 0 85px;
  }
  #wrap .jobs .sec03 a.btn {
    padding: 14px 18px;
  }
  #wrap .jobs .sec03 a.btn span {
    padding-right: 24px;
  }
  #wrap .jobs .sec03 .text p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 16px;
  }
}



#wrap .jobs .sec33 {
  position: relative;
  z-index: 1;
  padding: 200px 0;
  overflow: hidden;
}
#wrap .jobs .sec33 .tit {
  margin-bottom: 0;
  text-align:center
}
#wrap .jobs .sec33 .tit h3{
  font-size:60px;
  font-weight:600;
  font-family:'Poppins'
}
#wrap .jobs .sec33 .text {
  text-align:center
}

#wrap .jobs .sec33 .text p{
  text-align:center;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  font-weight: 400;
  color: #333;
  margin-top: 30px;
}


#wrap .jobs .tit.white h2, #wrap .jobs .tit.white h3, #wrap .jobs .text.white p {
  color: #fff;
}


#wrap .jobs .sec33 .tit[data-motion] h3 {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}

#wrap .jobs .sec33 .tit[data-motion].is_animated h3 {
  opacity: 1;
  transform: translateY(0);
}

#wrap .jobs .sec33 .text[data-motion] p {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s;
}
#wrap .jobs .sec33 .text[data-motion].is_animated p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

#wrap .jobs .sec33 .bg {
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 160%;
  z-index: -1;
}


#wrap .jobs .sec33 .bg.bg01 {
  background: url("/images/camera_bg.png?ver=1.1") no-repeat center/cover;
}


@media (max-width: 1539px) {
  #wrap .jobs .sec33 {
    padding: 160px 0;
  }
  #wrap .jobs .sec33.text p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
}



@media (max-width: 1023px) {
  #wrap .jobs .sec33 {
    padding: 151px 0;
	
  }
  #wrap .jobs .sec33 .tit h3{
	  font-size:40px;
	}
}
@media (max-width: 767px) {
  #wrap .jobs .sec33 {
    padding: 95px 0 85px;
  }
  #wrap .jobs .sec33 a.btn {
    padding: 14px 18px;
  }
  #wrap .jobs .sec33 a.btn span {
    padding-right: 24px;
  }
  #wrap .jobs .sec33 .text p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 16px;
  }
}
#wrap .jobs .sec33 .bg.bg02 {
  background: url("/images/bg02.png?ver=1.5") no-repeat center/cover;
}

#wrap .jobs .sec03 .bg.bg03 {
  background: url("/images/bg03.png?ver=1.4") no-repeat center/cover;
}
#wrap .jobs .sec03 .bg.bg04 {
  background: url("/images/bg04.png?ver=1.5") no-repeat center/cover;
}
#wrap .jobs .sec03 .bg.bg05 {
  background: url("/images/bg05.png?ver=1.4") no-repeat center/cover;
}
#wrap .jobs .sec03 .bg.bg06 {
  background: url("/images/bg06.jpg?ver=1.6") no-repeat center/cover;
}
.crea_flex {display:flex; gap:50px; margin-bottom:50px;flex-wrap: wrap;}
.crea_flex_inner {flex:1;  overflow:hidden}
@media (max-width: 767px) {
  .crea_flex {gap:10px; margin-bottom:10px}
  .crea_flex.rental {display:block;}
  .crea_flex.rental .crea_flex_inner{width:50%; display:inline-block;margin-right:-4px; vertical-align:top; padding:10px}
}





.crea_flex[data-motion] div {
  opacity: 0;
  transform: translateY(30%);
  transition: transform 0.45s, opacity 0.45s;
}


.crea_flex[data-motion].is_animated div {
  opacity: 1;
  transform: translateY(0);
}
.crea_flex[data-motion].is_animated div:nth-of-type(2) {
  transition-delay: 0.1s;
}
.crea_flex[data-motion].is_animated div:nth-of-type(3) {
  transition-delay: 0.2s;
}






#wrap.recruitment .recruitment_list[data-motion] ul {
  transform: translateY(10%);
  transition: transform 0.8s;
}
#wrap.recruitment .recruitment_list[data-motion].is_animated ul {
  transform: translateY(0);
}
#wrap.recruitment .recruitment_list ul {
  display: flex;
  flex-wrap: wrap;
}
#wrap.recruitment .recruitment_list ul > li {
  width: calc(33.333333% - 16px);
  margin-right: 24px;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
#wrap.recruitment .recruitment_list ul > li:before {
  content: "";
  width: 100%;
  height: 100%;
  transition: opacity 0.25s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(132deg, #07B9C5 0%, #108EF8 100%);
  opacity: 0;
}
#wrap.recruitment .recruitment_list ul > li a {
  display: block;
  height: 100%;
  position: relative;
  padding: 40px;
  box-sizing: border-box;
}
#wrap.recruitment .recruitment_list ul > li a .tag {
  display: block;
  position: absolute;
  left: 40px;
  top: 40px;
  font-size: 16px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.125rem;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid;
  transition: color 0.25s, border 0.25s;
}
#wrap.recruitment .recruitment_list ul > li a .txt {
  position: absolute;
  left: 40px;
  top: 106px;
  width: calc(100% - 80px);
}
#wrap.recruitment .recruitment_list ul > li a .txt strong {
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: normal;
  line-height: 42px;
  max-height: 84px;
  color: #000;
  transition: color 0.25s;
}
#wrap.recruitment .recruitment_list ul > li a .txt .date {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.125rem;
  word-break: keep-all;
  word-wrap: break-word;
  font-weight: 400;
  color: #666;
  transition: color 0.25s;
}
#wrap.recruitment .recruitment_list ul > li a .hash {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: calc(100% - 80px);
}
#wrap.recruitment .recruitment_list ul > li a .hash ol li {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
  color: #666;
  transition: color 0.25s;
}
#wrap.recruitment .recruitment_list ul > li a .hash ol li + li {
  margin-left: 8px;
}
#wrap.recruitment .recruitment_list ul > li.expected {
  background: #E4F2FE;
}
#wrap.recruitment .recruitment_list ul > li.expected a .tag {
  color: #1AB5C3;
  border-color: #1AB5C3;
}
#wrap.recruitment .recruitment_list ul > li.doing {
  background: #E4F2FE;
}
#wrap.recruitment .recruitment_list ul > li.doing a .tag {
  color: #107AF2;
  border-color: #107AF2;
}
#wrap.recruitment .recruitment_list ul > li.deadline {
  background: #F3F3F3;
}
#wrap.recruitment .recruitment_list ul > li.deadline a {
  cursor: default;
  pointer-events: none;
}
#wrap.recruitment .recruitment_list ul > li.deadline a .tag {
  color: #999999;
  border-color: #999999;
}
#wrap.recruitment .recruitment_list ul > li.deadline a .txt strong {
  color: #666;
}
#wrap.recruitment .recruitment_list ul > li.deadline a .txt .date {
  color: #999;
}
#wrap.recruitment .recruitment_list ul > li.deadline a .txt .hash ol li {
  color: #999;
}
@media (min-width: 1024px) {
  #wrap.recruitment .recruitment_list ul > li:nth-of-type(3n) {
    margin-right: 0;
  }
  #wrap.recruitment .recruitment_list ul > li:nth-of-type(n+4) {
    margin-top: 32px;
  }
  #wrap.recruitment .recruitment_list ul > li:not(.deadline):hover:before {
    opacity: 1;
  }
  #wrap.recruitment .recruitment_list ul > li:not(.deadline):hover a .tag {
    color: #fff;
    border-color: #fff;
  }
  #wrap.recruitment .recruitment_list ul > li:not(.deadline):hover a .txt strong {
    color: #fff;
  }
  #wrap.recruitment .recruitment_list ul > li:not(.deadline):hover a .txt .date {
    color: #fff;
  }
  #wrap.recruitment .recruitment_list ul > li:not(.deadline):hover a .hash ol li {
    color: #fff;
  }
}
@media (max-width: 1023px) {
  #wrap.recruitment .recruitment_list ul > li {
    width: calc(50% - 8px);
    margin-right: 16px;
    height: 260px;
  }
  #wrap.recruitment .recruitment_list ul > li a {
    padding: 30px;
  }
  #wrap.recruitment .recruitment_list ul > li a .tag {
    left: 30px;
    top: 30px;
    font-weight: 400;
    padding-bottom: 4px;
  }
  #wrap.recruitment .recruitment_list ul > li a .txt {
    position: absolute;
    left: 30px;
    top: 90px;
    width: calc(100% - 60px);
  }
  #wrap.recruitment .recruitment_list ul > li a .txt strong {
    font-size: 26px;
    letter-spacing: -0.03em;
    line-height: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: normal;
    line-height: 36px;
    max-height: 72px;
  }
  #wrap.recruitment .recruitment_list ul > li a .txt .date {
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1;
  }
  #wrap.recruitment .recruitment_list ul > li a .hash {
    left: 30px;
    bottom: 30px;
    width: calc(100% - 60px);
  }
  #wrap.recruitment .recruitment_list ul > li a .hash ol li {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.recruitment .recruitment_list ul > li:nth-of-type(2n) {
    margin-right: 0;
  }
  #wrap.recruitment .recruitment_list ul > li:nth-of-type(n+3) {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  #wrap.recruitment .recruitment_list ul > li {
    width: 100%;
    margin-right: 0;
  }
  #wrap.recruitment .recruitment_list ul > li + li {
    margin-top: 16px;
  }
}
#wrap.recruitment .btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
#wrap.recruitment .btn_wrap a.btn {
  min-width: 200px;
  padding: 20px 44px;
  border: 1px solid #107AF2;
}
@media (max-width: 1023px) {
  #wrap.recruitment .btn_wrap a.btn {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  #wrap.recruitment .btn_wrap {
    flex-direction: column;
  }
}
#wrap.recruitment .btn_wrap .btn_drop {
  position: relative;
  margin-right: 16px;
}
@media (max-width: 767px) {
  #wrap.recruitment .btn_wrap .btn_drop {
    order: 2;
    margin-top: 8px;
    margin-right: 0;
    width: 100%;
  }
}
#wrap.recruitment .btn_wrap .btn_drop a.btn {
  margin-right: 0;
}
#wrap.recruitment .btn_wrap .btn_drop ul.btn_drop_list {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#wrap.recruitment .btn_wrap .btn_drop ul.btn_drop_list.show {
  display: block;
}
#wrap.recruitment .btn_wrap .btn_drop ul.btn_drop_list li a.btn {
  border-radius: unset;
  padding: 13px 24px;
}
@media (max-width: 767px) {
  #wrap.recruitment .btn_wrap .btn_drop ul.btn_drop_list li a.btn {
    padding: 8px 0;
  }
}
#wrap.recruitment .btn_wrap .btn_drop ul.btn_drop_list li:first-child a.btn {
  border-radius: 30px 30px 0 0;
  padding: 16px 24px 8px 24px;
}
#wrap.recruitment .btn_wrap .btn_drop ul.btn_drop_list li:last-child a.btn {
  border-radius: 0 0 30px 30px;
  padding: 8px 24px 16px 24px;
}

.support * {
  word-break: keep-all;
}
.support .banner_area strong {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.support .banner_area .light {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.25rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .support .banner_area {
    margin-top: 92px;
  }
  .support .banner_area strong {
    font-size: 26px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  .support .banner_area .light {
    margin-top: 18px;
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
}
.support.library .page_title {
  margin-bottom: 64px;
}
.support.library h3 {
  margin-bottom: 26px;
}
.support.library .file_list {
  width: 100%;
  border-top: 2px solid #000;
}
.support.library .file_list li {
  width: 100%;
  border-bottom: 1px solid #CaCaCa;
  display: none;
}
.support.library .file_list a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 19px 40px;
}
@media (min-width: 1024px) {
  .support.library .file_list a:hover p {
    color: #107AF2;
  }
  .support.library .file_list a:hover .btn:before {
    height: 100%;
  }
  .support.library .file_list a:hover .btn.download.blueLine {
    color: #fff;
  }
  .support.library .file_list a:hover .btn.download.blueLine:before {
    bottom: 100%;
  }
  .support.library .file_list a:hover .btn.download.blueLine span:after {
    background-image: url("../images/common/icon_download.svg");
  }
  .support.library .file_list a:hover .btn.download span:after {
    background-image: url("../images/common/icon_download.svg");
  }
}
.support.library .file_list p {
  width: calc(100% - 200px);
  font-size: 26px;
  letter-spacing: 0em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.9375rem;
  font-weight: 500;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.support.library section {
  margin-bottom: 160px;
}
.support.library section:last-child {
  margin-bottom: 0;
}
.support.library .company {
  position: relative;
  margin-bottom: 140px;
}
.support.library .company[data-motion] .inner {
  transform: translateY(50px);
  transition: transform 0.75s;
}
.support.library .company[data-motion]:before {
  transform: translateY(-35%);
  transition: transform 0.75s;
}
.support.library .company[data-motion].is_animated .inner {
  transform: translateY(0);
}
.support.library .company[data-motion].is_animated:before {
  transform: translateY(-40%);
}
.support.library .company:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
  width: 100%;
  height: 408px;
  background-color: #f3f3f3;
  z-index: -1;
}
.support.library .company .flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
}
.support.library .company .img-wrap {
  width: 51.6%;
}
.support.library .company .img-wrap .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.support.library .company .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.support.library .company .text {
  width: 48.4%;
  padding-left: 77px;
  font-size: 30px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
}
.support.library .company .text strong {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  font-weight: 300;
}
.support.library .company .text strong span {
  font-weight: 600;
}
.support.library .catalog[data-motion] .inner {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.75s, opacity 0.75s;
}
.support.library .catalog[data-motion].is_animated .inner {
  transform: translateY(0);
  opacity: 1;
}
.support.library .catalog[data-motion] .inner {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.75s, opacity 0.75s;
}
.support.library .catalog[data-motion].is_animated .inner {
  transform: translateY(0);
  opacity: 1;
}
.support.library .menual[data-motion] .inner, .support.library .plan[data-motion] .inner {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.75s, opacity 0.75s;
}
.support.library .menual[data-motion].is_animated .inner, .support.library .plan[data-motion].is_animated .inner {
  transform: translateY(0);
  opacity: 1;
}
.support.library .tab_btn_type03 {
  margin-bottom: 32px;
}
.support.library .tab_btn_type03 ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: normal;
  gap: 0 0.83%;
  width: 100%;
}
.support.library .tab_btn_type03 li {
  width: 33.333%;
}
.support.library .tab_btn_type03 li.active .tab {
  border-color: #107AF2;
  background-color: #107AF2;
  color: #fff;
}
.support.library .tab_btn_type03 .tab {
  display: block;
  width: 100%;
  padding: 23px 10px;
  border: 1px solid #CaCaCa;
  border-radius: 10px;
  color: #000;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .support.library .page_title {
    margin-bottom: 40px;
  }
  .support.library h3 {
    margin-bottom: 16px;
  }
  .support.library section {
    margin-bottom: 80px;
  }
  .support.library .file_list a {
    padding: 24px 8px;
  }
  .support.library .file_list p {
    width: calc(100% - 40px);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 600;
  }
  .support.library .company {
    margin-bottom: 80px;
  }
  .support.library .company:before {
    display: none;
  }
  .support.library .company .text {
    padding-left: 32px;
  }
  .support.library .company .text strong {
    font-size: 22px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.875rem;
  }
  .support.library .tab_btn_type03 {
    margin-bottom: 16px;
  }
  .support.library .tab_btn_type03 ul {
    gap: 0 8px;
  }
  .support.library .tab_btn_type03 .tab {
    padding: 14px 10px 12px;
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .support.library .company .flex-container {
    flex-direction: column;
  }
  .support.library .company .img-wrap {
    width: 100%;
    margin-bottom: 12px;
  }
  .support.library .company .text {
    width: 100%;
    padding-left: 0;
  }
  .support.library .company .text strong {
    margin-bottom: 16px;
  }
}
.support.faq .search_bg {
  margin-bottom: 64px;
}
.support.faq .banner_area a:before {
  background: url("../images/support/banner_faq.jpg") center no-repeat;
  background-size: cover;
}
.support.faq .tab_area[data-motion] .tab_btn_type01 {
  transform: translateY(50px);
  transition: transform 0.75s;
}
.support.faq .tab_area[data-motion] .tab_cont {
  transform: translateY(50px);
  transition: transform 0.75s;
}
.support.faq .tab_area[data-motion] .tab_cont .tabpanel {
  min-height: 210px;
}
.support.faq .tab_area[data-motion].is_animated .tab_btn_type01 {
  transform: translateY(0);
}
.support.faq .tab_area[data-motion].is_animated .tab_cont {
  transform: translateY(0);
}
.support.faq .tab_btn_type01 li {
  width: 20%;
}
.support.faq footer {
  margin-top: 0;
}
@media (max-width: 1023px) {
  .support.faq .search_bg {
    margin-bottom: 32px;
  }
  .support.faq .tab_btn_type01 li {
    width: 120px;
  }
  .support.faq .banner_area a:before {
    background: url("../images/support/m_banner_faq.jpg") center no-repeat;
    background-size: cover;
  }
}
.support.ethics .h3 {
  margin-bottom: 28px;
}
@media (max-width: 1023px) {
  .support.ethics .h3 {
    margin-bottom: 10px;
  }
}
.support.ethics.completed #content .removeCont {
  display: none;
}
.support.ethics.completed .formCompleted {
  display: block;
}
.support.ethics .tab_btn_type01 li {
  width: 50%;
}
.support.ethics .tab_area[data-motion] .tab_btn_type01 {
  transform: translateY(50px);
  transition: transform 0.75s;
}
.support.ethics .tab_area[data-motion] .gray-box {
  transform: translateY(50px);
  transition: transform 0.75s;
}
.support.ethics .tab_area[data-motion] .tab_cont {
  transform: translateY(50px);
  transition: transform 0.75s;
}
.support.ethics .tab_area[data-motion].is_animated .tab_btn_type01 {
  transform: translateY(0);
}
.support.ethics .tab_area[data-motion].is_animated .gray-box {
  transform: translateY(0);
}
.support.ethics .tab_area[data-motion].is_animated .tab_cont {
  transform: translateY(0);
}
.support.ethics .gray-box {
  margin-bottom: 64px;
  padding: 45px 48px;
  background-color: #f3f3f3;
}
.support.ethics .gray-box > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.support.ethics .gray-box strong {
  display: block;
  width: calc(100% - 250px);
}
.support.ethics .gray-box strong > span {
  display: block;
  margin-top: 3px;
  font-weight: 300;
}
.support.ethics .tab_cont {
  font-size: 0;
}
.support.ethics .panel2 form {
  display: none;
}
.support.ethics .panel2 form.show {
  display: block;
}
.support.ethics .addr_box > .input_area {
  margin-top: 0;
}
.support.ethics .zero {
  margin-bottom: 0;
}
.support.ethics .certified .email_certified {
  display: none;
  margin-top: 48px;
}
.support.ethics .certified .email_certified.block {
  display: block;
}
.support.ethics .certified .email_certified .essential span {
  display: inline;
}
.support.ethics .certified .email_certified .input_area input {
  display: inline-block;
  width: calc(100% - 176px);
  margin-right: 16px;
}
.support.ethics .certified .email_certified .input_area input[readonly] {
  border-bottom: 1px solid #CaCaCa;
}
.support.ethics .certified .email_certified span {
  display: block;
}
.support.ethics .certified .email_certified .count {
  position: absolute;
  top: 0;
  right: 192px;
  color: #FF6F3F;
}
.support.ethics .certified .email_certified .p3 {
  margin-top: 8px;
  color: #999999;
}
.support.ethics .checkHistory .page_title {
  margin-bottom: 80px;
}
.support.ethics .checkHistory .page_title strong {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  text-align: center;
  font-size: 60px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.support.ethics .checkHistory .page_title p {
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.25rem;
}
.support.ethics .checkHistory .accordion_list .acco_tit .num {
  display: table-cell;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}
.support.ethics .checkHistory .accordion_list .acco_tit .num span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 10px;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  color: #333333;
}
.support.ethics .checkHistory .accordion_list .acco_tit .num span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
}
.support.ethics .checkHistory .accordion_list .acco_tit .category {
  width: 170px;
}
.support.ethics .checkHistory .accordion_list .acco_cont {
  padding: 45px 100px;
}
.support.ethics .checkHistory .accordion_list .acco_cont .customer {
  margin-bottom: 32px;
}
.support.ethics .checkHistory .accordion_list .acco_cont .customer li:first-of-type {
  padding: 16px 32px;
}
.support.ethics .checkHistory .accordion_list .acco_cont .answer {
  padding: 16px 0;
  background-color: #fff;
}
.support.ethics .checkHistory .accordion_list .acco_cont .answer li:first-of-type {
  padding: 16px 32px;
}
.support.ethics .checkHistory .accordion_list .acco_cont .answer li span {
  color: #107AF2;
  font-weight: 600;
}
.support.ethics .checkHistory .accordion_list .acco_cont li {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
  padding: 32px 32px 16px;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}
.support.ethics .checkHistory .accordion_list .acco_cont li span {
  width: 142px;
  padding-right: 24px;
}
.support.ethics .checkHistory .accordion_list .acco_cont li p {
  width: calc(100% - 142px);
}
.support.ethics .checkHistory .accordion_list li.active .acco_tit .num span {
  color: #fff;
}
.support.ethics .checkHistory .accordion_list li.active .acco_tit .num span:after {
  background-color: #fff;
}
@media (max-width: 1023px) {
  .support.ethics .checkHistory .page_title {
    margin-bottom: 16px;
  }
  .support.ethics .checkHistory .page_title strong {
    margin-bottom: 24px;
    text-align: left;
    font-size: 40px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 3rem;
  }
  .support.ethics .checkHistory .page_title p {
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
  .support.ethics .checkHistory .accordion_list .acco_tit .num {
    display: none;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont {
    padding: 24px;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont .customer {
    margin-bottom: 32px;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont .customer li:nth-of-type(1) {
    padding: 0 0 24px;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont .answer {
    padding: 0 15px;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont .answer li:first-of-type, .support.ethics .checkHistory .accordion_list .acco_cont .answer li:last-of-type {
    padding: 24px 0;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont li {
    padding: 24px 0;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1;
    border-bottom: 1px solid #CaCaCa;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont li:last-of-type {
    border-bottom: none;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont li span {
    display: block;
    width: 100%;
    padding: 0 0 8px;
  }
  .support.ethics .checkHistory .accordion_list .acco_cont li p {
    width: 100%;
  }
  .support.ethics .checkHistory .btn {
    min-width: 150px;
  }
}
@media (max-width: 767px) {
  .support.ethics .checkHistory .btn {
    min-width: auto;
  }
}
@media (max-width: 1023px) {
  .support.ethics .banner_area a:before {
    background: url("../images/support/m_banner_faq.jpg") center no-repeat;
    background-size: cover;
  }
  .support.ethics .tab_btn_type01 li {
    width: 50%;
  }
  .support.ethics .tab_btn_type01 li .tab {
    padding: 25px 10px;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1;
  }
  .support.ethics .gray-box {
    margin-bottom: 32px;
    padding: 30px;
  }
  .support.ethics .gray-box > div {
    flex-direction: column;
    align-items: baseline;
  }
  .support.ethics .gray-box strong {
    width: 100%;
    margin-bottom: 22px;
  }
  .support.ethics .gray-box strong span {
    margin-top: 5px;
    line-height: initial;
  }
}
@media (max-width: 767px) {
  .support.ethics .input_area_wrap.inline {
    margin-bottom: 24px;
  }
  .support.ethics .input_area_wrap.inline:last-child {
    margin-bottom: 0;
  }
  .support.ethics .input_area_wrap.inline .label {
    width: 64px;
    margin-right: 16px;
    padding-bottom: 0;
  }
  .support.ethics .input_area_wrap.inline .input_area {
    width: calc(100% - 80px);
  }
  .support.ethics .input_area_wrap.inline .input_area input[readonly] {
    padding: 0;
  }
  .support.ethics .certified .top_area {
    padding-bottom: 42px;
  }
  .support.ethics .certified .email_certified .input_area input {
    width: 100%;
  }
  .support.ethics .certified .email_certified .count {
    right: 8px;
  }
  .support.ethics .certified .email_certified .p3 {
    margin-top: 16px;
  }
  .support.ethics .certified .email_certified .btn {
    min-width: 100%;
    margin-top: 16px;
  }
}
.support.contact.completed #content .removeCont {
  display: none;
}
.support.contact.completed .formCompleted {
  display: block;
}
.support.contact footer {
  margin-top: 0;
}
.support.contact main .inner[data-motion] {
  transform: translateY(50px);
  transition: transform 0.75s;
}
.support.contact main .inner[data-motion].is_animated {
  transform: translateY(0);
}
.support.contact .btn.big {
  min-width: 200px;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  padding: 19px 24px;
}
@media (max-width: 1023px) {
  .support.contact .btn.big {
    font-size: 16px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .support.contact .btn.big {
    min-width: auto;
    width: 100%;
    padding: 16px 10px;
  }
}
.support.contact .type_select {
  width: 100%;
}
.support.contact .type_select strong {
  display: block;
  margin-bottom: 32px;
  font-size: 34px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 3.0625rem;
  font-weight: 600;
}
.support.contact .type_select ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
  margin-bottom: 75px;
  border-top: 1px solid #CaCaCa;
  border-bottom: 1px solid #CaCaCa;
  border-radius: 10px;
  overflow: hidden;
}
.support.contact .type_select li {
  width: 14.285%;
  border-right: 1px solid #CaCaCa;
}
.support.contact .type_select li:first-child {
  border-left: 1px solid #CaCaCa;
  border-radius: 10px 0 0 10px;
}
.support.contact .type_select li:last-child {
  border-right: 1px solid #CaCaCa;
  border-radius: 0 10px 10px 0;
}
.support.contact .type_select li a {
  display: block;
  width: 100%;
  padding: 36px 10px;
  text-align: center;
}
.support.contact .type_select li .icon {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
}
.support.contact .type_select li .icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.support.contact .type_select li p {
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.support.contact .type_select li.type1 .icon:after {
  background-image: url(../images/support/contact-us/icon_type01.svg);
}
.support.contact .type_select li.type2 .icon:after {
  background-image: url(../images/support/contact-us/icon_type02.svg);
}
.support.contact .type_select li.type3 .icon:after {
  background-image: url(../images/support/contact-us/icon_type03.svg);
}
.support.contact .type_select li.type4 .icon:after {
  background-image: url(../images/support/contact-us/icon_type04.svg);
}
.support.contact .type_select li.type5 .icon:after {
  background-image: url(../images/support/contact-us/icon_type05.svg);
}
.support.contact .type_select li.type6 .icon:after {
  background-image: url(../images/support/contact-us/icon_type06.svg);
}
.support.contact .type_select li.type7 .icon:after {
  background-image: url(../images/support/contact-us/icon_type07.svg);
}
.support.contact .type_select li:hover a, .support.contact .type_select li.active a {
  color: #fff;
  border-color: #107AF2;
  background-color: #107AF2;
}
.support.contact .type_select li:hover.type1 .icon:after, .support.contact .type_select li.active.type1 .icon:after {
  background-image: url(../images/support/contact-us/icon_type01_hover.svg);
}
.support.contact .type_select li:hover.type2 .icon:after, .support.contact .type_select li.active.type2 .icon:after {
  background-image: url(../images/support/contact-us/icon_type02_hover.svg);
}
.support.contact .type_select li:hover.type3 .icon:after, .support.contact .type_select li.active.type3 .icon:after {
  background-image: url(../images/support/contact-us/icon_type03_hover.svg);
}
.support.contact .type_select li:hover.type4 .icon:after, .support.contact .type_select li.active.type4 .icon:after {
  background-image: url(../images/support/contact-us/icon_type04_hover.svg);
}
.support.contact .type_select li:hover.type5 .icon:after, .support.contact .type_select li.active.type5 .icon:after {
  background-image: url(../images/support/contact-us/icon_type05_hover.svg);
}
.support.contact .type_select li:hover.type6 .icon:after, .support.contact .type_select li.active.type6 .icon:after {
  background-image: url(../images/support/contact-us/icon_type06_hover.svg);
}
.support.contact .type_select li:hover.type7 .icon:after, .support.contact .type_select li.active.type7 .icon:after {
  background-image: url(../images/support/contact-us/icon_type07_hover.svg);
}
.support.contact .type_content h3, .support.contact .type_content .h3 {
  margin-bottom: 28px;
}
.support.contact .type_content .init {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 92px;
  background-color: #f3f3f3;
}
.support.contact .type_content .boundaries {
  width: 100%;
  height: 2px;
  margin: 64px 0;
  background-color: #000;
}
.support.contact .type_content .board_write .input_area_wrap.elevator .input_area input {
  width: 312px;
}
.support.contact .type_content .board_write .input_area_wrap.elevator .elv-select {
  margin: 48px -16px 24px 0;
}
.support.contact .type_content .board_write .input_area_wrap.elevator .elv-select .custom_select_area {
  width: 33.333%;
  margin-right: 0;
  padding-right: 16px;
}
.support.contact .type_content .board_write .input_area_wrap.elevator strong {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.support.contact .type_content .board_write .addr_box .floor {
  width: 652px;
  margin-bottom: 16px;
}
.support.contact .type_content .board_write .addr_box .floor input {
  width: calc(50% - 8px);
}
.support.contact .type_content .board_write .addr_box .floor input:last-child {
  margin-right: 0;
}
.support.contact .banner_area a:before {
  background: url("../images/support/banner_ethics.jpg") center no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .support.contact .type_content .board_write .addr_box .floor {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .support.contact .banner_area a:before {
    background: url("../images/support/m_banner_ethics.jpg") center no-repeat;
    background-size: cover;
  }
  .support.contact .type_select strong {
    margin-bottom: 10px;
    font-size: 26px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 2.25rem;
  }
  .support.contact .type_select ul {
    margin-right: -10px;
    margin-bottom: 30px;
    border: none;
    border-radius: 0;
    overflow: initial;
  }
  .support.contact .type_select li {
    width: 25%;
    padding-bottom: 10px;
    padding-right: 10px;
    border: none;
  }
  .support.contact .type_select li:first-child, .support.contact .type_select li:last-child {
    border: none;
  }
  .support.contact .type_select li a {
    padding: 15px 5px;
    border-radius: 10px;
    border: 1px solid #CaCaCa;
  }
  .support.contact .type_select li .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
  }
  .support.contact .type_select li p {
    font-size: 16px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  .support.contact .type_content h3, .support.contact .type_content .h3 {
    margin-bottom: 10px;
  }
  .support.contact .type_content .init {
    padding: 72px 10px;
  }
  .support.contact .type_content .boundaries {
    margin: 50px 0;
  }
  .support.contact .type_content .board_write .input_area_wrap.elevator .input_area input {
    width: 100%;
  }
  .support.contact .type_content .board_write .input_area_wrap.elevator strong {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  .support.contact .boundaries {
    margin: 48px 0;
  }
}
@media (max-width: 767px) {
  .support.contact .type_select li {
    width: 33.333%;
  }
  .support.contact .type_content .board_write .input_area_wrap.elevator .elv-select {
    margin: 32px 0 24px;
  }
  .support.contact .type_content .board_write .input_area_wrap.elevator .elv-select .custom_select_area {
    width: 100%;
    margin-bottom: 8px;
    padding-right: 0;
  }
  .support.contact .type_content .board_write .input_area_wrap.elevator .elv-select .custom_select_area:last-child {
    margin-bottom: 0;
  }
  .support.contact .type_content .board_write .addr_box .floor {
    margin-bottom: 0;
  }
  .support.contact .type_content .board_write .addr_box .floor input {
    width: 100%;
    margin: 0 0 8px;
  }
}

.sticky {
  display: block;
  width: 100%;
  font-size: 0;
}
@media (max-width: 1023px) {
  .sticky {
    display: none;
  }
}
.sticky .button {
  display: none;
}
.sticky li {
  display: inline-block;
  width: 25%;
  border: 1px solid #CaCaCa;
}
.sticky li:nth-child(1), .sticky li:nth-child(2), .sticky li:nth-child(3) {
  border-right: none;
}
.sticky button {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 32px;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sticky button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 15px;
  height: 18px;
  background-image: url(../images/support/icon_arrow_down.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: none;
}
.sticky button:hover {
  color: #107AF2;
}
.sticky button:hover:after {
  background-image: url(../images/support/icon_arrow_down_hover.svg);
}
.sticky.fixed {
  position: fixed;
  top: 100px;
  left: 0;
  transform: translateY(0);
  transition: transform 0.6s, top 0.6s;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #CaCaCa;
  font-size: 0;
}
@media (max-width: 1023px) {
  .sticky.fixed {
    display: block;
  }
}
.sticky.fixed li {
  position: relative;
  display: inline-block;
  width: 25%;
  border: 1px solid #CaCaCa;
  border-top: none;
  border-bottom: none;
}
.sticky.fixed li:nth-child(1), .sticky.fixed li:nth-child(2), .sticky.fixed li:nth-child(3) {
  border-right: none;
}
.sticky.fixed li.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #107AF2;
}
.sticky.fixed li.active button {
  font-weight: 600;
  color: #107AF2;
}
.sticky.fixed li.active button:after {
  display: none;
  background-image: url(../images/support/icon_arrow_down_hover.svg);
}
.sticky.fixed button {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 32px;
  text-align: center;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sticky.fixed button:after {
  display: none;
}
.sticky.fixed button:hover {
  color: #107AF2;
}
@media (max-width: 1023px) {
  .sticky {
    margin-bottom: 40px;
  }
  .sticky .button {
    text-align: left;
    position: relative;
    width: 100%;
    padding: 22px 16px;
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    border-bottom: 1px solid #CACACA;
    box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.24);
  }
  .sticky .button:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 15px;
    height: 10px;
    background-image: url(../images/common/icon_arrow_down_bl.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }
  .sticky li {
    display: block;
    width: 100%;
  }
  .sticky li:nth-child(1), .sticky li:nth-child(2), .sticky li:nth-child(3) {
    border-bottom: none;
    border-right: 1px solid #CaCaCa;
  }
  .sticky button {
    padding: 17px 15px 16px;
    text-align: left;
    font-size: 16px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  .sticky button:after {
    right: 15px;
  }
  .sticky.fixed {
    position: fixed;
    top: 68px;
    left: 0;
    transform: translateY(0);
    transition: transform 0.6s, top 0.6s;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #CaCaCa;
    font-size: 0;
  }
  .sticky.fixed .button {
    display: block;
  }
  .sticky.fixed ul {
    position: absolute;
    display: none;
    top: 84px;
    left: 20px;
    width: calc(100% - 40px);
    border-radius: 10px;
    border: 1px solid #107AF2;
    box-sizing: border-box;
    background: #fff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.24);
  }
  .sticky.fixed ul li {
    width: 100%;
    border: none;
    border-bottom: 1px solid #CACACA;
  }
  .sticky.fixed ul li button {
    position: relative;
    display: block;
    width: 100%;
    padding: 17px 16px;
    text-align: left;
    background: #F3F3F3;
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .sticky.fixed ul li button:after {
    display: none;
  }
  .sticky.fixed ul li:last-child {
    border-bottom: none;
  }
  .sticky.fixed ul li.active button {
    background: #fff;
  }
  .sticky.fixed ul li.active:after {
    display: none;
  }
  .sticky.active ul {
    display: block;
  }
}
body[data-scroll=down] .sticky {
  top: 0;
}
@media (max-width: 1023px) {
  body[data-scroll=up] .sticky {
    top: 68px;
  }
}

#libraySticky {
  height: 56px;
  margin-bottom: 80px;
}
#libraySticky[data-motion] .inner {
  transform: translateY(50%);
  transition: transform 0.75s;
}
#libraySticky[data-motion].is_animated .inner {
  transform: translateY(0);
}
@media (max-width: 1023px) {
  #libraySticky {
    height: unset;
    margin-bottom: 0;
  }
  #libraySticky[data-motion] .sticky {
    transform: translateY(0);
  }
}

.formCompleted {
  display: none;
}
.formCompleted strong {
  display: block;
  width: 100%;
  margin-bottom: 80px;
  text-align: center;
  font-size: 60px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.formCompleted .guide {
  padding: 75px 10px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, rgb(7, 185, 197) 8%, rgb(16, 143, 247));
  border-image-slice: 1;
}
.formCompleted .guide p {
  text-align: center;
  font-size: 30px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.625rem;
  font-weight: 600;
}
.formCompleted .guide span {
  color: #107AF2;
}
@media (max-width: 1023px) {
  .formCompleted strong {
    margin-bottom: 40px;
    font-size: 34px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  .formCompleted .guide {
    padding: 35px 10px;
  }
  .formCompleted .guide p {
    font-size: 22px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.875rem;
  }
  .formCompleted .guide span {
    color: #107AF2;
  }
}

#wrap {
  /* 뉴스룸 */
  /* 사업장 */
  /* 개요 */
  /* 지속가능경영 */
}
#wrap.newsroom.list .sub_visual .vision_area {
  margin: 0;
}
#wrap.newsroom.list .sec01 .top {
  margin: 80px 0 64px;
  text-align: right;
}
#wrap.newsroom.list .sec01 .top .input_area {
  width: 384px;
}
#wrap.newsroom.list .sec01 .top .input_area input {
  padding: 14px 60px 14px 16px;
}
#wrap.newsroom.list .sec01 .top .input_area label {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  cursor: pointer;
}
#wrap.newsroom.list .sec01 .top .input_area label:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url("../images/common/icon_search.svg") center no-repeat;
  background-size: cover;
}
#wrap.newsroom.list .sec01 ul {
  display: flex;
  flex-wrap: wrap;
}
#wrap.newsroom.list .sec01 ul li {
  width: calc(33.333333% - 16px);
  margin-right: 24px;
}
@media (min-width: 1024px) {
  #wrap.newsroom.list .sec01 ul li:nth-of-type(3n) {
    margin-right: 0;
  }
  #wrap.newsroom.list .sec01 ul li:nth-of-type(n+4) {
    margin-top: 48px;
  }
}
#wrap.newsroom.list .sec01 ul li .img_area {
  width: 100%;
  padding-top: 83.34%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transform: rotate(0.003deg);
}
#wrap.newsroom.list .sec01 ul li .img_area img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  transition: transform 0.4s;
}
#wrap.newsroom.list .sec01 ul li .txt_area {
  padding: 32px 16px;
}
#wrap.newsroom.list .sec01 ul li .txt_area span {
  display: block;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1;
  color: #1AB6C3;
}
#wrap.newsroom.list .sec01 ul li .txt_area strong {
  display: block;
  margin-top: 16px;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: normal;
  line-height: 36px;
  max-height: 72px;
  font-weight: 400;
  color: #000;
}
#wrap.newsroom.list .sec01 ul li .txt_area p.date {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #666;
}
#wrap.newsroom.list .sec01 ul li a:hover .img_area img {
  transform: translateX(-50%) scale(1.05);
}
#wrap.newsroom.list .sec01 ul li a:hover .txt_area strong {
  color: #107AF2;
}
@media (max-width: 1023px) {
  #wrap.newsroom.list .sec01 .top {
    margin: 40px 0 32px;
  }
  #wrap.newsroom.list .sec01 .top .input_area {
    width: 100%;
  }
  #wrap.newsroom.list .sec01 .top .input_area input {
    padding: 12px 40px 12px 8px;
  }
  #wrap.newsroom.list .sec01 .top .input_area label {
    right: 8px;
  }
  #wrap.newsroom.list .sec01 ul li {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) and (max-width: 1023px) {
  #wrap.newsroom.list .sec01 ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  #wrap.newsroom.list .sec01 ul li:nth-of-type(n+3) {
    margin-top: 16px;
  }
}
@media (max-width: 1023px) {
  #wrap.newsroom.list .sec01 ul li .txt_area {
    padding: 16px 8px;
  }
  #wrap.newsroom.list .sec01 ul li .txt_area span {
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.newsroom.list .sec01 ul li .txt_area strong {
    margin-top: 8px;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: normal;
    line-height: 24px;
    max-height: 48px;
  }
  #wrap.newsroom.list .sec01 ul li .txt_area p.date {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  #wrap.newsroom.list .sec01 ul li {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  #wrap.newsroom.list .sec01 ul li + li {
    margin-top: 16px;
  }
}
#wrap.newsroom.view .board .blue_box {
  position: relative;
}
#wrap.newsroom.view .board .blue_box .sub {
  margin-bottom: 24px;
}
#wrap.newsroom.view .board .blue_box .sub ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 16px;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
  color: #666;
  position: relative;
}
#wrap.newsroom.view .board .blue_box .sub ul li span {
  color: #1AB5C3;
  font-weight: 600;
}
#wrap.newsroom.view .board .blue_box .sub ul li + li:before {
  content: "";
  width: 1px;
  height: 13px;
  background: #CACACA;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#wrap.newsroom.view .board .blue_box p.date {
  color: #666;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.newsroom.view .board .blue_box .go_link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 0;
}
#wrap.newsroom.view .board .blue_box .go_link a {
  width: 100%;
  height: 100%;
  display: block;
}
#wrap.newsroom.view .board .blue_box .go_link i {
  display: block;
  width: 100%;
  height: 100%;
}
#wrap.newsroom.view .board .blue_box .go_link i img {
  width: 100%;
}
#wrap.newsroom.view .board .blue_box .go_link p {
  padding: 8px 13px;
  background: #fff;
  position: absolute;
  left: 4px;
  top: -48px;
  border: 1px solid #CACACA;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #333;
  font-weight: 400;
  fill: #FFF;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
#wrap.newsroom.view .board .blue_box .go_link p:before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border: 1px solid #CACACA;
  border-left: none;
  border-top: none;
  background: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.12);
}
@media (min-width: 1024px) {
  #wrap.newsroom.view .board .blue_box .go_link:hover p {
    visibility: visible;
    opacity: 1;
  }
}
#wrap.newsroom.view .board .cont_area {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
  line-height: 1.7;
  color: #666;
  padding-bottom: 80px;
  border-bottom: 1px solid #CACACA;
}
#wrap.newsroom.view .board .cont_area p {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
  line-height: 1.7;
  color: #666;
}
#wrap.newsroom.view .board .cont_area img {
  margin-bottom: 80px;
}
@media (max-width: 1023px) {
  #wrap.newsroom.view .board .blue_box .sub {
    margin-bottom: 16px;
  }
  #wrap.newsroom.view .board .blue_box .sub ul li {
    padding: 0 8px;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.newsroom.view .board .blue_box .go_link {
    right: 24px;
    bottom: 24px;
  }
  #wrap.newsroom.view .board .blue_box .go_link p {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: visible;
  }
  #wrap.newsroom.view .board .blue_box .go_link p:before {
    display: none;
  }
  #wrap.newsroom.view .board .blue_box p.date {
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.newsroom.view .board .cont_area {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    padding-bottom: 40px;
  }
  #wrap.newsroom.view .board .cont_area p {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.newsroom.view .board .cont_area img {
    margin-bottom: 28px;
  }
}
#wrap.site .box_wrap[data-motion] .txt_area strong {
  opacity: 0;
  transform: translateY(30%);
  transition: 0.5s;
}
#wrap.site .box_wrap[data-motion] .txt_area dl {
  opacity: 0;
  transform: translateY(30%);
  transition: 0.5s;
  transition-delay: 0.2s;
}
#wrap.site .box_wrap[data-motion] .txt_area dl:nth-of-type(2) {
  transition-delay: 0.3s;
}
#wrap.site .box_wrap[data-motion] .txt_area dl:nth-of-type(3) {
  transition-delay: 0.4s;
}
#wrap.site .box_wrap[data-motion] .map_area {
  opacity: 0;
  transform: translateY(10%);
  transition: 0.5s;
  transition-delay: 0.5s;
}
#wrap.site .box_wrap[data-motion].is_animated .txt_area strong {
  opacity: 1;
  transform: translateY(0);
}
#wrap.site .box_wrap[data-motion].is_animated .txt_area dl {
  opacity: 1;
  transform: translateY(0);
}
#wrap.site .box_wrap[data-motion].is_animated .map_area {
  opacity: 1;
  transform: translateY(0);
}
#wrap.site .box_wrap + .box_wrap {
  margin-top: 160px;
}
#wrap.site .box_wrap .txt_area strong {
  display: block;
  font-size: 50px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #000;
  font-weight: 600;
}
#wrap.site .box_wrap .txt_area dl {
  padding: 24px 0 32px;
}
#wrap.site .box_wrap .txt_area dl dt span {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  color: #107AF2;
  font-weight: 600;
  margin-top: 8px;
}
#wrap.site .box_wrap .txt_area dl dt p {
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
}
#wrap.site .box_wrap .txt_area dl dd {
  margin-top: 16px;
}
#wrap.site .box_wrap .txt_area dl dd a {
  padding-left: 32px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  font-weight: 400;
  color: #333;
}
#wrap.site .box_wrap .txt_area dl dd a:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/company/site_phone_icon.svg") no-repeat center/cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#wrap.site .box_wrap .txt_area dl + dl {
  border-top: 1px solid #CACACA;
}
#wrap.site .box_wrap .map_area {
  height: 520px;
  display: flex;
}
#wrap.site .box_wrap .map_area .img {
  width: 460px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
#wrap.site .box_wrap .map_area .img:hover .over_btn {
  opacity: 1;
  visibility: visible;
}
#wrap.site .box_wrap .map_area .img .over_btn {
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}
#wrap.site .box_wrap .map_area .img .over_btn i {
  display: block;
  margin: 0 auto;
  width: 25px;
  height: 25px;
  background: url("../images/company/map_slide_over_icon.svg") center no-repeat;
  background-size: cover;
}
#wrap.site .box_wrap .map_area .img .over_btn span {
  margin-top: 8px;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
#wrap.site .box_wrap .map_area .img .swiper-container {
  height: 100%;
}
#wrap.site .box_wrap .map_area .img .swiper-container .swiper-wrapper {
  height: 100% !important;
}
#wrap.site .box_wrap .map_area .img .swiper-container .swiper-slide {
  height: 100%;
  position: relative;
}
#wrap.site .box_wrap .map_area .img .swiper-container .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
#wrap.site .box_wrap .map_area .img .swiper-container .swiper-slide img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
#wrap.site .box_wrap .map_area .img .swiper-container .bot_btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px;
  display: none;
}
#wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .swiper-pagination {
  position: relative;
  inset: auto;
  width: calc(100% - 110px);
  height: 2px;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}
#wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #107AF2;
}
#wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button {
  width: 94px;
  margin-left: 16px;
  display: flex;
}
#wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-prev {
  position: relative;
  inset: auto;
  width: 44px;
  height: 44px;
  border: 1px solid #CACACA;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
  background: transparent;
  opacity: 1;
  transition: border 0.3s;
}
#wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-prev:before {
  content: "";
  width: 19px;
  height: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.3s;
  background-image: url("../images/company/map_slider_prev_off.svg");
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-prev:hover {
    border-color: #107AF2;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-prev:hover:before {
    background-image: url("../images/company/map_slider_prev_on.svg");
  }
}
#wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-next {
  position: relative;
  inset: auto;
  width: 44px;
  height: 44px;
  border: 1px solid #CACACA;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 0 6px;
  background: transparent;
  opacity: 1;
  transition: border 0.3s;
}
#wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-next:before {
  content: "";
  width: 19px;
  height: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.3s;
  background-image: url("../images/company/map_slider_next_off.svg");
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-next:hover {
    border-color: #107AF2;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-next:hover:before {
    background-image: url("../images/company/map_slider_next_on.svg");
  }
}
#wrap.site .box_wrap .map_area .map {
  width: calc(100% - 476px);
  margin-left: 16px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
#wrap.site .box_wrap .map_area .map > div {
  width: 100%;
  height: 100%;
}
#wrap.site .box_wrap .map_area .map .overlay_wrap {
  max-width: 260px;
}
#wrap.site .box_wrap .map_area .map .overlay_wrap strong {
  font-size: 13px;
  font-weight: 600;
}
#wrap.site .box_wrap .map_area .map .overlay_wrap .btn_wrap {
  margin: 10px 0 0;
  text-align: left;
}
#wrap.site .box_wrap .map_area .map .overlay_wrap .btn_wrap a {
  font-size: 12px;
  padding: 8px 16px;
  background: #000;
  font-weight: 500;
  color: #fff;
  border-radius: 6px;
  display: inline-block;
}
#wrap.site .img_popup {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  z-index: 100;
}
#wrap.site .img_popup .bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
#wrap.site .img_popup .box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 120px);
  max-width: 1448px;
  height: calc(100% - 85px);
  border-radius: 10px;
  padding: 25px 40px;
  background: #fff;
}
#wrap.site .img_popup .box .img_slider {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 64px 0 32px;
  overflow: hidden;
  position: relative;
}
#wrap.site .img_popup .box .img_slider a.close_btn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: -9px;
  top: -9px;
  z-index: 2;
  font-size: 0;
  text-indent: -9999px;
}
#wrap.site .img_popup .box .img_slider a.close_btn:before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../images/company/img_popup_close_btn.svg") no-repeat center/cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#wrap.site .img_popup .box .img_slider .swiper-container {
  height: 100%;
  max-height: 700px;
}
#wrap.site .img_popup .box .img_slider .swiper-container .swiper-wrapper {
  height: 100%;
}
#wrap.site .img_popup .box .img_slider .swiper-container .swiper-slide {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
#wrap.site .img_popup .box .img_slider .swiper-container .swiper-slide img {
  margin: 0 auto;
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
#wrap.site .img_popup .box .img_slider .swiper-container .swiper-button-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #CACACA;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  transition: border 0.3s;
}
#wrap.site .img_popup .box .img_slider .swiper-container .swiper-button-prev:before {
  content: "";
  width: 19px;
  height: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.3s;
  background-image: url("../images/company/map_slider_prev_off.svg");
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  #wrap.site .img_popup .box .img_slider .swiper-container .swiper-button-prev:hover {
    border-color: #107AF2;
  }
  #wrap.site .img_popup .box .img_slider .swiper-container .swiper-button-prev:hover:before {
    background-image: url("../images/company/map_slider_prev_on.svg");
  }
}
#wrap.site .img_popup .box .img_slider .swiper-container .swiper-button-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #CACACA;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 0 6px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  transition: border 0.3s;
}
#wrap.site .img_popup .box .img_slider .swiper-container .swiper-button-next:before {
  content: "";
  width: 19px;
  height: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.3s;
  background-image: url("../images/company/map_slider_next_off.svg");
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  #wrap.site .img_popup .box .img_slider .swiper-container .swiper-button-next:hover {
    border-color: #107AF2;
  }
  #wrap.site .img_popup .box .img_slider .swiper-container .swiper-button-next:hover:before {
    background-image: url("../images/company/map_slider_next_on.svg");
  }
}
#wrap.site .img_popup .box .bot_btn {
  margin-top: -8px;
  width: 100%;
  align-items: center;
}
#wrap.site .img_popup .box .bot_btn .swiper-pagination {
  position: relative;
  font-size: 0;
}
#wrap.site .img_popup .box .bot_btn .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 6px;
}
#wrap.site .img_popup .box .bot_btn .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #107AF2;
}
@media (max-width: 1023px) {
  #wrap.site .box_wrap + .box_wrap {
    margin-top: 80px;
  }
  #wrap.site .box_wrap .txt_area strong {
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.site .box_wrap .txt_area dl {
    padding: 16px 0 32px;
  }
  #wrap.site .box_wrap .txt_area dl dt span {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.site .box_wrap .txt_area dl dt p {
    font-size: 17px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.site .box_wrap .txt_area dl dd {
    margin-top: 8px;
  }
  #wrap.site .box_wrap .txt_area dl dd a {
    padding-left: 32px;
    font-size: 17px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.site .box_wrap .map_area {
    height: 360px;
  }
  #wrap.site .box_wrap .map_area .img {
    width: 320px;
  }
  #wrap.site .box_wrap .map_area .img .over_btn {
    opacity: 1;
    left: auto;
    transform: none;
    right: 16px;
    top: 16px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    visibility: visible;
  }
  #wrap.site .box_wrap .map_area .img .over_btn i {
    width: 18px;
    height: 18px;
    background: url("../images/company/map_slide_over_icon_m.svg") center no-repeat;
    background-size: cover;
  }
  #wrap.site .box_wrap .map_area .img .over_btn span {
    font-size: 0;
    margin: 0;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn {
    padding: 16px;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button {
    width: 88px;
    margin-left: 24px;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-prev:before {
    width: 19px;
    height: 16px;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .bot_btn .button .swiper-button-next:before {
    width: 19px;
    height: 16px;
  }
  #wrap.site .box_wrap .map_area .map {
    width: calc(100% - 336px);
  }
  #wrap.site .box_wrap .map_area .map .overlay_wrap p {
    word-break: keep-all;
    word-wrap: break-word;
  }
  #wrap.site .img_popup {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    z-index: 100;
    box-sizing: border-box;
  }
  #wrap.site .img_popup .bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  #wrap.site .img_popup .box {
    max-width: calc(100% - 40px);
    width: 100%;
    padding: 20px;
  }
  #wrap.site .img_popup .box .img_slider {
    width: 100%;
    height: calc(100% - 10px);
    padding: 36px 0 16px;
  }
  #wrap.site .img_popup .box .img_slider .swiper-container {
    max-height: none;
  }
  #wrap.site .img_popup .box .img_slider a.close_btn {
    right: -12px;
    top: -12px;
  }
  #wrap.site .img_popup .box .img_slider a.close_btn:before {
    width: 16px;
    height: 16px;
  }
  #wrap.site .img_popup .box .bot_btn {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  #wrap.site .box_wrap .map_area {
    display: block;
    height: auto;
  }
  #wrap.site .box_wrap .map_area .img {
    width: 100%;
    height: auto;
  }
  #wrap.site .box_wrap .map_area .img .swiper-container .swiper-slide {
    height: auto;
    padding-top: 113%;
  }
  #wrap.site .box_wrap .map_area .map {
    width: 100%;
    margin-left: 0;
    height: auto;
    margin-top: 24px;
  }
  #wrap.site .box_wrap .map_area .map > div {
    padding-top: 72%;
  }
  #wrap.site .img_popup {
    display: none !important;
  }
  #wrap.site .img_popup .box .img_slider .swiper-container .swiper-slide {
    height: auto;
    padding-top: 51.09%;
  }
}
#wrap.about footer {
  margin-top: 0;
}
#wrap.about .cursor {
  width: 151px;
  height: 70px;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 100;
  text-align: center;
  mix-blend-mode: difference;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s;
}
#wrap.about .cursor i {
  width: 100%;
  height: 100%;
  display: block;
  background: url("../images/company/mouse_drag.png") no-repeat center/100%;
}
#wrap.about .cursor.is_visible {
  opacity: 1;
  background-color: transparent;
}
#wrap.about #aboutSticky {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}
@media (min-width: 1400px) {
  #wrap.about #aboutSticky {
    top: -147px;
  }
}
@media (min-width: 1024px) and (max-width: 1398px) {
  #wrap.about #aboutSticky {
    top: -115px;
  }
}
@media (max-width: 1022px) {
  #wrap.about #aboutSticky {
    top: -130px;
  }
}
#wrap.about .sticky {
  z-index: 98;
  top: 68px;
}
@media (min-width: 1400px) {
  #wrap.about .sticky {
    top: 100px;
    background-color: #fff;
    border-bottom: 1px solid #CaCaCa;
  }
  #wrap.about .sticky li button {
    color: #333333;
  }
  #wrap.about .sticky li button:hover {
    font-weight: bold;
  }
  #wrap.about .sticky li.active button {
    color: #107AF2;
  }
  #wrap.about .sticky li.active:after {
    background-color: #107AF2;
  }
}
#wrap.about .sec01 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
#wrap.about .sec01 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/company/about_sec01_bg.jpg") no-repeat center/cover;
  transform: scale(1.2);
  transition: 7s;
  transition-delay: 1s;
}
#wrap.about .sec01 .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transform: translate(-50%, -50%) translateY(100%);
  opacity: 0;
  transition: 1.5s;
}
#wrap.about .sec01.is_animated .bg {
  transform: scale(1);
}
#wrap.about .sec01.is_animated .logo {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}
@media (max-width: 1023px) {
  #wrap.about .sec01 .logo img {
    width: 254px;
  }
}
#wrap.about .sec_bg {
  width: 100%;
  height: 100vh;
  position: relative;
  backface-visibility: hidden;
}
#wrap.about .sec_bg .txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s;
}
#wrap.about .sec_bg .txt .inner {
  height: 100%;
  display: flex;
}
#wrap.about .sec_bg .txt p {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
}
#wrap.about .sec_bg .txt p br.pc_block {
  display: block;
}
#wrap.about .sec_bg .txt p br.tablet_block {
  display: none;
}
#wrap.about .sec_bg .txt.active {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
#wrap.about .sec_bg .swiper-container {
  width: 100%;
  height: 160%;
  position: absolute;
  left: 0;
  top: -70%;
}
#wrap.about .sec_bg .swiper-slide {
  position: relative;
}
#wrap.about .sec_bg .swiper-slide .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1023px) {
  #wrap.about .sec_bg .txt {
    transform: translateY(100px);
  }
  #wrap.about .sec_bg .txt p {
    font-size: 32px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.about .sec_bg .txt p br.pc_block {
    display: none;
  }
  #wrap.about .sec_bg .txt p br.tablet_block {
    display: block;
  }
  #wrap.about .sec_bg .txt.active {
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  #wrap.about .sec_bg .txt p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.about .sec_bg .txt p br {
    display: none !important;
  }
  #wrap.about .sec_bg .swiper-container {
    height: 130%;
    top: -40%;
  }
}
#wrap.about .sec02 .line {
  width: 1px;
  height: 0;
  background: #fff;
  position: absolute;
  left: 50%;
  top: -35%;
  z-index: 4;
  opacity: 1;
  transition: height 1s, opacity 1s;
}
#wrap.about .sec02 .line.active {
  opacity: 0;
  transition-delay: 0s;
}
#wrap.about .sec02 .line.full {
  height: 50%;
}
#wrap.about .sec02 .blur {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 120%;
  background: linear-gradient(0deg, black 90%, transparent);
  transition: 1s;
  z-index: 3;
  opacity: 1;
}
#wrap.about .sec02 .blur.active {
  opacity: 0;
}
#wrap.about .sec02 .txt {
  padding-top: 320px;
}
#wrap.about .sec02 .txt .inner {
  align-items: start;
}
#wrap.about .sec02 .swiper-slide .bg1 {
  background-image: url("../images/company/about_sec02_img01.jpg");
}
#wrap.about .sec02 .swiper-slide .bg2 {
  background-image: url("../images/company/about_sec02_img02.jpg");
}
#wrap.about .sec02 .swiper-slide .bg3 {
  background-image: url("../images/company/about_sec02_img03.jpg");
}
#wrap.about .sec02.is_animated .line {
  opacity: 1;
}
@media (max-width: 1023px) {
  #wrap.about .sec02 .line {
    top: -260px;
  }
  #wrap.about .sec02 .line.full {
    height: 400px;
  }
  #wrap.about .sec02 .txt {
    padding-top: 0;
  }
  #wrap.about .sec02 .txt .inner {
    align-items: center;
  }
  #wrap.about .sec02 .swiper-slide .bg1 {
    background-image: url("../images/company/about_sec02_img01_tablet.jpg");
  }
  #wrap.about .sec02 .swiper-slide .bg2 {
    background-image: url("../images/company/about_sec02_img02_tablet.jpg");
  }
  #wrap.about .sec02 .swiper-slide .bg3 {
    background-image: url("../images/company/about_sec02_img03_tablet.jpg");
  }
}
@media (max-width: 767px) {
  #wrap.about .sec02 .swiper-slide .bg1 {
    background-image: url("../images/company/about_sec02_img01_m.jpg");
  }
  #wrap.about .sec02 .swiper-slide .bg2 {
    background-image: url("../images/company/about_sec02_img02_m.jpg");
    background-position: left;
  }
  #wrap.about .sec02 .swiper-slide .bg3 {
    background-image: url("../images/company/about_sec02_img03_m.jpg");
    background-position: right;
  }
}
#wrap.about .sec03 {
  overflow: hidden;
}
#wrap.about .sec03 .txt {
  padding-bottom: 305px;
}
#wrap.about .sec03 .txt .inner {
  align-items: end;
  flex-direction: row-reverse;
}
#wrap.about .sec03 .swiper-slide .bg1 {
  background-image: url("../images/company/about_sec03_img01.jpg");
}
#wrap.about .sec03 .swiper-slide .bg2 {
  background-image: url("../images/company/about_sec03_img02.jpg");
}
#wrap.about .sec03 .swiper-slide .bg3 {
  background-image: url("../images/company/about_sec03_img03.jpg");
}
@media (max-width: 1023px) {
  #wrap.about .sec03 .txt {
    padding-bottom: 0;
  }
  #wrap.about .sec03 .txt .inner {
    align-items: center;
    flex-direction: row;
  }
  #wrap.about .sec03 .swiper-slide .bg1 {
    background-image: url("../images/company/about_sec03_img01_tablet.jpg");
    background-position: right;
  }
  #wrap.about .sec03 .swiper-slide .bg2 {
    background-image: url("../images/company/about_sec03_img02_tablet.jpg");
  }
  #wrap.about .sec03 .swiper-slide .bg3 {
    background-image: url("../images/company/about_sec03_img03_tablet.jpg");
    background-position: left;
  }
}
@media (max-width: 767px) {
  #wrap.about .sec03 .swiper-slide .bg1 {
    background-image: url("../images/company/about_sec03_img01_m.jpg");
    background-position: right;
  }
  #wrap.about .sec03 .swiper-slide .bg2 {
    background-image: url("../images/company/about_sec03_img02_m.jpg");
    background-position: right;
  }
  #wrap.about .sec03 .swiper-slide .bg3 {
    background-image: url("../images/company/about_sec03_img03_m.jpg");
    background-position: left;
  }
}
#wrap.about .sec04 {
  padding: 160px 0 200px;
  position: relative;
  backface-visibility: hidden;
}
#wrap.about .sec04 .bg {
  width: 1200px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 860px;
  background: url(../images/company/about_sec04_bg.jpg) no-repeat center/cover;
  transform: translateX(-50%);
  z-index: -1;
}
#wrap.about .sec04 .tit {
  text-align: center;
}
#wrap.about .sec04 .tit p {
  font-size: 60px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.2;
  font-weight: 300;
  color: #000;
}
#wrap.about .sec04 .tit p b {
  font-size: 90px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.2;
  font-weight: inherit;
  display: block;
}
#wrap.about .sec04 .tit[data-motion] {
  transform: translateY(50px);
  opacity: 0;
  transition: 0.65s;
}
#wrap.about .sec04 .tit[data-motion].is_animated {
  transform: translateY(0);
  opacity: 1;
}
#wrap.about .sec04 .round {
  margin: 80px 0 100px;
}
#wrap.about .sec04 .round[data-motion] ul li {
  transform: translateY(50%);
  opacity: 0;
  transition: transform 0.65s, opacity 0.65s;
}
#wrap.about .sec04 .round[data-motion].is_animated ul li {
  transform: translateY(0);
  opacity: 1;
}
#wrap.about .sec04 .round[data-motion].is_animated ul li:nth-of-type(2) {
  transition-delay: 0.2s;
}
#wrap.about .sec04 .round[data-motion].is_animated ul li:nth-of-type(3) {
  transition-delay: 0.4s;
}
#wrap.about .sec04 .round ul {
  display: flex;
  justify-content: center;
}
#wrap.about .sec04 .round ul li {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 2px solid #107AF2;
  background-color: #107AF2;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 2;
  mix-blend-mode: multiply;
}
#wrap.about .sec04 .round ul li .dim {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: -1;
}
#wrap.about .sec04 .round ul li p {
  width: 100%;
  text-align: center;
  font-size: 34px;
  letter-spacing: 0em;
  line-height: 1;
  line-height: 1.2;
  font-weight: 600;
  color: #107AF2;
}
#wrap.about .sec04 .round ul li:nth-of-type(2) {
  margin: 0 -23px;
  border-color: #15B874;
  background-color: #15B874;
}
#wrap.about .sec04 .round ul li:nth-of-type(2) p {
  color: #15B874;
}
#wrap.about .sec04 .round ul li:nth-of-type(3) {
  border-color: #FF6F3F;
  background-color: #FF6F3F;
}
#wrap.about .sec04 .round ul li:nth-of-type(3) p {
  color: #FF6F3F;
}
#wrap.about .sec04 .txt_area {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}
#wrap.about .sec04 .txt_area p {
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  color: #666;
}
#wrap.about .sec04 .txt_area p span {
  display: block;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.65s;
}
#wrap.about .sec04 .txt_area p.is_webmotion span {
  transform: translateY(0);
  opacity: 1;
}
#wrap.about .sec04 .txt_area p + p {
  margin-top: 34px;
}
@media (max-width: 1199px) {
  #wrap.about .sec04 .round ul li {
    width: calc(33.3333333333% + 6px);
    height: auto;
    padding-top: 32.9%;
    position: relative;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(2) {
    margin: 0 -21px;
  }
  #wrap.about .sec04 .round ul li p {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1023px) {
  #wrap.about .sec04 {
    padding: 80px 20px;
  }
  #wrap.about .sec04.is_animated .bg {
    opacity: 1;
  }
  #wrap.about .sec04 .bg {
    width: 100% !important;
    top: 0 !important;
    opacity: 0;
    transition: opacity 1.5s;
  }
  #wrap.about .sec04 .tit {
    text-align: center;
  }
  #wrap.about .sec04 .tit p {
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.2;
  }
  #wrap.about .sec04 .tit p b {
    font-size: 60px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.2;
  }
  #wrap.about .sec04 .tit[data-motion] {
    transform: translateY(50px);
    opacity: 0;
    transition: 0.65s;
  }
  #wrap.about .sec04 .tit[data-motion].is_animated {
    transform: translateY(0);
    opacity: 1;
  }
  #wrap.about .sec04 .round {
    margin: 40px 0;
  }
  #wrap.about .sec04 .round ul li p {
    font-size: 26px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(1) {
    border-color: #107AF2;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(1) .dim {
    background: #107AF2;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(1) p {
    color: #fff !important;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(2) {
    margin: 0 -10px;
    border-color: #15B874;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(2) .dim {
    background: #15B874;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(2) p {
    color: #fff !important;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(3) {
    border-color: #FF6F3F;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(3) .dim {
    background: #FF6F3F;
  }
  #wrap.about .sec04 .round ul li:nth-of-type(3) p {
    color: #fff !important;
  }
  #wrap.about .sec04 .txt_area p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.about .sec04 .txt_area p span {
    transform: translateY(60px);
  }
  #wrap.about .sec04 .txt_area p.is_animated span {
    transform: translateY(0);
    opacity: 1;
  }
  #wrap.about .sec04 .txt_area p + p {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  #wrap.about .sec04 .tit p {
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.2;
  }
  #wrap.about .sec04 .tit p b {
    font-size: 40px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.2;
  }
  #wrap.about .sec04 .round ul li p {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.about .sec04 .txt_area p {
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
}
#wrap.about .sec05 {
  padding: 160px 0;
  backface-visibility: hidden;
  background: #fff;
  /* swiper */
}
#wrap.about .sec05 .tit strong {
  display: block;
  font-size: 50px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #000;
  font-weight: 600;
}
#wrap.about .sec05 .tit p {
  margin-top: 24px;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
}
#wrap.about .sec05 .tab_btn {
  margin: 32px 0 48px;
  display: table;
  width: 100%;
}
#wrap.about .sec05 .tab_btn a {
  display: table-cell;
  vertical-align: top;
  width: 33.333333%;
  height: 72px;
  border: 1px solid #CACACA;
  text-align: center;
  transition: 0.3s;
  font-size: 22px;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 400;
}
#wrap.about .sec05 .tab_btn a + a {
  border-left: 0;
}
#wrap.about .sec05 .tab_btn a:before {
  content: "";
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
#wrap.about .sec05 .tab_btn a.active {
  background: linear-gradient(90deg, #07B9C5 0%, #108EF8 100%);
  color: #fff;
}
#wrap.about .sec05 .scroll_title {
  position: relative;
}
#wrap.about .sec05 .scroll_title p {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #333;
  font-weight: 500;
  display: none;
}
#wrap.about .sec05 .scroll_title p.active {
  display: block;
}
#wrap.about .sec05 .scroll_wrap {
  padding-top: 24px;
  display: flex;
}
#wrap.about .sec05 .scroll_wrap .scroll_container {
  display: flex;
}
#wrap.about .sec05 .scroll_wrap .tab_cont + .tab_cont {
  margin-left: 100px;
}
#wrap.about .sec05 .scroll_wrap .tab_cont:first-child li:first-child {
  margin-left: 0;
}
#wrap.about .sec05 .scroll_wrap .tab_cont .txt {
  display: none;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul {
  display: flex;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li {
  width: 600px;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li .img_area {
  width: 100%;
  position: relative;
  border-radius: 10px;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li .img_area > img {
  width: 100%;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li .img_area .reddot {
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 10px 0 10px 0;
  height: 72px;
  overflow: hidden;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li .img_area .reddot img {
  width: auto;
  height: 100%;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li:first-child {
  margin-left: 20px;
  width: auto;
  white-space: nowrap;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li:first-child .tit p {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
  margin: 0;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li + li {
  margin-left: 100px;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area {
  padding: 32px 0 0;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  color: #333;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area strong span {
  font-weight: 400;
  color: #666;
}
#wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area p {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  color: #666;
  margin-top: 16px;
}
#wrap.about .sec05 .swiper_wrap {
  padding-top: 24px;
  overflow: visible;
}
#wrap.about .sec05 .swiper_wrap ul li {
  width: 600px;
}
#wrap.about .sec05 .swiper_wrap ul li .img_area {
  width: 100%;
  position: relative;
  border-radius: 10px;
}
#wrap.about .sec05 .swiper_wrap ul li .img_area > img {
  width: 100%;
}
#wrap.about .sec05 .swiper_wrap ul li .img_area .reddot {
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 10px 0 10px 0;
  height: 72px;
  overflow: hidden;
}
#wrap.about .sec05 .swiper_wrap ul li .img_area .reddot img {
  width: auto;
  height: 100%;
}
#wrap.about .sec05 .swiper_wrap ul li.txt_slide {
  width: auto;
  white-space: nowrap;
}
#wrap.about .sec05 .swiper_wrap ul li.txt_slide .tit strong {
  display: none;
}
#wrap.about .sec05 .swiper_wrap ul li.txt_slide .tit p {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
  margin: 0;
}
#wrap.about .sec05 .swiper_wrap ul li .txt_area {
  padding: 32px 0 0;
}
#wrap.about .sec05 .swiper_wrap ul li .txt_area strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  color: #333;
}
#wrap.about .sec05 .swiper_wrap ul li .txt_area strong span {
  font-weight: 400;
  color: #666;
}
#wrap.about .sec05 .swiper_wrap ul li .txt_area p {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  color: #666;
  margin-top: 16px;
}
@media (max-width: 1539px) {
  #wrap.about .sec05 .scroll_title p {
    font-size: 28px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li {
    width: 564px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li .img_area .reddot {
    height: 70px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area strong {
    font-size: 22px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
}
@media (max-width: 1023px) {
  #wrap.about .sec05 {
    padding: 80px 0;
    /* swiper */
  }
  #wrap.about .sec05 .tit strong {
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.about .sec05 .tit p {
    margin-top: 16px;
    font-size: 17px;
    letter-spacing: -0.03em;
    line-height: 1;
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.4;
  }
  #wrap.about .sec05 .tab_btn {
    display: none;
  }
  #wrap.about .sec05 .scroll_title {
    display: none;
  }
  #wrap.about .sec05 .scroll_wrap {
    padding-top: 40px;
    display: block;
  }
  #wrap.about .sec05 .scroll_wrap .scroll_container {
    display: block;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont + .tab_cont {
    margin-left: 0;
    margin-top: 80px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont .txt {
    display: block;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont .txt strong {
    font-size: 17px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1;
    font-weight: 600;
    color: #107af2;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont .txt p {
    font-size: 22px;
    letter-spacing: -0.03em;
    line-height: 1;
    word-break: keep-all;
    word-wrap: break-word;
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul {
    margin-top: 24px;
    flex-wrap: wrap;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li {
    width: calc(50% - 8px);
    margin-right: 16px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li .img_area .reddot {
    height: 20%;
    min-height: 38px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li:first-child {
    display: none;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li + li {
    margin-left: 0;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li:nth-of-type(2n-1) {
    margin-right: 0;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li:nth-of-type(n+4) {
    margin-top: 48px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area {
    padding: 24px 0 0;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area strong {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.4;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area p {
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 8px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li .txt_area p br {
    display: none;
  }
  #wrap.about .sec05 .swiper_wrap {
    padding-top: 40px;
    overflow: visible;
  }
  #wrap.about .sec05 .swiper_wrap ul {
    display: block;
    font-size: 0;
  }
  #wrap.about .sec05 .swiper_wrap ul li {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 24px);
    margin-right: 48px;
    margin-bottom: 48px;
  }
  #wrap.about .sec05 .swiper_wrap ul li.mr {
    margin-right: 0;
  }
  #wrap.about .sec05 .swiper_wrap ul li .img_area .reddot {
    height: 20%;
    min-height: 38px;
  }
  #wrap.about .sec05 .swiper_wrap ul li.txt_slide {
    width: 100%;
    display: block;
    margin: 32px 0 24px;
    white-space: normal;
  }
  #wrap.about .sec05 .swiper_wrap ul li.txt_slide:first-child {
    margin-top: 0;
  }
  #wrap.about .sec05 .swiper_wrap ul li.txt_slide .tit strong {
    display: block;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    color: #107AF2;
  }
  #wrap.about .sec05 .swiper_wrap ul li.txt_slide .tit p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    color: #000;
    margin-top: 8px;
  }
  #wrap.about .sec05 .swiper_wrap ul li.txt_slide .tit p br {
    display: none;
  }
  #wrap.about .sec05 .swiper_wrap ul li .txt_area {
    padding: 24px 0 0;
  }
  #wrap.about .sec05 .swiper_wrap ul li .txt_area strong {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.4;
  }
  #wrap.about .sec05 .swiper_wrap ul li .txt_area p {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 8px;
  }
  #wrap.about .sec05 .swiper_wrap ul li .txt_area p br {
    display: none;
  }
}
@media (max-width: 767px) {
  #wrap.about .sec05 {
    /* swiper */
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li {
    width: 100%;
    margin-right: 0;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li:nth-of-type(n+4) {
    margin-top: 60px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li + li {
    margin-top: 60px;
  }
  #wrap.about .sec05 .scroll_wrap .tab_cont ul li:nth-of-type(2) {
    margin-top: 0;
  }
  #wrap.about .sec05 .swiper_wrap ul li {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 60px;
  }
  #wrap.about .sec05 .swiper_wrap ul li.txt_slide {
    width: 100%;
    display: block;
    margin: 20px 0 24px;
  }
  #wrap.about .sec05 .swiper_wrap ul li.txt_slide:first-child {
    margin-top: 0;
  }
  #wrap.about .sec05 .swiper_wrap ul li .txt_area p {
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
}
#wrap.about .sec06 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  backface-visibility: hidden;
}
#wrap.about .sec06 .pin_wrap {
  width: 100%;
  position: relative;
}
#wrap.about .sec06 .scroll_wrap {
  padding: 160px 0 212px;
}
#wrap.about .sec06 .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/company/about_sec06_bg.jpg) no-repeat top/100%;
  z-index: -1;
}
#wrap.about .sec06 .tit strong {
  font-size: 50px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
}
#wrap.about .sec06 .tit p {
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
  color: #000;
  margin-top: 24px;
}
#wrap.about .sec06 .tit p br {
  display: none;
}
#wrap.about .sec06 .list {
  margin-top: 106px;
  position: relative;
}
#wrap.about .sec06 .list .gradient_line {
  width: 4px;
  height: calc(100% - 160px);
  position: absolute;
  left: 660px;
  top: 10px;
  background: linear-gradient(180deg, #07B9C5, #108EF8);
}
#wrap.about .sec06 .list ul li {
  display: flex;
}
#wrap.about .sec06 .list ul li:last-child .cont .desc .txt:last-child .line {
  display: none;
}
#wrap.about .sec06 .list ul li .year {
  width: 250px;
  margin-top: -25px;
}
#wrap.about .sec06 .list ul li .year p {
  font-size: 80px;
  letter-spacing: 0em;
  line-height: 1;
  line-height: 1.2;
  font-weight: 600;
  color: #333;
}
#wrap.about .sec06 .list ul li .cont {
  padding-left: 110px;
  width: calc(100% - 250px);
  box-sizing: border-box;
  display: flex;
}
#wrap.about .sec06 .list ul li .cont .logo {
  width: 300px;
  padding-right: 50px;
  text-align: right;
}
#wrap.about .sec06 .list ul li .cont .desc {
  width: calc(100% - 300px);
}
#wrap.about .sec06 .list ul li .cont .desc .txt {
  padding-left: 50px;
  padding-bottom: 80px;
  position: relative;
}
#wrap.about .sec06 .list ul li .cont .desc .txt:before {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: -8px;
  top: 10px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-sizing: border-box;
  z-index: 2;
  transition: 0.3s;
}
#wrap.about .sec06 .list ul li .cont .desc .txt .line {
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 10px;
}
#wrap.about .sec06 .list ul li .cont .desc .txt .line .progress {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
#wrap.about .sec06 .list ul li .cont .desc .txt dl dt {
  font-size: 40px;
  letter-spacing: 0em;
  line-height: 1;
  color: #333;
  font-weight: 600;
}
#wrap.about .sec06 .list ul li .cont .desc .txt dl dd {
  margin-top: 16px;
  font-size: 20px;
  letter-spacing: 0em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  color: #666;
  font-weight: 400;
}
#wrap.about .sec06 .list ul li .cont .desc .txt dl dd .img {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}
#wrap.about .sec06 .list ul li .cont .desc .txt dl dd .img img {
  max-width: 100%;
}
#wrap.about .sec06 .list ul li .cont .desc .txt.is_active:before {
  border-color: #0BB8C5;
}
#wrap.about .sec06 .list ul li .cont .desc .txt.is_end:before {
  border-color: #0BB8C5;
  background: #0BB8C5;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #wrap.about .sec06 {
    height: auto;
  }
  #wrap.about .sec06 .scroll_wrap {
    padding: 80px 60px;
  }
  #wrap.about .sec06 .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/company/about_sec06_bg_tablet.jpg) no-repeat top/100%;
    z-index: -1;
  }
  #wrap.about .sec06 .tit strong {
    font-size: 36px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.about .sec06 .tit p {
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    margin-top: 14px;
  }
  #wrap.about .sec06 .tit p br {
    display: block;
  }
  #wrap.about .sec06 .list {
    margin-top: 60px;
  }
  #wrap.about .sec06 .list .gradient_line {
    width: 2px;
    height: calc(100% - 90px);
    left: 210px;
    top: 10px;
  }
  #wrap.about .sec06 .list ul li {
    display: flex;
  }
  #wrap.about .sec06 .list ul li:last-child .cont .desc .txt:last-child .line {
    display: none;
  }
  #wrap.about .sec06 .list ul li .year {
    width: 150px;
    margin-top: -15px;
  }
  #wrap.about .sec06 .list ul li .year p {
    font-size: 50px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.2;
  }
  #wrap.about .sec06 .list ul li .cont {
    padding-left: 60px;
    width: calc(100% - 150px);
    display: block;
  }
  #wrap.about .sec06 .list ul li .cont .logo {
    width: auto;
    height: 37px;
    padding-right: 0;
    padding-left: 24px;
    text-align: left;
  }
  #wrap.about .sec06 .list ul li .cont .logo img {
    max-height: 100%;
  }
  #wrap.about .sec06 .list ul li .cont .desc {
    width: 100%;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt {
    padding-left: 24px;
    padding-bottom: 40px;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt:first-child:before {
    top: -70%;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt:first-child .line {
    top: auto;
    bottom: -15px;
    height: 180%;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt:before {
    width: 12px;
    height: 12px;
    left: -5px;
    top: 15px;
    border: 2px solid #fff;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt .line {
    width: 2px;
    top: 15px;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt dl dt {
    font-size: 26px;
    letter-spacing: 0em;
    line-height: 1;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt dl dd {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt dl dd .img {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  #wrap.about .sec06 {
    height: auto;
  }
  #wrap.about .sec06 .scroll_wrap {
    padding: 80px 0;
  }
  #wrap.about .sec06 .bg {
    background: url(../images/company/about_sec06_bg_m.jpg) no-repeat top/100%;
  }
  #wrap.about .sec06 .tit strong {
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.about .sec06 .tit p {
    font-size: 17px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
    word-break: keep-all;
    word-wrap: break-word;
    margin-top: 16px;
  }
  #wrap.about .sec06 .tit p br {
    display: block;
  }
  #wrap.about .sec06 .list {
    margin: 52px 4px 0;
    position: relative;
    padding-left: 30px;
  }
  #wrap.about .sec06 .list:before {
    content: "";
    width: 30px;
    height: 100px;
    position: absolute;
  }
  #wrap.about .sec06 .list .gradient_line {
    width: 2px;
    left: 5px;
    top: 105px;
    height: calc(100% - 185px);
  }
  #wrap.about .sec06 .list ul li {
    display: block;
  }
  #wrap.about .sec06 .list ul li + li {
    padding-top: 40px;
  }
  #wrap.about .sec06 .list ul li:first-child .cont .desc .txt:first-child .line {
    height: 78px;
  }
  #wrap.about .sec06 .list ul li:nth-of-type(2) .cont .desc .txt:first-child .line {
    height: 300px;
  }
  #wrap.about .sec06 .list ul li:nth-of-type(3) .cont .desc .txt:first-child .line {
    height: 210px;
  }
  #wrap.about .sec06 .list ul li .year {
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
  }
  #wrap.about .sec06 .list ul li .year p {
    font-size: 50px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.2;
  }
  #wrap.about .sec06 .list ul li .cont {
    padding-left: 0;
    width: 100%;
    display: block;
  }
  #wrap.about .sec06 .list ul li .cont .logo {
    width: 100%;
    height: 28px;
    padding-right: 0;
    text-align: left;
  }
  #wrap.about .sec06 .list ul li .cont .logo img {
    max-width: 60%;
    max-height: 100%;
  }
  #wrap.about .sec06 .list ul li .cont .desc {
    width: 100%;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt {
    padding-left: 0;
    padding-bottom: 40px;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt:first-child:before {
    top: -70%;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt:first-child .line {
    top: auto;
    bottom: -12px;
    height: 280px;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt:before {
    width: 12px;
    height: 12px;
    left: -30px;
    top: 10px;
    border: 2px solid #CACACA;
    background: #CACACA;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt .line {
    width: 2px;
    left: -25px;
    top: 10px;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt .line .progress {
    background: #CACACA;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt dl dt {
    font-size: 26px;
    letter-spacing: 0em;
    line-height: 1;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt dl dd {
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: 0em;
    line-height: 1;
    line-height: 1.7;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt dl dd .img {
    margin-top: 16px;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt.is_active:before {
    border-color: #0BB8C5;
    background: #fff;
  }
  #wrap.about .sec06 .list ul li .cont .desc .txt.is_end:before {
    border-color: #0BB8C5;
    background: #0BB8C5;
  }
}
#wrap.esg * {
  word-break: keep-all;
}
#wrap.esg .sub_visual {
  position: relative;
}
#wrap.esg .sub_visual #tabAnchor {
  position: absolute;
  bottom: 100px;
}
#wrap.esg .tab_btn_type01 {
  position: relative;
  margin-bottom: 80px;
}
#wrap.esg .tab_btn_type01 li {
  width: 25%;
}
#wrap.esg .vision_area {
  margin-bottom: 80px;
}
#wrap.esg .dash li {
  position: relative;
  padding-left: 10px;
}
#wrap.esg .dash li:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.esg .dash.dot li:before {
  content: "·";
}
#wrap.esg .dash.point li {
  padding-left: 17px;
}
#wrap.esg .dash.point li span {
  position: absolute;
  top: 0;
}
#wrap.esg .dash.point li p {
  padding-left: 70px;
  word-break: keep-all;
}
#wrap.esg .dash.point li:before {
  content: "√";
}
#wrap.esg .dash.num li {
  padding-left: 17px;
}
#wrap.esg .dash.num li:nth-child(1):before {
  content: "1.";
}
#wrap.esg .dash.num li:nth-child(2):before {
  content: "2.";
}
#wrap.esg .dash.num li:nth-child(3):before {
  content: "3.";
}
#wrap.esg .dash.num li:nth-child(4):before {
  content: "4.";
}
#wrap.esg .dash.num li:nth-child(5):before {
  content: "5.";
}
@media (max-width: 1023px) {
  #wrap.esg .dash.point li p {
    padding-left: 55px;
  }
}
#wrap.esg section {
  margin-bottom: 120px;
}
#wrap.esg section.bg_gray,
#wrap.esg section .bg_gray {
  background-color: #f3f3f3;
}
#wrap.esg section.bg_gray .inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
#wrap.esg section:last-child {
  margin-bottom: 0;
}
#wrap.esg section > .inner > .top h3 {
  margin-bottom: 24px;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
}
#wrap.esg section > .inner > .top .p2 {
  margin-bottom: 32px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5rem;
}
#wrap.esg .tab_title h3 {
  margin-bottom: 24px;
  font-size: 50px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.esg .tab_title p {
  margin-bottom: 32px;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.125rem;
}
#wrap.esg .tab_title img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
#wrap.esg .thumb_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
  width: 100%;
}
#wrap.esg .thumb_list li {
  width: 50%;
  padding: 32px 12px;
  color: #666666;
}
#wrap.esg .thumb_list li:nth-child(1), #wrap.esg .thumb_list li:nth-child(2) {
  padding: 0 12px 32px;
}
#wrap.esg .thumb_list li:nth-child(odd) {
  padding-left: 0;
}
#wrap.esg .thumb_list li:nth-child(even) {
  padding-right: 0;
}
#wrap.esg .thumb_list .img_wrap {
  margin-bottom: 24px;
}
#wrap.esg .thumb_list .img_wrap img {
  display: block;
  width: 100%;
  height: auto;
}
#wrap.esg .promise {
  display: block;
  width: 100%;
  font-weight: 400;
}
#wrap.esg .box {
  margin-bottom: 48px;
}
#wrap.esg .box:last-child {
  margin-bottom: 0;
}
#wrap.esg .box strong {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.125rem;
  font-weight: 600;
}
#wrap.esg .box .bg_gray.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
}
#wrap.esg .box .bg_gray.flex-container p {
  width: calc(100% - 160px);
  padding-right: 114px;
}
@media (max-width: 1023px) {
  #wrap.esg .tab_btn_type01 {
    margin-bottom: 60px;
  }
  #wrap.esg .tab_title h3 {
    font-size: 34px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 2.125rem;
  }
  #wrap.esg .tab_title p {
    font-size: 17px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5rem;
  }
  #wrap.esg .tab_title .img_wrap {
    border-radius: 10px;
  }
  #wrap.esg .vision_area {
    margin-bottom: 40px;
  }
  #wrap.esg section {
    margin-bottom: 80px;
  }
  #wrap.esg section.bg_gray .inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #wrap.esg section.bg_gray > .inner > .top .p2 {
    margin-bottom: 48px;
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.esg section > .inner > .top h3 {
    margin-bottom: 16px;
    font-size: 26px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 2.25rem;
  }
  #wrap.esg section > .inner > .top .p2 {
    font-size: 17px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5rem;
  }
  #wrap.esg .thumb_list li {
    padding: 0 12px 30px;
  }
  #wrap.esg .thumb_list li li:nth-child(1),
  #wrap.esg .thumb_list li li:nth-child(2) {
    padding: 0 12px 30px;
  }
  #wrap.esg .thumb_list .p2 {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg .thumb_list .img_wrap {
    position: relative;
    width: 100%;
    height: 0;
    margin-bottom: 16px;
    padding-top: 56.25%;
  }
  #wrap.esg .thumb_list .img_wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  #wrap.esg .box strong {
    margin-bottom: 16px;
    font-size: 20px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg .box .bg_gray.flex-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 24px 20px;
  }
  #wrap.esg .box .bg_gray.flex-container p {
    width: 100%;
    padding: 0 0 32px;
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg .promise {
    padding-top: 32px;
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
}
@media (max-width: 767px) {
  #wrap.esg .thumb_list {
    gap: 0;
    margin-bottom: 0;
  }
  #wrap.esg .thumb_list li {
    width: 100%;
    padding: 0 0 60px;
  }
  #wrap.esg .thumb_list li:nth-child(1), #wrap.esg .thumb_list li:nth-child(1), #wrap.esg .thumb_list li:nth-child(even), #wrap.esg .thumb_list li:nth-child(odd) {
    padding: 0 0 60px;
  }
  #wrap.esg .thumb_list li:last-child {
    padding: 0 0 48px;
  }
}
@media (max-width: 479px) {
  #wrap.esg .tab_btn_type01 li {
    width: 120px;
  }
}
#wrap.esg.safety .system .inner > .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.safety .system .box {
  margin-bottom: 48px;
}
#wrap.esg.safety .system .bg_gray {
  color: #666666;
}
#wrap.esg.safety .strategy {
  width: 100%;
  margin-right: -24px;
  font-size: 0;
}
#wrap.esg.safety .strategy > li {
  display: inline-block;
  width: 25%;
  padding-right: 24px;
  vertical-align: top;
}
#wrap.esg.safety .strategy > li:nth-child(1) .top {
  background-color: #1AB6C3;
}
#wrap.esg.safety .strategy > li:nth-child(2) > div {
  border-color: #05BDDE;
}
#wrap.esg.safety .strategy > li:nth-child(2) .top {
  background-color: #05BDDE;
}
#wrap.esg.safety .strategy > li:nth-child(2) .bottom {
  border-color: #05BDDE;
}
#wrap.esg.safety .strategy > li:nth-child(3) > div {
  border-color: #0E96F4;
}
#wrap.esg.safety .strategy > li:nth-child(3) .top {
  background-color: #0E96F4;
}
#wrap.esg.safety .strategy > li:nth-child(3) .bottom {
  border-color: #0E96F4;
}
#wrap.esg.safety .strategy > li:nth-child(4) > div {
  border-color: #1281FF;
}
#wrap.esg.safety .strategy > li:nth-child(4) .top {
  background-color: #1281FF;
}
#wrap.esg.safety .strategy > li:nth-child(4) .bottom {
  border-color: #1281FF;
}
#wrap.esg.safety .strategy .top {
  padding: 20px 10px;
  text-align: center;
  color: #fff;
  border-radius: 10px 10px 0 0;
}
#wrap.esg.safety .strategy .top p {
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.375rem;
}
#wrap.esg.safety .strategy .top span {
  font-size: 16px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.375rem;
}
#wrap.esg.safety .strategy .bottom {
  height: 205px;
  padding: 24px;
  border-radius: 0 0 10px 10px;
  border: 1px solid #1AB6C3;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
}
#wrap.esg.safety .activity .diagram {
  padding: 64px 10px;
  text-align: center;
  background-color: #f3f3f3;
  border-radius: 10px;
}
#wrap.esg.safety .activity .diagram img {
  max-width: 560px;
  height: auto;
}
#wrap.esg.safety .activity .info {
  display: block;
  width: 100%;
  margin-top: 32px;
}
#wrap.esg.safety .activity .info li {
  width: 100%;
  color: #333333;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
}
#wrap.esg.safety .activity .info li .bold {
  font-weight: 600;
}
#wrap.esg.safety .activity .info li:last-child {
  padding-top: 20px;
  padding-left: 0;
}
#wrap.esg.safety .activity .info li:last-child:before {
  display: none;
}
#wrap.esg.safety .director .inner > .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.safety .director .box {
  margin-bottom: 48px;
}
#wrap.esg.safety .director .box:last-child {
  margin-bottom: 0;
}
#wrap.esg.safety .director .box strong {
  margin-bottom: 24px;
}
#wrap.esg.safety .rule .box1 {
  margin-bottom: 48px;
}
#wrap.esg.safety .rule .rule_step {
  margin-right: -24px;
  font-size: 0;
}
#wrap.esg.safety .rule .rule_step li {
  display: inline-block;
  width: 33.333%;
  padding-right: 24px;
  padding-bottom: 24px;
  vertical-align: top;
}
#wrap.esg.safety .rule .rule_step li:nth-child(4), #wrap.esg.safety .rule .rule_step li:nth-child(5), #wrap.esg.safety .rule .rule_step li:nth-child(6) {
  padding-bottom: 0;
}
#wrap.esg.safety .rule .rule_step li > div {
  min-height: 390px;
  border: 1px solid #CaCaCa;
  border-radius: 10px;
  overflow: hidden;
}
#wrap.esg.safety .rule .rule_step .img_wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 62.827%;
}
#wrap.esg.safety .rule .rule_step .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#wrap.esg.safety .rule .rule_step .text_wrap {
  position: relative;
  padding: 32px 40px 32px 84px;
}
#wrap.esg.safety .rule .rule_step .text_wrap .num {
  position: absolute;
  top: 32px;
  left: 40px;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  color: #107AF2;
}
#wrap.esg.safety .explanation {
  position: relative;
  width: 100%;
  height: 0;
  margin-top: 32px;
  padding-top: 43.75%;
}
#wrap.esg.safety .explanation:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/company/esg/safety/education_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#wrap.esg.safety .explanation > ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  font-size: 0;
}
#wrap.esg.safety .explanation > ul > li {
  display: inline-block;
  width: 30%;
  margin-right: 5%;
  vertical-align: top;
}
#wrap.esg.safety .explanation > ul > li:last-child {
  margin-right: 0;
}
#wrap.esg.safety .explanation .title {
  height: 125px;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
  font-weight: 600;
}
#wrap.esg.safety .explanation .title .num {
  display: block;
  width: 100%;
  color: #1ab5c3;
}
#wrap.esg.safety .explanation .desc {
  padding-top: 32px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5rem;
}
#wrap.esg.safety .explanation .desc p {
  padding-bottom: 16px;
}
#wrap.esg.safety .explanation .desc p:last-child {
  padding-bottom: 0;
}
#wrap.esg.safety .explanation .desc li {
  position: relative;
  padding-left: 20px;
}
#wrap.esg.safety .explanation .desc li span {
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.esg.safety .activityImg {
  overflow: hidden;
}
#wrap.esg.safety .activityImg .inner > .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.safety .activityImg .slider_wrap .swiper-container {
  overflow: visible;
  opacity: 1;
  transform: translateX(0);
}
#wrap.esg.safety .activityImg .slider_wrap .swiper-slide {
  width: 588px;
}
#wrap.esg.safety .activityImg .slider_wrap .swiper-slide .img_area {
  width: 100%;
  height: 330px;
  border-radius: 0;
  overflow: hidden;
}
#wrap.esg.safety .activityImg .slider_wrap .swiper-slide .img_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  opacity: 1;
  transform: translateX(0);
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn .swiper-pagination {
  position: relative;
  width: calc(100% - 200px);
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
  background-color: #D9D9D9;
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #107AF2;
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn .button {
  width: 200px;
  padding-left: 80px;
  font-size: 0;
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div {
  width: 56px;
  height: 56px;
  border: 1px solid #CACACA;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  inset: auto;
  margin: 0;
  background: #fff;
  opacity: 1;
  transition: border 0.3s;
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div:before {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.3s;
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div.swiper-button-prev:before {
  background-image: url("../images/main/sec05_slider_prev_off.svg");
}
@media (min-width: 1024px) {
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div.swiper-button-prev:hover {
    border-color: #107AF2;
  }
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div.swiper-button-prev:hover:before {
    background-image: url("../images/main/sec05_slider_prev_on.svg");
  }
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div.swiper-button-next {
  margin-left: 8px;
}
#wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div.swiper-button-next:before {
  background-image: url("../images/main/sec05_slider_next_off.svg");
}
@media (min-width: 1024px) {
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div.swiper-button-next:hover {
    border-color: #107AF2;
  }
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div.swiper-button-next:hover:before {
    background-image: url("../images/main/sec05_slider_next_on.svg");
  }
}
@media (max-width: 1299px) {
  #wrap.esg.safety .strategy > li {
    width: 50%;
    padding: 0 8px;
  }
  #wrap.esg.safety .strategy > li:nth-of-type(1), #wrap.esg.safety .strategy > li:nth-of-type(2) {
    padding: 0 8px 24px;
  }
  #wrap.esg.safety .strategy > li:nth-child(odd) {
    padding-left: 0;
  }
  #wrap.esg.safety .strategy > li:nth-child(even) {
    padding-right: 0;
  }
}
@media (max-width: 1149px) {
  #wrap.esg.safety .education .explanation > ul > li {
    margin-right: 2%;
  }
  #wrap.esg.safety .education .explanation .title {
    height: 95px;
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
  #wrap.esg.safety .education .explanation .title .num {
    margin-bottom: 8px;
  }
  #wrap.esg.safety .education .explanation .desc {
    font-size: 16px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.375rem;
  }
}
@media (max-width: 1079px) {
  #wrap.esg.safety .education .explanation {
    height: auto;
    padding: 60px 0;
    background-color: #f3f3f3;
  }
  #wrap.esg.safety .education .explanation:before {
    background-image: none;
  }
  #wrap.esg.safety .education .explanation > ul {
    position: static;
    transform: none;
  }
  #wrap.esg.safety .education .explanation > ul > li {
    width: 100%;
    margin: 0 0 48px;
  }
  #wrap.esg.safety .education .explanation > ul > li:last-child {
    margin: 0;
  }
  #wrap.esg.safety .education .explanation .title {
    height: auto;
    padding-bottom: 8px;
    font-size: 20px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.75rem;
    color: #333333;
    border-color: #CaCaCa;
  }
  #wrap.esg.safety .education .explanation .title .num {
    margin-bottom: 8px;
  }
  #wrap.esg.safety .education .explanation .desc {
    padding-top: 16px;
    font-size: 16px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.375rem;
    color: #666666;
  }
  #wrap.esg.safety .education .explanation .desc p {
    padding-bottom: 24px;
  }
  #wrap.esg.safety .education .explanation .desc p:last-of-type {
    padding-bottom: 0;
  }
}
@media (max-width: 1023px) {
  #wrap.esg.safety section.bg_gray .promise {
    padding-top: 0;
  }
  #wrap.esg.safety .system .inner > .top h3 {
    margin-bottom: 32px;
  }
  #wrap.esg.safety .strategy .top {
    padding: 24px 10px 22px;
  }
  #wrap.esg.safety .strategy .top p {
    padding-bottom: 8px;
    font-size: 20px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.safety .strategy .top span {
    font-size: 14px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.safety .strategy .bottom {
    height: 186px;
    padding: 22px 27px 28px;
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.625rem;
  }
  #wrap.esg.safety .strategy > li:nth-child(3) .bottom, #wrap.esg.safety .strategy > li:nth-child(4) .bottom {
    height: 134px;
  }
  #wrap.esg.safety .activity .diagram {
    padding: 32px;
  }
  #wrap.esg.safety .activity .diagram img {
    max-width: 500px;
    width: 100%;
  }
  #wrap.esg.safety .activity .info {
    margin-top: 24px;
  }
  #wrap.esg.safety .activity .info li {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.625rem;
  }
  #wrap.esg.safety .director .box strong {
    margin-bottom: 16px;
  }
  #wrap.esg.safety .director .box .p2 {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg.safety .director .table_wrap colgroup col:nth-of-type(1), #wrap.esg.safety .director .table_wrap colgroup col:nth-of-type(2), #wrap.esg.safety .director .table_wrap colgroup col:nth-of-type(3) {
    width: 20%;
  }
  #wrap.esg.safety .director .table_wrap colgroup col:nth-of-type(4) {
    width: 40%;
  }
  #wrap.esg.safety .rule .top .p2 {
    margin-bottom: 32px;
    font-size: 17px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5rem;
  }
  #wrap.esg.safety .rule .rule_step li {
    width: 50%;
  }
  #wrap.esg.safety .rule .rule_step li > div {
    min-height: 320px;
  }
  #wrap.esg.safety .rule .rule_step .text_wrap {
    padding: 24px 20px 24px 48px;
  }
  #wrap.esg.safety .rule .rule_step .text_wrap .num {
    top: 26px;
    left: 20px;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1;
  }
  #wrap.esg.safety .rule .rule_step .text_wrap p {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg.safety .rule .box2 .table_wrap colgroup col:nth-of-type(1) {
    width: 10%;
  }
  #wrap.esg.safety .rule .box2 .table_wrap colgroup col:nth-of-type(2) {
    width: 27%;
  }
  #wrap.esg.safety .rule .box2 .table_wrap colgroup col:nth-of-type(3) {
    width: 29%;
  }
  #wrap.esg.safety .rule .box2 .table_wrap colgroup col:nth-of-type(4) {
    width: 34%;
  }
  #wrap.esg.safety .education .top .p2 {
    font-size: 17px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5rem;
  }
  #wrap.esg.safety .education .explanation .title .num {
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1;
  }
  #wrap.esg.safety .education .explanation .desc {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg.safety .activityImg .inner > .top h3 {
    margin-bottom: 16px;
  }
  #wrap.esg.safety .activityImg .slider_wrap .swiper-slide {
    width: 320px;
  }
  #wrap.esg.safety .activityImg .slider_wrap .swiper-slide .img_area {
    height: 180px;
  }
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn {
    margin-top: 16px;
  }
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn .swiper-pagination {
    width: calc(100% - 112px);
  }
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn .button {
    width: 112px;
    padding-left: 24px;
    font-size: 0;
  }
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div {
    width: 40px;
    height: 40px;
  }
  #wrap.esg.safety .activityImg .slider_wrap .bot_btn .button > div:before {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  #wrap.esg.safety .rule .rule_step {
    margin-right: 0;
  }
  #wrap.esg.safety .rule .rule_step li {
    width: 100%;
    padding: 0 0 16px;
  }
  #wrap.esg.safety .rule .rule_step li:nth-child(4), #wrap.esg.safety .rule .rule_step li:nth-child(5) {
    padding: 0 0 16px;
  }
  #wrap.esg.safety .rule .rule_step li:nth-child(6) {
    padding: 0;
  }
  #wrap.esg.safety .rule .rule_step li > div {
    min-height: auto;
  }
  #wrap.esg.safety .strategy > li {
    width: 100%;
    padding: 0 0 16px;
  }
  #wrap.esg.safety .strategy > li:nth-of-type(1), #wrap.esg.safety .strategy > li:nth-of-type(2) {
    padding: 0 0 16px;
  }
  #wrap.esg.safety .strategy > li:last-child {
    padding: 0;
  }
  #wrap.esg.safety .strategy .bottom {
    height: auto;
  }
  #wrap.esg.safety .strategy > li:nth-child(3) .bottom, #wrap.esg.safety .strategy > li:nth-child(4) .bottom {
    height: auto;
  }
}
#wrap.esg.quality section.bg_gray .promise {
  padding-top: 32px;
}
#wrap.esg.quality .thumb_list {
  gap: 0 2%;
}
#wrap.esg.quality .thumb_list li {
  display: inline-block;
  width: 32%;
  padding: 0;
}
#wrap.esg.quality .system .inner > .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.quality .system .box1 .dash li {
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
  color: #666666;
}
#wrap.esg.quality .system .box3 .pdca {
  border: 1px solid #CaCaCa;
  border-radius: 10px;
}
#wrap.esg.quality .system .box3 .pdca > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
  padding: 110px 136px;
}
#wrap.esg.quality .system .box3 .pdca ul {
  width: calc(100% - 474px);
  padding-right: 59px;
}
#wrap.esg.quality .system .box3 .pdca li {
  margin-bottom: 40px;
}
#wrap.esg.quality .system .box3 .pdca li:nth-of-type(1) .step {
  color: #01D1D3;
}
#wrap.esg.quality .system .box3 .pdca li:nth-of-type(2) .step {
  color: #05BDDE;
}
#wrap.esg.quality .system .box3 .pdca li:nth-of-type(3) .step {
  color: #0E96F4;
}
#wrap.esg.quality .system .box3 .pdca li:nth-of-type(4) {
  margin-bottom: 0;
}
#wrap.esg.quality .system .box3 .pdca li:nth-of-type(4) .step {
  color: #1281FF;
}
#wrap.esg.quality .system .box3 .pdca li .step {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.375rem;
  font-weight: 600;
}
#wrap.esg.quality .system .box3 .pdca li .desc {
  position: relative;
  padding-left: 10px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
}
#wrap.esg.quality .system .box3 .pdca li .desc:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.esg.quality .system .box3 .pdca .cycle {
  width: 474px;
}
#wrap.esg.quality .system .box3 .pdca .cycle img {
  width: 100%;
  height: auto;
}
#wrap.esg.quality .inspection .inspection_step {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
}
#wrap.esg.quality .inspection .inspection_step li {
  position: relative;
  width: 25%;
}
#wrap.esg.quality .inspection .inspection_step li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 1;
  background: url("../images/company/esg/quality/icon_arrow.svg") center no-repeat;
  background-size: 100% auto;
}
#wrap.esg.quality .inspection .inspection_step li:first-child {
  border-radius: 10px 0 0 10px;
  background-color: #01D1D3;
}
#wrap.esg.quality .inspection .inspection_step li:nth-of-type(2) {
  background-color: #05BDDE;
}
#wrap.esg.quality .inspection .inspection_step li:nth-of-type(3) {
  background-color: #0E96F4;
}
#wrap.esg.quality .inspection .inspection_step li:last-child {
  border-radius: 0 10px 10px 0;
  background-color: #1281FF;
}
#wrap.esg.quality .inspection .inspection_step li:last-child:after {
  display: none;
}
#wrap.esg.quality .inspection .inspection_step li > div {
  padding: 34px 10px;
  text-align: center;
}
#wrap.esg.quality .inspection .inspection_step li strong {
  display: block;
  width: 100%;
  margin-top: 24px;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
  font-weight: 600;
  color: #fff;
}
#wrap.esg.quality .management .inner > .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.quality .management ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: normal;
  gap: 0 1.5%;
}
#wrap.esg.quality .management ul li {
  width: 49%;
}
#wrap.esg.quality .management ul strong {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.esg.quality .management ul p {
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
  color: #666;
}
#wrap.esg.quality .management .img_wrap {
  position: relative;
  width: 100%;
  height: 0;
  margin-bottom: 24px;
  padding-top: 54.42%;
}
#wrap.esg.quality .management .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  #wrap.esg.quality section.bg_gray .promise {
    padding-top: 0;
  }
  #wrap.esg.quality .thumb_list {
    margin-bottom: 32px;
  }
  #wrap.esg.quality .thumb_list .img_wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }
  #wrap.esg.quality .thumb_list .img_wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #wrap.esg.quality .system .box1 .dash li {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg.quality .system .box3 .pdca > div {
    flex-direction: column;
    padding: 32px 30px;
  }
  #wrap.esg.quality .system .box3 .pdca ul {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: normal;
    width: 100%;
    padding-right: 0;
  }
  #wrap.esg.quality .system .box3 .pdca li {
    width: 50%;
    margin-bottom: 32px;
    padding-right: 20px;
  }
  #wrap.esg.quality .system .box3 .pdca li:nth-child(3), #wrap.esg.quality .system .box3 .pdca li:nth-child(4) {
    margin-bottom: 0;
  }
  #wrap.esg.quality .system .box3 .pdca li .step {
    margin-bottom: 8px;
    font-size: 17px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.quality .system .box3 .pdca li .desc {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg.quality .system .box3 .pdca .cycle {
    order: 1;
    width: 241px;
    margin: 0 auto 32px;
  }
  #wrap.esg.quality .system .box3 .pdca .cycle img {
    width: 100%;
    height: auto;
  }
  #wrap.esg.quality .inspection .inspection_step li:after {
    width: 25px;
    height: 25px;
  }
  #wrap.esg.quality .inspection .inspection_step li > div {
    margin: 0 auto;
    padding: 23px 10px;
  }
  #wrap.esg.quality .inspection .inspection_step li img {
    width: 48px;
    height: auto;
  }
  #wrap.esg.quality .inspection .inspection_step li strong {
    margin-top: 8px;
    font-size: 17px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.quality .management ul strong {
    margin-bottom: 16px;
    font-size: 20px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.75rem;
  }
  #wrap.esg.quality .management ul .p2 {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
}
@media (max-width: 767px) {
  #wrap.esg.quality .thumb_list {
    gap: 0;
    margin-bottom: 0;
  }
  #wrap.esg.quality .thumb_list li {
    width: 100%;
    padding: 0 0 60px;
  }
  #wrap.esg.quality .thumb_list li:last-of-type {
    padding: 0 0 48px;
  }
  #wrap.esg.quality .thumb_list .img_wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }
  #wrap.esg.quality .thumb_list .img_wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #wrap.esg.quality .management ul li {
    width: 100%;
    padding: 0 0 48px;
  }
  #wrap.esg.quality .management ul li:last-child {
    padding: 0;
  }
  #wrap.esg.quality .system .box3 .pdca ul {
    flex-direction: column;
  }
  #wrap.esg.quality .system .box3 .pdca li {
    width: 100%;
    padding-right: 0;
  }
  #wrap.esg.quality .system .box3 .pdca li:nth-child(3), #wrap.esg.quality .system .box3 .pdca li:nth-child(4) {
    margin-bottom: 32px;
  }
  #wrap.esg.quality .inspection .inspection_step {
    flex-direction: column;
  }
  #wrap.esg.quality .inspection .inspection_step li {
    width: 100%;
  }
  #wrap.esg.quality .inspection .inspection_step li:after {
    top: unset;
    right: unset;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  #wrap.esg.quality .inspection .inspection_step li:first-child {
    border-radius: 10px 10px 0 0;
  }
  #wrap.esg.quality .inspection .inspection_step li:last-child {
    border-radius: 0 0 10px 10px;
  }
  #wrap.esg.quality .inspection .inspection_step li > div {
    width: 180px;
    font-size: 0;
    text-align: left;
  }
  #wrap.esg.quality .inspection .inspection_step li .center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  #wrap.esg.quality .inspection .inspection_step li img {
    display: inline-block;
    vertical-align: middle;
  }
  #wrap.esg.quality .inspection .inspection_step li strong {
    display: inline-block;
    width: auto;
    margin-top: 0;
    margin-left: 16px;
    vertical-align: middle;
  }
}
#wrap.esg.environment .bg_gray {
  margin-bottom: 48px;
}
#wrap.esg.environment .system .inner > .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.environment .system .system_desc li {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #CaCaCa;
}
#wrap.esg.environment .system .system_desc li:first-child {
  padding: 0 0 32px;
}
#wrap.esg.environment .system .system_desc li:last-child {
  padding: 32px 0 0;
  border-bottom: none;
}
#wrap.esg.environment .system .system_desc li:nth-child(even) .icon {
  background-color: #E4F2FE;
}
#wrap.esg.environment .system .system_desc li:nth-child(odd) .icon {
  background-color: #107AF2;
}
#wrap.esg.environment .system .system_desc .icon {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
#wrap.esg.environment .system .system_desc .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#wrap.esg.environment .system .system_desc .text {
  width: calc(100% - 120px);
  padding-left: 24px;
}
#wrap.esg.environment .system .system_desc .text strong {
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
  color: #107AF2;
}
#wrap.esg.environment .system .system_desc .text p {
  color: #666666;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
}
@media (max-width: 1023px) {
  #wrap.esg.environment section.bg_gray .promise {
    padding-top: 0;
  }
  #wrap.esg.environment .system .box strong {
    margin-bottom: 16px;
  }
  #wrap.esg.environment .system .system_desc li {
    align-items: normal;
  }
  #wrap.esg.environment .system .system_desc .icon {
    width: 70px;
    height: 70px;
  }
  #wrap.esg.environment .system .system_desc .icon img {
    width: 48px;
    height: 48px;
  }
  #wrap.esg.environment .system .system_desc .text {
    width: calc(100% - 70px);
    padding-left: 16px;
  }
  #wrap.esg.environment .system .system_desc .text strong {
    margin-bottom: 16px;
    font-size: 15px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.environment .system .system_desc .text p {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
}
#wrap.esg.ethical footer {
  margin-top: 0;
}
#wrap.esg.ethical .banner_area a:before {
  background: url("../images/company/esg/ethical/banner_ethics.jpg") center no-repeat;
  background-size: cover;
}
#wrap.esg.ethical .banner_area strong {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.esg.ethical .banner_area .light {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.25rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  #wrap.esg.ethical .banner_area {
    margin-top: 92px;
  }
  #wrap.esg.ethical .banner_area a:before {
    background: url("../images/company/esg/ethical/m_banner_ethics.jpg") center no-repeat;
    background-size: 100% auto;
  }
  #wrap.esg.ethical .banner_area strong {
    font-size: 26px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.ethical .banner_area .light {
    margin-top: 18px;
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
}
#wrap.esg.ethical .system .inner > .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.ethical .system .diagram {
  padding: 120px 0;
  background-color: #f3f3f3;
  border-radius: 10px;
}
#wrap.esg.ethical .system .diagram .line {
  position: relative;
  width: 544px;
  height: 503px;
  margin: 0 auto;
}
#wrap.esg.ethical .system .diagram .line:before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/company/esg/ethical/line_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#wrap.esg.ethical .system .diagram .circle .shape {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
}
#wrap.esg.ethical .system .diagram .circle .shape p {
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.375rem;
  font-weight: 600;
}
#wrap.esg.ethical .system .diagram .circle .shape span {
  display: block;
  width: 100%;
  padding-top: 8px;
  font-size: 16px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1rem;
  font-weight: 400;
}
#wrap.esg.ethical .system .diagram .circle .desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#wrap.esg.ethical .system .diagram .circle .desc .circle_title {
  padding-bottom: 16px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
}
#wrap.esg.ethical .system .diagram .circle .desc .circle_title > span {
  display: block;
  width: 100%;
  font-size: 16px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1rem;
}
#wrap.esg.ethical .system .diagram .circle .desc li {
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
  color: #666666;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(1) .shape {
  background-color: #01D1D3;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(1) .desc {
  right: -343px;
  color: #01D1D3;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 0;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(2) .shape {
  background-color: #08B0E6;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(2) .desc {
  left: -277px;
  color: #08B0E6;
  text-align: right;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(2) .desc .dash {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  right: 0;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(3) .shape {
  background-color: #107AF2;
}
#wrap.esg.ethical .system .diagram .circle:nth-of-type(3) .desc {
  right: -205px;
  color: #107AF2;
}
#wrap.esg.ethical .system .diagram .m_desc {
  display: none;
}
#wrap.esg.ethical .direction .inner > .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.ethical .direction ul {
  margin-right: -24px;
  font-size: 0;
}
#wrap.esg.ethical .direction li {
  display: inline-block;
  width: 25%;
  padding-right: 24px;
  vertical-align: top;
}
#wrap.esg.ethical .direction li:nth-child(odd) .img_wrap {
  background-color: #107AF2;
}
#wrap.esg.ethical .direction li:nth-child(even) .img_wrap {
  background-color: #fff;
}
#wrap.esg.ethical .direction li > div {
  padding: 30px;
  background-color: #f3f3f3;
  border-radius: 10px;
}
#wrap.esg.ethical .direction li .img_wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
}
#wrap.esg.ethical .direction li .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#wrap.esg.ethical .direction li .text_wrap {
  text-align: center;
}
#wrap.esg.ethical .direction li .text_wrap .num {
  display: block;
  margin-bottom: 16px;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  color: #107AF2;
}
#wrap.esg.ethical .direction li .text_wrap p {
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
  color: #666666;
}
#wrap.esg.ethical .charter .desc > p:nth-of-type(2) {
  padding: 24px 0;
}
#wrap.esg.ethical .charter .desc li {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
}
#wrap.esg.ethical .charter .desc li > span {
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.esg.ethical .standard .desc_box {
  border: 1px solid #CaCaCa;
  border-radius: 10px;
}
#wrap.esg.ethical .standard .desc_box > div {
  height: 416px;
  margin: 40px;
  padding-right: 50px;
  overflow-y: auto;
}
#wrap.esg.ethical .standard .desc_box .box strong {
  display: block;
  width: 100%;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.375rem;
  margin-bottom: 10px;
}
#wrap.esg.ethical .standard .desc_box .box ol li {
  padding-left: 22px;
}
#wrap.esg.ethical .standard .desc_box .box ol li > span {
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.esg.ethical .standard .desc_box .box li {
  position: relative;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
}
#wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(1), #wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(2), #wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(3) {
  padding-left: 60px;
}
#wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(4), #wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(5) {
  padding-left: 110px;
}
#wrap.esg.ethical .standard.type2 .desc_box .box3 li span {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 10px;
}
#wrap.esg.ethical .standard.type2 .desc_box .box3 li span:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.esg.ethical .news .top {
  margin-bottom: 48px;
}
#wrap.esg.ethical .news .top h3 {
  margin-bottom: 32px;
}
#wrap.esg.ethical .news .top .img_wrap img {
  border-radius: 10px;
}
#wrap.esg.ethical .news .content {
  margin-bottom: 48px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
  color: #666666;
}
#wrap.esg.ethical .news .content:last-child {
  margin-bottom: 0;
}
#wrap.esg.ethical .news .content strong {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.375rem;
  color: #333333;
}
#wrap.esg.ethical .news .content2 .target {
  margin-bottom: 24px;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
#wrap.esg.ethical .news .content2 .target > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
  padding: 48px 32px;
}
#wrap.esg.ethical .news .content2 .target .left {
  padding-right: 80px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
  color: #333333;
  font-weight: 600;
}
#wrap.esg.ethical .news .content2 .target .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
}
#wrap.esg.ethical .news .content2 .target .right ul:nth-of-type(1) {
  padding-right: 40px;
}
@media (max-width: 1299px) {
  #wrap.esg.ethical .system .diagram .line {
    width: 544px;
    height: 503px;
  }
  #wrap.esg.ethical .system .diagram .line:before {
    top: 34px;
  }
  #wrap.esg.ethical .system .diagram .circle .shape {
    width: 190px;
    height: 190px;
  }
  #wrap.esg.ethical .system .diagram .circle .desc .circle_title {
    font-size: 17px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
  #wrap.esg.ethical .system .diagram .circle .desc .circle_title span {
    font-size: 14px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.ethical .system .diagram .circle .desc .circle_title .break {
    display: block;
  }
  #wrap.esg.ethical .system .diagram .circle .desc li {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.8125rem;
  }
  #wrap.esg.ethical .system .diagram .circle:nth-of-type(1) .desc {
    right: -267px;
  }
  #wrap.esg.ethical .system .diagram .circle:nth-of-type(2) .desc {
    left: -141px;
  }
  #wrap.esg.ethical .system .diagram .circle:nth-of-type(3) .desc {
    right: -162px;
  }
}
@media (max-width: 1023px) {
  #wrap.esg.ethical .system .diagram {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 32px 24px 30px;
  }
  #wrap.esg.ethical .system .diagram .line {
    width: 326px;
    height: 290px;
    margin: 0 0 32px;
  }
  #wrap.esg.ethical .system .diagram .line:before {
    top: 18px;
  }
  #wrap.esg.ethical .system .diagram .m_desc {
    display: block;
    padding-left: 32px;
  }
  #wrap.esg.ethical .system .diagram .m_desc .desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: normal;
    border-bottom: 1px solid #CaCaCa;
  }
  #wrap.esg.ethical .system .diagram .m_desc .desc:nth-of-type(1) {
    padding: 0 0 24px;
    color: #01D1D3;
  }
  #wrap.esg.ethical .system .diagram .m_desc .desc:nth-of-type(2) {
    padding: 24px 0;
    color: #08B0E6;
  }
  #wrap.esg.ethical .system .diagram .m_desc .desc:nth-of-type(3) {
    padding: 24px 0 0;
    color: #107AF2;
    border-bottom: none;
  }
  #wrap.esg.ethical .system .diagram .m_desc .circle_title {
    width: 90px;
    padding: 0;
    font-size: 20px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.75rem;
    font-weight: 600;
  }
  #wrap.esg.ethical .system .diagram .m_desc .right {
    width: calc(100% - 90px);
    padding-left: 16px;
  }
  #wrap.esg.ethical .system .diagram .m_desc .right p {
    padding-bottom: 8px;
    font-size: 17px;
    letter-spacing: -0.015em;
    line-height: 1;
    font-weight: 600;
  }
  #wrap.esg.ethical .system .diagram .m_desc .right p span {
    display: block;
    width: 100%;
    padding-top: 8px;
    font-size: 14px;
    letter-spacing: -0.015em;
    line-height: 1;
    font-weight: 400;
  }
  #wrap.esg.ethical .system .diagram .m_desc .right li {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.625rem;
    color: #666666;
  }
  #wrap.esg.ethical .system .diagram .circle .shape {
    width: 144px;
    height: 144px;
  }
  #wrap.esg.ethical .system .diagram .circle .shape p {
    font-size: 17px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.ethical .system .diagram .circle .shape span {
    padding-top: 6px;
    font-size: 12px;
    letter-spacing: -0.016em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.0625rem;
  }
  #wrap.esg.ethical .system .diagram .circle .desc {
    display: none;
  }
  #wrap.esg.ethical .direction ul {
    margin-right: -16px;
  }
  #wrap.esg.ethical .direction li {
    width: 50%;
    padding-right: 16px;
    padding-bottom: 16px;
  }
  #wrap.esg.ethical .direction li:nth-child(3), #wrap.esg.ethical .direction li:nth-child(4) {
    padding-bottom: 0;
  }
  #wrap.esg.ethical .direction li > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    padding: 24px;
  }
  #wrap.esg.ethical .direction li .img_wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 16px 0 0;
  }
  #wrap.esg.ethical .direction li .img_wrap img {
    width: 48px;
    height: 48px;
  }
  #wrap.esg.ethical .direction li .text_wrap {
    width: calc(100% - 86px);
    text-align: left;
  }
  #wrap.esg.ethical .direction li .text_wrap .num {
    margin-bottom: 8px;
    font-size: 17px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.ethical .direction li .text_wrap p {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg.ethical .charter .p2 {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg.ethical .charter .desc > p:nth-of-type(2) {
    padding: 18px 0;
  }
  #wrap.esg.ethical .charter .desc li {
    padding-left: 20px;
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.625rem;
  }
  #wrap.esg.ethical .standard .desc_box > div {
    height: 450px;
    margin: 24px 8px 24px 24px;
    padding-right: 20px;
    word-break: keep-all;
  }
  #wrap.esg.ethical .standard .desc_box .box {
    margin-bottom: 16px;
  }
  #wrap.esg.ethical .standard .desc_box .box strong {
    font-size: 17px;
    letter-spacing: -0.015em;
    line-height: 1;
    margin-bottom: 16px;
  }
  #wrap.esg.ethical .standard .desc_box .box ol li {
    padding-left: 20px;
  }
  #wrap.esg.ethical .standard .desc_box .box li {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(1), #wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(2), #wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(3) {
    padding-left: 50px;
  }
  #wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(4), #wrap.esg.ethical .standard.type2 .desc_box .box3 li:nth-of-type(5) {
    padding-left: 90px;
  }
  #wrap.esg.ethical .standard.type2 .desc_box .box3 li span {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 10px;
  }
  #wrap.esg.ethical .standard.type2 .desc_box .box3 li span:before {
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
  }
  #wrap.esg.ethical .news .top .img_wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 37.5%;
  }
  #wrap.esg.ethical .news .top .img_wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #wrap.esg.ethical .news .content {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.625rem;
  }
  #wrap.esg.ethical .news .content strong {
    margin-bottom: 16px;
    font-size: 20px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.ethical .news .content2 .target {
    margin-bottom: 16px;
  }
  #wrap.esg.ethical .news .content2 .target > div {
    flex-direction: column;
    padding: 24px;
  }
  #wrap.esg.ethical .news .content2 .target .left {
    padding: 0 0 12px;
    font-size: 15px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.esg.ethical .news .content2 .target .right {
    flex-direction: column;
  }
  #wrap.esg.ethical .news .content2 .target .right ul:nth-of-type(1) {
    padding-right: 0;
  }
  #wrap.esg.ethical .news .content2 .refer {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
}
@media (max-width: 767px) {
  #wrap.esg.ethical .system .diagram {
    flex-direction: column;
    padding: 32px 24px 30px;
  }
  #wrap.esg.ethical .system .diagram .line {
    width: 254px;
    height: 240px;
    margin: 0 auto 32px;
  }
  #wrap.esg.ethical .system .diagram .line:before {
    top: 18px;
  }
  #wrap.esg.ethical .system .diagram .m_desc {
    padding-left: 0;
  }
  #wrap.esg.ethical .system .diagram .m_desc .desc {
    margin-bottom: 32px;
    border-bottom: none;
  }
  #wrap.esg.ethical .system .diagram .m_desc .desc:nth-of-type(1) {
    padding: 0;
  }
  #wrap.esg.ethical .system .diagram .m_desc .desc:nth-of-type(2) {
    padding: 0;
  }
  #wrap.esg.ethical .system .diagram .m_desc .desc:nth-of-type(3) {
    margin-bottom: 0;
    padding: 0;
  }
  #wrap.esg.ethical .system .diagram .m_desc .circle_title {
    width: 80px;
    border-right: 1px solid #CaCaCa;
  }
  #wrap.esg.ethical .system .diagram .m_desc .right {
    width: calc(100% - 80px);
    padding-left: 16px;
  }
  #wrap.esg.ethical .system .diagram .circle .shape {
    width: 115px;
    height: 115px;
  }
  #wrap.esg.ethical .direction ul {
    margin-right: 0;
  }
  #wrap.esg.ethical .direction li {
    width: 100%;
    padding-right: 0;
  }
  #wrap.esg.ethical .direction li:nth-child(3) {
    padding-bottom: 16px;
  }
  #wrap.esg.ethical .direction li:nth-child(4) {
    padding-bottom: 0;
  }
}

#wrap {
  /* GS 케어 플러스 */
  /* Scope&Lift */
  /* 부분 교체 */
  /* 부품정보조회 */
  /* 서비스 네트워크 */
}
#wrap.maintenance .title_depth1 {
  margin-bottom: 48px;
}
#wrap.maintenance .title_depth1.mb56 {
  margin-bottom: 56px;
}
@media (max-width: 1023px) {
  #wrap.maintenance .title_depth1 {
    margin-bottom: 24px;
  }
}
#wrap.maintenance .title_depth1 h3 {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -1.8px;
  color: #000;
}
@media (max-width: 1023px) {
  #wrap.maintenance .title_depth1 h3 {
    color: #333;
    font-size: 34px;
    letter-spacing: -1.02px;
  }
}
#wrap.maintenance .title_depth1[data-motion] h3 {
  transform: translateY(70%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
#wrap.maintenance .title_depth1[data-motion].is_animated h3 {
  transform: translateY(0);
  opacity: 1;
}
#wrap.maintenance .title_depth2 {
  margin-bottom: 32px;
}
#wrap.maintenance .title_depth2.mb24 {
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  #wrap.maintenance .title_depth2 {
    margin-bottom: 16px;
  }
}
#wrap.maintenance .title_depth2 h3 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #000;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  #wrap.maintenance .title_depth2 h3 {
    font-size: 34px;
    letter-spacing: -1.02px;
    margin-bottom: 16px;
    color: #333;
  }
  #wrap.maintenance .title_depth2 h3.lh14 {
    line-height: 1.4;
  }
}
#wrap.maintenance .title_depth2 span {
  display: block;
  font-size: 22px;
  letter-spacing: -0.66px;
  word-break: keep-all;
  word-wrap: break-word;
}
#wrap.maintenance .title_depth2 span.lh14 {
  line-height: 1.4;
}
#wrap.maintenance .title_depth2 span.lh14 br {
  display: block;
}
@media (max-width: 1023px) {
  #wrap.maintenance .title_depth2 span.lh14 br {
    display: none;
  }
}
@media (max-width: 1023px) {
  #wrap.maintenance .title_depth2 span {
    font-size: 17px;
    letter-spacing: -0.51px;
    line-height: 1.4;
  }
}
#wrap.maintenance .title_depth2 span br {
  display: none;
}
@media (max-width: 767px) {
  #wrap.maintenance .title_depth2 span br {
    display: block;
  }
}
#wrap.maintenance .title_depth2[data-motion] h3 {
  transform: translateY(70%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
#wrap.maintenance .title_depth2[data-motion] span {
  transform: translateY(70%);
  transition: transform 0.8s, opacity 0.8s;
  opacity: 0;
}
#wrap.maintenance .title_depth2[data-motion].is_animated h3 {
  transform: translateY(0);
  opacity: 1;
}
#wrap.maintenance .title_depth2[data-motion].is_animated span {
  transform: translateY(0);
  opacity: 1;
}
#wrap.maintenance .cs_center {
  margin-top: 64px;
}
#wrap.maintenance .cs_center .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 10px;
  background: #F3F3F3;
}
#wrap.maintenance .cs_center p {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}
#wrap.maintenance .cs_center .call a {
  padding: 24px 40px 24px 20px;
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(0, 209, 210, 0.85) 4.5%, rgba(18, 129, 255, 0.85) 111.89%);
  display: flex;
  align-items: center;
}
#wrap.maintenance .cs_center .call a div {
  margin-left: 15px;
}
#wrap.maintenance .cs_center .call a div > * {
  display: block;
  color: #fff;
}
#wrap.maintenance .cs_center .call a div span {
  font-size: 20px;
  line-height: 1.3;
}
#wrap.maintenance .cs_center .call a div strong {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.2px;
}
#wrap.gs-careplus .sub_visual .vision_area {
  margin: 0 auto;
}
#wrap.gs-careplus section.customer_focus {
  padding: 160px 0 0 0;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus {
    padding: 80px 0 0 0;
  }
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus .customer_focus_inner {
    padding: 0 20px;
  }
}
#wrap.gs-careplus section.customer_focus .title_depth1 {
  display: none;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus .title_depth1 {
    display: block;
  }
}
#wrap.gs-careplus section.customer_focus .scroll_area {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus .scroll_area {
    flex-direction: column;
  }
}
#wrap.gs-careplus section.customer_focus .scroll_area > * {
  width: 50%;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus .scroll_area > * {
    width: 100%;
  }
}
#wrap.gs-careplus section.customer_focus .slogan_area {
  position: relative;
  height: 83.33vh;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus .slogan_area {
    display: none;
  }
}
#wrap.gs-careplus section.customer_focus .slogan_area h3 {
  position: absolute;
  top: 0;
  left: calc(100% - 600px);
  z-index: 2;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -1.5px;
}
#wrap.gs-careplus section.customer_focus .slogan_area .con {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  transition: opacity 0.35s;
  opacity: 0;
}
#wrap.gs-careplus section.customer_focus .slogan_area .con.active {
  z-index: 1;
  opacity: 1;
}
#wrap.gs-careplus section.customer_focus .slogan_area .con .center {
  padding-left: calc(50vw - 600px);
}
#wrap.gs-careplus section.customer_focus .slogan_area .con .center b {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1.02px;
}
#wrap.gs-careplus section.customer_focus .slogan_area .con .center p {
  margin-top: 24px;
  color: #666;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.66px;
}
#wrap.gs-careplus section.customer_focus .img_area ul {
  width: 100%;
}
#wrap.gs-careplus section.customer_focus .img_area ul li {
  width: 100%;
  height: fit-content;
  margin-bottom: 80px;
}
#wrap.gs-careplus section.customer_focus .img_area ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus .img_area ul li {
    margin-bottom: 60px;
  }
  #wrap.gs-careplus section.customer_focus .img_area ul li[data-motion] {
    transform: translateY(10%);
    transition: transform 0.75s, opacity 0.75s;
    opacity: 0;
  }
  #wrap.gs-careplus section.customer_focus .img_area ul li[data-motion].is_animated {
    transform: translateY(0);
    opacity: 1;
  }
}
#wrap.gs-careplus section.customer_focus .img_area .img {
  width: 100%;
  height: 83.33vh;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus .img_area .img {
    width: 100vw;
    height: 100vw;
  }
}
#wrap.gs-careplus section.customer_focus .img_area .img.img_01 {
  background: url(../images/maintenance/customer_focus_01.jpg) center center/cover no-repeat;
}
#wrap.gs-careplus section.customer_focus .img_area .img.img_02 {
  background: url(../images/maintenance/customer_focus_02.jpg) center center/cover no-repeat;
}
#wrap.gs-careplus section.customer_focus .img_area .img.img_03 {
  background: url(../images/maintenance/customer_focus_03.jpg) center center/cover no-repeat;
}
#wrap.gs-careplus section.customer_focus .img_area .mo_slogan {
  display: none;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.customer_focus .img_area .mo_slogan {
    display: block;
    margin-top: 24px;
  }
  #wrap.gs-careplus section.customer_focus .img_area .mo_slogan h3 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -1.02px;
  }
  #wrap.gs-careplus section.customer_focus .img_area .mo_slogan b {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.78px;
  }
  #wrap.gs-careplus section.customer_focus .img_area .mo_slogan p {
    margin-top: 16px;
    color: #666;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -0.51px;
    word-break: keep-all;
    word-wrap: break-word;
  }
}
#wrap.gs-careplus section.trust_service {
  position: relative;
  padding: 160px 0;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.trust_service {
    padding: 80px 0;
  }
}
#wrap.gs-careplus section.trust_service ul.icon_wrap {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
#wrap.gs-careplus section.trust_service ul.icon_wrap[data-motion] {
  transform: translateY(10%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
#wrap.gs-careplus section.trust_service ul.icon_wrap[data-motion].is_animated {
  transform: translateY(0);
  opacity: 1;
}
#wrap.gs-careplus section.trust_service ul.icon_wrap li {
  display: flex;
  padding: 48px 0;
  border-bottom: 1px solid #CACACA;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.trust_service ul.icon_wrap li {
    padding: 32px 16px;
  }
}
#wrap.gs-careplus section.trust_service ul.icon_wrap li:last-child {
  border-bottom: none;
}
#wrap.gs-careplus section.trust_service ul.icon_wrap li .icon_area {
  padding: 0 48px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.trust_service ul.icon_wrap li .icon_area {
    padding: 0;
    margin-right: 16px;
  }
  #wrap.gs-careplus section.trust_service ul.icon_wrap li .icon_area img {
    width: 48px;
    height: auto;
  }
}
#wrap.gs-careplus section.trust_service ul.icon_wrap li .text_area > * {
  display: block;
}
#wrap.gs-careplus section.trust_service ul.icon_wrap li .text_area strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.66px;
  margin-bottom: 16px;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.trust_service ul.icon_wrap li .text_area strong {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -0.51px;
  }
}
#wrap.gs-careplus section.trust_service ul.icon_wrap li .text_area span {
  color: #666;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.54px;
  padding-left: 12px;
  position: relative;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.trust_service ul.icon_wrap li .text_area span {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: -0.45pxe;
  }
}
#wrap.gs-careplus section.trust_service ul.icon_wrap li .text_area span::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.gs-careplus section.comprehensive_service {
  background: #F3F3F3;
  padding: 160px 0;
  text-align: center;
  min-height: 855px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service {
    padding: 80px 0;
    min-height: 615px;
  }
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .title_depth1 {
    padding: 0 20px;
  }
}
#wrap.gs-careplus section.comprehensive_service .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .inner {
    max-width: unset;
    padding: 0 20px;
  }
}
#wrap.gs-careplus section.comprehensive_service .inner[data-motion] {
  max-width: 304px;
  transition: max-width 1s;
  will-change: max-width;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
#wrap.gs-careplus section.comprehensive_service .inner[data-motion].is_animated {
  max-width: 1116px;
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap {
  position: relative;
  padding: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap[data-motion] {
    transform: translateY(10%);
    transition: transform 0.75s, opacity 0.75s;
    opacity: 0;
  }
  #wrap.gs-careplus section.comprehensive_service .icon_wrap.is_animated {
    transform: translateY(0);
    opacity: 1;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(90deg, #107AF2, #15B874, #FF6F3F);
  border-radius: 300px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap .bg {
    height: 218px;
    max-width: 678px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap .bg {
    width: 49.889vw;
    height: 152.111vw;
    background: linear-gradient(180deg, #107AF2, #15B874, #FF6F3F);
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i {
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #f3f3f3;
  border-radius: inherit;
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i {
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i::before, #wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i::after {
  width: 18px;
  height: 22px;
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i::before, #wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i::after {
    scale: 0.7;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 31%;
  background: url(../images/maintenance/to_right_arrow.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i::before {
    top: 31%;
    left: 94.6%;
    transform: rotate(90deg);
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 26%;
  background: url(../images/maintenance/to_left_arrow.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap .bg i::after {
    bottom: 31%;
    right: 97%;
    transform: rotate(90deg);
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul {
  width: 100%;
  position: relative;
  padding: 15px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul {
    max-width: 700px;
    margin: 0 auto;
    padding: 8px;
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul {
    flex-direction: column;
    height: 142.222vw;
    padding: 2.222vw;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li {
  position: absolute;
  top: 15px;
  left: 15px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li {
    top: 8px;
    left: 8px;
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li {
    position: initial;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:nth-child(2) {
    transform: unset;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:last-child {
  left: auto;
  right: 15px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:last-child {
    right: 8px;
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li {
    margin-bottom: 11.111vw;
  }
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:last-child {
    margin-bottom: 0;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #107AF2;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i {
    width: 172px;
    height: 172px;
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i {
    width: 39.444vw;
    height: 39.444vw;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 2px dotted #107AF2;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i::before {
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i::before {
    width: 44.444vw;
    height: 44.444vw;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i img {
  width: 72px;
  height: auto;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i img {
    width: 48px;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.4;
  font-style: normal;
  margin-top: 16px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .icon_area i span {
    font-size: 16px;
    margin-top: 8px;
    letter-spacing: -0.48px;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:nth-child(2) .icon_area i {
  background: #15B874;
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:nth-child(2) .icon_area i::before {
  border: 2px dotted #15B874;
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:nth-child(3) .icon_area i {
  background: #FF6F3F;
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li:nth-child(3) .icon_area i::before {
  border: 2px dotted #FF6F3F;
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .text_area {
  margin-top: 62px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .text_area {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .text_area {
    display: none;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .text_area strong {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.66px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .text_area strong {
    font-size: 17px;
    letter-spacing: -0.51px;
  }
}
#wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .text_area p {
  margin-top: 16px;
  color: #666;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.54px;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .text_area p {
    font-size: 15px;
    letter-spacing: -0.45px;
    margin-top: 8px;
    width: 226px;
    text-align: center;
  }
  #wrap.gs-careplus section.comprehensive_service .icon_wrap ul li .text_area p br {
    display: none;
  }
}
#wrap.gs-careplus section.comprehensive_service .mo_text_area_wrap {
  display: none;
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.comprehensive_service .mo_text_area_wrap {
    display: block;
    position: relative;
    margin-top: 13.333vw;
  }
  #wrap.gs-careplus section.comprehensive_service .mo_text_area_wrap .text_area {
    margin-bottom: 32px;
  }
  #wrap.gs-careplus section.comprehensive_service .mo_text_area_wrap .text_area:last-child {
    margin-bottom: 0;
  }
  #wrap.gs-careplus section.comprehensive_service .mo_text_area_wrap .text_area strong {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.51px;
  }
  #wrap.gs-careplus section.comprehensive_service .mo_text_area_wrap .text_area p {
    word-break: keep-all;
    word-wrap: break-word;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: -0.45px;
    color: #666;
    margin-top: 8px;
  }
}
#wrap.gs-careplus section.gm_service {
  padding: 160px 0 0 0;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service {
    padding: 80px 0 0 0;
  }
}
#wrap.gs-careplus section.gm_service .table_wrap[data-motion] {
  transform: translateY(10%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service .table_wrap[data-motion] {
    transform: translateY(50px);
  }
}
#wrap.gs-careplus section.gm_service .table_wrap[data-motion].is_animated {
  transform: translateY(0);
  opacity: 1;
}
#wrap.gs-careplus section.gm_service table {
  text-align: center;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service table col:nth-child(1) {
    width: 16% !important;
  }
}
#wrap.gs-careplus section.gm_service table th {
  padding: 24px 0;
  border-bottom: 1px solid #cacaca;
  border-right: 1px solid #CACACA;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service table th {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
#wrap.gs-careplus section.gm_service table thead th {
  color: #000;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service table thead th {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
#wrap.gs-careplus section.gm_service table thead th:nth-child(2) {
  color: #01D1D3;
}
#wrap.gs-careplus section.gm_service table thead th:nth-child(3) {
  font-weight: 600;
  color: #08B0E6;
}
#wrap.gs-careplus section.gm_service table thead th:nth-child(4) {
  border-right: none;
  color: #107AF2;
}
#wrap.gs-careplus section.gm_service table tbody th {
  color: #333;
}
#wrap.gs-careplus section.gm_service table tbody td {
  padding: 24px 0;
  border-bottom: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  font-size: 18px;
  color: #000;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service table tbody td {
    font-size: 16px;
    letter-spacing: -0.48px;
  }
}
#wrap.gs-careplus section.gm_service table tbody td:nth-child(2) {
  background: #D9F8F9;
}
#wrap.gs-careplus section.gm_service table tbody td:nth-child(3) {
  background: #DAF3FB;
  font-weight: 600;
}
#wrap.gs-careplus section.gm_service table tbody td:nth-child(4) {
  background: #DBEBFD;
}
#wrap.gs-careplus section.gm_service table tbody td:last-child {
  border-right: none;
}
#wrap.gs-careplus section.gm_service .cs_center {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 10px;
  background: #F3F3F3;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service .cs_center {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.gm_service .cs_center {
    flex-direction: column;
  }
}
#wrap.gs-careplus section.gm_service .cs_center[data-motion] {
  transform: translateY(10%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service .cs_center[data-motion] {
    transform: translateY(50px);
  }
}
#wrap.gs-careplus section.gm_service .cs_center[data-motion].is_animated {
  transform: translateY(0);
  opacity: 1;
}
#wrap.gs-careplus section.gm_service .cs_center p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service .cs_center p {
    font-size: 17px;
    letter-spacing: -0.51px;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service .cs_center .call {
    width: 56%;
  }
}
@media (max-width: 767px) {
  #wrap.gs-careplus section.gm_service .cs_center .call {
    margin-top: 24px;
    width: 100%;
  }
}
#wrap.gs-careplus section.gm_service .cs_center .call a {
  padding: 16px 20px;
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(0, 209, 210, 0.85) 4.5%, rgba(18, 129, 255, 0.85) 111.89%);
  display: flex;
  align-items: center;
}
#wrap.gs-careplus section.gm_service .cs_center .call a img {
  width: 48px;
  height: auto;
}
#wrap.gs-careplus section.gm_service .cs_center .call a div {
  margin-left: 16px;
}
#wrap.gs-careplus section.gm_service .cs_center .call a div > * {
  display: block;
  color: #fff;
}
#wrap.gs-careplus section.gm_service .cs_center .call a div span {
  font-size: 18px;
  line-height: 1.44;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service .cs_center .call a div span {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 8px;
  }
}
#wrap.gs-careplus section.gm_service .cs_center .call a div strong {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1.02px;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus section.gm_service .cs_center .call a div strong {
    font-size: 26px;
    letter-spacing: unset;
  }
}
#wrap.gs-careplus .banner_area a:before {
  background: url("../images/support/banner_faq.jpg") center no-repeat;
  background-size: cover;
}
#wrap.gs-careplus .banner_area a strong {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus .banner_area a strong {
    font-size: 26px;
  }
}
#wrap.gs-careplus .banner_area a .light {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 2.25rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  #wrap.gs-careplus .banner_area a .light {
    font-size: 18px;
    margin-top: 16px;
    letter-spacing: -0.54px;
    line-height: 1.4;
  }
}
#wrap.gs-careplus footer {
  margin: 0;
}
#wrap.scope-lift section.real_time_remote .title_depth2 {
  margin-bottom: 0;
}
#wrap.scope-lift section.real_time_remote .img_wrap {
  margin: 48px 0 120px 0;
  background: #fff;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote .img_wrap {
    margin: 40px 0 60px 0;
  }
}
#wrap.scope-lift section.real_time_remote .img_wrap[data-motion] {
  transform: translateY(12%);
  opacity: 0;
  transition: transform 0.85s, opacity 0.85s;
}
#wrap.scope-lift section.real_time_remote .img_wrap[data-motion].is_animated {
  transform: translateY(0);
  opacity: 1;
}
#wrap.scope-lift section.real_time_remote .img_wrap img {
  width: 100%;
  height: auto;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote .img_wrap .pc_only {
    display: none;
  }
}
#wrap.scope-lift section.real_time_remote .img_wrap .tb_only {
  display: none;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote .img_wrap .tb_only {
    display: block;
  }
}
@media (max-width: 767px) {
  #wrap.scope-lift section.real_time_remote .img_wrap .tb_only {
    display: none;
  }
}
#wrap.scope-lift section.real_time_remote .img_wrap .mo_only {
  display: none;
}
@media (max-width: 767px) {
  #wrap.scope-lift section.real_time_remote .img_wrap .mo_only {
    display: block;
  }
}
#wrap.scope-lift section.real_time_remote ul {
  height: 470px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul {
    height: unset;
  }
}
#wrap.scope-lift section.real_time_remote ul li {
  width: 50%;
  height: 50%;
  padding: 32px;
  display: flex;
}
#wrap.scope-lift section.real_time_remote ul li:nth-child(odd) {
  border-right: 1px solid #CACACA;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li:nth-child(odd) {
    border-right: none;
  }
}
#wrap.scope-lift section.real_time_remote ul li:nth-child(1), #wrap.scope-lift section.real_time_remote ul li:nth-child(2) {
  border-top: 2px solid #000;
  border-bottom: 1px solid #CACACA;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li:nth-child(1), #wrap.scope-lift section.real_time_remote ul li:nth-child(2) {
    border-top: none;
    border-bottom: 1px solid #CACACA;
  }
}
#wrap.scope-lift section.real_time_remote ul li:nth-child(3) {
  border-bottom: 2px solid #000;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li:nth-child(3) {
    border-bottom: none;
  }
}
#wrap.scope-lift section.real_time_remote ul li:nth-child(4) {
  border-bottom: 2px solid #000;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li {
    width: 100%;
    height: fit-content;
    padding: 32px 0;
  }
  #wrap.scope-lift section.real_time_remote ul li:first-child {
    border-top: 2px solid #000;
  }
  #wrap.scope-lift section.real_time_remote ul li:nth-child(4) {
    border-top: 1px solid #CACACA;
  }
}
#wrap.scope-lift section.real_time_remote ul li[data-motion] {
  transform: translateY(12%);
  opacity: 0;
  transition: transform 0.85s, opacity 0.85s;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li[data-motion] {
    transform: translateY(5%);
  }
}
#wrap.scope-lift section.real_time_remote ul li[data-motion].is_animated {
  transform: translateY(0);
  opacity: 1;
}
#wrap.scope-lift section.real_time_remote ul li img {
  width: 72px;
  height: 72px;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li img {
    width: 48px;
    height: 48px;
  }
}
#wrap.scope-lift section.real_time_remote ul li .text_area {
  margin-left: 32px;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li .text_area {
    margin-left: 16px;
  }
}
#wrap.scope-lift section.real_time_remote ul li .text_area strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.66px;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li .text_area strong {
    font-size: 17px;
    line-height: 1;
    letter-spacing: -0.51px;
  }
}
#wrap.scope-lift section.real_time_remote ul li .text_area p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.54px;
  color: #666;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  #wrap.scope-lift section.real_time_remote ul li .text_area p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: -0.45px;
  }
}
#wrap.partial-replacement .sub_visual .vision_area {
  margin: 0 auto;
}
#wrap.partial-replacement .process_wrap_common {
  background-image: url(../images/maintenance/partial-replacement_process_bg.jpg);
}
@media (max-width: 767px) {
  #wrap.partial-replacement .process_wrap_common {
    background-image: url("../images/maintenance/mo_partial-replacement_process_bg.jpg");
  }
}
#wrap.partial-replacement .process_wrap_common .title_depth2 h3 {
  color: #fff;
}
#wrap.partial-replacement .process_wrap_common .title_depth2 span {
  color: #fff;
}
#wrap.partial-replacement section.essential {
  padding: 160px 0;
}
@media (max-width: 1023px) {
  #wrap.partial-replacement section.essential {
    padding: 80px 0;
  }
}
#wrap.partial-replacement section.essential .title_depth2 span {
  line-height: 1.4;
}
#wrap.partial-replacement section.essential .table_wrap[data-motion] {
  transform: translateY(10%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
#wrap.partial-replacement section.essential .table_wrap[data-motion].is_animated {
  transform: translateY(0);
  opacity: 1;
}
#wrap.partial-replacement section.essential table {
  font-size: 18px;
}
@media (max-width: 1023px) {
  #wrap.partial-replacement section.essential table {
    font-size: 15px;
    letter-spacing: -0.45px;
  }
}
#wrap.partial-replacement section.essential table tr th {
  padding: 24px 0;
  background: #f3f3f3;
  border-bottom: 1px solid #cacaca;
  text-align: center;
}
#wrap.partial-replacement section.essential table tr td {
  padding: 24px 0 24px 40px;
  line-height: 1.7;
  letter-spacing: -0.6px;
  border-bottom: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  word-break: keep-all;
  word-wrap: break-word;
}
#wrap.partial-replacement section.essential table tr td:last-child {
  border-right: none;
}
@media (max-width: 1023px) {
  #wrap.partial-replacement section.essential table tr td {
    padding: 24px 40px;
  }
}
#wrap.partial-replacement section.essential table tr td span {
  display: block;
  padding-left: 15px;
  position: relative;
}
#wrap.partial-replacement section.essential table tr td span::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.partial-replacement .replacement_wrap_common {
  padding: 0;
}
#wrap.partial-replacement .replacement_wrap_common .left_area {
  width: 55%;
}
@media (max-width: 1023px) {
  #wrap.partial-replacement .replacement_wrap_common .left_area {
    width: 100%;
    max-width: unset;
  }
}
#wrap.partial-replacement .replacement_wrap_common .right_area {
  width: 45%;
}
@media (max-width: 1023px) {
  #wrap.partial-replacement .replacement_wrap_common .right_area {
    width: 100%;
    max-width: unset;
  }
}
#wrap.partial-replacement .replacement_wrap_common .right_area .tab_area li {
  width: calc((100% - 10px) / 3);
}
@media (max-width: 1023px) {
  #wrap.partial-replacement .replacement_wrap_common .right_area .table_area {
    flex-direction: column;
  }
}
#wrap.partial-replacement .replacement_wrap_common .right_area .table_area > div table.choice {
  color: #1AB5C3;
}
#wrap.parts-information .sub_visual .vision_area {
  margin-bottom: 120px;
}
#wrap.parts-information .search_box {
  margin-bottom: 80px;
}
#wrap.parts-information .search_box .search_area {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
#wrap.parts-information .search_box .custom_radio .radio_area {
  margin-right: 25px;
  padding: 5px 0;
}
#wrap.parts-information .search_box .custom_radio input[type=radio] + label {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.parts-information .search_box .custom_radio input[type=radio] + label:before {
  top: 0;
}
#wrap.parts-information .search_box .custom_radio input[type=radio] + label:after {
  top: 5px;
}
#wrap.parts-information .search_box .category {
  display: table;
  width: 100%;
  font-size: 0;
}
#wrap.parts-information .search_box .category:first-of-type {
  border-bottom: 1px solid #CaCaCa;
}
#wrap.parts-information .search_box .category > div {
  display: table-cell;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.125rem;
  vertical-align: middle;
}
#wrap.parts-information .search_box .category > div:first-of-type {
  width: 160px;
  padding: 30px 10px;
  text-align: center;
  background-color: #e4f2fe;
}
#wrap.parts-information .search_box .category > div:last-of-type {
  width: calc(100% - 160px);
  padding: 20px;
  color: #666666;
}
#wrap.parts-information .search_box .refer {
  margin-top: 16px;
  text-align: right;
  color: #999999;
}
#wrap.parts-information .search_box .btn_wrap {
  margin-top: 32px;
}
#wrap.parts-information .search_box .btn_wrap .btn_search {
  min-width: 170px;
  text-align: center;
}
#wrap.parts-information .result_list .title_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
#wrap.parts-information .result_list .title_wrap strong {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #000;
}
#wrap.parts-information .result_list .title_wrap p {
  color: #999999;
}
#wrap.parts-information .result_list .table_wrap .title_bg .box {
  padding-right: 0;
}
#wrap.parts-information .result_list .table_wrap .title_bg .underline {
  padding: 20px 40px;
  word-break: keep-all;
  text-align: left;
  font-size: 18px;
  letter-spacing: 0em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
}
#wrap.parts-information .result_list .table_wrap .title_bg .underline a {
  text-decoration: none;
}
@media (min-width: 1024px) {
  #wrap.parts-information .result_list .table_wrap .title_bg .underline a:hover {
    color: #107AF2;
  }
}
@media (max-width: 1023px) {
  #wrap.parts-information .sub_visual .vision_area {
    margin-bottom: 60px;
  }
  #wrap.parts-information .search_box {
    margin-bottom: 40px;
  }
  #wrap.parts-information .search_box .search_area {
    border-top: none;
    border-bottom: none;
  }
  #wrap.parts-information .search_box .custom_radio .radio_area {
    margin-right: 0;
  }
  #wrap.parts-information .search_box .custom_radio input[type=radio] + label {
    font-size: 15px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.parts-information .search_box .custom_radio input[type=radio] + label:before {
    top: -1px;
  }
  #wrap.parts-information .search_box .custom_radio input[type=radio] + label:after {
    top: 4px;
  }
  #wrap.parts-information .search_box .category {
    position: relative;
    display: block;
    width: 100%;
  }
  #wrap.parts-information .search_box .category.on > div:first-of-type:after {
    background-image: url("../images/common/icon_arrow_up_bk.svg");
  }
  #wrap.parts-information .search_box .category.on > div:last-of-type {
    display: block;
  }
  #wrap.parts-information .search_box .category:first-of-type {
    border-bottom: none;
  }
  #wrap.parts-information .search_box .category:last-of-type {
    margin-top: -1px;
  }
  #wrap.parts-information .search_box .category > div {
    display: block;
  }
  #wrap.parts-information .search_box .category > div:first-of-type {
    position: relative;
    width: 100%;
    padding: 18px 16px;
    text-align: left;
    border: 1px solid #CaCaCa;
    background-color: #fff;
  }
  #wrap.parts-information .search_box .category > div:first-of-type:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 15px;
    height: 10px;
    background-image: url("../images/common/icon_arrow_down.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
  }
  #wrap.parts-information .search_box .category > div:last-of-type {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #CaCaCa;
    background-color: #fff;
    z-index: 9;
  }
  #wrap.parts-information .search_box .category .custom_radio .scroll {
    max-height: 252px;
    overflow: hidden auto;
  }
  #wrap.parts-information .search_box .category .custom_radio .radio_area {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
  #wrap.parts-information .search_box .category .custom_radio .radio_area:first-of-type {
    padding-top: 0;
  }
  #wrap.parts-information .search_box .category .custom_radio .radio_area:last-of-type {
    padding-bottom: 0;
  }
  #wrap.parts-information .search_box .refer {
    margin-top: 8px;
    padding-left: 10px;
  }
  #wrap.parts-information .search_box .btn_wrap {
    margin-top: 16px;
  }
  #wrap.parts-information .search_box .btn_wrap .btn_search {
    min-width: 150px;
  }
  #wrap.parts-information .result_list .title_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
  }
  #wrap.parts-information .result_list .title_wrap strong {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    font-size: 26px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 2.25rem;
  }
  #wrap.parts-information .result_list .title_wrap p {
    font-size: 14px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.1875rem;
  }
  #wrap.parts-information .result_list .table_wrap colgroup col:nth-of-type(1) {
    width: 15%;
  }
  #wrap.parts-information .result_list .table_wrap colgroup col:nth-of-type(2) {
    width: 32%;
  }
  #wrap.parts-information .result_list .table_wrap colgroup col:nth-of-type(3) {
    width: 19%;
  }
  #wrap.parts-information .result_list .table_wrap colgroup col:nth-of-type(4) {
    width: 34%;
  }
  #wrap.parts-information .result_list .table_wrap .title_bg td {
    padding: 24px;
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
  #wrap.parts-information .result_list .table_wrap .title_bg .underline {
    padding: 24px;
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
  }
}
#wrap.parts-information .popup_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
}
#wrap.parts-information .popup_wrap.on {
  display: block;
}
#wrap.parts-information .popup_wrap .pop_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
#wrap.parts-information .popup_wrap .popup {
  position: relative;
  max-width: 982px;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}
#wrap.parts-information .popup_wrap .popup strong {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  padding-right: 40px;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.parts-information .popup_wrap .popup .pop_close_btn {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30px;
  height: 30px;
}
#wrap.parts-information .popup_wrap .popup .pop_close_btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: url("../images/common/popup_close.svg") no-repeat 0 0;
}
#wrap.parts-information .popup_wrap .pop_close_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
}
#wrap.parts-information .popup_wrap .pop_close_btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: url("../images/common/ico_close.svg") no-repeat 0 0;
}
#wrap.parts-information .popup_wrap .table_wrap {
  display: table;
  width: 100%;
  border-top: 2px solid #000;
  border-bottom: 1px solid #CaCaCa;
}
#wrap.parts-information .popup_wrap .table_wrap .box {
  display: table-cell;
  width: 50%;
}
#wrap.parts-information .popup_wrap .table_wrap .box:first-of-type {
  border-right: 1px solid #CaCaCa;
}
#wrap.parts-information .popup_wrap .table_wrap .box:first-of-type .th {
  position: relative;
}
#wrap.parts-information .popup_wrap .table_wrap .box:first-of-type .th:after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  transform: translateX(-50%);
  width: 45px;
  height: 100%;
  background-color: #f3f3f3;
}
#wrap.parts-information .popup_wrap .table_wrap .th {
  padding: 28px 10px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  color: #000;
  background-color: #f3f3f3;
  vertical-align: middle;
}
#wrap.parts-information .popup_wrap .table_wrap .td {
  padding: 24px 40px;
  font-size: 18px;
  letter-spacing: 0em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
  text-align: left;
  word-break: keep-all;
  vertical-align: middle;
}
@media (max-width: 1023px) {
  #wrap.parts-information .popup_wrap .popup_wrap {
    display: block;
  }
  #wrap.parts-information .popup_wrap .pop_inner {
    padding: 40px 20px;
  }
  #wrap.parts-information .popup_wrap .popup {
    position: relative;
    padding: 20px;
    max-width: 100%;
  }
  #wrap.parts-information .popup_wrap .popup strong {
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
  #wrap.parts-information .popup_wrap .popup .pop_close_btn {
    top: 15px;
    right: 15px;
  }
  #wrap.parts-information .popup_wrap .popup .pop_close_btn::after {
    width: 16px;
    height: 16px;
    background-size: 100% auto;
  }
  #wrap.parts-information .popup_wrap .table_wrap {
    display: block;
    height: 440px;
    border-top: none;
    border-bottom: none;
    overflow: hidden auto;
  }
  #wrap.parts-information .popup_wrap .table_wrap .box {
    display: block;
    width: 100%;
    padding-right: 12px;
  }
  #wrap.parts-information .popup_wrap .table_wrap .box:first-of-type {
    margin-bottom: 40px;
    border-right: none;
  }
  #wrap.parts-information .popup_wrap .table_wrap .box:first-of-type .th:after {
    display: none;
  }
  #wrap.parts-information .popup_wrap .table_wrap .th {
    padding: 24px 10px;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1;
    border-top: 2px solid #000;
  }
  #wrap.parts-information .popup_wrap .table_wrap .td {
    padding: 24px;
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
    border-top: 1px solid #CaCaCa;
    border-bottom: 1px solid #CaCaCa;
  }
}
#wrap.service-network .tab_btn_type01 li {
  width: 50%;
}
#wrap.service-network .tabpanel {
  background-color: #f3f3f3;
  border-radius: 10px;
}
#wrap.service-network .tabpanel .flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
}
#wrap.service-network .tabpanel .map_img {
  position: relative;
  width: 657px;
  border-radius: 10px;
}
#wrap.service-network .tabpanel .map_img .bg {
  position: relative;
  padding: 54px 0 42px;
  text-align: center;
}
#wrap.service-network .tabpanel .map_img .bg img {
  display: block;
  width: 100%;
  max-width: 466px;
  height: auto;
  margin: 0 auto;
}
#wrap.service-network .tabpanel .spot_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#wrap.service-network .tabpanel .spot_area .spot {
  display: block;
  position: absolute;
  cursor: pointer;
}
#wrap.service-network .tabpanel .map_info {
  width: calc(100% - 657px);
  padding: 60px 72px 60px 0;
}
#wrap.service-network .tabpanel .map_info .total {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 23px;
}
#wrap.service-network .tabpanel .map_info .total p {
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.875rem;
}
#wrap.service-network .tabpanel .map_info .total .standard {
  font-weight: 600;
}
#wrap.service-network .tabpanel .map_info .total .standard span {
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
  font-weight: 400;
  color: #666666;
}
#wrap.service-network .tabpanel .map_info .total .count span {
  font-size: 50px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 600;
  color: #107AF2;
  vertical-align: bottom;
  margin: 0 4px 0 13px;
}
#wrap.service-network .tabpanel.service .map_img .bg > div {
  position: relative;
  max-width: 466px;
  margin: 0 100px;
}
#wrap.service-network .tabpanel.service .map_info .scroll {
  height: 590px;
  overflow: hidden auto;
}
#wrap.service-network .tabpanel.service .map_info ul {
  padding-right: 24px;
}
#wrap.service-network .tabpanel.service .map_info li {
  margin-bottom: 20px;
}
#wrap.service-network .tabpanel.service .map_info li:last-of-type {
  margin-bottom: 0;
}
#wrap.service-network .tabpanel.service .map_info li.on .button {
  background-color: #107AF2;
  color: #fff;
}
#wrap.service-network .tabpanel.service .map_info li.on .btn {
  border-color: #fff;
}
#wrap.service-network .tabpanel.service .map_info .button {
  display: block;
  width: 100%;
  padding: 20px 40px;
  background-color: #fff;
  border: 1px solid #CaCaCa;
  border-radius: 10px;
  text-align: left;
  word-break: keep-all;
  cursor: pointer;
}
#wrap.service-network .tabpanel.service .map_info .center {
  font-size: 26px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.25rem;
  font-weight: 600;
}
#wrap.service-network .tabpanel.service .map_info .location {
  padding: 7px 0 15px;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.5625rem;
}
#wrap.service-network .tabpanel.service .map_info .btn {
  border: 1px solid #CaCaCa;
  background-color: #fff;
  color: #666666;
}
#wrap.service-network .tabpanel.service .map_info .btn:before {
  background-color: #fff;
}
#wrap.service-network .tabpanel.service .map_info .btn span {
  padding-right: 17px;
}
#wrap.service-network .tabpanel.service .map_info .btn span:after {
  width: 10px;
  height: 10px;
  background-image: url("../images/common/btn_arrow_gray.svg");
}
#wrap.service-network .tabpanel.service .spot_area .spot.pos1 {
  top: 104px;
  left: 145px;
}
#wrap.service-network .tabpanel.service .spot_area .spot.pos2 {
  top: 124px;
  left: 175px;
}
#wrap.service-network .tabpanel.service .spot_area .spot.pos3 {
  top: 196px;
  left: 195px;
}
#wrap.service-network .tabpanel.service .spot_area .spot.on .dot:before {
  transform: scale3D(1.35, 1.35, 1);
  background-image: url("../images/maintenance/network/pin_on.svg");
}
#wrap.service-network .tabpanel.service .spot_area .dot {
  z-index: 1;
  position: absolute;
  width: 21px;
  height: 30px;
}
#wrap.service-network .tabpanel.service .spot_area .dot::before {
  opacity: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/maintenance/network/pin.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
#wrap.service-network .tabpanel.service .spot_area .dot > span {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
#wrap.service-network .tabpanel.service .spot_area .dot > span:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.5;
  border-radius: 50%;
  z-index: -1;
  animation: dotScale 1.8s infinite linear;
}
#wrap.service-network .tabpanel.service .spot_area .dot > span:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background-color: #fff;
  opacity: 0.3;
  border-radius: 50%;
  z-index: -1;
  animation: dotScale 1.8s infinite linear;
}
@keyframes dotScale {
  0% {
    transform: translateX(-50%) scale(0.2);
  }
  50% {
    transform: translateX(-50%) scale(1);
  }
  100% {
    transform: translateX(-50%) scale(0.2);
  }
}
#wrap.service-network .tabpanel.partner .map_img {
  width: 597px;
}
#wrap.service-network .tabpanel.partner .map_img #areaCount {
  position: absolute;
  top: 70px;
  left: 150px;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#wrap.service-network .tabpanel.partner .map_img #areaCount:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 77px;
  height: 82px;
  background: url("../images/maintenance/network/count_bg.svg") center no-repeat;
  background-size: cover;
}
#wrap.service-network .tabpanel.partner .map_img #areaCount span {
  position: relative;
  display: block;
  margin-top: -10px;
  z-index: 1;
}
#wrap.service-network .tabpanel.partner .map_img .bg {
  padding: 54px 0 42px;
}
#wrap.service-network .tabpanel.partner .map_img .bg > div {
  position: relative;
  max-width: 466px;
  margin: 0 auto;
}
#wrap.service-network .tabpanel.partner .map_img img {
  display: none;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
#wrap.service-network .tabpanel.partner .map_img img.on {
  display: block;
}
#wrap.service-network .tabpanel.partner .spot_area .spot.pos1 {
  top: 84px;
  left: 115px;
  width: 90px;
  height: 110px;
}
#wrap.service-network .tabpanel.partner .spot_area .spot.pos2 {
  top: 40px;
  left: 237px;
  width: 100px;
  height: 130px;
}
#wrap.service-network .tabpanel.partner .spot_area .spot.pos3 {
  top: 213px;
  left: 135px;
  width: 90px;
  height: 90px;
}
#wrap.service-network .tabpanel.partner .spot_area .spot.pos4 {
  top: 233px;
  left: 257px;
  width: 120px;
  height: 170px;
}
#wrap.service-network .tabpanel.partner .spot_area .spot.pos5 {
  top: 323px;
  left: 105px;
  width: 110px;
  height: 150px;
}
#wrap.service-network .tabpanel.partner .spot_area .spot.pos6 {
  bottom: 0;
  left: 70px;
  width: 90px;
  height: 50px;
}
#wrap.service-network .tabpanel.partner .map_info {
  width: calc(100% - 597px);
}
#wrap.service-network .tabpanel.partner .map_info .area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: normal;
  gap: 0 3.6%;
  width: 100%;
}
#wrap.service-network .tabpanel.partner .map_info .area li {
  width: 48.2%;
  padding-bottom: 16px;
}
#wrap.service-network .tabpanel.partner .map_info .area li:nth-of-type(5), #wrap.service-network .tabpanel.partner .map_info .area li:nth-of-type(6) {
  padding-bottom: 0;
}
#wrap.service-network .tabpanel.partner .map_info .area li.on .button {
  border-color: #107AF2;
  background-color: #107AF2;
  color: #fff;
}
#wrap.service-network .tabpanel.partner .map_info .area li.on .button .count {
  color: #fff;
}
#wrap.service-network .tabpanel.partner .map_info .area .button {
  display: block;
  width: 100%;
  padding: 39px 10px;
  border: 1px solid #CaCaCa;
  border-radius: 10px;
  background-color: #fff;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 600;
  color: #000;
  text-align: center;
  cursor: pointer;
}
#wrap.service-network .tabpanel.partner .map_info .area .button .count {
  display: block;
  padding-top: 8px;
  font-size: 50px;
  letter-spacing: 0;
  line-height: 1;
  color: #CACACA;
}
#wrap.service-network .cs_center {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 10px;
  background: #F3F3F3;
}
@media (max-width: 1023px) {
  #wrap.service-network .cs_center {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  #wrap.service-network .cs_center {
    flex-direction: column;
  }
}
#wrap.service-network .cs_center p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  #wrap.service-network .cs_center p {
    font-size: 17px;
    letter-spacing: -0.51px;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  #wrap.service-network .cs_center .call {
    width: 56%;
  }
}
@media (max-width: 767px) {
  #wrap.service-network .cs_center .call {
    margin-top: 24px;
    width: 100%;
  }
}
#wrap.service-network .cs_center .call a {
  padding: 16px 20px;
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(0, 209, 210, 0.85) 4.5%, rgba(18, 129, 255, 0.85) 111.89%);
  display: flex;
  align-items: center;
}
#wrap.service-network .cs_center .call a img {
  width: 48px;
  height: auto;
}
#wrap.service-network .cs_center .call a div {
  margin-left: 16px;
}
#wrap.service-network .cs_center .call a div > * {
  display: block;
  color: #fff;
}
#wrap.service-network .cs_center .call a div span {
  font-size: 18px;
  line-height: 1.44;
}
@media (max-width: 1023px) {
  #wrap.service-network .cs_center .call a div span {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 8px;
  }
}
#wrap.service-network .cs_center .call a div strong {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1.02px;
}
@media (max-width: 1023px) {
  #wrap.service-network .cs_center .call a div strong {
    font-size: 26px;
    letter-spacing: unset;
  }
}
@media (max-width: 1199px) {
  #wrap.service-network .tabpanel .map_img {
    width: 557px;
  }
  #wrap.service-network .tabpanel .map_info {
    width: calc(100% - 557px);
  }
}
@media (max-width: 1023px) {
  #wrap.service-network .cs_center {
    margin-top: 48px;
  }
  #wrap.service-network .tab_btn_type01 {
    margin-bottom: 60px;
  }
  #wrap.service-network .tabpanel {
    background-color: #fff;
    border-radius: 0;
  }
  #wrap.service-network .tabpanel .flex-container {
    flex-direction: column;
  }
  #wrap.service-network .tabpanel .map_img {
    display: none;
  }
  #wrap.service-network .tabpanel .map_info {
    width: 100%;
    padding: 0;
  }
  #wrap.service-network .tabpanel .map_info .total {
    margin-bottom: 16px;
  }
  #wrap.service-network .tabpanel .map_info .total p {
    font-size: 17px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.4375rem;
  }
  #wrap.service-network .tabpanel .map_info .total .standard span {
    font-size: 15px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.3125rem;
    color: #000;
  }
  #wrap.service-network .tabpanel.service .map_info .scroll {
    height: auto;
  }
  #wrap.service-network .tabpanel.service .map_info ul {
    padding-right: 0;
  }
  #wrap.service-network .tabpanel.service .map_info li.on .button {
    border-color: #CACACA;
    background-color: #fff;
    color: #333;
  }
  #wrap.service-network .tabpanel.service .map_info li.on .btn {
    border-color: #CACACA;
  }
  #wrap.service-network .tabpanel.service .map_info .button {
    padding: 24px;
  }
  #wrap.service-network .tabpanel.service .map_info .center {
    font-size: 22px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.service-network .tabpanel.service .map_info .location {
    padding: 10px 0 24px;
    font-size: 16px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.375rem;
  }
  #wrap.service-network .tabpanel.partner .map_info {
    width: 100%;
  }
  #wrap.service-network .tabpanel.partner .map_info .area {
    max-height: 100%;
    overflow: initial;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
  #wrap.service-network .tabpanel.partner .map_info .area ul {
    gap: 0;
  }
  #wrap.service-network .tabpanel.partner .map_info .area li {
    width: 50%;
    padding-bottom: 0;
  }
  #wrap.service-network .tabpanel.partner .map_info .area li:nth-of-type(odd) {
    border-right: 1px solid #CaCaCa;
  }
  #wrap.service-network .tabpanel.partner .map_info .area li.on .button {
    border-color: #CACACA;
    background-color: #fff;
    color: #000;
  }
  #wrap.service-network .tabpanel.partner .map_info .area li.on .button .count {
    color: #000;
  }
  #wrap.service-network .tabpanel.partner .map_info .area .button {
    padding: 20px 10px;
    font-size: 15px;
    letter-spacing: -0.015em;
    line-height: 1;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #CaCaCa;
  }
  #wrap.service-network .tabpanel.partner .map_info .area .button .count {
    padding-top: 10px;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1;
    color: #000;
  }
}

#wrap {
  /* 신규 설치 */
  /* 전면 교체 */
  /* 주요 프로젝트 */
  /* 제품 */
}
#wrap.elevator .title_depth1 {
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  #wrap.elevator .title_depth1 {
    margin-bottom: 24px;
  }
}
#wrap.elevator .title_depth1 h3 {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -1.6px;
  color: #000;
}
@media (max-width: 1023px) {
  #wrap.elevator .title_depth1 h3 {
    font-size: 34px;
    letter-spacing: -1.02px;
  }
}
#wrap.elevator .title_depth1[data-motion] h3 {
  transform: translateY(70%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
#wrap.elevator .title_depth1[data-motion].is_animated h3 {
  transform: translateY(0);
  opacity: 1;
}
#wrap.elevator .title_depth2 {
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  #wrap.elevator .title_depth2 {
    margin-bottom: 40px;
  }
  #wrap.elevator .title_depth2.mb24 {
    margin-bottom: 24px;
  }
}
#wrap.elevator .title_depth2 h3 {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -1.6px;
  margin-bottom: 24px;
  color: #000;
}
@media (max-width: 1023px) {
  #wrap.elevator .title_depth2 h3 {
    font-size: 34px;
    letter-spacing: -1.02px;
    margin-bottom: 16px;
    color: #333;
    color: #333;
  }
}
#wrap.elevator .title_depth2 span {
  display: block;
  font-size: 22px;
  letter-spacing: -0.66px;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  #wrap.elevator .title_depth2 span {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -0.51px;
  }
}
#wrap.elevator .title_depth2[data-motion] h3 {
  transform: translateY(70%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
#wrap.elevator .title_depth2[data-motion] span {
  transform: translateY(70%);
  transition: transform 0.8s, opacity 0.8s;
  opacity: 0;
}
#wrap.elevator .title_depth2[data-motion].is_animated h3 {
  transform: translateY(0);
  opacity: 1;
}
#wrap.elevator .title_depth2[data-motion].is_animated span {
  transform: translateY(0);
  opacity: 1;
}
#wrap.new-installation .vision_area {
  margin-bottom: 0;
}
#wrap.new-installation .process {
  padding: 160px 0;
  background: #f3f3f3;
}
@media (max-width: 1023px) {
  #wrap.new-installation .process {
    padding: 80px 0;
  }
}
#wrap.new-installation .process .before_after_items {
  padding: 32px 0 80px 0;
}
@media (max-width: 1023px) {
  #wrap.new-installation .process .before_after_items {
    padding: 0;
  }
}
#wrap.new-installation .process .before_after_items:last-of-type {
  padding: 0;
}
@media (max-width: 1023px) {
  #wrap.new-installation .process .before_after_items:last-of-type {
    padding: 40px 0 0 0;
  }
}
#wrap.new-installation .process .before_after_items[data-motion] {
  transform: translateY(10%);
  transition: transform 0.75s, opacity 0.75s;
  opacity: 0;
}
#wrap.new-installation .process .before_after_items[data-motion].is_animated {
  transform: translateY(0);
  opacity: 1;
}
#wrap.new-installation .process .before_after_items h5 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -1.02px;
}
@media (max-width: 1023px) {
  #wrap.new-installation .process .before_after_items h5 {
    font-size: 26px;
    letter-spacing: 0.78px;
    margin-bottom: 16px;
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap {
  display: flex;
  justify-content: space-between;
  border: 1px solid #CACACA;
}
@media (max-width: 767px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap {
    flex-direction: column;
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li {
  width: 33.3333333333%;
  background: #fff;
  padding: 24px 48px;
  border-right: 1px solid #cacaca;
  position: relative;
}
@media (max-width: 1023px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #CaCaCa;
    padding: 32px 24px;
    display: flex;
    align-items: flex-start;
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li::before, #wrap.new-installation .process .before_after_items ul.item_wrap > li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li::before, #wrap.new-installation .process .before_after_items ul.item_wrap > li::after {
    top: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li::before {
  content: "";
  right: -5px;
  width: 10px;
  height: 15px;
  background: url(../images/elevator/icon_arrow_blue.svg) no-repeat center;
  z-index: 2;
}
@media (max-width: 767px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li::before {
    right: unset;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%) rotate(90deg);
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li::after {
  content: "";
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cacaca;
  background: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li::after {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li:last-child {
    border-bottom: none;
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li:last-child::before, #wrap.new-installation .process .before_after_items ul.item_wrap > li:last-child::after {
  display: none;
}
@media (max-width: 1023px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li > i {
    display: none;
  }
}
@media (max-width: 767px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li > i {
    display: block;
  }
}
@media (max-width: 1023px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li img {
    width: 48px;
    height: auto;
    margin-right: 18px;
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.66px;
  margin: 24px 0 16px 0;
  position: relative;
}
@media (max-width: 1023px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong {
    margin: 0 0 32px 0;
    padding-left: 66px;
    font-size: 17px;
    letter-spacing: -0.51px;
  }
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 48px;
    height: 48px;
  }
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong.before_step_01::before {
    background: url(../images/elevator/new-installation_icon_01.svg) center center/cover no-repeat;
  }
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong.before_step_02::before {
    background: url(../images/elevator/new-installation_icon_02.svg) center center/cover no-repeat;
  }
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong.before_step_03::before {
    background: url(../images/elevator/new-installation_icon_03.svg) center center/cover no-repeat;
  }
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong.after_step_01::before {
    background: url(../images/elevator/new-installation_icon_04.svg) center center/cover no-repeat;
  }
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong.after_step_02::before {
    background: url(../images/elevator/new-installation_icon_05.svg) center center/cover no-repeat;
  }
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong.after_step_03::before {
    background: url(../images/elevator/new-installation_icon_06.svg) center center/cover no-repeat;
  }
}
@media (max-width: 767px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong {
    margin: 0 0 8px 0;
    padding-left: 0;
  }
  #wrap.new-installation .process .before_after_items ul.item_wrap > li strong::before {
    display: none;
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li li {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.54px;
  color: #666;
  position: relative;
  padding-left: 12px;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  #wrap.new-installation .process .before_after_items ul.item_wrap > li li {
    font-size: 15px;
    letter-spacing: -0.45px;
  }
}
#wrap.new-installation .process .before_after_items ul.item_wrap > li li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
#wrap.new-installation .banner_area {
  margin-top: 0;
}
#wrap.new-installation .banner_area a:before {
  background: url("../images/support/banner_faq.jpg") center no-repeat;
  background-size: cover;
}
#wrap.new-installation .banner_area a strong {
  font-size: 34px;
  letter-spacing: -0.03em;
}
@media (max-width: 1023px) {
  #wrap.new-installation .banner_area a strong {
    font-size: 26px;
    letter-spacing: -0.78px;
  }
}
#wrap.new-installation .banner_area a .light {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 2.25rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  #wrap.new-installation .banner_area a .light {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.54px;
  }
}
#wrap.new-installation footer {
  margin-top: 0;
}
#wrap.full-replacement .vision_area {
  margin-bottom: 0;
}
#wrap.full-replacement .process_wrap_common {
  background-image: url(../images/elevator/elevator_process_bg.jpg);
}
@media (max-width: 767px) {
  #wrap.full-replacement .process_wrap_common {
    background-image: url("../images/elevator/mo_elevator_process_bg.png");
  }
}
#wrap.full-replacement .process_wrap_common .title_depth2 h3 {
  color: #fff;
}
#wrap.full-replacement .process_wrap_common .title_depth2 span {
  color: #fff;
}
#wrap.full-replacement .banner_area {
  margin-top: 0;
}
#wrap.full-replacement .banner_area a:before {
  background: url("../images/support/banner_catalog.jpg") center no-repeat;
  background-size: cover;
}
@media (max-width: 1023px) {
  #wrap.full-replacement .banner_area a:before {
    background: url("../images/support/m_banner_catalog.jpg") center no-repeat;
    background-size: cover;
  }
}
#wrap.full-replacement .banner_area a strong {
  font-size: 40px;
  letter-spacing: -0.03em;
}
@media (max-width: 1023px) {
  #wrap.full-replacement .banner_area a strong {
    font-size: 26px;
    letter-spacing: -0.78px;
  }
}
#wrap.full-replacement .banner_area a .light {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 2.25rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  #wrap.full-replacement .banner_area a .light {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.54px;
  }
}
#wrap.full-replacement footer {
  margin-top: 0;
}
#wrap.project .sub_visual .vision_area {
  margin-bottom: 120px;
}
#wrap.project .search_box {
  margin-bottom: 80px;
}
#wrap.project .search_box .search_area {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
#wrap.project .search_box .custom_radio .radio_area {
  margin-right: 25px;
  padding: 5px 0;
}
#wrap.project .search_box .custom_radio input[type=radio] + label {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.project .search_box .custom_radio input[type=radio] + label:before {
  top: 0;
}
#wrap.project .search_box .custom_radio input[type=radio] + label:after {
  top: 5px;
}
#wrap.project .search_box .category {
  display: table;
  width: 100%;
  font-size: 0;
}
#wrap.project .search_box .category:first-of-type {
  border-bottom: 1px solid #CaCaCa;
}
#wrap.project .search_box .category > div {
  display: table-cell;
  font-size: 18px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.125rem;
  vertical-align: middle;
}
#wrap.project .search_box .category > div:first-of-type {
  width: 160px;
  padding: 30px 10px;
  text-align: center;
  background-color: #e4f2fe;
}
#wrap.project .search_box .category > div:last-of-type {
  width: calc(100% - 160px);
  padding: 20px 40px;
  color: #666666;
}
#wrap.project .search_box .btn_wrap {
  margin-top: 8px;
}
#wrap.project .search_box .btn_wrap.initial {
  margin-top: 18px;
  text-align: right;
}
#wrap.project .search_box .btn_initial {
  display: inline-block;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #666666;
}
#wrap.project .search_box .btn_initial span {
  position: relative;
}
#wrap.project .search_box .btn_initial span:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  vertical-align: middle;
  background: url("../images/elevator/icon_initial.svg") center no-repeat;
  background-size: cover;
}
#wrap.project .search_box .btn_search {
  text-align: center;
}
#wrap.project .result_list ul {
  margin-right: -24px;
  font-size: 0;
}
#wrap.project .result_list li {
  display: inline-block;
  width: 33.333%;
  padding-right: 24px;
  padding-bottom: 64px;
  vertical-align: top;
}
@media (min-width: 1024px) {
  #wrap.project .result_list li a:hover .img_wrap img {
    transform: scale(1.05);
  }
  #wrap.project .result_list li a:hover .project_name {
    color: #107AF2;
  }
}
#wrap.project .result_list .img_wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 83.33%;
  border-radius: 10px;
  overflow: hidden;
  transform: rotate(0.003deg);
}
#wrap.project .result_list .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0.003deg);
  width: auto;
  height: 100%;
  transition: transform 0.6s;
}
#wrap.project .result_list .project_name {
  margin-top: 16px;
  font-size: 20px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.75rem;
  color: #666666;
  transition: color 0.6s;
}
#wrap.project .result_list .btn_wrap {
  margin-top: 16px;
}
#wrap.project .popup_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
}
#wrap.project .popup_wrap.on {
  display: block;
}
#wrap.project .popup_wrap .pop_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
#wrap.project .popup_wrap .popup {
  position: relative;
  max-width: 982px;
  padding: 40px 40px 74px;
  background: #fff;
  border-radius: 10px;
}
#wrap.project .popup_wrap .popup strong {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  padding-right: 40px;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.project .popup_wrap .popup .pop_close_btn {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30px;
  height: 30px;
}
#wrap.project .popup_wrap .popup .pop_close_btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: url("../images/common/popup_close.svg") no-repeat 0 0;
}
#wrap.project .popup_wrap .popup .cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: normal;
}
#wrap.project .popup_wrap .popup .left {
  width: 468px;
}
#wrap.project .popup_wrap .popup .right {
  width: calc(100% - 468px);
  padding-left: 32px;
}
#wrap.project .popup_wrap .popup .swiper-wrapper {
  padding-bottom: 34px;
}
#wrap.project .popup_wrap .popup .swiper-pagination-bullets {
  bottom: 0;
}
#wrap.project .popup_wrap .popup .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #D9D9D9;
}
#wrap.project .popup_wrap .popup .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #107AF2;
}
#wrap.project .popup_wrap .popup .img_wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 83.333%;
}
#wrap.project .popup_wrap .popup .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#wrap.project .popup_wrap .table_wrap .table {
  padding: 8px 0;
  border-bottom: 2px solid #000;
}
#wrap.project .popup_wrap .table_wrap tr:last-of-type {
  border-bottom: none;
}
#wrap.project .popup_wrap .table_wrap tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
#wrap.project .popup_wrap .table_wrap tr:nth-of-type(odd) {
  background-color: #fff;
}
#wrap.project .popup_wrap .table_wrap th,
#wrap.project .popup_wrap .table_wrap td {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: left;
}
#wrap.project .popup_wrap .table_wrap th {
  padding: 17px 10px 17px 16px;
  background-color: transparent;
}
#wrap.project .popup_wrap .table_wrap td {
  padding: 17px 10px 17px 0;
  color: #666666;
}
#wrap.project .popup_wrap .pop_close_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
}
#wrap.project .popup_wrap .pop_close_btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: url("../images/common/ico_close.svg") no-repeat 0 0;
}
@media (max-width: 1023px) {
  #wrap.project .popup_wrap .popup_wrap {
    display: block;
  }
  #wrap.project .popup_wrap .pop_inner {
    padding: 40px 20px;
  }
  #wrap.project .popup_wrap .popup {
    position: relative;
    padding: 20px;
    max-width: 100%;
  }
  #wrap.project .popup_wrap .popup strong {
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
  #wrap.project .popup_wrap .popup .left {
    width: 332px;
    margin: 0 auto;
  }
  #wrap.project .popup_wrap .popup .right {
    width: calc(100% - 332px);
    height: 276px;
    padding-left: 16px;
    overflow: hidden scroll;
  }
  #wrap.project .popup_wrap .popup .swiper-wrapper {
    padding-bottom: 42px;
  }
  #wrap.project .popup_wrap .popup .swiper-pagination-bullets {
    bottom: 16px;
  }
  #wrap.project .popup_wrap .popup .img_wrap {
    padding-top: 83.214%;
  }
  #wrap.project .popup_wrap .popup .pop_close_btn {
    top: 15px;
    right: 15px;
  }
  #wrap.project .popup_wrap .popup .pop_close_btn::after {
    width: 16px;
    height: 16px;
    background-size: 100% auto;
  }
  #wrap.project .popup_wrap .table_wrap colgroup col:nth-of-type(1) {
    width: 23%;
  }
  #wrap.project .popup_wrap .table_wrap colgroup col:nth-of-type(2) {
    width: 77%;
  }
  #wrap.project .popup_wrap .table_wrap th {
    padding: 16px 10px;
  }
  #wrap.project .popup_wrap .table_wrap td {
    padding: 16px 10px 16px 0;
  }
  #wrap.project .popup_wrap .table_wrap th,
  #wrap.project .popup_wrap .table_wrap td {
    font-size: 14px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  #wrap.project .popup_wrap .popup .cont {
    flex-direction: column;
  }
  #wrap.project .popup_wrap .popup .left {
    width: 100%;
    margin: 0 auto;
  }
  #wrap.project .popup_wrap .popup .right {
    width: 100%;
    height: 204px;
    padding-left: 0;
    overflow: hidden scroll;
  }
}
@media (max-width: 1023px) {
  #wrap.project .sub_visual .vision_area {
    margin-bottom: 60px;
  }
  #wrap.project .search_box {
    margin-bottom: 60px;
  }
  #wrap.project .search_box .search_area {
    border-top: none;
    border-bottom: none;
  }
  #wrap.project .search_box .custom_radio .radio_area {
    margin-right: 0;
  }
  #wrap.project .search_box .custom_radio input[type=radio] + label {
    font-size: 15px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.project .search_box .custom_radio input[type=radio] + label:before {
    top: -1px;
  }
  #wrap.project .search_box .custom_radio input[type=radio] + label:after {
    top: 4px;
  }
  #wrap.project .search_box .category {
    position: relative;
    display: block;
    width: 100%;
  }
  #wrap.project .search_box .category.on > div:first-of-type:after {
    background-image: url("../images/common/icon_arrow_up_bk.svg");
  }
  #wrap.project .search_box .category.on > div:last-of-type {
    display: block;
  }
  #wrap.project .search_box .category:first-of-type {
    border-bottom: none;
  }
  #wrap.project .search_box .category:last-of-type {
    margin-top: -1px;
  }
  #wrap.project .search_box .category > div {
    display: block;
  }
  #wrap.project .search_box .category > div:first-of-type {
    position: relative;
    width: 100%;
    padding: 18px 16px;
    text-align: left;
    border: 1px solid #CaCaCa;
    background-color: #fff;
  }
  #wrap.project .search_box .category > div:first-of-type:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 15px;
    height: 10px;
    background-image: url("../images/common/icon_arrow_down.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
  }
  #wrap.project .search_box .category > div:last-of-type {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #CaCaCa;
    background-color: #fff;
    z-index: 9;
  }
  #wrap.project .search_box .category .custom_radio .scroll {
    max-height: 252px;
    overflow: hidden auto;
  }
  #wrap.project .search_box .category .custom_radio .radio_area {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
  #wrap.project .search_box .category .custom_radio .radio_area:first-of-type {
    padding-top: 0;
  }
  #wrap.project .search_box .category .custom_radio .radio_area:last-of-type {
    padding-bottom: 0;
  }
  #wrap.project .search_box .btn_wrap {
    margin-top: 16px;
  }
  #wrap.project .search_box .btn_wrap.initial {
    margin-top: 16px;
  }
  #wrap.project .search_box .btn_initial {
    font-size: 16px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.project .search_box .btn_initial span:after {
    margin-left: 16px;
    vertical-align: top;
  }
  #wrap.project .result_list ul {
    margin-right: -16px;
  }
  #wrap.project .result_list li {
    width: 50%;
    padding-right: 16px;
    padding-bottom: 32px;
  }
  #wrap.project .result_list .project_name {
    margin-top: 16px;
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
  #wrap.project .result_list .btn_wrap {
    margin-top: 32px;
  }
  #wrap.project .result_list .btn_wrap.web {
    display: none;
  }
}
@media (max-width: 767px) {
  #wrap.project .result_list ul {
    margin-right: 0;
  }
  #wrap.project .result_list li {
    width: 100%;
    padding-right: 0;
    padding-bottom: 60px;
  }
  #wrap.project .result_list li:last-of-type {
    padding-bottom: 0;
  }
}
#wrap.product .vision_area {
  height: 100vh;
  margin-bottom: 0;
}
#wrap.product .vision_area .height_area {
  position: relative;
  height: 562px;
  overflow: hidden;
}
#wrap.product .vision_area .bg {
  content: "";
  position: absolute;
  top: -120%;
  left: 50%;
  width: 100%;
  height: 160vh;
  background: url("../images/elevator/product/elevator_kv_bg.jpg") center top no-repeat;
  background-size: cover;
  z-index: -1;
  transform: translateX(-50%);
}
#wrap.product .vision_area h3 {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(0);
  font-size: 140px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  opacity: 0;
  transition: 0.65s;
}
#wrap.product .vision_area.active h3 {
  opacity: 1;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  #wrap.product .vision_area {
    padding-top: 0;
  }
  #wrap.product .vision_area .height_area {
    height: 65.617vw;
  }
  #wrap.product .vision_area .bg {
    background: url("../images/elevator/product/elevator_kv_bg_m.jpg") center top no-repeat;
    background-size: cover;
    min-width: auto;
  }
  #wrap.product .vision_area h3 {
    font-size: 56px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  #wrap.product .vision_area {
    padding-top: 0;
  }
  #wrap.product .vision_area .height_area {
    height: 65.617vw;
  }
  #wrap.product .vision_area .bg {
    height: 100vh;
    top: -50%;
  }
  #wrap.product .vision_area h3 {
    font-size: 56px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
}
#wrap.product .list {
  padding: 286px 0 160px;
  position: relative;
  backface-visibility: hidden;
}
#wrap.product .list .back_bg {
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  padding: 200px 65px 0 0;
  text-align: right;
  backface-visibility: hidden;
}
#wrap.product .list .back_bg .img {
  display: inline-block;
  vertical-align: top;
}
#wrap.product .list .back_bg .img img.pc {
  display: block;
}
#wrap.product .list .back_bg .img img.tablet {
  display: none;
}
#wrap.product .list .back_bg .img img.m {
  display: none;
}
#wrap.product .list .title h3 {
  font-size: 100px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: bold;
  color: #000;
}
#wrap.product .list .title strong {
  display: block;
  font-size: 50px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  color: #333;
  margin-top: 16px;
}
#wrap.product .list .title p {
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
  margin-top: 168px;
}
#wrap.product .list .title p br.m_block {
  display: none;
}
#wrap.product .list .title[data-motion] h3 {
  opacity: 0;
  transform: translateY(50%);
  transition: 0.65s;
}
#wrap.product .list .title[data-motion] strong {
  opacity: 0;
  transform: translateY(50%);
  transition: 0.65s;
  transition-delay: 0.2s;
}
#wrap.product .list .title[data-motion] p {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.65s;
  transition-delay: 0.4s;
}
#wrap.product .list .title[data-motion].is_animated h3 {
  opacity: 1;
  transform: translateY(0);
}
#wrap.product .list .title[data-motion].is_animated strong {
  opacity: 1;
  transform: translateY(0);
}
#wrap.product .list .title[data-motion].is_animated p {
  opacity: 1;
  transform: translateY(0);
}
#wrap.product .list .card {
  width: 100%;
  max-width: 1330px;
  padding: 0 65px;
  margin: 0 auto;
  margin-top: 100px;
}
#wrap.product .list .card ul li {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}
#wrap.product .list .card ul li:last-child {
  align-items: flex-end;
}
#wrap.product .list .card ul li .box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#wrap.product .list .card ul li .box .txt {
  color: #fff;
  padding: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
#wrap.product .list .card ul li .box .txt strong {
  display: block;
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
}
#wrap.product .list .card ul li .box .txt p {
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  font-weight: 400;
}
#wrap.product .list .card ul li .box .txt.black {
  color: #333;
}
#wrap.product .list .card ul li .box .txt.right {
  padding-left: 204px;
}
#wrap.product .list .card ul li .box .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#wrap.product .list .card ul li .box.box1 {
  width: 650px;
  height: 420px;
  margin-left: -164px;
}
#wrap.product .list .card ul li .box.box1 .bg {
  background: url("../images/elevator/product/elevator_list_bg1.jpg") center no-repeat;
  background-size: cover;
}
#wrap.product .list .card ul li .box.box2 {
  width: 486px;
  height: 540px;
}
#wrap.product .list .card ul li .box.box2 .bg {
  background: url("../images/elevator/product/elevator_list_bg2.jpg") center no-repeat;
  background-size: cover;
}
#wrap.product .list .card ul li .box.box3 {
  width: 650px;
  height: 420px;
  margin-right: -164px;
}
#wrap.product .list .card ul li .box.box3 .bg {
  background: url("../images/elevator/product/elevator_list_bg3.jpg") center no-repeat;
  background-size: cover;
}
#wrap.product .list .card ul li .box.box4 {
  padding-top: 240px;
}
#wrap.product .list .card ul li .box.box4 .txt {
  position: relative;
  padding: 0;
}
#wrap.product .list .card ul li .box.box4 .txt strong {
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
}
#wrap.product .list .card ul li .box.box4 .txt strong br.pc_block {
  display: block;
}
#wrap.product .list .card ul li .box.box4 .txt strong br.m_block {
  display: none;
}
#wrap.product .list .card ul li .box.box5 {
  width: 486px;
  height: 540px;
}
#wrap.product .list .card ul li .box.box5 .bg {
  background: url("../images/elevator/product/elevator_list_bg5.jpg") center no-repeat;
  background-size: cover;
}
#wrap.product .list .card ul li .box.box6 {
  width: 650px;
  height: 420px;
  margin-left: -164px;
}
#wrap.product .list .card ul li .box.box6 .bg {
  background: url("../images/elevator/product/elevator_list_bg6.jpg") center no-repeat;
  background-size: cover;
}
#wrap.product .list .card ul li .box.box7 {
  width: 486px;
  height: 540px;
}
#wrap.product .list .card ul li .box.box7 .bg {
  background: url("../images/elevator/product/elevator_list_bg7.jpg") center no-repeat;
  background-size: cover;
}
#wrap.product .list .card ul li:nth-of-type(3) {
  margin-top: -48px;
}
#wrap.product .list .card ul li[data-motion] .box {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.65s;
}
#wrap.product .list .card ul li[data-motion] .box + .box {
  transition-delay: 0.2s;
}
#wrap.product .list .card ul li[data-motion] .box .bg {
  transform: scale(1.35);
  transition: 2s;
}
#wrap.product .list .card ul li[data-motion].is_animated .box {
  opacity: 1;
  transform: translateY(0);
}
#wrap.product .list .card ul li[data-motion].is_animated .box .bg {
  transform: scale(1);
}
#wrap.product .list .bot {
  position: relative;
  margin-top: 80px;
  padding: 80px 120px 62px;
  border-radius: 10px;
  overflow: hidden;
  background: #F3F3F3;
}
#wrap.product .list .bot .box {
  display: flex;
  justify-content: space-between;
}
#wrap.product .list .bot .box dl {
  width: calc(50% - 50px);
}
#wrap.product .list .bot .box dl dt {
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  color: #333;
  padding: 20px 0;
  position: relative;
  border-bottom: 1px solid #cacaca;
}
#wrap.product .list .bot .box dl dt i {
  position: absolute;
  right: 0;
  bottom: 20px;
}
#wrap.product .list .bot .box dl dd {
  margin-top: 20px;
}
#wrap.product .list .bot .box dl dd p {
  position: relative;
  padding-left: 25px;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.7;
  font-weight: 400;
  color: #333;
}
#wrap.product .list .bot .box dl dd p:before {
  content: "·";
  position: absolute;
  left: 8px;
  top: 0;
}
#wrap.product .list .bot[data-motion] .box {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.65s;
}
#wrap.product .list .bot[data-motion].is_animated .box {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1539px) {
  #wrap.product .list .back_bg {
    padding: 200px 0 0 0;
  }
  #wrap.product .list .back_bg .img {
    margin-right: -10vw;
  }
  #wrap.product .list .back_bg .img img {
    width: 1000px;
  }
  #wrap.product .list .card {
    max-width: 100%;
    padding: 0 60px;
  }
  #wrap.product .list .card ul li .box.box1 {
    max-width: 650px;
    width: 47%;
    margin-left: 0;
  }
  #wrap.product .list .card ul li .box.box2 {
    max-width: 486px;
    width: calc(47% - 164px);
    margin-left: 164px;
  }
  #wrap.product .list .card ul li .box.box3 {
    max-width: 650px;
    width: 47%;
    margin-right: 0;
  }
  #wrap.product .list .card ul li .box.box4 {
    max-width: 486px;
    width: calc(47% - 164px);
    margin-left: 164px;
  }
  #wrap.product .list .card ul li .box.box5 {
    max-width: 486px;
    width: calc(47% - 164px);
    margin-right: 164px;
  }
  #wrap.product .list .card ul li .box.box6 {
    max-width: 650px;
    width: 47%;
    margin-left: 0;
  }
  #wrap.product .list .card ul li .box.box7 {
    max-width: 486px;
    width: calc(47% - 164px);
    margin-right: 164px;
  }
}
@media (max-width: 1299px) {
  #wrap.product .list .card ul li .box .txt.right {
    padding-left: 96px;
  }
  #wrap.product .list .card ul li .box.box2 {
    width: calc(47% - 56px);
    margin-left: 56px;
  }
  #wrap.product .list .card ul li .box.box4 {
    width: calc(47% - 56px);
    margin-left: 56px;
  }
  #wrap.product .list .card ul li .box.box5 {
    width: calc(47% - 56px);
    margin-right: 56px;
  }
  #wrap.product .list .card ul li .box.box7 {
    width: calc(47% - 56px);
    margin-right: 56px;
  }
  #wrap.product .list .bot {
    padding: 80px 55px 62px;
  }
  #wrap.product .list .bot .box dl {
    width: calc(50% - 25px);
  }
}
@media (max-width: 1023px) {
  #wrap.product .list {
    padding: 100px 0 80px;
  }
  #wrap.product .list .inner {
    padding: 0 97px;
  }
  #wrap.product .list .back_bg {
    padding: 100px 0 0 0;
  }
  #wrap.product .list .back_bg .img {
    margin-right: 0;
  }
  #wrap.product .list .back_bg .img img {
    width: 100%;
  }
  #wrap.product .list .back_bg .img img.pc {
    display: none;
  }
  #wrap.product .list .back_bg .img img.tablet {
    display: block;
  }
  #wrap.product .list .title h3 {
    font-size: 50px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  #wrap.product .list .title strong {
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-top: 16px;
  }
  #wrap.product .list .title p {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.4;
    margin-top: 90px;
  }
  #wrap.product .list .card {
    margin-top: 80px;
    padding: 0 54px;
  }
  #wrap.product .list .card ul li {
    margin-top: 44px;
  }
  #wrap.product .list .card ul li .box .txt {
    padding: 20px;
  }
  #wrap.product .list .card ul li .box .txt strong {
    font-size: 22px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.product .list .card ul li .box .txt p {
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.product .list .card ul li .box .txt p br {
    display: none;
  }
  #wrap.product .list .card ul li .box .txt.right {
    padding-left: 20px;
  }
  #wrap.product .list .card ul li .box.box1 {
    width: 45%;
    height: 186px;
  }
  #wrap.product .list .card ul li .box.box2 {
    width: calc(45% - 43px);
    height: 276px;
    margin-left: 43px;
  }
  #wrap.product .list .card ul li .box.box3 {
    width: 45%;
    height: 186px;
  }
  #wrap.product .list .card ul li .box.box4 {
    width: calc(45% - 43px);
    margin-left: 43px;
    padding-top: 108px;
  }
  #wrap.product .list .card ul li .box.box4 .txt strong {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.4;
  }
  #wrap.product .list .card ul li .box.box5 {
    width: calc(45% - 43px);
    height: 276px;
    margin-right: 43px;
  }
  #wrap.product .list .card ul li .box.box6 {
    width: 45%;
    height: 186px;
  }
  #wrap.product .list .card ul li .box.box7 {
    width: calc(45% - 43px);
    height: 276px;
    margin-right: 43px;
  }
  #wrap.product .list .bot {
    margin-top: 40px;
    padding: 50px 55px;
  }
  #wrap.product .list .bot .box dl dt {
    font-size: 22px;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #333;
    padding: 16px 0;
  }
  #wrap.product .list .bot .box dl dt i {
    bottom: 16px;
  }
  #wrap.product .list .bot .box dl dt i img {
    width: 48px;
  }
  #wrap.product .list .bot .box dl dd {
    margin-top: 8px;
  }
  #wrap.product .list .bot .box dl dd p {
    padding-left: 16px;
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
    word-break: keep-all;
    word-wrap: break-word;
    color: #333;
    line-height: 1.7;
  }
  #wrap.product .list .bot .box dl dd p:before {
    left: 8px;
  }
}
@media (max-width: 767px) {
  #wrap.product .list .inner {
    padding: 0 20px;
  }
  #wrap.product .list .back_bg .img img.pc {
    display: none;
  }
  #wrap.product .list .back_bg .img img.tablet {
    display: none;
  }
  #wrap.product .list .back_bg .img img.m {
    display: block;
  }
  #wrap.product .list .title h3 {
    font-size: 56px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  #wrap.product .list .title strong {
    font-size: 32px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.product .list .title p {
    margin-top: 60px;
  }
  #wrap.product .list .title p br.m_block {
    display: block;
  }
  #wrap.product .list .card {
    margin-top: 170px;
    padding: 0 20px;
  }
  #wrap.product .list .card ul li {
    display: block;
  }
  #wrap.product .list .card ul li .box + .box {
    margin-top: 40px;
  }
  #wrap.product .list .card ul li .box.box1 {
    width: calc(100% - 32px);
    margin-left: 0;
    height: auto;
    padding-top: 61%;
  }
  #wrap.product .list .card ul li .box.box2 {
    width: calc(100% - 70px);
    margin-left: 70px;
    height: auto;
    padding-top: 91%;
  }
  #wrap.product .list .card ul li .box.box3 {
    width: calc(100% - 32px);
    margin-right: 0;
    height: auto;
    padding-top: 61%;
  }
  #wrap.product .list .card ul li .box.box4 {
    width: 100%;
    padding-top: 40px;
    margin: 0;
  }
  #wrap.product .list .card ul li .box.box4 .txt strong br.pc_block {
    display: none;
  }
  #wrap.product .list .card ul li .box.box4 .txt strong br.m_block {
    display: block;
  }
  #wrap.product .list .card ul li .box.box5 {
    width: calc(100% - 70px);
    margin-left: 70px;
    height: auto;
    padding-top: 91%;
  }
  #wrap.product .list .card ul li .box.box6 {
    width: calc(100% - 32px);
    margin-left: 0;
    height: auto;
    padding-top: 61%;
  }
  #wrap.product .list .card ul li .box.box7 {
    width: calc(100% - 70px);
    height: auto;
    padding-top: 91%;
  }
  #wrap.product .list .card ul li:nth-of-type(3) {
    margin-top: 33px;
  }
  #wrap.product .list .bot {
    padding: 68px 20px 50px;
  }
  #wrap.product .list .bot .box {
    display: block;
  }
  #wrap.product .list .bot .box dl {
    width: 100%;
  }
  #wrap.product .list .bot .box dl + dl {
    margin-top: 38px;
  }
}
#wrap.product .type {
  margin-bottom: 160px;
}
#wrap.product .type .title strong {
  display: block;
  font-size: 50px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #000;
  font-weight: 600;
  margin-bottom: 32px;
}
#wrap.product .type .tab_btn_type01 li {
  width: 50%;
}
#wrap.product .type .tab_btn_type01 li .tab:after {
  background: #000;
}
#wrap.product .type .tab_btn_type01 li.active .tab {
  color: #000;
}
#wrap.product .type .tabpanel > p {
  text-align: right;
  padding: 8px 0 0;
  font-size: 16px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 1.125rem;
  color: #333;
  font-weight: 400;
}
#wrap.product .type .tabpanel .flex-container {
  background-color: #f3f3f3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: normal;
  width: 100%;
  padding: 74px 84px;
  border-radius: 10px;
}
#wrap.product .type .tabpanel .icon {
  text-align: center;
  width: 24%;
}
#wrap.product .type .tabpanel .icon:nth-of-type(1) {
  width: 27%;
}
#wrap.product .type .tabpanel .icon img {
  margin: 0 auto;
}
#wrap.product .type .tabpanel .icon p {
  margin-top: 24px;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.3;
  font-weight: 600;
}
#wrap.product .type .tabpanel .icon p span {
  display: block;
  width: 100%;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #666666;
  margin-bottom: 16px;
  font-weight: 400;
}
#wrap.product .type[data-motion] .title {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.65s;
}
#wrap.product .type[data-motion] .tab_btn_type01 {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.65s;
  transition-delay: 0.2s;
}
#wrap.product .type[data-motion] .tab_cont {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.65s;
  transition-delay: 0.4s;
}
#wrap.product .type[data-motion].is_animated .title {
  opacity: 1;
  transform: translateY(0);
}
#wrap.product .type[data-motion].is_animated .tab_btn_type01 {
  opacity: 1;
  transform: translateY(0);
}
#wrap.product .type[data-motion].is_animated .tab_cont {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1199px) {
  #wrap.product .type .tabpanel .flex-container {
    padding: 80px;
  }
}
@media (max-width: 1023px) {
  #wrap.product .type {
    margin-bottom: 0;
    background-color: #f3f3f3;
    padding: 80px 0;
  }
  #wrap.product .type .title strong {
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 16px;
  }
  #wrap.product .type .tabpanel > p {
    font-size: 14px;
    letter-spacing: -0.03em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.125rem;
  }
  #wrap.product .type .tabpanel .flex-container {
    background: #fff;
    padding: 0;
  }
  #wrap.product .type .tabpanel .icon {
    padding: 30px 10px;
    box-sizing: border-box;
  }
  #wrap.product .type .tabpanel .icon img {
    width: 48px;
  }
  #wrap.product .type .tabpanel .icon p {
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.3;
    word-break: keep-all;
    word-wrap: break-word;
  }
  #wrap.product .type .tabpanel .icon p span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  #wrap.product .type .tabpanel .icon {
    width: 50%;
  }
  #wrap.product .type .tabpanel .icon:nth-of-type(1) {
    width: 50%;
  }
}
#wrap.product .product {
  position: relative;
  width: 100%;
  height: 1080px;
  margin-bottom: 0;
  overflow: hidden;
  backface-visibility: hidden;
}
#wrap.product .product:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -1px;
}
#wrap.product .product .button_wrap {
  position: absolute;
  right: 160px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}
#wrap.product .product .button_wrap ul li {
  text-align: right;
}
#wrap.product .product .button_wrap ul li a {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  padding: 11px 0 11px 33px;
  position: relative;
  transition: 0.45s;
}
#wrap.product .product .button_wrap ul li a:after {
  content: "";
  width: 14px;
  height: 12px;
  background: url("../images/elevator/product/icon_arrow.svg") center no-repeat;
  background-size: cover;
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.45s;
}
#wrap.product .product .button_wrap ul li a span {
  display: inline-block;
  vertical-align: top;
  padding: 5px 0 5px;
  position: relative;
}
#wrap.product .product .button_wrap ul li a span:before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: 0.45s;
}
@media (min-width: 1024px) {
  #wrap.product .product .button_wrap ul li:hover a {
    color: #fff;
  }
}
#wrap.product .product .button_wrap ul li.active a {
  color: #fff;
}
#wrap.product .product .button_wrap ul li.active a span:before {
  width: 100%;
}
#wrap.product .product .button_wrap ul li.active a:after {
  left: 0;
  opacity: 1;
}
#wrap.product .product .item_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#wrap.product .product .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  z-index: 1;
  overflow: hidden;
  transition-timing-function: cubic-bezier(0.6, 0.07, 0, 1.03);
}
#wrap.product .product .item .relative {
  width: 100%;
  height: 100%;
  padding: 160px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: translateY(-100%);
  transition-timing-function: cubic-bezier(0.6, 0.07, 0, 1.03);
}
#wrap.product .product .item.active {
  z-index: 100;
  transform: translateY(0);
}
#wrap.product .product .item.active .relative {
  transform: translateY(0);
}
#wrap.product .product .item.active_end {
  z-index: 1;
  transform: translateY(0);
}
#wrap.product .product .item.active_end .relative {
  transform: translateY(0);
}
#wrap.product .product .item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: -1;
  backface-visibility: hidden;
}
#wrap.product .product .item .txt_area {
  position: absolute;
  left: 160px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
#wrap.product .product .item .txt_area strong {
  display: block;
  font-size: 50px;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
#wrap.product .product .item .txt_area p {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 16px;
  color: #fff;
}
#wrap.product .product .item .txt_area a.btn {
  margin-top: 16px;
  min-width: 0;
  width: 120px;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.15);
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1;
  color: #fff;
}
#wrap.product .product .item .txt_area a.btn span {
  padding-right: 24px;
}
#wrap.product .product .item .data {
  width: 512px;
  height: 810px;
  position: relative;
  display: flex;
  z-index: 3;
}
#wrap.product .product .item .data .img_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
  background: #D9D9D9;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 7px 14px 35px 0px rgba(0, 0, 0, 0.2), 30px 57px 64px 0px rgba(0, 0, 0, 0.17), 67px 128px 87px 0px rgba(0, 0, 0, 0.1), 120px 228px 103px 0px rgba(0, 0, 0, 0.03), 187px 356px 113px 0px rgba(0, 0, 0, 0);
}
#wrap.product .product .item .data .img_wrap > div {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#wrap.product .product .item .data .img_wrap > div img {
  width: auto;
  height: 100%;
}
#wrap.product .product .item .data .img_wrap > div.active {
  opacity: 1;
  visibility: visible;
}
#wrap.product .product .item .data .img_wrap .view_btn {
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 24px 0;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}
#wrap.product .product .item .data .img_wrap .view_btn span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
#wrap.product .product .item .data:hover .view_btn {
  opacity: 1;
}
#wrap.product .product .item .ticker {
  position: absolute;
  left: 0;
  bottom: 65px;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}
#wrap.product .product .item .ticker p {
  display: inline-block;
  vertical-align: top;
  font-size: 140px;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.04);
  padding: 0 15px;
}
#wrap.product .product .m_blank_height {
  display: none;
}
@media (max-width: 1699px) {
  #wrap.product .product .item .txt_area {
    left: 60px;
  }
  #wrap.product .product .button_wrap {
    right: 60px;
  }
}
@media (max-width: 1539px) {
  #wrap.product .product .item .txt_area {
    left: 65px;
    width: 250px;
  }
  #wrap.product .product .item .txt_area strong {
    word-break: keep-all;
    word-wrap: break-word;
    font-size: 42px;
    letter-spacing: 0em;
    line-height: 1;
  }
  #wrap.product .product .item .txt_area p {
    word-break: keep-all;
    word-wrap: break-word;
  }
  #wrap.product .product .item .data {
    width: 442px;
    height: 700px;
    margin-left: 50px;
  }
  #wrap.product .product .button_wrap {
    right: 65px;
  }
}
@media (max-width: 1023px) {
  #wrap.product .product {
    padding: 30px 0 82px;
    height: 614px;
  }
  #wrap.product .product .button_wrap {
    right: 0;
    top: 30px;
    transform: none;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }
  #wrap.product .product .button_wrap ul {
    font-size: 0;
    white-space: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #wrap.product .product .button_wrap ul ::-webkit-scrollbar {
    display: none;
  }
  #wrap.product .product .button_wrap ul::-webkit-scrollbar {
    width: 2px;
    height: 4px;
  }
  #wrap.product .product .button_wrap ul::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background-clip: padding-box;
  }
  #wrap.product .product .button_wrap ul::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
  }
  #wrap.product .product .button_wrap ul li {
    display: inline-block;
    vertical-align: top;
    text-align: left;
  }
  #wrap.product .product .button_wrap ul li + li {
    margin-left: 16px;
  }
  #wrap.product .product .button_wrap ul li a {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    padding: 20px 0;
    transition: padding 0.3s;
  }
  #wrap.product .product .button_wrap ul li a:after {
    content: "";
    width: 14px;
    height: 12px;
    background: url("../images/elevator/product/icon_arrow.svg") center no-repeat;
    background-size: cover;
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.45s;
  }
  #wrap.product .product .button_wrap ul li a span {
    padding: 4px 0 4px;
  }
  #wrap.product .product .button_wrap ul li.active a {
    padding-left: 20px;
  }
  #wrap.product .product .item .relative {
    padding: 116px 24px 80px;
    justify-content: space-between;
  }
  #wrap.product .product .item .txt_area {
    width: auto;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
  #wrap.product .product .item .txt_area strong {
    font-size: 34px;
    letter-spacing: 0em;
    line-height: 1;
  }
  #wrap.product .product .item .txt_area p {
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
    line-height: 1.4;
  }
  #wrap.product .product .item .txt_area a.btn {
    min-width: 0;
    width: 150px;
    padding: 15px 20px;
  }
  #wrap.product .product .item .data {
    width: 260px;
    height: 412px;
  }
  #wrap.product .product .item .data .img_wrap {
    position: absolute;
    left: 0;
    top: 0;
  }
  #wrap.product .product .item .data .img_wrap .view_btn span {
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  #wrap.product .product .item .ticker {
    bottom: 40px;
  }
  #wrap.product .product .item .ticker p {
    font-size: 70px;
    letter-spacing: 0em;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  #wrap.product .product {
    min-height: 790px;
  }
  #wrap.product .product .item .relative {
    padding: 128px 20px 82px;
    display: block;
  }
  #wrap.product .product .item .data {
    margin: 40px auto 0;
  }
  #wrap.product .product .item .data .img_wrap > div img {
    width: 100%;
    height: auto;
  }
}
#wrap.product footer,
#wrap.product .banner_area {
  margin: 0;
}
#wrap.product .banner_area a:before {
  background: url("../images/elevator/product/banner_inquiry.jpg") center no-repeat;
  background-size: cover;
}
#wrap.product .banner_area strong {
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
}
#wrap.product .banner_area .light {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
  /* 0.0625 * 16 = 1px */
  line-height: 2.25rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  #wrap.product .banner_area {
    margin-top: 0;
  }
  #wrap.product .banner_area a:before {
    background: url("../images/elevator/product/m_banner_inquiry.jpg") center no-repeat;
    background-size: 100% auto;
  }
  #wrap.product .banner_area strong {
    font-size: 26px;
    letter-spacing: -0.015em;
    line-height: 1;
  }
  #wrap.product .banner_area .light {
    margin-top: 18px;
    font-size: 18px;
    letter-spacing: -0.015em;
    /* 0.0625 * 16 = 1px */
    line-height: 1.5625rem;
  }
}




.input_label {padding:0!important;margin:0!important; width:100%; color:#fff}
.w_input {background:#000; border:none;  color:#f6f6f6;padding:12px 5px; width:100%}
.w_select {background:#444; border:none;  color:#f6f6f6; line-height:1 ; padding:6px 5px; margin-top:6px } 
.select_lable {padding:0 5px;line-height:1;  position:relative; top:4px}
.w_textarea {background:#000; border:none; border:solid 2px #555; color:#f6f6f6;padding:12px; width:100%; min-height:100px} 
.w_textarea_text  {background:#000; border:none; border:solid 2px #555; color:#f6f6f6;padding:12px; width:100%; height:100px; overflow-y:scroll}  
.input_flex {display:flex; gap:20px; margin-bottom:50px }
.input_flex.input_flex_m10{ margin-bottom:10px }
.input_flex_inner {font-size:20px; border-bottom:solid 2px #555; color:#999999;align-items: center;flex:1}
.input_flex_inner label {margin-left:10px; margin-right:30px; line-height:1;color:#fff}
.input_flex_1002 {line-height:1}
.w_radio {position:relative; top:3px}
.w_radio2 {position:relative; top:2px}
.input_flex_inner span {  display:inline-block}
.input_btn {text-align:center}
.input_btn span{max-width:300px; width:100%; height:80px; text-align:center; display:inline-block; line-height:80px; background:#555; color:#fff; font-size:20px; }
.input_flex_inner3 {font-size:20px;   color:#ffffff;align-items: center;flex:1}

@media (max-width: 1023px) {

	.input_flex {display:block;margin-bottom:0;font-size:14px }
	.input_flex_inner {margin-bottom:30px;font-size:14px}
	.input_label {font-size:14px}
	.w_input {font-size:14px}
	.w_select {font-size:14px}
	.input_flex_inner label { margin-right:10px; line-height:1}
	.w_textarea {margin-bottom:30px;} 
	.input_flex_inner3 {font-size:14px}
	.input_btn span{max-width:100%; width:100%; height:50px; text-align:center; display:inline-block; line-height:50px; background:#555; color:#fff; font-size:16px; }


}



.modally-init {
  display: none;
}

.modally-wrap {
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 1000;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  display: none;
  box-sizing: border-box;
  transition: opacity 500ms ease-in-out;
}

.modally-wrap .modally-underlay {
  position: fixed;
  background: rgba(23, 23, 23, 0.25);
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modally {
  margin: 0px auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 20px;
  width: calc(100% - 40px);
  height: auto;
  background: #222;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  padding-top: 48px;
  color:#fff;
 
}

.modally .modally-close-button {
  border: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  background: transparent;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 12px 20px;
  font-size: 32px;
  line-height: 23px;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
  font-weight: 300;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
  color:#fff
}
.modally .modally-close-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove excess padding and border in Firefox 4+ */
.modally .modally-close-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.modally-table {
  display: table;
  width: 100%;
  min-height: 100%;
}

.modally-cell {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.modally .iframe-landing {
  position: relative;
}

.modally .iframe-landing iframe,
.modally .iframe-landing video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0px;
  left: 0px;
  border: none;
}
.w_pop {font-size:30px; font-weight:600; padding:50px 0 50px 0}
.w_pop_in {line-height:1.2}
@media screen and (min-width: 960px) {
  .modally .modally-close:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 959px) {
  .modally {
    height: auto;
    max-width: none;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: calc(100% - 40px);
	 overflow-y:scroll;
	 .w_pop {font-size:20px; }
.w_pop_in {font-size:14px; }
  }
}



.rental_list {padding:30px 0 50px 0; text-align:center}
.rental_list p{line-height:1.2; word-break:keep-all; padding:0 15px 0 15px}
/*# sourceMappingURL=modally.css.map */



.rental_table_flex {display:flex; margin-bottom:100px}
.rental_table_flex > div {flex:1}
.rental_table_left.table_r {padding-right:100px}
.rental_table_right.table_r {padding-left:100px}
.table_r table {width:100%; line-height:1.2}
.table_r table th {padding:20px; font-size:18px; background:#333; border-bottom:solid 1px #666; border-top:solid 1px #666; text-align:center}
.table_r table td {padding:20px; font-size:18px;   border-bottom:solid 1px #666}
.table_r table td p {margin-bottom:10px}
.dslr {padding:20px; font-size:18px;   border-bottom:solid 1px #666; text-align:center; background:#222} 
.mo_view {display:none}


@media screen and (max-width: 959px) {
	.rental_table_flex {display:block}
	.rental_table_flex > div {width:100%}
	.rental_table_left.table_r {padding-right:0}
	.rental_table_right.table_r {padding-left:0}
	.table_r table {width:100%; line-height:1.2}
	.table_r table th {padding:20px; font-size:18px; background:#333; border-bottom:solid 1px #666; border-top:solid 1px #666; text-align:center}
	.table_r table td {padding:20px; font-size:18px;   border-bottom:solid 1px #666}
	.table_r table td p {margin-bottom:10px}
	.dslr {padding:20px; font-size:18px;   border-bottom:solid 1px #666; text-align:center; background:#222} 	
	.pc_view {display:none}
	.mo_view {display:block}
}
