:root {
  /* Typography */
  --font-pri: "Proxima Nova", sans-serif;
  /* Color Palette */
  --color-pri: #1d90c9;
  --color-sec: #001221;
  --color-third: #3b4044;
  --color-text: #888888;
  --color-text-2: #005491;
  --color-white: #fff;
  --color-black: #000;
  --container-width: 124.8rem;
  --container-padding: 1.6rem;
  --z-i-header: 100;
}

.article-item {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--article-item-gap, 1.6rem);
}
@media screen and (max-width: 576px) {
  .article-item {
    gap: 0.8rem;
  }
}

.article-img {
  display: block;
  aspect-ratio: 28/20;
  max-width: 100%;
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .article-img:hover img, .article-img:focus-visible img {
    transform: scale(1.05);
  }
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.article-content {
  position: relative;
  padding: 0;
}

.article-title {
  width: fit-content;
  font-family: var(--font-pri);
  color: var(--color-sec);
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .article-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .article-title {
    font-size: 1.6rem;
  }
}
.article-title {
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .article-title br {
    display: none;
  }
}
.article-title > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: color 0.4s;
}
@media screen and (min-width: 1200px) {
  .article-title > *:hover, .article-title > *:focus-visible {
    color: var(--color-pri);
  }
}

.article-desc {
  color: var(--color-text);
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .article-desc {
    font-size: 1.4rem;
  }
}
.article-desc {
  line-height: 1.5;
  margin-top: 1.6rem;
}

.look-box {
  width: 100%;
  height: 100%;
  background: #f9fafb;
  border-radius: 1.6rem;
  overflow: hidden;
  text-align: center;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2.4rem;
}
.look-box .article-desc {
  margin-top: 0;
}
.look-box .article-title {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .look-box .article-title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .look-box .article-title {
    font-size: 1.8rem;
  }
}
.look-box .article-title {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-pri);
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  .look-box {
    padding: 2.4rem 1.6rem;
    row-gap: 1.6rem;
  }
}
@media screen and (max-width: 575px) {
  .look-box {
    padding: 1.6rem 0.8rem;
  }
}

