.font80 {
  --fontsize: 8.0rem;
  font-size: var(--fontsize);
}

.font70 {
  --fontsize: 7.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font40 {
  --fontsize: 4.0rem;
  font-size: var(--fontsize);
}

.font36 {
  --fontsize: 3.6rem;
  font-size: var(--fontsize);
}

.font32 {
  --fontsize: 3.2rem;
  font-size: var(--fontsize);
}

.font28 {
  --fontsize: 2.8rem;
  font-size: var(--fontsize);
}

.font24 {
  --fontsize: 2.4rem;
  font-size: var(--fontsize);
}

.smallTitle {
  display: inline-block;
  font-size: 2.0rem;
  font-weight: 700;
}

#fullpage .section .box {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#fullpage .visual {
  width: 100%;
	max-width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
	overflow: hidden;
}

#fullpage .visual :root {
  --vh: 100%;
}

@supports (-webkit-touch-callout: none) {
  #fullpage .visual {
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
  }
}

#fullpage .visual .bg,
#fullpage .visual .visualBox {
	width: 100%;
  height: 100%;
	position: absolute;
  top: 50%;
  left: 50%;
}

/*#fullpage .visual .bg {
  background-image: url("/img/main/visualBg.jpg");
  z-index: -2;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
  -webkit-transition: all 2s linear;
  transition: all 2s linear;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}*/

#fullpage .visual .visualBox {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#fullpage .visual .flexBox {
	width: 100%;
	height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 21% 0;
  padding: 0 0 6.6%;
}

#fullpage .visual h2,
#fullpage .visual p {
  opacity: 0;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}

#fullpage .visual h2 {
  color: #ffffff;
  font-weight: 900;
  line-height: 1.1428;
}

#fullpage .visual p {
  color: #ffffff;
  font-size: 2.0rem;
  letter-spacing: -0.020em;
  line-height: 1.4;
  margin: 45px 0 0;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#fullpage .visual p br {
  display: none;
}

#fullpage .visual.on .bg {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

#fullpage .visual.on h2,
#fullpage .visual.on p {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#fullpage .product .titleBox,
#fullpage .about .titleBox,
#fullpage .data .titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#fullpage .about h2,
#fullpage .data h2 {
  color: #222222;
}

#fullpage .product .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

#fullpage .product .itemBox {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #eeeeee;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

/*#fullpage .product .itemBox:nth-child(1) .item::before {
  background: url("/img/main/productBg1.jpg") no-repeat center center/cover;
  z-index: -2;
}

#fullpage .product .itemBox:nth-child(2) .item::before {
  background: url("/img/main/productBg2.jpg") no-repeat center center/cover;
  z-index: -2;
}

#fullpage .product .itemBox:nth-child(3) .item::before {
  background: url("/img/main/productBg3.jpg") no-repeat center center/cover;
  z-index: -2;
}

#fullpage .product .itemBox:nth-child(4) .item::before {
  background: url("/img/main/productBg4.jpg") no-repeat center center/cover;
  z-index: -2;
}*/

#fullpage .product .item {
  position: relative;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#fullpage .product .item::before, #fullpage .product .item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#fullpage .product .item::after {
  background: #000000;
  opacity: 0.6;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#fullpage .product .item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
}

#fullpage .product .item > div > * {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

#fullpage .product .item h3 {
  color: #ffffff;
  font-weight: 800;
}

#fullpage .product .item .list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  padding: 0 0 0 21%;
}

#fullpage .product .item .list h3,
#fullpage .product .item .list p {
  white-space: nowrap;
}

#fullpage .product .item .list p {
  opacity: 0.6;
  margin: 15px 0 55px;
}

#fullpage .product .item .list .svg {
  width: 16px;
  height: auto;
}

#fullpage .product .item .list .svg .arrowIconCls {
  fill: #ffffff;
}

#fullpage .product .item .off,
#fullpage .product .item .on {
  opacity: 0;
}

#fullpage .product .item .off {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 0;
}

#fullpage .product .item .off .text {
  width: 30px;
  height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#fullpage .product .item .off .text h3 {
  display: none;
}

#fullpage .product .item .off .text img {
  width: 100%;
  height: auto;
}

#fullpage .product .item .off i {
  color: #ffffff;
  font-size: 2.0rem;
}

#fullpage .product .item .on {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 60px 80px 90px;
  padding: 14% 60px 80px 90px;
}

#fullpage .product .item .on .titleBox,
#fullpage .product .item .on h5 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
}

#fullpage .product .item .on p,
#fullpage .product .item .on h5 {
  color: #222222;
}

#fullpage .product .item .on .titleBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

#fullpage .product .item .on .img {
  width: 100%;
  height: 86%;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#fullpage .product .item .on p {
  font-size: 2.0rem;
  margin: 16px 0 0;
}

#fullpage .product .item .on h5 {
  font-size: 3.0rem;
  font-weight: 700;
  text-align: right;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

#fullpage .product .circle {
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#fullpage .product .moreButton .icon {
  border: 1px solid #aaaaaa;
}

#fullpage .product .moreButton .arrowIconCls {
  fill: #888888;
}

#fullpage .product .moreButton:hover {
  color: #0843b1;
}

#fullpage .product .moreButton:hover .icon {
  border: 1px solid transparent;
}

#fullpage .product .moreButton:hover .arrowIconCls {
  fill: #ffffff;
}

#fullpage .product .itemBox.on .list, #fullpage .product .itemBox.off .list {
  opacity: 0;
}

#fullpage .product .itemBox.on {
  -webkit-box-flex: 9;
      -ms-flex-positive: 9;
          flex-grow: 9;
}

