@charset "UTF-8";
:root {
  --subHeight: 694px;
}

.sub-visual {
  width: 100%;
  height: var(--subHeight);
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}
.sub-visual * {
  transition: all 1s;
}
.sub-visual.sv01 .bg {
  background-image: url("/img/sub/bg_sub_01.jpg");
}
.sub-visual.sv02 .bg {
  background-image: url("/img/sub/bg_sub_02.jpg");
}
.sub-visual.sv03 .bg {
  background-image: url("/img/sub/bg_sub_03.jpg");
}
.sub-visual.sv04 .bg {
  background-image: url("/img/sub/bg_sub_04.jpg");
}
.sub-visual.sv05 .bg {
  background-image: url("/img/sub/bg_sub_05.jpg");
}
.sub-visual .box {
  padding-top: 100px;
  position: relative;
  width: 100%;
  height: 100%;
}
.sub-visual .text {
  opacity: 0;
  transform: translateY(100px);
}
.sub-visual h2 {
  color: #222;
  font-size: calc(var(--font84) + 0.6rem);
  font-weight: 700;
  margin-top: 10px;
}
.sub-visual .path-box {
  display: flex;
}
.sub-visual .path-box .path {
  display: inline-flex;
  align-items: center;
}
.sub-visual .path-box .path::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #aaa;
  border-radius: 50%;
  margin: 0 15px;
}
.sub-visual .path-box .path > a {
  color: #aaa;
  font-size: 1.8rem;
  font-weight: 600;
}
.sub-visual .path-box .path.on > a {
  color: var(--color-main);
}
.sub-visual .bg-box,
.sub-visual .bg {
  height: 100%;
}
.sub-visual .bg-box {
  width: 100vw;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.sub-visual .bg-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 1s;
}
.sub-visual .bg {
  transition: all 1s;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-visual span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  position: absolute;
  right: 0;
  bottom: -4.5rem;
  opacity: 0;
  transform: translateY(100px);
}
.sub-visual.on .bg-box::after {
  height: 46.5%;
}
.sub-visual.on .bg {
  top: calc(50% + 80px);
}
.sub-visual.on .text,
.sub-visual.on span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.lnb-box {
  height: 80px;
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 2;
}
.lnb-box::before,
.lnb-box::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.lnb-box::before {
  box-shadow: 0px -4px 16px rgba(0, 0, 0, 0.03);
}
.lnb-box::after {
  border-bottom: 1px solid #eee;
}
.lnb-box * {
  height: 100%;
}
.lnb-box .depth1 {
  display: flex;
}
.lnb-box .depth1 > li {
  width: 230px;
}
.lnb-box .depth1 > li > a {
  background: transparent;
  color: #777;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.2;
  transition: all 0.6s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.lnb-box .depth1 > li:hover > a, .lnb-box .depth1 > li.on > a {
  background: var(--color-main);
  color: var(--color-white);
}

.sub-contents {
  background: var(--color-white);
  margin-top: calc(var(--subHeight) + var(--headerHeight));
  position: relative;
  z-index: 1;
}
.sub-contents .sub-page h3 {
  color: #222;
  font-size: var(--font70);
  font-weight: 700;
  font-family: var(--font-pretendard);
  margin-bottom: var(--gap80);
}
.sub-contents .products .grid-box {
  display: grid;
  row-gap: 60px;
  column-gap: 35px;
}
.sub-contents .products .grid4 {
  grid-template-columns: repeat(4, 1fr);
}
.sub-contents .products .grid4 .item {
  padding: 105px 40px 50px;
}
.sub-contents .products .grid4 .img img {
  max-width: calc(100% - 60px);
}
.sub-contents .products .grid3 {
  grid-template-columns: repeat(3, 1fr);
}
.sub-contents .products .grid3 .item {
  padding: 90px 50px 50px;

  padding: 90px 20px 50px;
}
.sub-contents .products .grid3 .img img {
  max-width: calc(100% - 80px);
}
.sub-contents .products .item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.sub-contents .products .item::before {
  content: "";
  display: block;
  background: #f6f6f6;
  z-index: -1;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .products .item .status {
  width: 100px;
  height: 70px;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .products .item .status.new {
  background: #121721;
}
.sub-contents .products .item .status.best {
  background: #EC6815;
}
.sub-contents .products .item .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.8815/1;
}
.sub-contents .products .item .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.6s;
}
.sub-contents .products .item .text {
  margin-top: 25px;
}
.sub-contents .products .item .text * {
  font-family: var(--font-pretendard);
}
.sub-contents .products .item .text em,
.sub-contents .products .item .text h5 {
  font-weight: 600;
}
.sub-contents .products .item .text em,
.sub-contents .products .item .text span {
  font-size: 1.9rem;
}
.sub-contents .products .item .text em {
  color: #aaa;
  word-break:break-word;
}
.sub-contents .products .item .text h5 {
  word-break:break-word;
  color: #222;
  font-size: 2.5rem;
  margin: 10px 0;
  transition: all 0.6s;
}
.sub-contents .products .item .text span {
  color: #777;
  font-weight: 300;
  word-break:break-word;
}
.sub-contents .products .item:hover::before {
  background: var(--color-white);
  box-shadow: 0 4px 26px rgba(0, 0, 0, 0.12);
}
.sub-contents .products .item:hover .img img {
  transform: translate(-50%, -50%) scale(1.08);
}
.sub-contents .products .item:hover .text h5 {
  color: var(--color-main);
}
.sub-contents .details .contents > div {
  padding: 80px 0 70px;
}
.sub-contents .details h4 {
  color: #222;
  font-size: var(--font48);
  font-weight: 700;
  text-align: center;
  margin-bottom: 55px;
}
.sub-contents .details .slide-box {
  width: 100%;
  overflow: hidden;
}
.sub-contents .details .slide-box .img {
  aspect-ratio: 0.7785/1;
  overflow: hidden;
}
.sub-contents .details .slide-box .img img {
  /* min-width: 100%;
  min-height: 100%; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .details .swiper-pagination {
  column-gap: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .details .swiper-pagination span {
  display: block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.sub-contents .details .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-main);
}
.sub-contents .details .information {
  column-gap: 100px;
  margin-top: -80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .details .information > * {
  width: 100%;
}
.sub-contents .details .information .slide-wrap {
  max-width: 36.25%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  row-gap: 70px;
  background: #f6f6f6;
  padding: 80px 145px 60px;
  position: relative;

  padding: 40px 80px;
}
.sub-contents .details .information .buttons {
  width: 100%;
  max-width: calc(100% - 20px);
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .details .information .buttons button {
  width: 65px;
  height: 65px;
  background: var(--color-white);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .details .information .buttons button img {
  width: 10px;
  height: 18px;
  filter: grayscale(1) brightness(0.1);
}
.sub-contents .details .information .text-box h4 {
  font-size: calc(var(--font56) + 0.4rem);
  text-align: left;
  margin-bottom: 15px;
}
.sub-contents .details .information .text-box span {
  color: #bbb;
  font-size: 2.6rem;
  font-weight: 700;
}
.sub-contents .details .information .text-box .info {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 70px 0 90px;
}
.sub-contents .details .information .text-box .info dl {
  display: flex;
}
.sub-contents .details .information .text-box .info dl * {
  font-size: 1.9rem;
}
.sub-contents .details .information .text-box .info dl dt {
  width: 155px;
  flex-shrink: 0;
  display: flex;
  column-gap: 10px;
  align-items: center;
  color: #222;
  font-weight: 500;
}
.sub-contents .details .information .text-box .info dl dt::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  background: var(--color-main);
  border-radius: 50%;
}
.sub-contents .details .information .text-box .info dl dd {
  font-weight: 300;
}
.sub-contents .details .information .links {
  display: flex;
  column-gap: 15px;
}
.sub-contents .details .information .links a {
  width: 100%;
  height: 70px;
  font-size: 1.9rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .details .information .links a:first-child {
  background: var(--color-main);
  color: var(--color-white);
}
.sub-contents .details .information .links a:last-child {
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
.sub-contents .details .features::before {
  background-image: url("/img/sub/bg_details_02.jpg");
}
.sub-contents .details .features * {
  color: var(--color-white);
  font-family: var(--font-pretendard);
}
.sub-contents .details .features h4 {
  color: var(--color-white);
  font-family: var(--font-pretendard);
}
.sub-contents .details .features .item-box,
.sub-contents .details .features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.sub-contents .details .features .item-box {
  row-gap: 20px;
  column-gap: 20px;
}
.sub-contents .details .features .item,
.sub-contents .details .features ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .details .features .item {
  width: 100%;
  height: 100px;
  column-gap: 25px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 35px;
}
.sub-contents .details .features .item .icon {
  flex-shrink: 0;
}
.sub-contents .details .features .item hr {
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
}
.sub-contents .details .features .item p {
  font-size: 2rem;
  font-weight: 500;
}
.sub-contents .details .features ul {
  row-gap: 30px;
  margin-top: 60px;
}
.sub-contents .details .features ul li {
  column-gap: 15px;
}
.sub-contents .details .features ul p {
  font-size: 1.9rem;
}
.sub-contents .details .applications .item-box {
  display: grid;
  grid-template-columns: repeat(9, 1fr);

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sub-contents .details .applications .item-box * {
  transition: all 0.6s;
}
.sub-contents .details .applications .item {
  width: calc(100% / 9);
  height: 240px;
  row-gap: 45px;
  background: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sub-contents .details .applications .item span {
  color: #222;
  font-size: 1.9rem;
  font-weight: 500;
}
.sub-contents .details .applications .item:hover {
  background: var(--color-main);
}
.sub-contents .details .applications .item:hover .icon {
  filter: brightness(0) invert(1);
}
.sub-contents .details .applications .item:hover span {
  color: var(--color-white);
}
.sub-contents .details .photos .slide-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  background: var(--color-white);
  padding: 60px 120px;
}
.sub-contents .details .photos .swiper-slide {
  max-width: calc((100% - 200px) / 3);
}
/*
.sub-contents .details .case .swiper-wrapper {
  display: flex;
  justify-content: center;
}
*/
/*
.sub-contents .details .case .swiper-wrapper .swiper-slide {
  margin:0 25px;
}
*/
.sub-contents .details .case .swiper-pagination {
  margin-top:5%;
}
.sub-contents .details .spec .table-box * {
  font-family: var(--font-pretendard);
}
.sub-contents .details .spec .table-box table th,
.sub-contents .details .spec .table-box table td {
  height: 75px;
  border: 1px solid #ddd;
  font-size: 1.8rem;
  text-align: center;
}
.sub-contents .details .spec .table-box table th {
  background: #121721;
  color: var(--color-white);
  font-weight: 500;
}
.sub-contents .details .spec .table-box table th.bg {
  background: #f6f6f6;
  color: #222;
}
.sub-contents .details .drawings::before {
  background-image: url("/img/sub/bg_details_06.png");
}
.sub-contents .details .drawings .img-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .details .drawings .img-box .img {
  background: #FFF;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.05);
  padding: 45px 50px;

  width: 50%;
}
.sub-contents .details .case .item {
  position: relative;
}
.sub-contents .details .case .item .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.sub-contents .details .case .item .img::before, .sub-contents .details .case .item .img::after {
  content: "";
  display: block;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .details .case .item .img::after {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(0, 0, 0, 0);
}
.sub-contents .details .case .item .img img {
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.6s;
}
.sub-contents .details .case .item h5 {
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 600;
  display: flex;
  column-gap: 10px;
  padding: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sub-contents .details .case .item h5::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: url("/img/common/icon_setting.png") no-repeat center/100%;
}
.sub-contents .details .case .item:hover .img::before {
  opacity: 0;
}
.sub-contents .details .case .item:hover .img::after {
  background: transparent;
  border-color: var(--color-main);
}
.sub-contents .details .case .item:hover .img img {
  transform: translate(-50%, -50%) scale(1.04);
}
.sub-contents .about {
  background: url("/img/sub/point_about.png") no-repeat center top/100%;
}
.sub-contents .about .information > p {
  color: #222;
  font-size: calc(var(--font56) - 0.6rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
}
.sub-contents .about .information > p em {
  color: #bbb;
}
.sub-contents .about .information .text {
  background: url("/img/sub/bg_about_01.jpg") no-repeat center/cover;
  padding: 110px 120px;
}
.sub-contents .about .information .text * {
  color: var(--color-white);
}
.sub-contents .about .information .text dl {
  display: flex;
  column-gap: 120px;
}
.sub-contents .about .information .text dl .logo {
  width: 217px;
  margin-bottom: 15px;
}
.sub-contents .about .information .text dl dt {
  font-size: calc(var(--font56) - 0.6rem);
  font-weight: 700;
}
.sub-contents .about .information .text dl dd {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.sub-contents .about .information .text dl p {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.8;
}
.sub-contents .about .history .content {
  position: relative;
}
.sub-contents .about .history .bar {
  width: 1px;
  height: 100%;
  background: #e8e8e8;
  position: absolute;
  top: 0;
  left: 50%;
}
.sub-contents .about .history .item-box {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--gap160) - 10px);
}
.sub-contents .about .history .item {
  display: flex;
  align-items: flex-start;
  column-gap: 17.5%;
}
.sub-contents .about .history .item > * {
  width: 41.25%;
}
.sub-contents .about .history .item .img {
  border: 1px solid #ddd;
  margin-top: 35px;
}
.sub-contents .about .history .item .img:hover {
  border-color: var(--color-main);
}
.sub-contents .about .history .item .year {
  color: #f5f5f5;
  font-size: 8rem;
  font-weight: 700;
  position: relative;
}
.sub-contents .about .history .item .year::before, .sub-contents .about .history .item .year::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
}
.sub-contents .about .history .item .year::before {
  width: 28px;
  height: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-main);
  top: 35%;
  left: calc(-21% - 15px);
}
.sub-contents .about .history .item .year::after {
  width: 10px;
  height: 10px;
  background: var(--color-main);
  top: 45%;
  left: calc(-21% - 5px);
}
.sub-contents .about .history .item .year span {
  transition: all 1s;
}
.sub-contents .about .history .item .year p.on span {
  color: var(--color-main);
}
.sub-contents .about .history .item .year p.on span:nth-child(1) {
  transition-delay: 0.1s;
}
.sub-contents .about .history .item .year p.on span:nth-child(2) {
  transition-delay: 0.2s;
}
.sub-contents .about .history .item .year p.on span:nth-child(3) {
  transition-delay: 0.3s;
}
.sub-contents .about .history .item .year p.on span:nth-child(4) {
  transition-delay: 0.4s;
}
.sub-contents .about .history .item .year p.on span:nth-child(5) {
  transition-delay: 0.5s;
}
.sub-contents .about .history .item .year p.on span:nth-child(6) {
  transition-delay: 0.6s;
}
.sub-contents .about .history .item .year p.on span:nth-child(7) {
  transition-delay: 0.7s;
}
.sub-contents .about .history .item .year p.on span:nth-child(8) {
  transition-delay: 0.8s;
}
.sub-contents .about .history .item .year p.on span:nth-child(9) {
  transition-delay: 0.9s;
}
.sub-contents .about .history .item .year p.on span:nth-child(10) {
  transition-delay: 1s;
}
.sub-contents .about .history .item .list {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  margin-top: 40px;
}
.sub-contents .about .history .item .list dl {
  display: flex;
  align-items: flex-start;
  column-gap: 25px;
}
.sub-contents .about .history .item .list dl dt {
  width: 55px;
  color: #222;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.sub-contents .about .history .item .list dl dd {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.sub-contents .about .history .item .list dl p {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  color: #333;
  font-size: 1.9rem;
  font-weight: 300;
}
.sub-contents .about .history .item .list dl p::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  background: var(--color-main);
  border-radius: 50%;
  transform: translateY(0.6em);
}
.sub-contents .about .history .list-box * {
  font-family: var(--font-pretendard);
}
.sub-contents .about .history .reverse .year {
  text-align: right;
}
.sub-contents .about .history .reverse .year::before, .sub-contents .about .history .reverse .year::after {
  left: auto;
}
.sub-contents .about .history .reverse .year::before {
  right: calc(-21% - 15px);
}
.sub-contents .about .history .reverse .year::after {
  right: calc(-21% - 5px);
}
.sub-contents .about .history .reverse .list dl,
.sub-contents .about .history .reverse .list dl p {
  flex-direction: row-reverse;
}
.sub-contents .vision .sub-flex {
  display: flex;
}
.sub-contents .vision .sub-flex > * {
  width: 100%;
}
.sub-contents .vision .sub-flex h4 {
  max-width: 400px;
  flex-shrink: 0;
  color: #222;
  font-size: var(--font48);
  font-weight: 700;
}
.sub-contents .vision .ideology .grid,
.sub-contents .vision .ideology ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sub-contents .vision .ideology .grid {
  row-gap: 30px;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.sub-contents .vision .ideology .grid::before {
  content: "";
  display: block;
  background: url("/img/sub/line_vision_01.png") no-repeat left/auto 100%;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .vision .ideology ul {
  column-gap: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .vision .ideology ul li {
  row-gap: 10px;
  color: #aaa;
  font-size: 3rem;
  font-weight: 600;
}
.sub-contents .vision .ideology ul em {
  color: var(--color-main);
  font-size: 3em;
  font-family: "Noto Serif SC", serif;
}
.sub-contents .vision .ideology p {
  color: #222;
  font-size: 2.6rem;
  font-weight: 600;
}
.sub-contents .vision .item dl dt {
  font-size: 3.2rem;
  font-weight: 700;
}
.sub-contents .vision .management .item-box {
  display: flex;
  column-gap: 20px;
}
.sub-contents .vision .management .item {
  width: 100%;
}
.sub-contents .vision .management .item * {
  transition: all 0.6s;
}
.sub-contents .vision .management .item .img {
  overflow: hidden;
  aspect-ratio: 1.9666/1;
}
.sub-contents .vision .management .item dl {
  background: var(--color-white);
  padding: 60px 50px;
}
.sub-contents .vision .management .item dl dt {
  color: var(--color-main);
  margin-bottom: 25px;
}
.sub-contents .vision .management .item dl dd {
  color: #222;
  font-size: 1.9rem;
  line-height: 1.6;
}
.sub-contents .vision .management .item:hover .img img {
  transform: scale(1.07);
}
.sub-contents .vision .management .item:hover dl {
  background: var(--color-main);
}
.sub-contents .vision .management .item:hover dl dt,
.sub-contents .vision .management .item:hover dl dd {
  color: var(--color-white);
}
.sub-contents .vision .quality .item-box {
  border-top: 1px solid #eee;
}
.sub-contents .vision .quality .item {
  border-bottom: 1px solid #eee;
  padding: 60px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .vision .quality .item * {
  transition: all 0.6s;
}
.sub-contents .vision .quality .item::before {
  content: "";
  display: block;
  background: url("/img/sub/point_vision_03.png") no-repeat center/cover;
  opacity: 0;
  z-index: -1;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .vision .quality .item dl dt {
  color: #222;
}
.sub-contents .vision .quality .item dl dd {
  color: #bbb;
  font-size: 2.7rem;
  font-weight: 600;
  margin-top: 15px;
}
.sub-contents .vision .quality .item:hover::before {
  opacity: 1;
}
.sub-contents .vision .quality .item:hover dl dt, .sub-contents .vision .quality .item:hover dl dd {
  color: var(--color-white);
}
.sub-contents .vision .quality .item:hover .icon {
  filter: brightness(0) invert(1);
}
.sub-contents .directions .information .map-box {
  width: 100%;
  height: 600px;
}
.sub-contents .directions .information .map-box iframe {
  width: 100%;
  height: 100%;
}
.sub-contents .directions .information .info {
  column-gap: 90px;
  background: #f6f6f6;
  padding: 70px 90px;
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .directions .information .info .logo {
  width: 232px;
  height: 65px;
  flex-shrink: 0;
}
.sub-contents .directions .information .info hr {
  width: 1px;
  height: 73px;
  background: #ddd;
}
.sub-contents .directions .information .info dl * {
  color: #222;
}
.sub-contents .directions .information .info dl dt {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.sub-contents .directions .information .info dl dd {
  font-size: 1.8rem;
  font-weight: 300;
  font-family: var(--font-pretendard);
}
.sub-contents .install .item-box,
.sub-contents .material .item-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 90px;
  column-gap: 50px;
}
.sub-contents .install .item {
  position: relative;
}
.sub-contents .install .item .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.sub-contents .install .item .img::before, .sub-contents .install .item .img::after {
  content: "";
  display: block;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .install .item .img::after {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(0, 0, 0, 0);
}
.sub-contents .install .item .img img {
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.6s;
}
.sub-contents .install .item h5 {
  width: 100%;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 600;
  display: flex;
  column-gap: 10px;
  padding: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sub-contents .install .item h5::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: url("/img/common/icon_setting.png") no-repeat center/100%;
}
.sub-contents .install .item:hover .img::before {
  opacity: 0;
}
.sub-contents .install .item:hover .img::after {
  background: transparent;
  border-color: var(--color-main);
}
.sub-contents .install .item:hover .img img {
  transform: translate(-50%, -50%) scale(1.04);
}
.sub-contents .catalog .item-box {
  border-top: 2px solid #222;
}
.sub-contents .catalog .item {
  column-gap: 20px;
  border-bottom: 1px solid #ddd;
  padding: 40px 50px;
  transition: all 0.6s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .catalog .item a:first-child {
  display: block;
  width: 100%;
}
.sub-contents .catalog .item .text {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 15px;
}
.sub-contents .catalog .item b {
  display: inline-block;
  width: 70px;
  color: #bbb;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.35;
  transition: all 0.6s;
}
.sub-contents .catalog .item h5 {
  width: calc(100% - 85px);
  height: 1.3em;
  color: #222;
  font-size: 2.4rem;
  font-weight: 600;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.sub-contents .catalog .item .date {
  color: #bbb;
  font-size: 1.8rem;
  font-weight: 500;
}
.sub-contents .catalog .item:hover {
  border-bottom-color: var(--color-main);
}
.sub-contents .catalog .item:hover b {
  color: var(--color-main);
}
.sub-contents .catalog .item:hover .download-button {
  background: var(--color-main);
  color: var(--color-white);
}
.sub-contents .catalog .item:hover .download-button .icon {
  filter: brightness(0) invert(1);
}
.sub-contents .material .item .img-box {
  position: relative;
}
.sub-contents .material .item .img-box button {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .material .item .img-box button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 5.5px solid transparent;
  border-left: 9px solid var(--color-white);
  border-bottom: 5.5px solid transparent;
}
.sub-contents .material .item .img {
  padding: 28% 0;
  position: relative;
  overflow: hidden;
}
.sub-contents .material .item .img::after,
.sub-contents .material .item .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .material .item .img::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
}
.sub-contents .material .item .img img {
  min-width: 100%;
}
.sub-contents .material .item .text {
  margin-top: 30px;
}
.sub-contents .material .item .text h5 {
  height: 1.3em;
  color: #222;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.sub-contents .material .item .text .date {
  color: #bbb;
  font-size: 1.8rem;
  font-weight: 500;
}
.sub-contents .material .item:hover .img-box button {
  background: rgba(236, 104, 21, 0.6);
}
.sub-contents .material .item:hover .img::after {
  opacity: 1;
}
.sub-contents .faq .item-box {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.sub-contents .faq .item,
.sub-contents .faq .item > * {
  width: 100%;
}
.sub-contents .faq .q em,
.sub-contents .faq .a em {
  font-size: 2.3rem;
  font-weight: 600;
}
.sub-contents .faq .q {
  border: 1px solid #ddd;
  padding: 35px 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .faq .q .text {
  display: flex;
  column-gap: 15px;
}
.sub-contents .faq .q em {
  color: #bbb;
}
.sub-contents .faq .q h5 {
  color: #222;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: left;
}
.sub-contents .faq .q .angle {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .faq .q .angle img {
  width: 20px;
  transform: rotateX(180deg);
  filter: grayscale(1) brightness(0.1);
}
.sub-contents .faq .a {
  background: #f9f9f9;
  padding: 50px;
  margin-top: 20px;
  display: none;
}
.sub-contents .faq .a .row {
  column-gap: 45px;
}
.sub-contents .faq .a dl {
  padding: 0 13px;
}
.sub-contents .faq .a dl dt {
  color: #222;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}
.sub-contents .faq .a dl dt::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: var(--color-main);
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: -13px;
}
.sub-contents .faq .a dl dd {
  color: #666;
  font-size: 1.7rem;
}
.sub-contents .faq .item.on .q {
  border-color: var(--color-main);
}
.sub-contents .faq .item.on .q em {
  color: var(--color-main);
}
.sub-contents .faq .item.on .q .angle img {
  transform: rotateX(0);
  filter: inherit;
}
.sub-contents .as .content {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 3;
}
.sub-contents .as .bg,
.sub-contents .as .map-box {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .as .bg {
  z-index: -1;
  overflow: hidden;
}
.sub-contents .as .bg img {
  min-width: 100%;
  max-width: inherit;
  min-height: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.16);
  transition: all 1.2s;
}
.sub-contents .as .row {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .as .text {
  font-size: 4.6rem;
}
.sub-contents .as .text * {
  font-weight: 700;
}
.sub-contents .as .text h4,
.sub-contents .as .text .number {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s;
}
.sub-contents .as .text h4 {
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 30px;
}
.sub-contents .as .text .number {
  column-gap: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .as .text .number .icon,
.sub-contents .as .text .number .icon::before,
.sub-contents .as .text .number .icon::after {
  border-radius: 50%;
}
.sub-contents .as .text .number .icon {
  width: 60px;
  height: 60px;
  background: rgba(236, 104, 21, 0.2);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .as .text .number .icon::before, .sub-contents .as .text .number .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .as .text .number .icon::before {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: rgba(236, 104, 21, 0.5);
}
.sub-contents .as .text .number .icon::after {
  width: calc(100% - 17px);
  height: calc(100% - 17px);
  background: var(--color-main);
}
.sub-contents .as .text .number img {
  position: relative;
  z-index: 1;
}
.sub-contents .as .text .number span {
  color: var(--color-main);
  font-size: 1.2826em;
}
.sub-contents .as .map-box {
  display: flex;
  justify-content: flex-end;
}
.sub-contents .as .map {
  width: 53.125vw;
  height: 100%;
  background: rgba(18, 23, 33, 0.5);
  padding: 65px;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: all 1s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .as .map .svg {
  width: 100%;
  height: 100%;
}
.sub-contents .as .map .maps {
  filter: drop-shadow(rgb(0, 0, 0) 0 10px 20px);
}
.sub-contents .as .map .as-circle-1 {
  animation: circleAni 2s 4s infinite;
}
@keyframes circleAni {
  to {
    opacity: 0;
    fill: var(--color-white);
    transform: scale(3.85);
  }
}
.sub-contents .as .logo {
  width: 100vw;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 1.4s;
}
.sub-contents .as .logo img {
  width: 46.75%;
}
.sub-contents .as .content.on .bg img {
  transform: translate(-50%, -50%) scale(1);
}
.sub-contents .as .content.on .map {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.sub-contents .as .content.on .text h4,
.sub-contents .as .content.on .text .number {
  opacity: 1;
  transform: translateY(0);
}
.sub-contents .as .content.on .text .number {
  transition-delay: 0.4s;
}
.sub-contents .as .content.on .logo {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition-delay: 0.6s;
}
.sub-contents .purchase .radio-box {
  background: #f6f6f6;
  column-gap: 15px;
  padding: 15px 20px;
  margin-bottom: 80px;
}
.sub-contents .purchase .radio-box label {
  width: 100%;
  height: var(--form-height);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sub-contents .purchase .radio-box input[type=radio] {
  background: var(--color-white);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .purchase .radio-box span {
  color: #aaa;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.sub-contents .purchase .radio-box input[type=radio]:checked {
  background: #121721;
}
.sub-contents .purchase .radio-box input[type=radio]:checked + span {
  color: var(--color-white);
}
.sub-contents .purchase .content {
  display: grid;
  grid-template-columns: calc(58.125% - 60px) 41.875%;
  column-gap: 60px;
}
.sub-contents .purchase .top-p {
  color: #222;
  font-size: 1.7rem;
  font-weight: 300;
  text-align: right;
  margin-bottom: 30px;
}
.sub-contents .purchase .policy-box {
  display: flex;
  flex-direction: column;
}
.sub-contents .purchase .policy-box .text-box {
  height: 580px;
  border: 1px solid #ddd;
  padding: 35px 25px;
}
.sub-contents .purchase .policy-box .text-box .inner {
  padding: 0 15px;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}
.sub-contents .purchase .policy-box .text-box .inner::-webkit-scrollbar {
  width: 6px;
}
.sub-contents .purchase .policy-box .text-box .inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.sub-contents .purchase .policy-box .text-box .inner::-webkit-scrollbar-thumb {
  background: var(--color-main);
}
.sub-contents .purchase .policy-box .text-box .text,
.sub-contents .purchase .policy-box .text-box .dl-box {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.sub-contents .purchase .policy-box .text-box .text * {
  color: #444;
  font-weight: 300;
  line-height: 1.6;
  font-family: var(--font-pretendard);
}
.sub-contents .purchase .policy-box .text-box .dl-box dl dt {
  margin-bottom: 20px;
}
.sub-contents .purchase .policy-box .text-box .dot {
  display: flex;
  gap: 0 3px;
}
.sub-contents .purchase .policy-box .text-box .dot::before {
  content: "•";
  flex-shrink: 0;
}
.sub-contents .purchase .policy-box .text-box .dot > p {
  width: 100%;
  padding: 0 0 0 13px;
}
.sub-contents .purchase .policy-box > label {
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  margin: 30px 0 auto;
}
.sub-contents .purchase .policy-box > label input[type=checkbox] {
  width: 22px;
  height: 22px;
  background: var(--color-white);
  border: 1px solid #ddd;
}
.sub-contents .purchase .policy-box > label input[type=checkbox]:checked {
  background: #fff url("/img/sub/icon_checked.png") no-repeat center/10px;
}
.sub-contents .purchase .policy-box > label p {
  color: #222;
  font-size: 1.7rem;
  font-weight: 300;
  font-family: var(--font-pretendard);
}
.sub-contents .purchase .policy-box > a {
  width: 100%;
  height: 70px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 1.9rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}