.look-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.6rem;
  --pad: 0.8rem;
  margin: 10rem 0rem 10rem;
}
@media screen and (max-width: 992px) {
  .look-list {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .look-list {
    margin: 4rem 0rem;
  }
}
.look-list {
  margin-right: calc(-1 * var(--pad));
  margin-left: calc(-1 * var(--pad));
  justify-content: center;
}

.look-item {
  width: 33.3333333333%;
  padding: 0 var(--pad);
}
.look-item .look-box {
  row-gap: 2rem;
}
@media screen and (min-width: 1200px) {
  .look-item .look-box {
    padding: 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .look-item .look-box {
    padding: 1.6rem;
  }
}
.look-item > img {
  width: 6.4rem;
  height: auto;
}
.look-item .article-title {
  text-decoration: unset;
}
.look-item .article-desc {
  color: #001221;
}
.look-item:nth-of-type(3n + 1) .article-title {
  color: #005491;
}
.look-item:nth-of-type(3n + 2) .article-title {
  color: #1d90c9;
}
.look-item:nth-of-type(3n + 3) .article-title {
  color: #003866;
}
@media screen and (max-width: 768px) {
  .look-item {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .look-item {
    width: 100%;
  }
}

.offer {
  overflow: hidden;
}
.offer-list {
  margin-top: 4rem;
  margin-bottom: 0;
}
.offer-list .look-item {
  width: 25%;
}
.offer-list .look-item .article-title {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .offer-list .look-item .article-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .offer-list .look-item .article-title {
    font-size: 1.6rem;
  }
}
.offer-list .look-item .article-title {
  color: var(--color-sec);
}
.offer-list .look-item .article-desc {
  color: var(--color-text);
}
.offer-list .look-item > img {
  width: 3.2rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .offer-list .look-item {
    width: 50%;
  }
}
.offer-list .look-box {
  text-align: left;
  align-items: start;
  row-gap: 3.2rem;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .offer-list .look-box {
    row-gap: 2.4rem;
  }
}
.offer-txt {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}

.look-wrap {
  overflow: hidden;
  padding-bottom: 0;
}
.look-wrap .look-list {
  margin: 0;
}

.intro {
  position: relative;
}
.intro-inner {
  --gap: 7.2rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 3.2rem;
  column-gap: var(--gap);
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .intro-inner {
    --gap: 4rem;
  }
}
@media screen and (max-width: 1199px) {
  .intro-inner {
    --gap: 2.4rem;
  }
}
.intro-img {
  width: 40%;
}
.intro-img img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}
@media screen and (max-width: 992px) {
  .intro-img {
    width: 100%;
  }
}
.intro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
.intro-content .mona-content {
  color: var(--color-text);
  line-height: 1.5;
}
.intro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}
@media screen and (max-width: 576px) {
  .intro-stats {
    gap: 2.4rem 1.6rem;
  }
}
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
}
.intro-actions .look-action {
  margin: unset;
}
@media screen and (max-width: 576px) {
  .intro-actions {
    gap: 3.2rem;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
}
.stat-number {
  font-size: clamp(2.4rem, 1.6rem + 1.282vw, 3.2rem);
  font-weight: 600;
  color: var(--color-sec);
}
.stat-label {
  font-size: 1.4rem;
}
@media screen and (max-width: 576px) {
  .stat {
    width: calc(50% - 0.8rem);
  }
}
.stat-tt {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .stat-tt {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .stat-tt {
    font-size: 1.6rem;
  }
}
.stat-tt {
  font-weight: 500;
  color: var(--color-sec);
  line-height: 1.5;
}

.m-post {
  margin: 5rem 0rem 5rem;
}
@media screen and (max-width: 992px) {
  .m-post {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .m-post {
    margin: 4rem 0rem;
  }
}
.m-post_grid {
  --col-gap: 3.2rem;
  --row-gap: 2.4rem;
  display: grid;
  grid-template-columns: 0.7fr 0.5fr;
  gap: var(--row-gap) var(--col-gap);
  margin-top: 4rem;
}
@media screen and (max-width: 992px) {
  .m-post_grid {
    --col-gap: 1.6rem;
    --row-gap: 1.6rem;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .m-post_grid {
    margin-top: 2.4rem;
  }
}
.m-post_grid .m-post_item {
  grid-column: span 1;
  grid-row: span 1;
  width: 100%;
}
.m-post_grid .m-post_item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 4;
}
.m-post_grid .m-post_item:nth-child(1) .article-img {
  aspect-ratio: 69.5/50;
}
.m-post_grid .m-post_item:nth-child(1) .article-desc {
  display: -webkit-box;
}
.m-post_grid .m-post_item:nth-child(1) .article-title {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .m-post_grid .m-post_item:nth-child(1) .article-title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .m-post_grid .m-post_item:nth-child(1) .article-title {
    font-size: 1.8rem;
  }
}
.m-post_grid .m-post_item:nth-child(1) .article-title {
  letter-spacing: -0.048rem;
}
.m-post_grid .m-post_item:not(:first-child) .article-item {
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .m-post_grid .m-post_item:not(:first-child) .article-item {
    gap: 1.2rem;
  }
}
.m-post_grid .m-post_item:not(:first-child) .article-content {
  flex: 1;
}
.m-post_grid .m-post_item:not(:first-child) .article-title > * {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 1199.98px) {
  .m-post_grid .m-post_item:not(:first-child) .article-tag {
    margin-bottom: 0.8rem;
  }
}
.m-post_grid .m-post_item:not(:first-child) .article-img {
  flex-shrink: 0;
  aspect-ratio: 23.45/14.45;
  max-width: 23.45rem;
}
@media screen and (max-width: 1199.98px) {
  .m-post_grid .m-post_item:not(:first-child) .article-img {
    max-width: 18rem;
  }
}
@media screen and (max-width: 576px) {
  .m-post_grid .m-post_item:not(:first-child) .article-img {
    max-width: 12rem;
  }
}
.m-post_list {
  margin-top: 5rem;
  --col-gap: 3.2rem;
  --row-gap: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--row-gap) var(--col-gap);
}
@media screen and (max-width: 1199px) {
  .m-post_list {
    --col-gap: 1.6rem;
    --row-gap: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .m-post_list {
    --col-gap: 1.6rem;
    --row-gap: 1.6rem;
    margin-top: 2.4rem;
  }
}
.m-post_item {
  width: calc(25% - 0.75 * var(--col-gap));
}
@media screen and (max-width: 992px) {
  .m-post_item {
    width: calc(33.3333333333% - 0.6666666667 * var(--col-gap));
  }
}
@media screen and (max-width: 640px) {
  .m-post_item {
    width: calc(50% - var(--col-gap) / 2);
  }
}
.m-post_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .m-post_inner {
    gap: 2.4rem;
  }
}
.m-post_left {
  width: calc(25% - 3.2rem);
  min-width: 26rem;
}
@media screen and (max-width: 768px) {
  .m-post_left {
    width: 100%;
    min-width: unset;
    order: 1;
  }
}
.m-post_right {
  flex: 1;
  max-width: 100%;
}
.m-post_right .js-has_viewmore {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .m-post_right .js-has_viewmore {
    margin-top: 4rem;
  }
}
.m-post_right .js-has_viewmore .mona-content h2,
.m-post_right .js-has_viewmore .mona-content h3,
.m-post_right .js-has_viewmore .mona-content h4,
.m-post_right .js-has_viewmore .mona-content h5,
.m-post_right .js-has_viewmore .mona-content h6 {
  color: var(--color-pri);
}
.m-post_right .js-has_viewmore .mona-content h2 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 1200px) {
  .m-post_right .js-has_viewmore .mona-content h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 800px) {
  .m-post_right .js-has_viewmore .mona-content h2 {
    font-size: 2.2rem;
  }
}
.m-post_sticky {
  position: sticky;
  top: 10rem;
}
@media screen and (max-width: 768px) {
  .m-post_sticky {
    position: initial;
  }
}
.m-post_sticky .product-filter_title {
  padding-right: 2.4rem;
  position: relative;
  cursor: pointer;
}
.m-post_sticky .product-filter_title::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../../assets/images/common/icon_dropdown_pri.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s;
}
@media screen and (max-width: 576px) {
  .m-post_sticky .product-filter_title::before {
    width: 1.7rem;
    height: 1.7rem;
    top: 0.5rem;
  }
}
.m-post_sticky .product-filter_title.is-active::before {
  transform: rotate(180deg);
}
.m-post_category {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .m-post_category {
    gap: 1.6rem;
  }
}
.m-post_category .cate-tt {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .m-post_category .cate-tt {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .m-post_category .cate-tt {
    font-size: 1.8rem;
  }
}
.m-post_category .cate-tt {
  font-weight: 600;
  line-height: 133.333%;
}
.m-post_category .menu-list {
  display: flex;
  gap: 1.6rem;
  flex-direction: column;
  align-items: initial;
}
@media screen and (max-width: 768px) {
  .m-post_category .menu-list {
    gap: 1.2rem;
  }
}
.m-post_category .menu-item {
  line-height: 150%;
  font-weight: 400;
  color: #151f12 !important;
  transition: none;
}
.m-post_category .menu-item::before {
  content: none;
}
.m-post_category .menu-item.current-menu-item .menu-link {
  padding-left: 2.4rem;
  color: var(--color-pri);
  font-weight: 600;
}
.m-post_category .menu-item.current-menu-item .menu-link::before {
  opacity: 1;
  visibility: visible;
}
.m-post_category .menu-link {
  width: fit-content;
  display: flex;
  padding: 0;
  position: relative;
  transition: 0.4s;
}
.m-post_category .menu-link::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0rem;
  width: 1.6rem;
  height: 0.2rem;
  background-color: var(--color-pri);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s 0.1s;
}
@media screen and (max-width: 800px) {
  .m-post_category .menu-link::before {
    height: 0.1rem;
    top: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .m-post_category .menu-link:hover, .m-post_category .menu-link:focus-visible {
    color: var(--color-pri);
    padding-left: 2.4rem;
  }
  .m-post_category .menu-link:hover::before, .m-post_category .menu-link:focus-visible::before {
    opacity: 1;
    visibility: visible;
  }
}

.post {
  padding: 4rem 0rem 8rem;
}
@media screen and (max-width: 1200px) {
  .post {
    padding: 8rem 0rem;
  }
}
@media screen and (max-width: 992px) {
  .post {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .post {
    padding: 4rem 0rem;
  }
}
.post .tt-sub {
  text-transform: initial;
}
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}
@media screen and (max-width: 992px) {
  .post-list {
    gap: 1.6rem;
  }
}
.post-list > * {
  width: calc(33.3333333333% - 2.1333333333rem);
}
@media screen and (max-width: 992px) {
  .post-list > * {
    width: calc(50% - 0.8rem);
  }
}
@media screen and (max-width: 576px) {
  .post-list > * {
    width: 100%;
  }
}
@media screen and (min-width: 576.02px) {
  .post-action {
    margin-top: -2.4rem;
  }
}

.postdt {
  padding: 12rem 0rem 5rem;
}
@media screen and (max-width: 1200px) {
  .postdt {
    padding: 8rem 0rem;
  }
}
@media screen and (max-width: 992px) {
  .postdt {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .postdt {
    padding: 4rem 0rem;
  }
}
.postdt-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  justify-content: space-between;
}
.postdt-left {
  flex: 1;
  max-width: 82.7rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 1350.02px) {
  .postdt-left {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .postdt-left {
    max-width: 100%;
    gap: 2.4rem;
  }
}
.postdt-heading {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  --tt-main-clr: var(--color-text-2);
  --bd-clr: var(--color-text-2);
}
@media screen and (max-width: 768px) {
  .postdt-heading {
    gap: 0.8rem;
  }
}
.postdt-right {
  width: 31rem;
}
@media screen and (max-width: 768px) {
  .postdt-right {
    width: 100%;
  }
}
.postdt-sticky {
  position: sticky;
  top: 10rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .postdt-sticky {
    gap: 4rem;
  }
}
.postdt-subtitle {
  color: var(--color-text-2);
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
}
.postdt-related, .postdt-service {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .postdt-related, .postdt-service {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .postdt-related, .postdt-service {
    gap: 1.6rem;
  }
}
.postdt-service_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .postdt-service_list {
    gap: 1.6rem;
  }
}
.postdt-related_list {
  display: flex;
  flex-direction: column;
}
.postdt-related_list > *:not(:first-child) {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem solid #d9d9d9;
}
@media screen and (max-width: 576px) {
  .postdt-related_list > *:not(:first-child) {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
}
.postdt-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 3.2rem;
  justify-content: center;
}
.postdt-info_item,
.postdt-info > * {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  transition: color 0.4s;
}
.postdt-info_item img,
.postdt-info > * img {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}
@media screen and (max-width: 576px) {
  .postdt-info_item img,
  .postdt-info > * img {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .postdt-info a:hover, .postdt-info a:focus-visible {
    color: var(--color-pri);
  }
}
.postdt-info_item + .postdt-info_item,
.postdt-info > *:not(:first-child) {
  position: relative;
}
.postdt-info_item + .postdt-info_item::before,
.postdt-info > *:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.6rem;
  background-color: var(--color-text);
}
.postdt-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.postdt-tag > * > * {
  display: block;
  padding: 0.25rem 0.7rem;
  border-radius: 999rem;
  border: 0.5px solid var(--color-text);
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  transition: color 0.4s, background-color 0.4s;
}
@media screen and (min-width: 1200px) {
  .postdt-tag > * > *:hover {
    color: #fff;
    background-color: var(--color-text);
  }
}
.postdt-share {
  margin-top: 6.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .postdt-share {
    gap: 0.8rem;
    margin-top: 2.4rem;
  }
}
.postdt-share > span {
  color: #151f12;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .postdt-share > span {
    font-size: 1.4rem;
  }
}
.postdt-share > span {
  font-weight: 600;
  line-height: 125%;
}
.postdt-share_list {
  display: flex;
  gap: 0.8rem;
}
.postdt-share_list > * > * {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.postdt-share_list > * > *:hover {
  transform: translateY(-0.5rem);
}
.postdt-share_list > * > * > * {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.postdt-content {
  padding-bottom: 6rem;
  position: relative;
}
@media screen and (max-width: 576px) {
  .postdt-content {
    padding-bottom: 2.4rem;
  }
}
.postdt-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-image: linear-gradient(to right, rgba(32, 32, 32, 0) 0%, rgb(32, 32, 32) 50%, rgba(32, 32, 32, 0) 100%);
}
.postdt-content_inner {
  max-width: 100.8rem;
  margin: 0 auto;
}
.postdt-btn {
  margin-top: 2.4rem;
  column-gap: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.postdt-btn .link {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .postdt-btn .link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .postdt-btn .link {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .postdt-btn .link {
    font-size: 1.4rem;
  }
}
.postdt-btn .link {
  font-weight: 600;
  line-height: 133%;
  color: var(--color-pri);
  column-gap: 0.8rem;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1201px) {
  .postdt-btn .link:hover {
    color: var(--color-text);
    text-decoration: underline;
  }
}
.postdt-btn .link img {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}

.m-related {
  padding: 4rem 0rem 8rem;
}
@media screen and (max-width: 1200px) {
  .m-related {
    padding: 8rem 0rem;
  }
}
@media screen and (max-width: 992px) {
  .m-related {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .m-related {
    padding: 4rem 0rem;
  }
}
.m-related .tt-main {
  text-align: center;
}

.ab-intro .intro-stats {
  margin-top: 3.2rem;
  --gap: 4.8rem;
  gap: 2.4rem var(--gap);
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .ab-intro .intro-stats {
    --gap: 2.4rem;
  }
}
@media screen and (max-width: 992px) {
  .ab-intro .intro-stats {
    --gap: 1.6rem;
  }
}
.ab-intro .stat {
  width: calc(25% - 0.75 * var(--gap));
}
@media screen and (max-width: 700px) {
  .ab-intro .stat {
    width: calc(50% - 0.5 * var(--gap));
  }
}
.ab-intro .stat-number {
  font-size: clamp(2.4rem, 3.846vw + 0.183rem, 4.8rem);
}
.ab-intro .stat-txt {
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}

.core {
  overflow: hidden;
}
.core-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .core-wrap {
    row-gap: 4rem;
    --pd: 0.8rem;
    margin-right: calc(-1 * var(--pd));
    margin-left: calc(-1 * var(--pd));
  }
}
@media screen and (max-width: 567px) {
  .core-wrap {
    row-gap: 2.4rem;
    text-align: center;
  }
}
.core-item {
  flex: 1;
}
.core-item .tt-sec {
  text-transform: uppercase;
}
.core-item .tt-desc {
  font-size: 1.4rem;
  color: var(--color-sec);
  margin-top: 2rem;
}
@media screen and (max-width: 567px) {
  .core-item .tt-desc {
    margin-top: 1rem;
  }
}
.core-item:nth-of-type(2) {
  flex: unset;
  width: 474px;
  padding: 8.2rem 1.2rem;
  height: 47.4rem;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgb(29, 144, 201) 10%, rgb(0, 98, 179) 90%);
  border-radius: 50%;
  text-align: center;
}
.core-item:nth-of-type(2) .tt-sec {
  color: #fff;
}
.core-item:nth-of-type(2) {
  margin-top: 8.2rem;
}
@media screen and (max-width: 1200px) {
  .core-item:nth-of-type(2) {
    width: 42.4rem;
    padding: 4.2rem 1.2rem;
    height: 42.4rem;
  }
}
@media screen and (max-width: 992px) {
  .core-item:nth-of-type(2) {
    order: 3;
    margin: 0 auto;
  }
}
@media screen and (max-width: 475px) {
  .core-item:nth-of-type(2) {
    width: 30rem;
    height: 30rem;
  }
}
@media screen and (max-width: 992px) {
  .core-item {
    width: 50%;
    padding: 0 var(--pd);
    flex: unset;
  }
}
@media screen and (max-width: 567px) {
  .core-item {
    width: 100%;
  }
}
.core-value {
  background: var(--color-pri);
  padding-top: 6rem;
  padding-bottom: 6rem;
  min-height: 32.4rem;
  margin-top: -31rem;
  position: relative;
}
@media screen and (max-width: 992px) {
  .core-value {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .core-value {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 475px) {
  .core-value {
    margin-top: -20rem;
  }
}
.core-list {
  --pad: 1.6rem;
  margin-top: 0;
  margin-bottom: 0;
  row-gap: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .core-list {
    --pad: 0.8rem;
  }
}
.core-list .look-box {
  background: transparent;
  padding: 0;
  justify-content: start;
  row-gap: 1.2rem;
  border-radius: 0;
}
.core-list .look-box > img {
  width: 3.2rem;
  height: 3.2rem;
}
.core-list .look-item {
  width: 20%;
}
.core-list .look-item .article-title,
.core-list .look-item .article-desc {
  color: #fff;
}
.core-list .look-item .article-title {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .core-list .look-item .article-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .core-list .look-item .article-title {
    font-size: 1.6rem;
  }
}
.core-list .look-item .article-title {
  line-height: 1.3;
}
.core-list .look-item .article-desc {
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1200px) {
  .core-list .look-item {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 576px) {
  .core-list .look-item {
    width: 50%;
  }
  .core-list .look-item:last-child {
    width: 100%;
  }
}

.p-about .m-post .tt-wrap {
  text-align: center;
}
.p-about .m-post .tt-wrap .tt-main {
  font-size: clamp(2.6rem, 0.185rem + 3.846vw, 4.8rem);
  font-weight: 600;
  color: var(--color-pri);
}
.p-about .m-post_list {
  margin-top: 4rem;
}

.vision {
  overflow: hidden;
}
.vision .tt-wrap {
  text-align: center;
}
.vision-inner {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 576px) {
  .vision-inner {
    row-gap: 3.2rem;
  }
}
.vision-num {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .vision-num {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .vision-num {
    font-size: 1.6rem;
  }
}
.vision-num {
  transition: 0.4s ease;
}
.vision-thumb {
  --pad: 0.8rem;
}
.vision-thumb .swiper {
  max-width: max-content;
}
.vision-thumb .swiper-slide {
  cursor: pointer;
  position: relative;
  padding: 0 var(--pad);
  padding-top: 2.4rem;
  width: fit-content;
  min-width: 16.4rem;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .vision-thumb .swiper-slide {
    min-width: 12.4rem;
  }
}
.vision-thumb .swiper-slide.swiper-slide-thumb-active .vision-num {
  font-weight: 700;
  color: var(--color-pri);
}
.vision-thumb .swiper-slide.swiper-slide-thumb-active::after {
  background: var(--color-pri);
}
.vision-thumb .swiper-slide:first-child::before, .vision-thumb .swiper-slide:last-child::before {
  transform: unset;
  width: 50%;
}
.vision-thumb .swiper-slide:first-child::before {
  left: unset;
  right: 0;
}
.vision-thumb .swiper-slide:last-child::before {
  left: 0;
}
.vision-thumb .swiper-slide::before, .vision-thumb .swiper-slide::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
}
.vision-thumb .swiper-slide::before {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  top: 0.8rem;
}
.vision-thumb .swiper-slide::after {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  overflow: hidden;
  background: #d9d9d9;
  top: 0;
}
.vision-main {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .vision-main {
    padding-bottom: 4rem;
  }
}
.vision-main .swiper-pagination {
  position: absolute;
}
.vision-main .look-box {
  padding: 6rem;
}
.vision-main .look-box .article-title {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .vision-main .look-box .article-title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .vision-main .look-box .article-title {
    font-size: 1.8rem;
  }
}
.vision-main .look-box .article-title {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-sec);
}
.vision-main .look-box > img {
  width: 6.4rem;
  height: auto;
}
@media screen and (max-width: 992px) {
  .vision-main .look-box {
    padding: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .vision-main .look-box {
    padding: 4rem 2.4rem;
  }
}
.vision-main .offer-txt {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  row-gap: 2.4rem;
}
@media screen and (max-width: 1199px) {
  .vision-main .offer-txt {
    row-gap: 1.6rem;
  }
}
.vision-main .vision-num {
  font-size: 4.8rem;
}
@media only screen and (max-width: 1200px) {
  .vision-main .vision-num {
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .vision-main .vision-num {
    font-size: 2.6rem;
  }
}
.vision-main .vision-num {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-pri);
}
.vision-main .swiper-navigation {
  --position: 2.4rem;
}

.commit {
  position: relative;
  overflow: hidden;
}
.commit-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  --gap: 6rem;
  gap: 3.2rem var(--gap);
}
@media screen and (max-width: 1200px) {
  .commit-wrap {
    --gap: 4rem;
  }
}
@media screen and (max-width: 992px) {
  .commit-wrap {
    --gap: 2.4rem;
  }
}
.commit-visual {
  width: 50%;
  border-radius: 1.6rem;
  overflow: hidden;
}
.commit-visual img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .commit-visual {
    width: 100%;
    order: 1;
  }
}
.commit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 3.2rem;
}
.commit-content .main-logo img {
  max-height: 8rem;
}
@media screen and (max-width: 992px) {
  .commit-content .main-logo img {
    max-height: 7rem;
  }
}
@media screen and (max-width: 992px) {
  .commit-content {
    row-gap: 2.4rem;
  }
}
@media screen and (max-width: 576ox) {
  .commit-content {
    row-gap: 1.6rem;
  }
}
.commit-mark img {
  max-height: 6rem;
}
@media screen and (max-width: 992px) {
  .commit-mark img {
    max-height: 5rem;
  }
}

.ab-offer {
  background: #1e91ca;
  margin: 5rem 0rem 5rem;
}
@media screen and (max-width: 992px) {
  .ab-offer {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .ab-offer {
    margin: 4rem 0rem;
  }
}
.ab-offer {
  padding: 10rem 0rem 10rem;
}
@media screen and (max-width: 1200px) {
  .ab-offer {
    padding: 8rem 0rem;
  }
}
@media screen and (max-width: 992px) {
  .ab-offer {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .ab-offer {
    padding: 4rem 0rem;
  }
}
.ab-offer .tt-sec {
  color: #fff;
}
.ab-offer .offer-list .look-box {
  row-gap: 1.6rem;
  flex-direction: column-reverse;
  background: rgba(255, 255, 255, 0.2);
  padding: 2.4rem;
  justify-content: start;
  align-items: start;
}
.ab-offer .offer-list .look-box > img {
  width: 6.4rem;
  height: auto;
}
@media screen and (max-width: 576px) {
  .ab-offer .offer-list .look-box > img {
    width: 4.4rem;
  }
}
.ab-offer .offer-list .look-box .article-title {
  color: #fff;
}
.ab-offer .offer-list .look-box .article-desc {
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1200px) {
  .ab-offer .offer-list .look-box {
    padding: 1.6rem;
  }
}
.ab-offer .look-item > img {
  border-radius: 1.6rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  .ab-offer .look-item {
    width: 100%;
  }
}

.testimonials {
  text-align: center;
}
.testimonials-slide {
  margin-top: 3rem;
  position: relative;
  --pad: 0.8rem;
  margin-right: calc(-1 * var(--pad));
  margin-left: calc(-1 * var(--pad));
}
@media screen and (min-width: 1200px) {
  .testimonials-slide {
    --pad: 1.2rem;
    margin-top: 4rem;
  }
}
.testimonials-slide:has(.swiper-pagination-bullet) {
  padding-bottom: 4rem;
}
.testimonials-slide .swiper-wrapper {
  align-items: center;
}
.testimonials-slide .swiper-pagination {
  position: absolute;
  display: block;
}
.testimonials-slide .swiper-slide {
  padding: var(--pad);
  width: fit-content;
}
.testimonials-card {
  padding: 2.4rem;
  border-radius: 1.6rem;
  background: #f9fafb;
  border: 1px solid rgba(0, 18, 33, 0.1);
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
  text-align: center;
  width: 30rem;
}
@media screen and (min-width: 1200px) {
  .testimonials-card {
    width: 39rem;
    padding: 4rem;
  }
}
.testimonials-author {
  font-weight: 700;
  color: var(--color-sec);
}

.grow {
  overflow: hidden;
  margin: 5rem 0rem 5rem;
}
@media screen and (max-width: 992px) {
  .grow {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .grow {
    margin: 4rem 0rem;
  }
}
.grow {
  position: relative;
  min-height: 66rem;
}
.grow-img {
  position: absolute;
  inset: 0;
  top: 0;
  height: 100%;
}
.grow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grow-inner {
  background: rgba(0, 0, 0, 0.6);
  padding: 3.2rem 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(4px);
}
.grow-wrap {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 2.4rem 0.4rem;
}
.grow-wrap .tt-sec,
.grow-wrap .tt-desc {
  color: #fff;
}
.grow-wrap .tt-wrap {
  flex: 1;
}
.grow-wrap .look-action {
  flex-shrink: 0;
  color: #fff;
}
.grow-wrap .look-action::before {
  filter: brightness(0) saturate(100%) invert(98%) sepia(3%) saturate(491%) hue-rotate(241deg) brightness(117%) contrast(100%);
}
@media screen and (max-width: 567px) {
  .grow-wrap {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
}

/* Keep admin-authored timeline subsections readable without hardcoding content. */
.vision-main .article-desc strong {
  display: inline-block;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.vision-main .article-desc p + p {
  margin-top: 1rem;
}
.vision-main .swiper-wrapper {
  align-items: stretch;
}
.vision-main .swiper-slide {
  height: auto;
}
.vision-main .swiper-slide .look-box {
  height: 100%;
  justify-content: center;
}
/*# sourceMappingURL=about.css.map */