#fullpage .product .itemBox.on .item::before {
  opacity: 0.1;
}

#fullpage .product .itemBox.on .item::after {
  opacity: 0;
}

#fullpage .product .itemBox.on .on {
  opacity: 1;
}

#fullpage .product .itemBox.on .on > * {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#fullpage .product .itemBox.on .on .titleBox,
#fullpage .product .itemBox.on .on h5 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#fullpage .product .itemBox.on .on .img {
  opacity: 1;
}

#fullpage .product .itemBox.off .item::after {
  opacity: 0.88;
}

#fullpage .product .itemBox.off .off {
  opacity: 1;
}

#fullpage .about .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

#fullpage .about .imgBox {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
}

#fullpage .about .item {
  max-width: 780px;
  position: relative;
}

#fullpage .about .titleBox {
  color: #ffffff;
  padding: 45px 50px;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#fullpage .about .titleBox b {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  opacity: 0.6;
  margin: 0 0 15px;
}

#fullpage .about h2 {
  font-weight: 900;
  line-height: 1.1428;
}

#fullpage .about h3 {
  font-weight: 700;
  letter-spacing: -0.020em;
}

#fullpage .about .moreButton {
  color: #ffffff;
}

#fullpage .about .moreButton .icon {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

#fullpage .about .moreButton .arrowIconCls {
  fill: #ffffff;
}

#fullpage .about .moreButton:hover .icon {
  border: 1px solid transparent;
}

#fullpage .about .textBox {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 95px 0;
  padding: 60px 40px;
}

#fullpage .about .textBox b {
  letter-spacing: -0.020em;
  margin: 0 0 25px;
}

#fullpage .about .textBox p {
  color: rgba(34, 34, 34, 0.8);
  font-weight: 300;
  line-height: 1.75;
}

#fullpage .about .point {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  right: 0;
  bottom: 60px;
  z-index: -2;
}

#fullpage .about .point span {
  display: block;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#fullpage .about .point span.big {
  width: 220px;
  height: 220px;
  background: #f2f2f2;
  -webkit-transform: rotate(-15deg) translateX(80px);
          transform: rotate(-15deg) translateX(80px);
}

#fullpage .about .point span.medium {
  width: 120px;
  height: 120px;
  background: #0843b1;
  -webkit-transform: rotate(15deg) translateX(130px, 60px);
          transform: rotate(15deg) translateX(130px, 60px);
}

#fullpage .about .point span.small {
  width: 40px;
  height: 40px;
  background: rgba(8, 67, 177, 0.2);
  -webkit-transform: rotate(-30deg) translate(80px, -50px);
          transform: rotate(-30deg) translate(80px, -50px);
}

#fullpage .about .point span.on {
  opacity: 1;
}

#fullpage .about .point span.on.big {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

#fullpage .about .point span.on.medium {
  -webkit-transform: rotate(-15deg) translate(50px, 60px);
          transform: rotate(-15deg) translate(50px, 60px);
}

#fullpage .about .point span.on.small {
  -webkit-transform: rotate(30deg) translate(0px, -50px);
          transform: rotate(30deg) translate(0px, -50px);
}

#fullpage .about .point span:nth-child(1) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#fullpage .about .point span:nth-child(2) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#fullpage .about .point span:nth-child(3) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#fullpage .data .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px 0;
}

#fullpage .data .smallTitle {
  font-weight: 800;
  margin: 0 0 30px;
}

#fullpage .data h2 {
  font-weight: 700;
}

#fullpage .data .moreButton {
  color: #aaaaaa;
}

#fullpage .data .moreButton .icon {
  border: 1px solid #dddddd;
}

#fullpage .data .moreButton .arrowIconCls {
  fill: #aaaaaa;
}

#fullpage .data .moreButton:hover {
  color: #0843b1;
}

#fullpage .data .moreButton:hover .icon {
  border: 1px solid transparent;
}

#fullpage .data .moreButton:hover .arrowIconCls {
  fill: #ffffff;
}

#fullpage .data .itemBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
}

#fullpage .data .item a {
  display: block;
  padding: 50px 40px;
  position: relative;
  width: 100%;
  height: 100%;
}

#fullpage .data .item a::before, #fullpage .data .item a::after {
  content: "";
  width: 0;
  height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#fullpage .data .item a::before {
  border-top: 1px solid #0843b1;
  border-left: 1px solid #0843b1;
  top: 0;
  left: 0;
}

#fullpage .data .item a::after {
  border-right: 1px solid #0843b1;
  border-bottom: 1px solid #0843b1;
  right: 0;
  bottom: 0;
}

#fullpage .data .item:hover a::before, #fullpage .data .item:hover a::after {
  width: 100%;
  height: 100%;
}

#fullpage .data .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 15px;
  color: #888888;
  line-height: 1.6;
}

#fullpage .data .date b {
  color: #0843b1;
  font-weight: 800;
}

#fullpage .data h5, #fullpage .data p {
  letter-spacing: -0.020em;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#fullpage .data h5 {
  height: 1em;
  color: #222222;
  font-weight: 800;
  margin: 25px 0 20px;
  -webkit-line-clamp: 1;
}

#fullpage .data p {
  height: 5.25em;
  color: #444444;
  font-weight: 300;
  line-height: 1.75;
  -webkit-line-clamp: 3;
}


/* 20250113 변경 */
#fullpage .product .itemBox:nth-child(2) .moreButton{ 
  display:none;
}

#fullpage .product .itemBox:nth-child(2).on .on .img img{ height: 50%; }