@charset "utf-8";

/*
=======================================================
 TOP
=======================================================
*/

/* News 一覧 — hero chữ xám chạy ngang (cùng pattern /recruitment) */
@keyframes page-hero-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.page-hero-marquee .page-title .marquee {
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  white-space: normal;
}

.page-hero-marquee .page-title .marquee-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0;
  will-change: transform;
  animation: page-hero-marquee-scroll 50s linear infinite;
  padding-bottom: 85px;
}

.page-hero-marquee .page-title .marquee-inner {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: 'Renogare Soft', 'Raleway', sans-serif;
  font-size: 218.67px;
  font-weight: 400;
  line-height: 1;
  color: #c8c8c8;
  opacity: 1;
  padding-right: 0.35em;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-marquee .page-title .marquee-track {
    animation: none;
  }
}

@media screen and (max-width: 767px) {
  .page-hero-marquee .page-title .marquee-track {
    padding-bottom: 10%;
  }

  .page-hero-marquee .page-title .marquee-inner {
    font-size: 109.335px;
  }
}

/* KEY VISUAL
------------------------------------------------------- */

.keyvisual {
  position: relative;
  width: 100vw;
  height: auto;
  max-width: 1920px;
  margin: 0 auto 60px auto;
  overflow: hidden;
}

.keyvisual video {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
  object-position: 50% 50%;
}

/* H2
------------------------------------------------------- */

.top-section:nth-of-type(odd):not(:first-of-type) {
  background: #4d4d4d;
  color: #fff;
}

.top-section .section__header {
  padding-bottom: 80px;
}

.top-section h2 {
  display: grid;
  grid-template-rows: 1fr 60px;
  position: relative;
  align-items: flex-end;
  height: 200px;
  }
  .top-section:nth-of-type(odd) h2 {
    justify-content: center;
    }
    .top-section h2::before {
      content: '';
      display: block;
      position: absolute;
      background: #ca1d1d;
      height: .5px;
      bottom: 60px;
      transition: transform .6s linear;
      transform: scaleX(0);
      transform-origin: left top;
    }
    .top-section:nth-of-type(odd) h2::before {
      width: 100%;
      left: 0;
    }
    .top-section:nth-of-type(odd):not(:first-of-type) h2::before {
      background: #fff;
    }
    .top-section:nth-of-type(even) h2::before {
      width: calc(100% + 150px);
      left: -150px;
    }

.top-section h2>span {
  line-height: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  }
  .top-section:nth-of-type(odd) h2>span {
    justify-content: center;
  }
  .top-section h2 .en {
    margin-bottom: -10px;
    padding: 0 8px;
    position: relative;
  }
  .top-section h2 .jp {
    padding: 0 8px;
  }
  .top-section:nth-of-type(odd) h2 .jp {
    text-align: center;
    }
    .top-section h2 .en::before {
      content: '';
      display: block;
      width: .5px;
      height: calc(100% + 60px);
      background: #ca1d1d;
      position: absolute;
      left: 0;
      top: -10px;
      transition: transform .4s linear;
      transition-delay: .6s;
      transform: scaleY(0) translateY(0);
      transform-origin: left top;
    }
    .top-section:nth-of-type(odd) h2 .en::before {
      right: 0;
      left: unset;
    }
    .top-section:nth-of-type(odd):not(:first-of-type) h2 .en::before {
      background: #fff;
    }
    .top-section h2 .en::after {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background-size: 20px;
      background-repeat: no-repeat;
      position: absolute;
      bottom: 0;
      transform: scale(0);
      transition: transform .3s ease;
      transition-delay: 1.2s;
    }
    .top-section:nth-of-type(odd) h2 .en::after {
      right: -10px;
      background-image: url(../images/top/deco_title_right.svg);
    }
    .top-section:nth-of-type(even) h2 .en::after {
      left: -10px;
      background-image: url(../images/top/deco_title_left.svg);
    }
    .top-section:nth-of-type(odd):not(:first-of-type) h2 .en::after {
      background-image: url(../images/top/deco_title_right-wt.svg);
    }

.top-section h2 .en span {
  display: block;
  font-size: 90px;
  font-weight: 500;
}

.top-section h2 .en span,
.top-section h2 .jp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .4s ease-out, transform .4s ease-out;
  transition-delay: 1.2s;
}

