@charset "UTF-8";
/***************************************
  Breakpoint mixins
****************************************/
/***************************************
  Font mixins
****************************************/
/***************************************
  Margin mixins
****************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: clip;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background-color: #000028;
}
body.page-top {
  background-color: transparent;
}

#page {
  position: relative;
  transition: opacity 0.4s ease;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

picture {
  display: flex;
  justify-content: center;
}

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
}

.font-en {
  font-family: "Outfit", sans-serif;
}

.blockContent {
  max-width: 1300px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 100px 60px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 1024px) {
  .blockContent {
    padding: 80px 40px;
    border-radius: 14px;
  }
}
@media (max-width: 480px) {
  .blockContent {
    padding: 60px 20px;
    border-radius: 12px;
    font-size: 1.4rem;
  }
}
.blockContent h2 {
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  margin-top: 60px;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid #007cba;
  line-height: 1.5;
}
.blockContent h2:first-child {
  margin-top: 0;
}
.blockContent h2 sup {
  display: block;
  font-size: 1.4rem;
  color: #007cba;
  font-weight: 400;
  vertical-align: baseline;
  top: 0;
  margin-bottom: 4px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .blockContent h2 {
    font-size: 2.2rem;
    margin-top: 48px;
  }
  .blockContent h2 sup {
    font-size: 1.3rem;
  }
}
.blockContent h3 {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  margin-top: 40px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 16px;
  line-height: 1.4;
}
.blockContent h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #007cba;
}
.blockContent h3:first-child {
  margin-top: 0;
}
.blockContent h3 sup {
  display: block;
  color: #007cba;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .blockContent h3 {
    font-size: 1.8rem;
    margin-top: 32px;
  }
}
.blockContent h4 {
  font-size: 1.7rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 28px;
  margin-bottom: 10px;
}
.blockContent h4:first-child {
  margin-top: 0;
}
@media (max-width: 480px) {
  .blockContent h4 {
    font-size: 1.6rem;
  }
}
.blockContent p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
}
.blockContent p:last-child {
  margin-bottom: 0;
}
.blockContent strong {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
}
.blockContent a {
  color: #007cba;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .blockContent a:hover {
    text-decoration-color: transparent;
  }
}
@media (hover: none) {
  .blockContent a:active {
    text-decoration-color: transparent;
  }
}
.blockContent ul,
.blockContent ol {
  color: rgba(0, 0, 0, 0.7);
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 24px;
}
.blockContent ul {
  list-style: disc;
}
.blockContent ul li {
  margin-bottom: 6px;
}
.blockContent ul li::marker {
  color: #007cba;
}
.blockContent ol {
  list-style: decimal;
}
.blockContent ol li {
  margin-bottom: 6px;
}
.blockContent ol li::marker {
  color: #007cba;
}
.blockContent img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}
.blockContent .wp-block-table {
  margin: 24px 0;
  overflow: hidden;
  border-radius: 8px;
}
.blockContent table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0;
  font-size: 1.4rem;
}
.blockContent table th,
.blockContent table td {
  padding: 16px 24px;
  text-align: center;
  border: none;
}
.blockContent table thead {
  border-bottom: none;
}
.blockContent table thead th {
  background: #082964;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.blockContent table tbody td {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.6rem;
  padding: 24px;
}
.blockContent table tbody th {
  background: rgba(0, 124, 186, 0.06);
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
@media (max-width: 480px) {
  .blockContent table {
    font-size: 1.3rem;
  }
  .blockContent table th,
  .blockContent table td {
    padding: 14px 12px;
  }
}
.blockContent .wp-block-flexible-table-block-table {
  margin: 24px 0;
}
.blockContent .wp-block-flexible-table-block-table table {
  border-collapse: separate;
  border-spacing: 5px;
}
.blockContent .wp-block-flexible-table-block-table td,
.blockContent .wp-block-flexible-table-block-table th {
  background: transparent;
  color: inherit;
}
.blockContent .wp-block-flexible-table-block-table td:empty {
  background: transparent;
}
.blockContent .wp-block-flexible-table-block-table strong {
  color: inherit;
}
.blockContent blockquote {
  border-left: 3px solid #007cba;
  padding: 16px 24px;
  margin: 24px 0;
  color: rgba(0, 0, 0, 0.7);
}
.blockContent blockquote p {
  color: rgba(0, 0, 0, 0.7);
}
.blockContent blockquote cite {
  display: block;
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 8px;
  font-style: normal;
}
.blockContent hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  margin: 40px 0;
}
.blockContent .wp-block-columns {
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .blockContent .wp-block-columns {
    gap: 20px;
  }
}
.blockContent .wp-block-column > *:first-child {
  margin-top: 0;
}
.blockContent .wp-block-image {
  margin: 24px 0;
}
.blockContent .wp-block-image:first-child {
  margin-top: 0;
}
.blockContent .wp-block-image:last-child {
  margin-bottom: 0;
}
.blockContent .wp-block-image figcaption {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  margin-top: 8px;
}
.blockContent .wp-block-buttons {
  margin: 24px 0;
}
.blockContent .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  border-radius: 14px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  background: linear-gradient(135deg, #053DB2, #018BBA);
  border: 1px solid rgba(5, 61, 178, 0.3);
}
.blockContent .wp-block-button .wp-block-button__link strong {
  color: inherit;
}
.blockContent .wp-block-button .wp-block-button__link {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.25), 0 4px 20px rgba(5, 61, 178, 0.25);
  text-decoration: none;
  border-bottom: none;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .blockContent .wp-block-button .wp-block-button__link:hover {
    background: linear-gradient(135deg, #1a5fd4, #1aa0d0);
    border-color: rgba(5, 61, 178, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.25), 0 8px 32px rgba(5, 61, 178, 0.35);
    border-bottom: none;
  }
}
@media (hover: none) {
  .blockContent .wp-block-button .wp-block-button__link:active {
    background: linear-gradient(135deg, #1a5fd4, #1aa0d0);
    border-color: rgba(5, 61, 178, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.25), 0 8px 32px rgba(5, 61, 178, 0.35);
    border-bottom: none;
  }
}
.blockContent .wp-block-button .wp-block-button__link:active {
  background: linear-gradient(135deg, #042f8e, #01749a);
}
.blockContent .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #007cba;
  border: 1px solid #007cba;
  box-shadow: none;
}
@media (hover: hover) and (pointer: fine) {
  .blockContent .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: rgba(0, 124, 186, 0.06);
    box-shadow: none;
  }
}
@media (hover: none) {
  .blockContent .wp-block-button.is-style-outline .wp-block-button__link:active {
    background: rgba(0, 124, 186, 0.06);
    box-shadow: none;
  }
}
.blockContent .wp-block-button.is-style-outline .wp-block-button__link:active {
  background: rgba(0, 124, 186, 0.1);
}
.blockContent .wp-block-embed {
  margin: 32px 0;
}
.blockContent .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.blockContent .wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.blockContent .wp-block-embed figcaption {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  margin-top: 8px;
}
.blockContent .concernList {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
}
.blockContent .concernList li {
  position: relative;
  padding-left: 40px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.85);
}
.blockContent .concernList li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.blockContent .concernList li::before {
  font-family: "Material Symbols Outlined";
  content: "task_alt";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.4rem;
  color: #007cba;
  line-height: 1.3;
}
.blockContent .concernList li::marker {
  content: none;
}
@media (max-width: 480px) {
  .blockContent .concernList li {
    font-size: 1.7rem;
    padding-left: 34px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}
.blockContent .stepFlow {
  margin: 40px 0;
}
.blockContent .stepFlow-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
  padding-left: 35px;
}
.blockContent .stepFlow-item:last-child {
  padding-bottom: 0;
}
@media (max-width: 480px) {
  .blockContent .stepFlow-item {
    padding-left: 0;
    gap: 14px;
  }
}
.blockContent .stepFlow-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: #082964;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.blockContent .stepFlow-icon small {
  font-size: 1rem;
  font-weight: 400;
}
.blockContent .stepFlow-icon span {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 480px) {
  .blockContent .stepFlow-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .blockContent .stepFlow-icon small {
    font-size: 0.8rem;
  }
  .blockContent .stepFlow-icon span {
    font-size: 1.6rem;
  }
}
.blockContent .stepFlow-body {
  padding-top: 10px;
}
@media (max-width: 480px) {
  .blockContent .stepFlow-body {
    padding-top: 4px;
  }
}
.blockContent .stepFlow-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #082964;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blockContent .stepFlow-desc {
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
}

.globalNavi {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 2%;
}

.globalNavi-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.globalNavi.is-dark .globalNavi-inner {
  background: rgba(0, 77, 155, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .globalNavi-inner {
    height: 64px;
    padding: 0 16px;
    position: relative;
    z-index: 2;
  }
}

.globalNavi-logo {
  display: flex;
  align-items: center;
}

.globalNavi-logoImg {
  height: 28px;
  width: auto;
}
@media (max-width: 1024px) {
  .globalNavi-logoImg {
    height: 24px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .globalNavi-logoImg {
    height: 20px;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .globalNavi-logoImg {
    height: 18px;
  }
}

.globalNavi-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .globalNavi-nav {
    display: none;
  }
}

.globalNavi-list {
  display: flex;
  gap: 28px;
}

.globalNavi-list a {
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  transition: opacity 0.3s;
}
.globalNavi-list a:hover {
  opacity: 0.7;
}
.globalNavi-list a.is-current {
  color: #fff;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
}

.globalNavi-item {
  position: static;
}

.globalNavi-mega {
  position: absolute;
  top: 100%;
  left: 2%;
  right: 2%;
  padding-top: 12px;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: visibility 0.4s ease, transform 0.4s ease;
}
.globalNavi-mega.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.globalNavi-megaGrid {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  transition: backdrop-filter 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.globalNavi-mega.is-open .globalNavi-megaGrid {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.25);
}
.globalNavi.is-dark .globalNavi-mega.is-open .globalNavi-megaGrid {
  background: rgba(0, 77, 155, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(255, 255, 255, 0.03), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.globalNavi-megaItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease 0.1s;
  text-decoration: none;
  border: 1px solid transparent;
  opacity: 0;
}
.globalNavi-mega.is-open .globalNavi-megaItem {
  opacity: 1;
}
.globalNavi-megaItem:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.globalNavi-megaItem._preparing {
  cursor: default;
  opacity: 0.6;
}
.globalNavi-megaItem._preparing:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.globalNavi-megaPreparing {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  line-height: 1.3;
}

.globalNavi-megaThum {
  width: 96px;
  aspect-ratio: 768/479;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
}
.globalNavi-megaThum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.globalNavi-megaBody {
  flex: 1;
  min-width: 0;
  margin-top: -4px;
}

.globalNavi-megaTitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.globalNavi-megaSub {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  line-height: 1.3;
}

.globalNavi-contact {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 1.4rem;
}

.globalNavi-burger {
  display: none;
  position: relative;
  z-index: 2;
  width: 28px;
  height: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .globalNavi-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.globalNavi-burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.6;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.globalNavi.is-open .globalNavi-burger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.globalNavi.is-open .globalNavi-burger span:nth-child(2) {
  opacity: 0;
}
.globalNavi.is-open .globalNavi-burger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.globalNavi-overlay {
  display: none;
}
@media (max-width: 1024px) {
  .globalNavi-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
  }
  .globalNavi.is-open .globalNavi-overlay {
    opacity: 1;
    visibility: visible;
  }
}

.globalNavi-overlayList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.globalNavi.is-open .globalNavi-overlayList {
  transform: translateY(0);
  opacity: 1;
}

.globalNavi-overlayList a {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  display: block;
  padding: 16px 0;
  transition: opacity 0.3s;
}
.globalNavi-overlayList a:hover {
  opacity: 0.7;
}

.globalNavi-overlayContact {
  font-size: 1.8rem;
  padding: 14px 32px;
  border-radius: 8px;
  transform: translateY(20px);
  opacity: 0;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.globalNavi.is-open .globalNavi-overlayContact {
  transform: translateY(0);
  opacity: 1;
}

.topHero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.topHero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.topHero-side {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  writing-mode: vertical-rl;
  z-index: 3;
  opacity: 0.5;
}
@media (max-width: 810px) {
  .topHero-side {
    font-size: 0.8rem;
    width: 18px;
  }
}
@media (max-width: 480px) {
  .topHero-side {
    font-size: 0.6rem;
    width: 17px;
  }
}

.topHero-upper {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 140px 60px 0 30px;
  margin-bottom: min(60px, 5vh);
}
@media (max-width: 1024px) {
  .topHero-upper {
    padding: 130px 40px 0 30px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .topHero-upper {
    padding: 180px 5% 0 0;
  }
}

.topHero-catch {
  text-align: left;
}

.topHero-sub {
  font-size: 1.6rem;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 810px) {
  .topHero-sub {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .topHero-sub {
    font-size: 1rem;
  }
}

.topHero-title {
  font-size: 4.8vw;
  font-weight: 100;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 1024px) {
  .topHero-title {
    font-size: 7vw;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .topHero-title {
    font-size: 10vw;
  }
}

.topHero-title span {
  display: block;
  white-space: nowrap;
}
.topHero-title span br.sp-only {
  display: none;
}
@media (max-width: 480px) {
  .topHero-title span br.sp-only {
    display: block;
  }
}

.topHero-title em {
  font-style: normal;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 11px;
  text-decoration-thickness: 1px;
}
@media (max-width: 810px) {
  .topHero-title em {
    text-underline-offset: 8px;
  }
}
@media (max-width: 480px) {
  .topHero-title em {
    text-underline-offset: 6px;
  }
}

.topHero-lower {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  margin-bottom: 15vh;
}
@media (max-width: 1024px) {
  .topHero-lower {
    flex-direction: column;
    margin-bottom: 10vh;
  }
}

.topHero-slider {
  flex: 0 0 55%;
  margin-left: 30px;
  overflow: hidden;
  border-radius: 0 15px 0 0;
}
@media (max-width: 1024px) {
  .topHero-slider {
    flex: 0 0 55%;
  }
}

.topHero-sliderTrack {
  display: flex;
  gap: clamp(10px, 1.4vw, 20px);
  width: -moz-max-content;
  width: max-content;
  animation: heroSlide 30s linear infinite;
}

.topHero-sliderItem {
  flex: 0 0 auto;
  width: clamp(200px, 28vw, 460px);
  border-radius: clamp(6px, 0.7vw, 10px);
  overflow: hidden;
}

.topHero-sliderItem img {
  width: 100%;
  height: clamp(200px, 28vw, 500px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.topHero-info {
  flex: 1;
  padding: 20px 40px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .topHero-info {
    padding: 30px 40px 30px;
  }
}

.topHero-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.topHero-btns {
  display: flex;
  gap: 16px;
}

.topHero-scrollText {
  position: absolute;
  left: 0;
  bottom: 42vh;
  width: 100%;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

.topHero-scrollTextTrack {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: heroScrollText 60s linear infinite;
}

.topHero-scrollTextTrack span {
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(8rem, 15vw, 62rem);
  font-weight: 100;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.05;
  white-space: nowrap;
  line-height: 1;
  padding-right: 0.3em;
}

@keyframes heroSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}
@keyframes heroScrollText {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.topService {
  position: relative;
  padding: 120px 0;
  z-index: 2;
}
@media (max-width: 1024px) {
  .topService {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .topService {
    padding: 60px 0;
  }
}

.topService-inner {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}
.topService-inner .sectionHeader {
  width: 100%;
}

.topService-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .topService-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .topService-grid {
    grid-template-columns: 1fr;
  }
}

.topService-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  color: inherit;
  text-decoration: none;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.topService-card._preparing {
  cursor: default;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .topService-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(33, 150, 208, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  .topService-card:hover .topService-cardImage img {
    transform: scale(1.08);
  }
  .topService-card:hover .topService-cardLinkTxt::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .topService-card:hover .btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
  }
  .topService-card:hover .btn span[data-text]::before {
    transform: translateY(-100%);
  }
  .topService-card:hover .btn span[data-text]::after {
    transform: translateY(0);
  }
}
@media (hover: none) {
  .topService-card:active {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(33, 150, 208, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  .topService-card:active .topService-cardImage img {
    transform: scale(1.08);
  }
  .topService-card:active .topService-cardLinkTxt::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .topService-card:active .btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
  }
  .topService-card:active .btn span[data-text]::before {
    transform: translateY(-100%);
  }
  .topService-card:active .btn span[data-text]::after {
    transform: translateY(0);
  }
}

.topService-cardImage {
  aspect-ratio: 768/479;
  overflow: hidden;
  position: relative;
}
.topService-cardImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.topService-cardBody {
  padding: 20px 20px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.topService-cardBody .btn {
  margin-top: auto;
  align-self: center;
}

.topService-cardTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.5;
}

.topService-cardSub {
  font-size: 1.27rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.topService-cardDesc {
  font-size: 1.31rem;
  font-weight: 350;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 20px;
}

.topService-cardLink {
  font-size: 1.31rem;
  font-weight: 700;
  color: #fff;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
.topService-cardLink._preparing {
  opacity: 0.5;
}
.topService-cardLink .material-symbols-outlined {
  font-size: 1.4rem;
  line-height: 1;
}

.topService-cardLinkTxt {
  position: relative;
  display: inline;
  padding-bottom: 3px;
}
.topService-cardLinkTxt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.topReason {
  position: relative;
  padding: 120px 0;
  z-index: 2;
}
@media (max-width: 1024px) {
  .topReason {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .topReason {
    padding: 60px 0;
  }
}

.topReason-inner {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.topReason-inner .sectionHeader {
  max-width: none;
  padding: 0;
}
@media (max-width: 480px) {
  .topReason-inner .sectionHeader {
    margin-bottom: 30px;
  }
}

.topReason-results {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .topReason-results {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .topReason-results {
    margin-bottom: 40px;
  }
}

.topReason-resultsText {
  flex-shrink: 0;
  width: 40%;
}
@media (max-width: 1024px) {
  .topReason-resultsText {
    width: 100%;
  }
}

.topReason-image {
  flex: 1;
  aspect-ratio: 5/3;
  border-radius: 10px;
  overflow: hidden;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .topReason-image {
    width: 100%;
  }
}
.topReason-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topReason-label {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 16px;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .topReason-label {
    font-size: 2rem;
    letter-spacing: 10px;
  }
}

.topReason-number {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .topReason-number {
    font-size: 2.4rem;
  }
}

.topReason-num {
  font-family: "Outfit", sans-serif;
  font-weight: 100;
  font-size: 17.15rem;
  letter-spacing: -8px;
  line-height: 1;
}
@media (max-width: 480px) {
  .topReason-num {
    font-size: 10rem;
    letter-spacing: -4px;
  }
}

.topReason-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.85);
}

.topReason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .topReason-grid {
    grid-template-columns: 1fr;
  }
}

.topReason-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
}

.topReason-cardHeader {
  position: relative;
  margin-bottom: 24px;
}

.topReason-cardNum {
  font-family: "Outfit", sans-serif;
  font-size: 8rem;
  font-weight: 100;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  display: block;
  margin-bottom: -30px;
}
@media (max-width: 480px) {
  .topReason-cardNum {
    font-size: 6rem;
    margin-bottom: -22px;
  }
}

.topReason-cardIcon {
  position: relative;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.topReason-cardIcon .material-symbols-outlined {
  font-size: 4.2rem;
  color: #fff;
}

.topReason-cardTitle {
  font-size: 1.84rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 20px;
}

.topReason-cardDesc {
  font-size: 1.44rem;
  font-weight: 350;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.topResults {
  position: relative;
  padding: 120px 0;
  z-index: 2;
}

.topResults-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .topResults-content {
    flex-direction: column;
  }
}

.topResults-text {
  flex: 1;
}

.topResults-label {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 16px;
  color: #fff;
  margin-bottom: 16px;
}

.topResults-number {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 30px;
}

.topResults-num {
  font-family: "Outfit", sans-serif;
  font-weight: 100;
  font-size: 17.15rem;
  letter-spacing: -8px;
  line-height: 1;
}

.topResults-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.85);
}

.topResults-logos {
  display: grid;
  grid-template-columns: repeat(3, 130px);
  gap: 20px 38px;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
}

.topResults-logoItem {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topResults-logoItem img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.topCase {
  position: relative;
  padding: 120px 0;
  z-index: 2;
}
@media (max-width: 1024px) {
  .topCase {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .topCase {
    padding: 60px 0;
  }
}
.topCase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.topCase-grid {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .topCase-grid {
    grid-template-columns: 1fr;
  }
}

.topFaq {
  position: relative;
  padding: 120px 0;
  z-index: 2;
}
@media (max-width: 1024px) {
  .topFaq {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .topFaq {
    padding: 60px 0;
  }
}

.topFaq-list {
  width: 90%;
  margin: 0 auto 50px;
}

.topNews {
  position: relative;
  padding: 120px 0;
  z-index: 2;
  width: 95%;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.topNews .sectionHeader {
  width: auto;
  max-width: none;
  margin-left: 5%;
  margin-right: 5%;
}
@media (max-width: 1024px) {
  .topNews {
    padding: 80px 0;
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .topNews {
    padding: 60px 0;
    border-radius: 12px;
  }
}

.topNews-slider {
  margin: 0 0 100px;
  padding-left: 5%;
  overflow: hidden;
}

.topNews-sliderTrack {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.topNews-slider .newsCard {
  flex: 0 0 calc(30% - 16px);
}
@media (max-width: 1024px) {
  .topNews-slider .newsCard {
    flex: 0 0 calc(45% - 12px);
  }
}
@media (max-width: 480px) {
  .topNews-slider .newsCard {
    flex: 0 0 85%;
  }
}

.topNews-sliderControls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  padding-right: 5%;
}

.topNews-sliderBtn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.topNews-sliderBtn .material-symbols-outlined {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.6);
}
.topNews-sliderBtn:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.3);
}

.topNews-sliderProgressWrap {
  flex: 1;
  margin-left: 16px;
}

.topNews-sliderLabel {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 8px;
}

.topNews-sliderProgress {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.topNews-sliderProgressBar {
  height: 100%;
  background: #2196d0;
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.topNews-list {
  margin: 0 5% 40px;
}

.serviceDetail {
  position: relative;
}

.serviceDetail-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .serviceDetail-hero {
    padding: 140px 0 60px;
  }
}
@media (max-width: 480px) {
  .serviceDetail-hero {
    padding: 120px 0 40px;
  }
}

.serviceDetail-heroInner {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1024px) {
  .serviceDetail-heroInner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }
}

.serviceDetail-heroText {
  flex: 1;
  min-width: 0;
}

.serviceDetail-title {
  font-size: 4.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .serviceDetail-title {
    font-size: 3.6rem;
  }
}
@media (max-width: 480px) {
  .serviceDetail-title {
    font-size: 2.8rem;
  }
}

.serviceDetail-titleSub {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 12px;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .serviceDetail-titleSub {
    display: block;
    margin-left: 0;
    margin-top: 4px;
    font-size: 1.4rem;
  }
}

.serviceDetail-desc {
  font-size: 1.5rem;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .serviceDetail-desc {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.serviceDetail-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
  max-width: 520px;
}
@media (max-width: 480px) {
  .serviceDetail-cta {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
}

.serviceDetail-heroImageWrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .serviceDetail-heroImageWrap .pageHero-side {
    display: none;
  }
  .serviceDetail-heroImageWrap {
    width: 100%;
    justify-content: center;
  }
}

.serviceDetail-heroImage {
  width: 480px;
  border-radius: 10px;
  overflow: hidden;
}
.serviceDetail-heroImage picture {
  display: block;
}
@media (max-width: 1024px) {
  .serviceDetail-heroImage {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .serviceDetail-heroImage {
    width: 85%;
  }
}

.serviceDetail-heroImg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.serviceDetail-section {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
}
.serviceDetail-section .sectionHeader {
  width: 100%;
  padding: 0 0 0 20px;
  border-left: 3px solid #fff;
}
.serviceDetail-section .sectionHeader .sectionHeader-title {
  font-size: 3.2rem;
}
@media (max-width: 480px) {
  .serviceDetail-section .sectionHeader .sectionHeader-title {
    font-size: 2.4rem;
  }
}
.serviceDetail-section .topCase-grid {
  width: 100%;
}
.serviceDetail-section .topFaq-list {
  width: 100%;
  margin: 0 0 40px;
}
.serviceDetail-section .sectionMore {
  margin-top: 40px;
}
.serviceDetail-section._white {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 80px 60px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .serviceDetail-section._white {
    padding: 60px 40px;
  }
}
@media (max-width: 480px) {
  .serviceDetail-section._white {
    padding: 40px 20px;
    border-radius: 12px;
  }
}
.serviceDetail-section._white .sectionHeader {
  border-left-color: #007cba;
}
.serviceDetail-section._white .sectionHeader-en {
  color: #007cba;
  opacity: 1;
}
.serviceDetail-section._white .sectionHeader-title {
  color: rgba(0, 0, 0, 0.85);
}
.serviceDetail-section._white .serviceDetail-caseLead p {
  color: rgba(0, 0, 0, 0.7);
}

.serviceDetail-caseLead {
  margin-bottom: 40px;
}
.serviceDetail-caseLead p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 2;
  margin-bottom: 16px;
}
.serviceDetail-caseLead p:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .serviceDetail-caseLead {
    margin-bottom: 32px;
  }
  .serviceDetail-caseLead p {
    font-size: 1.4rem;
  }
}

.serviceDetail-content {
  max-width: 1000px;
  padding: 100px 90px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .serviceDetail-content {
    padding: 80px 40px;
  }
}
@media (max-width: 480px) {
  .serviceDetail-content {
    padding: 60px 20px;
  }
}

.serviceList {
  position: relative;
  z-index: 2;
}

.serviceList-grid {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  .serviceList-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .serviceList-grid {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }
}

.caseArchive {
  position: relative;
  z-index: 2;
}

.caseArchive-serviceTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.caseArchive-serviceTab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .caseArchive-serviceTab:hover {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.7);
  }
}
@media (hover: none) {
  .caseArchive-serviceTab:active {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.7);
  }
}
.caseArchive-serviceTab.is-active {
  background: #2196d0;
  color: #fff;
  font-weight: 600;
  border-color: #2196d0;
}
@media (max-width: 480px) {
  .caseArchive-serviceTab {
    padding: 10px 20px;
    font-size: 1.3rem;
  }
}

.caseArchive-serviceTabCount {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.6;
}

.caseArchive-body {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  margin: 0 auto 80px;
  padding: 100px 100px 80px;
}
@media (max-width: 1024px) {
  .caseArchive-body {
    padding: 50px 40px 70px;
  }
}
@media (max-width: 480px) {
  .caseArchive-body {
    padding: 40px 20px 60px;
  }
}

.caseArchive-filter {
  margin-bottom: 50px;
}

.caseArchive-filterHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .caseArchive-filterHeader {
    flex-direction: column;
    gap: 16px;
  }
}

.caseArchive-filterTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000028;
  white-space: nowrap;
}
.caseArchive-filterTitle .material-symbols-outlined {
  font-size: 2.6rem;
  color: #2196d0;
}
@media (max-width: 480px) {
  .caseArchive-filterTitle {
    font-size: 1.8rem;
  }
  .caseArchive-filterTitle .material-symbols-outlined {
    font-size: 2.2rem;
  }
}

.caseArchive-filterNote {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.45);
  margin-left: 30px;
}

.caseArchive-filterGroup {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.caseArchive-filterGroup:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 480px) {
  .caseArchive-filterGroup {
    flex-direction: column;
    gap: 12px;
  }
}

.caseArchive-filterLabel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  min-width: 120px;
  padding-top: 4px;
}
.caseArchive-filterLabel .material-symbols-outlined {
  font-size: 2.2rem;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 480px) {
  .caseArchive-filterLabel {
    min-width: auto;
  }
}

.caseArchive-filterTags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 0;
}

.caseArchive-filterTag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .caseArchive-filterTag:hover {
    border-color: #2196d0;
    color: #2196d0;
  }
}
@media (hover: none) {
  .caseArchive-filterTag:active {
    border-color: #2196d0;
    color: #2196d0;
  }
}
.caseArchive-filterTag.is-active {
  background: #2196d0;
  border-color: #2196d0;
  color: #fff;
}

.caseArchive-filterActions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.caseArchive-filterReset {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}
.caseArchive-filterReset .material-symbols-outlined {
  font-size: 1.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .caseArchive-filterReset:hover {
    color: #2196d0;
  }
}
@media (hover: none) {
  .caseArchive-filterReset:active {
    color: #2196d0;
  }
}

.caseArchive-filterCount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

#js-caseCount {
  display: inline-flex;
  overflow: hidden;
}

.caseCount-digit {
  display: inline-block;
  width: 0.65em;
  height: 1em;
  overflow: hidden;
  font-size: 2rem;
  font-weight: 700;
  color: #2196d0;
  line-height: 1;
  text-align: center;
}

.caseCount-digitInner {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.caseCount-digitInner span {
  display: block;
  height: 1em;
  line-height: 1;
}

.caseArchive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .caseArchive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .caseArchive-grid {
    grid-template-columns: 1fr;
  }
}
.caseArchive-grid.is-hidden {
  display: none;
}

.caseCard.is-hidden {
  display: none;
}

.caseArchive-empty {
  padding: 60px 0;
  text-align: center;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.4);
}
.caseArchive-empty.is-hidden {
  display: none;
}

.faqArchive {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
@media (max-width: 480px) {
  .faqArchive {
    padding-bottom: 60px;
  }
}
.faqArchive .caseArchive-serviceTabs {
  border-bottom: none;
}
.faqArchive .caseArchive-serviceTab {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
@media (hover: hover) and (pointer: fine) {
  .faqArchive .caseArchive-serviceTab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }
}
@media (hover: none) {
  .faqArchive .caseArchive-serviceTab:active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }
}
.faqArchive .caseArchive-serviceTab.is-active {
  background: #fff;
  color: #007cba;
  border-color: #fff;
}

.companyPage {
  position: relative;
  z-index: 2;
}

.companyPage-table {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 120px 0;
  width: 90%;
  margin: 0 auto 80px;
}
@media (max-width: 1024px) {
  .companyPage-table {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .companyPage-table {
    padding: 60px 0;
    border-radius: 14px;
  }
}

.companyPage-tableInner {
  max-width: 1080px;
  width: 85%;
  margin: 0 auto;
}

.companyPage-row {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 28px 0 !important;
  margin-bottom: 0 !important;
}
.companyPage-row::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 160px;
  height: 1px;
  background: #007cba;
}
.companyPage-row .wp-block-column:first-child p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007cba;
}
.companyPage-row .wp-block-column:last-child p {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}
@media (max-width: 480px) {
  .companyPage-row {
    flex-direction: column;
    gap: 8px !important;
    padding: 20px 0 !important;
  }
  .companyPage-row::before {
    width: 100px;
  }
}

.page404 {
  position: relative;
  z-index: 2;
  padding: 200px 0 160px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .page404 {
    padding: 160px 0 100px;
  }
}

.page404-inner {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.page404-code {
  font-family: "Outfit", sans-serif;
  font-size: 14rem;
  font-weight: 100;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  margin-bottom: -20px;
}
@media (max-width: 480px) {
  .page404-code {
    font-size: 8rem;
    margin-bottom: -10px;
  }
}

.page404-title {
  font-size: 3.2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .page404-title {
    font-size: 2.4rem;
  }
}

.page404-desc {
  font-size: 1.5rem;
  font-weight: 350;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.page404-action {
  display: flex;
  justify-content: center;
}

.faqSingle {
  position: relative;
  z-index: 2;
  padding: 180px 0 80px;
}
@media (max-width: 1024px) {
  .faqSingle {
    padding: 140px 0 60px;
  }
}
@media (max-width: 480px) {
  .faqSingle {
    padding: 120px 0 40px;
  }
}

.faqSingle-inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.faqSingle-breadcrumb {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.faqSingle-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: opacity 0.3s;
}
.faqSingle-breadcrumb a:hover {
  opacity: 0.7;
}

.faqSingle-title {
  font-size: 3.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .faqSingle-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}

.faqSingle-answer {
  max-width: 100%;
  width: 100%;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 1024px) {
  .faqSingle-answer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .faqSingle-answer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.faqSingle-related {
  width: 90vw;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-bottom: 48px;
}
.faqSingle-related .topFaq-list {
  width: 100%;
  margin: 0;
}

.faqSingle-relatedTitle {
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 28px;
}

.faqSingle-back {
  text-align: center;
}

.pageSingle {
  position: relative;
  z-index: 2;
}

.pageSingle-content {
  margin-bottom: 80px;
}

.pageSingle-back {
  margin-top: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.newsHero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .newsHero {
    padding: 140px 0 60px;
  }
}
@media (max-width: 480px) {
  .newsHero {
    padding: 120px 0 40px;
  }
}

.newsHero-inner {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1024px) {
  .newsHero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.newsHero-text {
  flex: 1;
  min-width: 0;
}

.newsHero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.newsHero-date {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.newsHero-cat {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsHero-title {
  font-size: 3.6rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .newsHero-title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .newsHero-title {
    font-size: 2.4rem;
  }
}

.newsHero-imageWrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .newsHero-imageWrap {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .newsHero-imageWrap {
    width: 85%;
  }
}

.newsHero-image {
  width: 580px;
  border-radius: 10px;
  overflow: hidden;
}
.newsHero-image picture {
  display: block;
}
.newsHero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .newsHero-image {
    width: 100%;
  }
}

.newsHero-noImage {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsHero-noImage img {
  width: 40%;
  max-width: 160px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.newsSingle-body {
  margin-bottom: 80px;
}

.newsRelated {
  margin-bottom: 80px;
}

.newsRelated-title {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .newsRelated-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}

.newsRelated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .newsRelated-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .newsRelated-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.newsRelated-grid .newsCard-cat {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.newsRelated-grid .newsCard-date {
  color: rgba(255, 255, 255, 0.7);
}
.newsRelated-grid .newsCard-title {
  color: #fff;
}
.newsRelated-grid .newsCard-title span {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
}

.page-contact .pageSingle-content {
  max-width: 780px;
  padding: 60px 80px 80px;
}
@media (max-width: 1024px) {
  .page-contact .pageSingle-content {
    padding: 50px 40px 60px;
  }
}
@media (max-width: 480px) {
  .page-contact .pageSingle-content {
    padding: 30px 20px 50px;
  }
}

.page-contact .snow-monkey-form .smf-item {
  padding: 0;
  margin-bottom: 28px;
}
@media (max-width: 480px) {
  .page-contact .snow-monkey-form .smf-item {
    margin-bottom: 22px;
  }
}
.page-contact .snow-monkey-form .smf-item:last-child {
  margin-bottom: 0;
}
.page-contact .snow-monkey-form .smf-item__col--label {
  padding-bottom: 8px;
}
.page-contact .snow-monkey-form .smf-item__label__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0.02em;
}
.page-contact .snow-monkey-form .smf-item__label__text::after {
  content: "必須";
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: #007cba;
  border-radius: 4px;
  padding: 3px 8px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.page-contact .snow-monkey-form .smf-item.is-optional .smf-item__label__text::after {
  content: "任意";
  background: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.45);
}
.page-contact .snow-monkey-form .smf-text-control__control,
.page-contact .snow-monkey-form .smf-textarea-control__control {
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.85);
  background: #f8f9fb;
  border: 1.5px solid #dde1e8;
  border-radius: 10px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.page-contact .snow-monkey-form .smf-text-control__control::-moz-placeholder, .page-contact .snow-monkey-form .smf-textarea-control__control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.page-contact .snow-monkey-form .smf-text-control__control::placeholder,
.page-contact .snow-monkey-form .smf-textarea-control__control::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.page-contact .snow-monkey-form .smf-text-control__control:focus,
.page-contact .snow-monkey-form .smf-textarea-control__control:focus {
  background: #fff;
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
@media (max-width: 480px) {
  .page-contact .snow-monkey-form .smf-text-control__control,
  .page-contact .snow-monkey-form .smf-textarea-control__control {
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 8px;
  }
}
.page-contact .snow-monkey-form .smf-textarea-control__control {
  min-height: 180px;
  resize: vertical;
}
@media (max-width: 480px) {
  .page-contact .snow-monkey-form .smf-textarea-control__control {
    min-height: 150px;
  }
}
.page-contact .snow-monkey-form [data-invalid="1"] {
  border-color: #e53e3e !important;
  background: #fef5f5;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.08);
}
.page-contact .snow-monkey-form .smf-error-messages {
  font-size: 1.2rem;
  color: #e53e3e;
  margin-top: 6px;
  line-height: 1.5;
}
.page-contact .snow-monkey-form .smf-action {
  margin-top: 44px;
  text-align: center;
}
@media (max-width: 480px) {
  .page-contact .snow-monkey-form .smf-action {
    margin-top: 32px;
  }
}
.page-contact .snow-monkey-form .smf-button-control__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 280px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #053DB2, #018BBA);
  border: none;
  border-radius: 14px;
  padding: 20px 48px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(5, 61, 178, 0.25);
  transition: transform 0.25s, box-shadow 0.25s, background 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .page-contact .snow-monkey-form .smf-button-control__control:hover {
    background: linear-gradient(135deg, #1a5fd4, #1aa0d0);
    box-shadow: 0 8px 32px rgba(5, 61, 178, 0.35);
    transform: translateY(-1px);
  }
}
@media (hover: none) {
  .page-contact .snow-monkey-form .smf-button-control__control:active {
    background: linear-gradient(135deg, #1a5fd4, #1aa0d0);
    box-shadow: 0 8px 32px rgba(5, 61, 178, 0.35);
    transform: translateY(-1px);
  }
}
.page-contact .snow-monkey-form .smf-button-control__control:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(5, 61, 178, 0.2);
}
.page-contact .snow-monkey-form .smf-button-control__control[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width: 480px) {
  .page-contact .snow-monkey-form .smf-button-control__control {
    width: 100%;
    min-width: 0;
    padding: 18px 32px;
    border-radius: 12px;
  }
}
.page-contact .snow-monkey-form .smf-button-control + .smf-button-control .smf-button-control__control {
  background: transparent;
  color: rgba(0, 0, 0, 0.5);
  border: 1.5px solid #dde1e8;
  box-shadow: none;
  min-width: 160px;
}
@media (hover: hover) and (pointer: fine) {
  .page-contact .snow-monkey-form .smf-button-control + .smf-button-control .smf-button-control__control:hover {
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.03);
    transform: none;
    box-shadow: none;
  }
}
@media (hover: none) {
  .page-contact .snow-monkey-form .smf-button-control + .smf-button-control .smf-button-control__control:active {
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.03);
    transform: none;
    box-shadow: none;
  }
}
.page-contact .snow-monkey-form .smf-sending::before {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}
.page-contact .snow-monkey-form .smf-complete-content {
  text-align: center;
  padding: 40px 0;
}
.page-contact .snow-monkey-form .smf-complete-content p {
  font-size: 1.5rem;
  line-height: 2;
  color: rgba(0, 0, 0, 0.7);
}
.page-contact .snow-monkey-form[data-screen=loading] {
  visibility: hidden;
  min-height: 200px;
}

.page-contact .pageSingle-content > p:last-child {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 1.8;
}
.page-contact .pageSingle-content > p:last-child a {
  color: #007cba;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsArchive {
  position: relative;
  z-index: 2;
}

.newsArchive-inner {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 60px 60px 80px;
}
@media (max-width: 1024px) {
  .newsArchive-inner {
    padding: 50px 40px 60px;
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .newsArchive-inner {
    border-radius: 12px;
    padding: 30px 20px 50px;
  }
}

.newsArchive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .newsArchive-filter {
    gap: 8px;
    margin-bottom: 30px;
  }
}

.newsArchive-filterBtn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .newsArchive-filterBtn:hover {
    color: rgba(0, 0, 0, 0.8);
    border-color: #2196d0;
  }
}
@media (hover: none) {
  .newsArchive-filterBtn:active {
    color: rgba(0, 0, 0, 0.8);
    border-color: #2196d0;
  }
}
.newsArchive-filterBtn.is-active {
  color: #fff;
  background: #2196d0;
  border-color: #2196d0;
}
@media (max-width: 480px) {
  .newsArchive-filterBtn {
    padding: 8px 18px;
    font-size: 1.3rem;
  }
}

.newsArchive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
@media (max-width: 1024px) {
  .newsArchive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .newsArchive-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.newsArchive-pagination {
  margin-top: 60px;
}
.newsArchive-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.newsArchive-pagination .page-numbers li {
  margin: 0;
}
.newsArchive-pagination .page-numbers a,
.newsArchive-pagination .page-numbers > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
@media (max-width: 480px) {
  .newsArchive-pagination .page-numbers a,
  .newsArchive-pagination .page-numbers > li > span {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .newsArchive-pagination .page-numbers a:hover {
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.4);
  }
}
@media (hover: none) {
  .newsArchive-pagination .page-numbers a:active {
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.4);
  }
}
.newsArchive-pagination .page-numbers .current {
  background: #007cba;
  border-color: #007cba;
  color: #fff;
}
.newsArchive-pagination .page-numbers .prev,
.newsArchive-pagination .page-numbers .next {
  border: none;
}
.newsArchive-pagination .page-numbers .prev .material-symbols-outlined,
.newsArchive-pagination .page-numbers .next .material-symbols-outlined {
  font-size: 2.2rem;
}
.newsArchive-pagination .page-numbers .dots {
  border: none;
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.newsArchive-empty {
  padding: 80px 0;
  text-align: center;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
}

.footer {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: 1920px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .footer-inner {
    flex-direction: column;
  }
}

.footer-logo a {
  display: block;
  margin-bottom: 20px;
}

.footer-logoImg {
  height: 28px;
  width: auto;
}

.footer-address {
  font-size: 1.31rem;
  font-weight: 350;
  line-height: 2;
  color: #fff;
}

.footer-nav {
  display: flex;
  flex: 1;
}
@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 0;
  }
}

.footer-navCol {
  flex: 1;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 480px) {
  .footer-navCol {
    padding: 16px 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.footer-navCol ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-navCol a {
  font-size: 1.4rem;
  font-weight: 350;
  color: #fff;
  transition: opacity 0.3s;
}
.footer-navCol a:hover {
  opacity: 0.7;
}

.footer-navTitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-navTitle a {
  color: #fff;
  transition: opacity 0.3s;
}
.footer-navTitle a:hover {
  opacity: 0.7;
}

.footer-navSub {
  font-size: 1.2rem;
  opacity: 0.5;
}

.footer-bottom {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.footer-bottomLeft {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 480px) {
  .footer-bottomLeft {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.footer-copy {
  font-size: 1.25rem;
  font-weight: 350;
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 1.25rem;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.6);
  transition: opacity 0.3s;
}
.footer-legal a:hover {
  opacity: 0.7;
}

.footer-parent {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.25rem;
  font-weight: 350;
  color: #fff;
  transition: opacity 0.3s;
}
.footer-parent .material-symbols-outlined {
  font-size: 1.4rem;
  line-height: 1;
}
.footer-parent:hover {
  opacity: 0.7;
}

.ds {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}

.ds-hero {
  padding: 160px 40px 80px;
  text-align: center;
}

.ds-hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 6rem;
  font-weight: 100;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.ds-hero-desc {
  font-size: 1.6rem;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.7);
}

.ds-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.ds-toc {
  background: rgba(8, 41, 100, 0.2);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 80px;
}

.ds-toc-title {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.ds-toc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .ds-toc-list {
    grid-template-columns: 1fr;
  }
}
.ds-toc-list a {
  font-size: 1.4rem;
  color: #2196d0;
  transition: opacity 0.3s;
}
.ds-toc-list a:hover {
  opacity: 0.7;
}

.ds-section {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ds-section-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 40px;
}

.ds-section-sub {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 40px;
  margin-bottom: 20px;
}
.ds-section-sub:first-of-type {
  margin-top: 0;
}

.ds-section-desc {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.ds-colorGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.ds-colorCard {
  background: rgba(8, 41, 100, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.ds-colorCard-swatch {
  height: 80px;
}

.ds-colorCard-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  padding: 12px 12px 0;
}

.ds-colorCard-value {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 12px 12px;
}

.ds-typeList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ds-typeItem {
  background: rgba(8, 41, 100, 0.2);
  border-radius: 10px;
  padding: 24px;
}

.ds-typeItem-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ds-typeItem-sample {
  font-size: 2.4rem;
  color: #fff;
}

.ds-typeScale {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ds-typeScale-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 480px) {
  .ds-typeScale-row {
    flex-direction: column;
    gap: 8px;
  }
}

.ds-typeScale-label {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  width: 180px;
}
@media (max-width: 480px) {
  .ds-typeScale-label {
    width: auto;
  }
}

.ds-typeScale-preview {
  color: #fff;
}

.ds-preview {
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.ds-preview._dark {
  background: #000028;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ds-preview._light {
  background: rgba(255, 255, 255, 0.9);
}

.ds-preview-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ds-preview-row code {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

._light .ds-preview-row code {
  color: #5a6a7a;
  background: rgba(0, 0, 0, 0.06);
}

.ds-spacingTable {
  margin-bottom: 30px;
}
.ds-spacingTable table {
  width: 100%;
  border-collapse: collapse;
}
.ds-spacingTable th,
.ds-spacingTable td {
  text-align: left;
  padding: 12px 16px;
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ds-spacingTable th {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ds-spacingTable td {
  color: #fff;
}
.ds-spacingTable code {
  font-size: 1.3rem;
  color: #2196d0;
}

.sectionHeader {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 60px;
}
.sectionHeader._center {
  text-align: center;
}
.sectionHeader._narrow {
  margin-bottom: 50px;
}
.sectionHeader._noMargin {
  margin-bottom: 0;
}
.sectionHeader._row .sectionHeader-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .sectionHeader._row .sectionHeader-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.sectionHeader._row .sectionHeader-heading {
  flex-shrink: 0;
}
.sectionHeader._row .sectionHeader-lead {
  margin-top: 0;
  margin-left: 30px;
}
@media (max-width: 1024px) {
  .sectionHeader._row .sectionHeader-lead {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .sectionHeader._row .sectionHeader-lead {
    padding-top: 8px;
  }
}

.sectionHeader-en {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
  opacity: 0.5;
}
._light .sectionHeader-en {
  color: #007cba;
}

.sectionHeader-title {
  font-size: 4.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .sectionHeader-title {
    font-size: 3.2rem;
  }
}
._light .sectionHeader-title {
  color: #007cba;
}

.sectionHeader-lead {
  font-size: 1.52rem;
  font-weight: 350;
  color: #fff;
  margin-top: 16px;
}

.sectionMore {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 18px 44px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.15);
  }
  .btn:hover span[data-text]::before {
    transform: translateY(-100%);
  }
  .btn:hover span[data-text]::after {
    transform: translateY(0);
  }
}
@media (hover: none) {
  .btn:active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.15);
  }
  .btn:active span[data-text]::before {
    transform: translateY(-100%);
  }
  .btn:active span[data-text]::after {
    transform: translateY(0);
  }
}
.btn:active {
  background: rgba(255, 255, 255, 0.08);
}
.btn span[data-text] {
  display: block;
  position: relative;
  overflow: hidden;
  color: transparent;
}
.btn span[data-text]::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn span[data-text]::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn .material-symbols-outlined {
  font-size: 2rem;
  line-height: 1;
}
.btn._sm {
  font-size: 1.4rem;
  padding: 14px 28px;
  gap: 8px;
  border-radius: 10px;
}
.btn._sm .material-symbols-outlined {
  font-size: 1.6rem;
}
.btn._primary {
  background: linear-gradient(135deg, #053DB2, #018BBA);
  border-color: rgba(5, 61, 178, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 4px 20px rgba(5, 61, 178, 0.25);
}
@media (hover: hover) and (pointer: fine) {
  .btn._primary:hover {
    background: linear-gradient(135deg, #1a5fd4, #1aa0d0);
    border-color: rgba(5, 61, 178, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 8px 32px rgba(5, 61, 178, 0.35);
  }
}
@media (hover: none) {
  .btn._primary:active {
    background: linear-gradient(135deg, #1a5fd4, #1aa0d0);
    border-color: rgba(5, 61, 178, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 8px 32px rgba(5, 61, 178, 0.35);
  }
}
.btn._primary:active {
  background: linear-gradient(135deg, #042f8e, #01749a);
}

.pageHero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .pageHero {
    padding: 140px 0 60px;
  }
}
@media (max-width: 480px) {
  .pageHero {
    padding: 120px 0 40px;
  }
}

.pageHero-scrollText {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: visible;
  z-index: 0;
  pointer-events: none;
}

.pageHero-scrollTextTrack {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: pageHeroScroll 40s linear infinite;
}
.pageHero-scrollTextTrack span {
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(8rem, 14vw, 30rem);
  font-weight: 100;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.04;
  white-space: nowrap;
  line-height: 1;
  padding-right: 0.3em;
}

@keyframes pageHeroScroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.pageHero-inner {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1024px) {
  .pageHero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.pageHero-text {
  flex-shrink: 0;
}

.pageHero-title {
  font-size: 6rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .pageHero-title {
    font-size: 4rem;
  }
}

.pageHero-lead {
  font-size: 1.6rem;
  font-weight: 350;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

.pageHero-imageWrap {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
@media (max-width: 1024px) {
  .pageHero-imageWrap {
    width: 70%;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .pageHero-imageWrap {
    width: 85%;
  }
}

.pageHero-image {
  max-width: 480px;
  border-radius: 10px;
  overflow: hidden;
}
.pageHero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.pageHero-side {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  writing-mode: vertical-rl;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .pageHero-side {
    font-size: 0.8rem;
  }
}

.caseCard {
  position: relative;
  display: block;
}

.caseCard-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 10px;
}
.caseCard-image picture {
  display: block;
}
.caseCard-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.caseCard-serviceLabel {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  display: inline-block;
  background: #082964;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1.4;
}

.caseCard-noImage {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caseCard-noImage img {
  width: 50%;
  max-width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.caseCard-risk {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.8);
  color: #007cba;
  font-size: 1.4rem;
  padding: 2px 12px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.caseCard-risk .material-symbols-outlined {
  font-size: 1.6rem;
  font-variation-settings: "wght" 300;
}

.caseCard-body {
  padding-top: 4px;
}

.caseCard-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.caseCard-desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
}

.caseCard-metaList {
  margin-top: 20px;
}

.caseCard-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.caseCard-meta .material-symbols-outlined {
  font-size: 1.6rem;
  font-variation-settings: "wght" 300;
  opacity: 0.5;
  flex-shrink: 0;
}
.caseCard-meta:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

._light .caseCard-risk {
  background: rgba(0, 0, 0, 0.06);
  color: #2196d0;
}

._light .caseCard-title {
  color: #000028;
}

._light .caseCard-desc {
  color: rgba(0, 0, 0, 0.6);
}

._light .caseCard-meta {
  color: rgba(0, 0, 0, 0.6);
  border-top-color: rgba(0, 0, 0, 0.08);
}
._light .caseCard-meta .material-symbols-outlined {
  font-size: 2rem;
  color: #2196d0;
  opacity: 1;
}
._light .caseCard-meta:last-child {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.faqItem {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
}
.faqItem:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faqItem:hover {
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 480px) {
  .faqItem {
    gap: 14px;
    padding: 24px 0;
  }
}

.faqItem-num {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .faqItem-num {
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}

.faqItem-body {
  flex: 1;
  min-width: 0;
}

.faqItem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.faqItem-tag {
  font-size: 1rem;
  line-height: 1;
  color: #2196d0;
  background: #fff;
  border-radius: 3px;
  padding: 4px 8px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.faqItem-questionText {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}
.faqItem-questionText span {
  padding-bottom: 2px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
}
.faqItem:hover .faqItem-questionText span {
  background-size: 100% 1px;
}
@media (max-width: 480px) {
  .faqItem-questionText {
    font-size: 1.4rem;
  }
}

.faqItem-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.faqItem-arrow .material-symbols-outlined {
  font-size: 1.8rem;
  color: #fff;
}
.faqItem:hover .faqItem-arrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
  .faqItem-arrow {
    width: 34px;
    height: 34px;
  }
  .faqItem-arrow .material-symbols-outlined {
    font-size: 1.6rem;
  }
}

.newsCard {
  display: block;
  text-decoration: none;
  color: inherit;
}

.newsCard-image {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}
.newsCard-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.newsCard-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.newsCard:hover .newsCard-image img {
  transform: scale(1.05);
}

.newsCard-noImage {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsCard-noImage img {
  width: 40%;
  max-width: 140px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.newsCard-noteLabel {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.newsCard-blankIcon {
  font-size: 1.6rem;
  vertical-align: middle;
  margin-right: 4px;
  color: rgba(0, 0, 0, 0.5);
}

.newsCard-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.newsCard-cat {
  display: inline-block;
  background: #fff;
  border: none;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  padding: 3px 12px;
  border-radius: 100px;
}

.newsCard-date {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.5);
}

.newsCard-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
}
.newsCard-title > span {
  padding-bottom: 2px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
}
.newsCard:hover .newsCard-title > span {
  background-size: 100% 1px;
}

.newsList-filter {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
  padding-bottom: 16px;
}
@media (max-width: 480px) {
  .newsList-filter {
    gap: 16px;
    flex-wrap: wrap;
  }
}

.newsList-filterBtn {
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: color 0.3s;
}
.newsList-filterBtn:hover {
  color: rgba(0, 0, 0, 0.8);
}
.newsList-filterBtn.is-active {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.newsList-filterBtn.is-active::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #053DB2;
  margin-right: 6px;
  vertical-align: middle;
}

.newsList-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.newsList-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.3s;
}
.newsList-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.newsList-item.is-hidden {
  display: none;
}
.newsList-item:hover {
  background: linear-gradient(135deg, #053DB2, #018BBA);
}
.newsList-item:hover .newsList-link {
  color: #fff;
}
.newsList-item:hover .newsList-date {
  color: rgba(255, 255, 255, 0.7);
}
.newsList-item:hover .newsList-cat {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.newsList-item:hover .newsList-title {
  color: #fff;
}

.newsList-link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 480px) {
  .newsList-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0px;
  }
}

.newsList-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.newsList-date {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
  transition: color 0.3s;
}

.newsList-cat {
  display: inline-block;
  background: #fff;
  border: none;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.6);
  padding: 2px 10px;
  border-radius: 100px;
  flex-shrink: 0;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.newsList-cat._note {
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.newsList-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 0;
  transition: color 0.3s;
}

.cta {
  position: relative;
  padding: 120px 40px;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  width: 95%;
  margin: 2.5% auto 0;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .cta {
    padding: 80px 40px;
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .cta {
    padding: 60px 20px;
    border-radius: 12px;
  }
}

.cta-scrollText {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: visible;
  pointer-events: none;
}

.cta-scrollTextTrack {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: ctaScrollText 80s linear infinite;
}
.cta-scrollTextTrack span {
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(6rem, 12vw, 20rem);
  font-weight: 100;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.04;
  white-space: nowrap;
  line-height: 1;
  padding-right: 0.3em;
}

@keyframes ctaScrollText {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.cta-title {
  position: relative;
  font-size: 4.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cta-title {
    font-size: 3.2rem;
  }
}

.cta-desc {
  position: relative;
  font-size: 1.6rem;
  font-weight: 350;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-btns {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

.cta-phone {
  position: relative;
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 24px rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  padding: 32px 56px;
}
@media (max-width: 480px) {
  .cta-phone {
    padding: 24px 32px;
  }
}

.cta-phoneLabel {
  font-size: 1.41rem;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.cta-phoneNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 2.56rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}
.cta-phoneNumber .material-symbols-outlined {
  font-size: 2.4rem;
  line-height: 1;
}
.cta-phoneNumber a {
  color: #fff;
}

.cta-phoneTime {
  font-size: 1.25rem;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.\!visible{
  visibility: visible !important;
}
.visible{
  visibility: visible;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.block{
  display: block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.flex-shrink{
  flex-shrink: 1;
}
.border-collapse{
  border-collapse: collapse;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize{
  resize: both;
}
.flex-wrap{
  flex-wrap: wrap;
}
.border{
  border-width: 1px;
}
.uppercase{
  text-transform: uppercase;
}
.italic{
  font-style: italic;
}
.underline{
  text-decoration-line: underline;
}
.outline{
  outline-style: solid;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter{
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.wrap-\[1200px\]{
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.wrap-\[960px\]{
  max-width: 960px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
