@charset "UTF-8";
/**
/* Font
/* "Noto Sans JP"
/* "Outfit"
/* "Zen Kaku Gothic New"
**/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
 ******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
 ******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
 ******************************************/
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  background-color: #0f141c;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
html.no-scroll {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header {
  view-transition-name: site-header;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  background-color: #000000;
  border-radius: 4px;
  z-index: 20;
}
@media (min-width: 768px) {
  .header {
    top: 30px;
    height: unset;
  }
}
@media (min-width: 1024px) {
  .header {
    left: 30px;
    width: calc(100% - 60px);
    padding: 0px 50px 0px 35px;
  }
}
.header.fixed {
  position: fixed;
  top: 30px;
}
.header .logo {
  display: block;
  padding: 22px 0;
}
@media (min-width: 768px) {
  .header .logo {
    width: unset;
    height: unset;
  }
}
.header .logo:hover {
  opacity: 0.7;
}
.header .logo__img {
  width: 92px;
  height: 30px;
}
@media (min-width: 768px) {
  .header .logo__img {
    width: 116px;
    height: 38px;
  }
}
.header .logo__top {
  display: none;
}
.header .nav {
  display: none;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  .header .nav {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .header .nav {
    gap: 48px;
  }
}
@media (min-width: 768px) {
  .header .nav__logo {
    display: none;
  }
}
.header .navList {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1280px) {
  .header .navList {
    gap: 48px;
  }
}
.header .navItem_link {
  display: inline-block;
  padding: 32px 0;
  color: #7b7b81;
  letter-spacing: 0.05em;
}
.header .navItem_link:hover {
  color: #e6cd00;
}
.header .navItem.active .navItem_link {
  padding-bottom: 28px;
  font-weight: bold;
  color: #e6cd00;
  border-bottom: solid 4px #e6cd00;
}
.header .navSub {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1280px) {
  .header .navSub {
    gap: 30px;
  }
}
.header .navLang {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7b7b81;
}
.header .navLang_link {
  color: #7b7b81;
}
.header .navLang_link:hover {
  color: #ffffff;
}
.header .navLang_link.active {
  color: #ffffff;
}
.header .btnContact {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
  border: 1px solid #7b7b81;
  border-radius: 6px;
}
@media (min-width: 1024px) {
  .header .btnContact {
    padding: 12px 24px;
  }
}
.header .btnContact:hover {
  border-color: #ffffff;
}
.header .menuBtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  padding: 20px;
  text-align: center;
  background-color: #000000;
}
@media (min-width: 768px) {
  .header .menuBtn {
    display: none;
  }
}
.header .menuBtn__line {
  position: relative;
  top: 10px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .menuBtn__line::before,
.header .menuBtn__line::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .menuBtn__line::before {
  top: -5px;
}
.header .menuBtn__line::after {
  bottom: -5px;
}
.header .menuBtn__text {
  position: absolute;
  bottom: 15px;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
}
.header .menuBtn.is_open .menuBtn__line {
  background-color: transparent;
}
.header .menuBtn.is_open .menuBtn__line::before {
  top: 0;
  rotate: 20deg;
}
.header .menuBtn.is_open .menuBtn__line::after {
  bottom: 0;
  rotate: -20deg;
}
.header.is_top {
  view-transition-name: none;
  position: absolute;
  background-color: transparent;
}
.header.is_top .logo__top {
  display: block;
}
.header.is_top .logo__common {
  display: none;
}
.header.is_top .logo__img {
  width: 137px;
  height: 49px;
}
@media (min-width: 768px) {
  .header.is_top .logo__img {
    width: 150px;
    height: 53px;
  }
}
@media (min-width: 1024px) {
  .header.is_top .logo__img {
    width: 218px;
    height: 78px;
  }
}
.header .spMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  justify-content: center;
  overflow: scroll;
  background-color: #0f141c;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .spMenu.is_open {
  visibility: visible;
  opacity: 1;
}
.header .spMenu__logo {
  width: 171px;
  margin: 100px auto 0;
}
.header .spMenu__logoLink:hover {
  opacity: 0.7;
}
.header .spMenu__list {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  gap: 40px 77px;
  margin: 55px auto 0;
}
.header .spMenu__item:nth-child(2n - 1) {
  text-align: right;
}
.header .spMenu__link {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
}
.header .spMenu__subList {
  margin-top: 16px;
}
.header .spMenu__subLink {
  color: #7b7b81;
}
.header .spMenu__subLink::before {
  position: relative;
  top: -5px;
  display: inline-block;
  width: 12px;
  margin-right: 10px;
  content: "";
  border-top: solid 1px #7b7b81;
  transition: all 0.3s ease;
}
.header .spMenu__subLink + .spMenu__subLink {
  margin-top: 16px;
}
.header .spMenu__contact {
  justify-content: center;
  padding: 22px;
  margin: 70px 20px 0;
  background-image: linear-gradient(
    135deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 30%
  );
}
.header .spMenu .spMenuLang {
  position: absolute;
  top: 33px;
  left: 43px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7b7b81;
}
.header .spMenu .spMenuLang__link {
  color: #7b7b81;
}
.header .spMenu .spMenuLang__link:hover {
  color: #ffffff;
}
.header .spMenu .spMenuLang__link.active {
  color: #ffffff;
}
.header .spMenu__subMenu {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  color: #7b7b81;
}
.header .spMenu__snsList {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin-top: 30px;
  color: #d3d3d6;
  border-top: 1px solid #383a3d;
}
.header .spMenu__cl {
  padding: 35px;
  font-size: 0.75rem;
  color: #7b7b81;
  text-align: center;
  background-color: #000000;
}

.footer {
  padding-top: 60px;
  background-image: url("../../images/top/threeBgSp.webp");
  background-repeat: no-repeat;
  background-position: top -50px right 20px;
  background-size: 400px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 100px;
    background-image: url("../../images/top/threeBg.webp");
    background-position: top -60px right -50px;
    background-size: auto;
  }
}
@media (min-width: 1536px) {
  .footer {
    background-position: top -60px right calc((100% - 1200px) / 2 + 180px);
  }
}
.footer .footerContact {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  padding: 30px;
  margin: 0 auto;
  color: #ffffff;
  background-image: linear-gradient(
    135deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 25%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .footer .footerContact {
    padding: 100px 80px;
    border-radius: 15px;
  }
}
.footer .footerContact:after {
  position: absolute;
  right: 17px;
  bottom: 19px;
  display: block;
  width: 17px;
  height: 12px;
  content: "";
  background-image: url("../../images/common/icon-arrowRight.svg");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .footer .footerContact:after {
    display: none;
  }
}
.footer .footerContact__wrap {
  padding: 0 24px;
}
.footer .footerContact_heading {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer .footerContact_heading {
    font-size: 38px;
  }
}
.footer .footerContact_text {
  margin-top: 10px;
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer .footerContact_text {
    width: 90%;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .footer .footerContact_text {
    width: revert;
  }
}
.footer .footerContact .iconCircleArrow {
  position: absolute;
  top: 50%;
  right: 80px;
  display: none;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .footer .footerContact .iconCircleArrow {
    display: block;
  }
}
.footer .footerContact:hover {
  border-color: white;
}
.footer .footerLogo {
  width: 145px;
  height: 71px;
}
@media (min-width: 768px) {
  .footer .footerLogo {
    width: auto;
    height: auto;
  }
}
.footer .footerLogo:hover {
  opacity: 0.7;
}
.footer .footerNavWrap {
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 100px auto 0;
}
@media (min-width: 768px) {
  .footer .footerNavWrap {
    align-items: center;
    justify-content: space-between;
  }
}
.footer .footerNavWrap .footerNav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .footer .footerNavWrap .footerNav {
    flex-direction: row;
    gap: 40px;
  }
}
.footer .footerNavWrap .footerNav_link {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.5;
  color: #d3d3d6;
}
.footer .footerNavWrap .footerNav_link:hover {
  color: #e6cd00;
}
.footer .footerNavWrap .footerNav_link_gray {
  font-size: 14px;
  color: #7b7b81;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav_link_gray {
    font-size: 12px !important;
  }
}
@media (min-width: 1024px) {
  .footer .footerNavWrap .footerNav_link_gray {
    font-size: 14px;
  }
}
.footer .footerNavWrap .footerNav_link_gray:hover {
  color: #ffffff;
}
.footer .footerNavWrap .footerNav_link_gray:hover::before {
  border-color: #ffffff;
}
.footer .footerNavWrap .footerNav_link_gray::before {
  position: relative;
  top: -5px;
  display: inline-block;
  width: 12px;
  margin-right: 10px;
  content: "";
  border-top: solid 1px #7b7b81;
  transition: all 0.3s ease;
}
.footer .footerNavWrap .footerNav_childList {
  margin-top: 12px;
}
.footer .footerNavWrap .footerNav_childList .footerNav_item ~ .footerNav_item {
  margin-top: 6px;
}
.footer .footerNavWrap .footerNav_subList .footerNav_link_gray::before {
  content: none;
}
.footer .footerNavWrap .footerNav_subList .footerNav_item ~ .footerNav_item {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav_subList .footerNav_item ~ .footerNav_item {
    margin-top: 20px;
  }
}
.footer .footerSnsWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 95px;
}
.footer .footerSnsWrap .footerSnsCnt {
  flex: 1;
  border-top: 1px solid #383a3d;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt {
    display: flex;
    justify-content: space-between;
    padding: 45px 50px 45px 60px;
  }
}
.footer .footerSnsWrap .footerSnsCnt .footerSns {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt .footerSns {
    padding: 0;
  }
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_link {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_link:hover {
  color: #e6cd00;
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_cl {
  padding: 35px;
  font-size: 12px;
  color: #7b7b81;
  text-align: center;
  background-color: #000000;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt .footerSns_cl {
    padding: 0;
    text-align: left;
    background-color: transparent;
  }
}

.pagetop {
  display: none;
}
@media (min-width: 768px) {
  .pagetop {
    display: block;
  }
}
.pagetop_link {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
  background-image: linear-gradient(
    190deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 70%
  );
  border: 1px solid #383a3d;
}
.pagetop_link:hover {
  border-color: #ffffff;
}
.pagetop_text {
  margin: 0;
}

main {
  background-image: url(../../images/common/bg04.jpg);
  background-repeat: no-repeat;
  background-position: top -18px left calc(50% + 107px);
  background-size: 507px;
}
@media (min-width: 768px) {
  main {
    background-position: top -110px right calc(50% - 323px);
    background-size: 1462px;
  }
}

.title-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 639px) {
  .title-wrapper {
    height: 276px;
    padding-top: 128px;
  }
}
@media (min-width: 640px) {
  .title-wrapper {
    height: 333px;
    padding-top: 128px;
  }
}
@media (min-width: 768px) {
  .title-wrapper {
    height: 500px;
    padding-top: 240px;
  }
}
@media (min-width: 1024px) {
  .title-wrapper {
    height: 650px;
    padding-top: 266px;
  }
}
.title-wrapper::before {
  position: absolute;
  top: 0;
  content: "";
}

.page-title {
  display: grid;
  place-items: center;
  height: 128px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 0.1em;
  background: linear-gradient(-93deg, #fd1010 0%, #ec6d00 100%);
  -webkit-background-clip: text;
}
@media (max-width: 639px) {
  .page-title {
    height: 64px;
    font-size: 2.5rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(-96deg, #fd1010 0%, #edc600 100%);
    background-position: 40% center;
    -webkit-background-clip: text;
    background-size: 200%;
  }
}
@media (min-width: 640px) {
  .page-title {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .page-title {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-title {
    font-size: 5rem;
  }
}

.page-title--company {
  background-position: 20% center; /* 50〜70%の中心に当たるように設定（=60%） */
  background-size: 200%; /* 50〜70%の中心に当たるように設定（=60%） */
}

.ja .page-title--page {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
}

@media (min-width: 1024px) {
  .breadcrumb {
    max-width: 1000px;
  }
}

.breadcrumb__list {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  margin: 0;
  overflow: hidden;
  list-style: none;
  border-radius: 16px;
}

.breadcrumb__item {
  display: flex;
  flex-shrink: 0; /* 基本的には項目は縮小しない */
  align-items: center;
  white-space: nowrap; /* 基本的には項目は縮小しない */
}

/* 最後の項目だけ省略可能にする */
.breadcrumb__item:last-child {
  flex: 1 1 0;
  min-width: 0; /* 重要！ */
  overflow: hidden;
}

.breadcrumb__item:last-child {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb__item,
.breadcrumb__link {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d3d3d6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: #e6cd00;
}

.breadcrumb__item + .breadcrumb__item::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 16px;
  vertical-align: -2px;
  content: "";
  background-image: url("../../images/common/icon_chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 639px) {
  .breadcrumb__item + .breadcrumb__item::before {
    width: 10px;
    height: 10px;
    vertical-align: -1px;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 639px) {
  .sp-only {
    display: block;
  }
}

.md-only {
  display: none;
}
@media (min-width: 768px) {
  .md-only {
    display: block;
  }
}

.lg-only {
  display: none;
}
@media (min-width: 1024px) {
  .lg-only {
    display: block;
  }
}

@media (max-width: 639px) {
  .under-sm-only {
    display: block;
  }
}
@media (min-width: 640px) {
  .under-sm-only {
    display: block;
  }
}
@media (min-width: 768px) {
  .under-sm-only {
    display: none;
  }
}

@media (max-width: 639px) {
  .under-md-only {
    display: block;
  }
}
@media (min-width: 640px) {
  .under-md-only {
    display: block;
  }
}
@media (min-width: 1024px) {
  .under-md-only {
    display: none;
  }
}

@media (max-width: 639px) {
  .over-md-only {
    display: none;
  }
}
@media (min-width: 640px) {
  .over-md-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .over-md-only {
    display: block;
  }
}

@media (max-width: 639px) {
  .over-lg-only {
    display: none;
  }
}
@media (min-width: 640px) {
  .over-lg-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .over-lg-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .over-lg-only {
    display: block;
  }
}

.d-inline-block {
  display: inline-block;
}

body {
  background-color: transparent;
}

.news-archive,
.category-archive {
  /* ----------------
  * MARK: keyframes
  ------------------*/
}
@media (min-width: 1024px) {
  .news-archive .title-wrapper,
  .category-archive .title-wrapper {
    height: 333px;
    padding-top: 114px;
  }
}
.news-archive .page-title,
.category-archive .page-title {
  position: relative;
  z-index: 1;
}
.news-archive .breadcrumb,
.category-archive .breadcrumb {
  position: relative;
  z-index: 1;
}
@media (max-width: 639px) {
  .news-archive .breadcrumb,
  .category-archive .breadcrumb {
    margin-top: 8px;
  }
}
.news-archive .title__background,
.category-archive .title__background {
  position: absolute;
  top: 0;
  right: 0;
}
.news-archive .articles-section,
.category-archive .articles-section {
  padding: 45px 0 0;
}
@media (max-width: 639px) {
  .news-archive .articles-section,
  .category-archive .articles-section {
    padding: 32px 0 0;
  }
}
@media (max-width: 639px) {
  .news-archive .articles-section .container,
  .category-archive .articles-section .container {
    width: 88%;
    min-width: 352px;
    margin-inline: auto;
  }
}
.news-archive .articles-grid,
.category-archive .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .news-archive .articles-grid,
  .category-archive .articles-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: none;
    padding-inline: 16px;
  }
}
@media (min-width: 640px) {
  .news-archive .articles-grid,
  .category-archive .articles-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .news-archive .articles-grid,
  .category-archive .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 655px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .news-archive .articles-grid,
  .category-archive .articles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.news-archive .article-thumbnail,
.category-archive .article-thumbnail {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.news-archive .article-thumbnail a,
.category-archive .article-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}
.news-archive .article-thumbnail .article-image,
.category-archive .article-thumbnail .article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: all 0.3s ease;
}
.news-archive .article-thumbnail .article-image-placeholder,
.category-archive .article-thumbnail .article-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  color: #999;
  background: #f0f0f0;
}
.news-archive .article-card,
.category-archive .article-card {
  position: relative;
  z-index: 0;
  width: 320px;
  background: transparent;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow 0.3s ease,
    border 0.3s ease;
}
.news-archive .article-card::before,
.category-archive .article-card::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, #e6cd00 0%, #e38500 50%, #fd1101 100%);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.news-archive .article-card::after,
.category-archive .article-card::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #ffffff;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.news-archive .article-card:hover::before,
.category-archive .article-card:hover::before {
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}
.news-archive .article-card:hover .article-image,
.category-archive .article-card:hover .article-image {
  scale: 1.1;
}
@media (max-width: 639px) {
  .news-archive .article-card,
  .category-archive .article-card {
    width: 100%;
    height: auto;
  }
}
.news-archive .article-card-link,
.category-archive .article-card-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.news-archive .article-card-link:hover,
.category-archive .article-card-link:hover {
  color: inherit;
  text-decoration: none;
}
.news-archive .article-card-link:focus,
.category-archive .article-card-link:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}
.news-archive .article-meta,
.category-archive .article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px 12px;
}
.news-archive .article-meta .article-date,
.category-archive .article-meta .article-date {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
}
.news-archive .article-meta .article-categories,
.category-archive .article-meta .article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.news-archive .article-meta .article-categories .article-category,
.category-archive .article-meta .article-categories .article-category {
  position: relative;
  padding: 1px 12px 1px 22px;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  color: #5d5c62;
  cursor: pointer;
  border: 1px solid #d3d3d6;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.news-archive .article-meta .article-categories .article-category::before,
.category-archive .article-meta .article-categories .article-category::before {
  position: absolute;
  top: 50%;
  left: 12px;
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #5d5c62;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.news-archive .article-content,
.category-archive .article-content {
  padding: 0 25px 20px;
}
.news-archive .article-content .article-title,
.category-archive .article-content .article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 0 0 12px;
  overflow: hidden;
  -webkit-line-clamp: 4;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  text-decoration: none;
}
@media (max-width: 639px) {
  .news-archive .article-content .article-title,
  .category-archive .article-content .article-title {
    font-size: 0.75rem;
  }
}
.news-archive .category-filter,
.category-archive .category-filter {
  padding: 0;
}
@media (max-width: 639px) {
  .news-archive .category-filter,
  .category-archive .category-filter {
    padding: 30px 0 0;
  }
}
@media (max-width: 639px) {
  .news-archive .category-filter .container,
  .category-archive .category-filter .container {
    width: 88%;
    min-width: 352px;
    margin-inline: auto;
  }
}
.news-archive .category-buttons,
.category-archive .category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.news-archive .category-buttons .category-btn,
.category-archive .category-buttons .category-btn {
  position: relative;
  padding: 1px 12px 1px 22px;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  color: #d3d3d6;
  cursor: pointer;
  background: #0f141c;
  border: 1px solid #5c5d62;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.news-archive .category-buttons .category-btn::before,
.category-archive .category-buttons .category-btn::before {
  position: absolute;
  top: 50%;
  left: 12px;
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #d9d9d9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.news-archive .category-buttons .category-btn:hover,
.news-archive .category-buttons .category-btn.active,
.category-archive .category-buttons .category-btn:hover,
.category-archive .category-buttons .category-btn.active {
  position: relative;
  color: #0f141c;
  background: #ffffff;
  border-color: #ffffff;
}
.news-archive .category-buttons .category-btn:hover::before,
.news-archive .category-buttons .category-btn.active::before,
.category-archive .category-buttons .category-btn:hover::before,
.category-archive .category-buttons .category-btn.active::before {
  background-color: #e6cd00;
}
.news-archive .pagination-wrapper,
.category-archive .pagination-wrapper {
  text-align: center;
}
@media (max-width: 639px) {
  .news-archive .pagination-wrapper,
  .category-archive .pagination-wrapper {
    margin-top: 32px;
  }
}
@media (min-width: 640px) {
  .news-archive .pagination-wrapper,
  .category-archive .pagination-wrapper {
    margin-top: 32px;
  }
}
@media (min-width: 1024px) {
  .news-archive .pagination-wrapper,
  .category-archive .pagination-wrapper {
    margin-top: 40px;
  }
}
.news-archive .nav-links,
.category-archive .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.news-archive .page-numbers,
.category-archive .page-numbers {
  display: inline-block;
  width: 40px;
  padding-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
}
.news-archive .page-numbers.current,
.category-archive .page-numbers.current {
  color: #e6cd00;
  border-bottom: 2px solid #e6cd00;
}
.news-archive .page-numbers.prev,
.news-archive .page-numbers.next,
.category-archive .page-numbers.prev,
.category-archive .page-numbers.next {
  padding-bottom: 0;
}
.news-archive .page-numbers.prev svg,
.news-archive .page-numbers.next svg,
.category-archive .page-numbers.prev svg,
.category-archive .page-numbers.next svg {
  display: block;
}
.news-archive .page-numbers.prev,
.category-archive .page-numbers.prev {
  margin-right: 20px;
}
.news-archive .page-numbers.next,
.category-archive .page-numbers.next {
  margin-left: 20px;
}
.news-archive .iconCircleArrow2 .hoverCircle2,
.category-archive .iconCircleArrow2 .hoverCircle2 {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: circle-out 0.3s forwards;
}
.news-archive .iconCircleArrow2:hover,
.category-archive .iconCircleArrow2:hover {
  border-color: white;
}
.news-archive .iconCircleArrow2:hover .hoverCircle2,
.category-archive .iconCircleArrow2:hover .hoverCircle2 {
  animation: circle 0.3s forwards;
}
@keyframes circle {
  from {
    stroke-dashoffset: 160;
  }
  to {
    stroke-dashoffset: 320;
  }
}
@keyframes circle-out {
  from {
    stroke-dashoffset: 320;
  }
  to {
    stroke-dashoffset: 160;
  }
}
@media (max-width: 639px) {
  .news-archive .brand-state,
  .category-archive .brand-state {
    padding-top: 0;
    margin-top: 108px;
  }
}
@media (min-width: 640px) {
  .news-archive .brand-state,
  .category-archive .brand-state {
    padding-top: 0;
    margin-top: 108px;
  }
}
@media (min-width: 768px) {
  .news-archive .brand-state,
  .category-archive .brand-state {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .news-archive .brand-state,
  .category-archive .brand-state {
    margin-top: 90px;
  }
}

/*# sourceMappingURL=home.css.map */