/* ANIMATION */

.top-section.in-viewport h2::before {
  transform: scaleX(1);
}

.top-section.in-viewport h2 .en::before {
  transform: scaleY(1);
}

.top-section.in-viewport h2 .en::after {
  transform: scale(1);
}

.top-section.in-viewport h2 .en span,
.top-section.in-viewport h2 .jp {
  opacity: 1;
  transform: translateY(0);
}

/* No Borders */
.top-section03 h2 .en span,
.top-section03 h2 .jp {
  transition: opacity .4s ease-out, transform .4s ease-out;
  transition-delay: 0 !important;
}

.top-section03 h2::before,
.top-section03 h2 .en::before,
.top-section03 h2 .en::after {
  content: none;
}

/* Achievements section background */
.top-section03 {
  background: #ca1d1d !important;
  color: #fff;
}


/* COMMON
------------------------------------------------------- */

.top-section .section__body {
  padding-bottom: 80px;
  text-align: center;
}

/* Body reveal (scroll): soft fade + gentle lift; stagger after h2 */
@media (prefers-reduced-motion: no-preference) {
  .top-section:not(.in-viewport) .section__body > * {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition:
      opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .top-section.in-viewport .section__body > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .top-section .section__body > *:nth-child(1) {
    transition-delay: 1.52s;
  }

  .top-section .section__body > *:nth-child(2) {
    transition-delay: 1.78s;
  }

  .top-section .section__body > *:nth-child(3) {
    transition-delay: 2.02s;
  }

  .top-section03 .section__body > *:nth-child(1) {
    transition-delay: 0.32s;
  }

  .top-section03 .section__body > *:nth-child(2) {
    transition-delay: 0.56s;
  }

  .top-section03 .section__body > *:nth-child(3) {
    transition-delay: 0.8s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-section:not(.in-viewport) .section__body > * {
    opacity: 0;
  }

  .top-section.in-viewport .section__body > * {
    opacity: 1;
  }
}

  /* SERVICE
------------------------------------------------------- */


/* NEW ARRIVALS
------------------------------------------------------- */

.top-section04 .section__body {
  padding-bottom: 0;
}

.news-list__item {
  }
  .news-list__item:not(:last-child) {
    margin-bottom: 80px;
  }

.news-list__item a {
  display: grid;
  grid-template-columns: 80px 88px 1fr;
  column-gap: 25px;
  align-items: center;
}

.news__date {
  font-family: 'Renogare Soft', 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.news__category {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 24px;
  border-radius: 24px;
  line-height: 1;
  }
  .category--info .news__category {
    background: linear-gradient(155deg, #ca1d1d 0%, #ca1d1d 100%);
  }
  .category--achievements .news__category {
    background: linear-gradient(155deg, #d68a25 0%, #c1451a 100%);
  }
  .category--recruit .news__category {
    background: linear-gradient(155deg, #dd4b80 0%, #ca1d1d 100%);
  }
  .category--topics .news__category {
    background: linear-gradient(155deg, #0071bb 0%, #2e3191 100%);
  }

a .news__content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.news__content .news__title {
  min-width: 0;
}

.news__content p {
  text-align: left;
}

.btn-news {
	height: 42px;
	width: 180px;
	border-radius: 42px;
	}
	.btn-news::before {
		height: 180px;
		width: 180px;
		background: #ca1d1d;
	}
  .category--info .btn-news::before {
    background: #ca1d1d;
  }
  .category--achievements .btn-news::before {
    background: #f78214;
  }
  .category--recruit .btn-news::before {
    background: #ca1d1d;
  }
  .category--topics .btn-news::before {
    background: #0071bb;
  }
  a:hover .btn-news::before {
    transform: translate(-50%, -50%) scale(100%);
  }

a:hover .btn-news .btn__text {
  color: #fff;
}

.btn-news .btn__icon {
  right: 11px;
  width: 26px;
  height: 26px;
  }
  .category--info .btn-news .btn__icon {
    fill: #ca1d1d;
  }
  .category--achievements .btn-news .btn__icon {
    fill: #f78214;
  }
  .category--recruit .btn-news .btn__icon {
    fill: #db1e64;
  }
  .category--topics .btn-news .btn__icon {
    fill: #0071bb;
    }
    .btn-news .btn__icon::before {
      background: #fff;
      left: 1px;
      top: 1px;
    }

/* News — card layout (トップ preview & /news 一覧) */
.news-list--cards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list--cards .news-list__item:not(:last-child) {
  margin-bottom: 48px;
}

.news-list--cards .news-list__item a.news-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.news-card__media {
  width: 100%;
  overflow: hidden;
  background: #e8e8e8;
}

.news-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.news-card__body {
  padding: 18px 0 0;
  box-sizing: border-box;
}

.news-page .container .news-card__body {
  padding-left: 2px;
  padding-right: 2px;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.news-list--cards .news__category {
  width: auto;
  min-width: 0;
  height: 26px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 700;
}

.news-list--cards .category--info .news__category {
  background: #ca1d1d;
  background-image: none;
}

.news-card__meta .news__date {
  font-family: 'Renogare Soft', 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.news-card__title {
  margin: 0 0 12px;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  font-weight: 700;
  line-height: 1.45;
  color: #111;
}

.news-card__excerpt {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__footer {
  display: flex;
  justify-content: center;
  width: 100%;
}

.news-list--cards .news-card__footer .btn-frame {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 300px;
  background: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.news-list--cards .btn-news--card {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 48px;
  border-radius: 48px;
  background: #fff;
  border: 1px solid #a32035;
  box-shadow: none;
}

.news-list--cards .btn-news--card::before {
  display: none;
}

.news-list--cards a:hover .btn-news--card {
  background: #fffef9;
  border-color: #8b1829;
}

.news-list--cards .btn-news--card .btn__text {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.news-list--cards a:hover .btn-news--card .btn__text {
  color: #333;
}

.news-list--cards .btn-news--card .btn__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #ca1d1d;
  background: #fde8ec;
  border-radius: 50%;
}

.news-list--cards .btn-news--card .btn__icon::before {
  display: none;
}

.news-list--cards .btn-news--card .btn__icon svg {
  width: 9px;
  height: auto;
}

/* /news 一覧 — tablet/desktop: 2 cột, khoảng cách gọn */
@media (min-width: 768px) {
  .news-page .news-list--cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 48px;
    align-items: start;
  }

  .news-page .news-list--cards .news-list__item {
    margin-bottom: 0;
    min-width: 0;
  }

  .news-page .news-list--cards .news-list__item:not(:last-child) {
    margin-bottom: 0;
  }

  .news-page .news-card__body {
    padding-top: 14px;
  }

  .news-page .news-card__title {
    font-size: 1.0625rem;
    margin-bottom: 10px;
  }

  .news-page .news-card__excerpt {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .news-page .news-list--cards .news-card__footer .btn-frame {
    max-width: 100%;
  }

  .news-page .news-list--cards .btn-news--card {
    max-width: 240px;
    height: 44px;
    border-radius: 44px;
  }

  .news-page .news-list--cards .btn-news--card .btn__text {
    font-size: 14px;
  }

  .news-page .news-list--cards .btn-news--card .btn__icon {
    width: 26px;
    height: 26px;
    right: 10px;
  }
}

/* Home section: override SP-only compact news row when using cards */
.top-section04 .news-list--cards .news-list__item a.news-card {
  display: flex;
  flex-direction: column;
  row-gap: 0;
  column-gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
}

.top-section04 .news-list--cards .news-list__item .btn-news--card {
  width: 100%;
  max-width: 300px;
  min-width: 0;
  height: 48px;
  border-radius: 48px;
  padding: 0;
  box-shadow: none;
}

.top-section04 .news-list--cards .news-list__item .btn-news--card::before {
  display: none;
}

.top-section04 .news-list--cards .news-list__item .btn-news--card .btn__text {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.top-section04 .news-list--cards .news-list__item .btn-news--card .btn__icon {
  position: absolute;
  left: auto;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.top-section04 .btn-container {
  margin-top: 116px;
  margin-bottom: 96px;
}

.news-visual {
	overflow: hidden;
  position: relative;
  max-width: 1600px;
  padding-top: 160px;
  padding-bottom: 80px;
  margin: 0 auto;
  overflow-x: hidden;
}

.news-visual__text--circle {
  width: 709px;
  position: absolute;
  right: 0;
  top: 40px;
  animation: rotation 60s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.news-visual__movie {
  width: calc(100% - 300px);
  max-width: 1300px;
  position: relative;
  z-index: 2;
}

.news-visual video {
  max-width: 100%;
}

/* COMPANY
------------------------------------------------------- */

.top-section05 .section__header {
  padding-bottom: 50px;
}

.page-link {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
}

.page-link__item {
  border-top: 1px solid #fff;
  }
  .page-link__item:nth-child(n+3) {
    border-bottom: 1px solid #fff;
  }

.page-link__item a {
  padding: 55px 10px 38px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-link__item h3 span {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  }
  .page-link__item h3 .en {
    font-size: 16px;
    margin-top: 4px;
  }

.page-link__item .btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  transition: background-color .3s ease;
  }
  .page-link__item .btn__icon::before {
    content: none;
  }

.page-link__item a:hover .btn__icon {
  background: #ca1d1d;
}

.page-link__item .btn__icon svg {
  width: 17.5px;
  height: auto;
  fill: #ca1d1d;
  transition: fill .3s ease;
}

.page-link__item a:hover .btn__icon svg {
  fill: #fff;
}

/* RECRUIT
------------------------------------------------------- */


/* ---------------------------------------------------- */
/* ---------------------------------------------------- */

/* ---------------------------------------------------- */
  @media screen and (max-width: 767px) {
/* ---------------------------------------------------- */
  
/*
=======================================================
 TOP
=======================================================
*/

/* COMMON
------------------------------------------------------- */

.top-section .container {
  padding: 0 30px;
}

.top-section .section__header {
  padding-bottom: 30px;
  max-width: 100%;
  overflow-x: hidden;
}

.top-section .section__body {
	padding-bottom: 50px;
	text-align: left;
	max-width: 100%;
	box-sizing: border-box;
}

/* KEY VISUAL
------------------------------------------------------- */

.keyvisual {
  width: 100%;
  max-width: 100%;
  min-height: unset;
  max-height: unset;
  margin-bottom: 45px;
  height: auto;
	background-color: #e4e4e4;
	/*
	background-image: url("../images/top/kv_movie_sp.jpg");
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	*/
}

.keyvisual video {
	position: relative;
  height: auto;
  aspect-ratio: 1 / 1.68;
}

.keyvisual img {
  position: absolute;
	top: 0;
	left: 0;
  width: 100%;
  height: auto;
}

/* H2
------------------------------------------------------- */

.top-section h2 {
  grid-template-rows: 1fr 33px;
	height: 122.5px;
  }
	.top-section:nth-of-type(odd) h2 {
		height: 140px;
	}
	.top-section02 h2 {
		height: 95px;
		}
    .top-section h2::before {
      bottom: 33px;
    }
    .top-section:nth-of-type(even) h2::before {
      width: calc(100% + 15px);
      left: -15px;
    }

  .top-section h2 .en {
    margin-bottom: -5px;
    padding: 0 5px;
		}
		.top-section01 h2 .en {
			text-align: center;
		}
		.top-section h2 .jp {
			font-size: 20px;
			padding: 0 5px;
			}
			.top-section h2 .en::before {
				height: calc(100% + 33px);
				top: -5px;
			}
			.top-section h2 .en::after {
				width: 15px;
				height: 15px;
				background-size: 15px;
				/*bottom: -3.5px;*/
				bottom: -2.5px;
			}
			.top-section:nth-of-type(odd) h2 .en::after {
				right: -7.5px;
			}
			.top-section:nth-of-type(even) h2 .en::after {
				left: -7.5px;
			}

.top-section h2 .en span {
  font-size: 45px;
}

.top-section h2 .en span,
.top-section h2 .jp {
  transform: translateY(20px);
	transition: opacity .4s ease-out, transform .4s ease-out;
	transition-delay: 1.2s;
}

/* SERVICE
------------------------------------------------------- */


/* NEW ARRIVALS
------------------------------------------------------- */

.top-section04 {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* 375px class: padding 30+30 làm khung chữ quá hẹp / lệch tỉ lệ — siết lại cho đúng vùng nội dung */
.top-section04 .container {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 100%;
  box-sizing: border-box;
}

.top-section04 .section__body {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.top-section04 .news-list {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.top-section04 .news-list__item {
  min-width: 0;
  max-width: 100%;
}

.top-section04 .news-list__item:not(:last-child) {
  margin-bottom: 48px;
}

.top-section04 .news-list__item a {
  display: grid;
  grid-template-columns: auto max-content;
  grid-template-rows: auto auto;
  grid-template-areas:
    "date cat"
    "content content";
  column-gap: 10px;
  row-gap: 14px;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.top-section04 .news-list__item .news__date {
  grid-area: date;
}

.top-section04 .news-list__item .news__category {
  grid-area: cat;
  justify-self: start;
  width: auto;
  min-width: 0;
  padding: 0 12px;
  font-size: 11px;
  height: 22px;
}

/* Hàng 2: flex 7/3 — bám đúng chiều ngang khối (375px trừ padding), không phụ thuộc % lỗi */
.top-section04 .news-list__item a .news__content {
  grid-area: content;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.top-section04 .news-list__item .news__title {
  flex: 7 1 0%;
  min-width: 0;
  max-width: 70%;
}

.top-section04 .news-list__item .news__title p {
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.top-section04 .news-list__item .news__content > .btn-frame {
  flex: 3 1 0%;
  min-width: 0;
  max-width: 30%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.top-section04 .news-list__item .btn-frame {
  margin: 0;
  padding: 0;
  width: auto;
  background: none;
  box-shadow: none;
  flex-shrink: 0;
}

.top-section04 .news-list__item .btn-news {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.top-section04 .news-list__item .category--info .btn-news {
  background: linear-gradient(155deg, #ca1d1d 0%, #9f1717 100%);
}

.top-section04 .news-list__item .category--achievements .btn-news {
  background: linear-gradient(155deg, #d68a25 0%, #c1451a 100%);
}

.top-section04 .news-list__item .category--recruit .btn-news {
  background: linear-gradient(155deg, #dd4b80 0%, #af1e59 100%);
}

.top-section04 .news-list__item .category--topics .btn-news {
  background: linear-gradient(155deg, #0071bb 0%, #2e3191 100%);
}

.top-section04 .news-list__item .btn-news::before {
  display: none;
}

.top-section04 .news-list__item .btn-news .btn__text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-section04 .news-list__item .btn-news .btn__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: transparent;
}

.top-section04 .news-list__item .btn-news .btn__icon::before {
  display: none;
}

.top-section04 .news-list__item .category--info .btn-news .btn__icon,
.top-section04 .news-list__item .category--achievements .btn-news .btn__icon,
.top-section04 .news-list__item .category--recruit .btn-news .btn__icon,
.top-section04 .news-list__item .category--topics .btn-news .btn__icon {
  fill: #fff;
}

.top-section04 .btn-container {
  margin-top: 48px;
  margin-bottom: 72px;
}

/* COMPANY
------------------------------------------------------- */

.top-section05 .section__header {
  padding-bottom: 30px;
}

.page-link {
  margin-top: 30px;
  display: block;
}

.page-link__item:nth-child(3) {
	border-bottom: none;
}
.page-link__item:nth-child(4) {
	border-bottom: 1px solid #fff;
}

.page-link__item a {
  padding: 25px 13px;
}

.page-link__item h3 span {
  font-size: 19px;
  }
  .page-link__item h3 .en {
    font-size: 13px;
    margin-top: 0;
  }

.page-link__item .btn__icon {
  width: 29px;
  height: 29px;
}

.page-link__item .btn__icon svg {
  width: 10px;
}

/* HEADER — logo trong mega menu SP (ghi đè nếu img/global khác can thiệp) */
header .mobile-menu .mobile-menu__top .logo {
  position: relative;
  z-index: 102;
}

header .mobile-menu .mobile-menu__logo-img {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  width: auto;
  max-width: min(160px, 72vw);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  opacity: 1;
  visibility: visible;
}

header .mobile-menu__item a,
header .mobile-menu__item a:visited {
  color: #fff;
}

header .mobile-menu__item .en,
header .mobile-menu__item .jp {
  color: #fff;
}

/* RECRUIT
------------------------------------------------------- */

/* ---------------------------------------------------- */
  }
/* ---------------------------------------------------- */