@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

body {
  border-top: initial;
  font-family: 'noto sans jp', Verdana, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

/* 共通表示制御 */
.sp-only {
  display: none;
}

.pc-only {
  display: inline-flex;
}


/* ==========================================================
   INDEX (Top Page Body) Styles
========================================================== */

/* レイアウト・共通パーツ */
.section-container,
.nav-grid,
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-container {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 30px;
}

.contents_header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contents_header_label {
  font-weight: bold;
}

.contents_header_label_en {
  font-size: 3em;
  font-weight: bold;
}

/* メインビジュアル（スライダー） */
.hero-section {
  position: relative;
  width: 100%;
  height: 480px;
  margin-top: 75px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0099e6;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transform: scale(1.1);
  transition: opacity 2s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 3;
  transform: scale(1.0);
  transition: transform 8s linear, opacity 2s ease-in-out;
}

.hero-slide.is-prev {
  opacity: 0;
  z-index: 2;
  transform: scale(1.0);
  transition: opacity 3s ease-in-out, transform 0s;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

@keyframes heroZoomPan {
  0% {
    transform: scale(1.0) translateX(0);
  }
  100% {
    transform: scale(1.15) translateX(2%);
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  z-index: 2;
}

.hero-title {
  color: #fff;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-section .hero-title {
  display: block;
  opacity: 1;
}

.hero-section .hero-title span {
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i) * 0.05s + 0.05s);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* サービスカード */
.grid-flex {
  display: flex;
  gap: 20px;
  height: 280px;
}

.media-card {
  position: relative;
  overflow: hidden;
  background-color: #eee;
  color: #fff;
  display: block;
}

.media-card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.media-card:hover>img {
  transform: scale(1.05);
}

.media-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.service-card .card-title {
  padding: 0.5em 1em;
  font-size: 22px;
}

.service-card .more-btn {
  position: absolute;
  bottom: 2em;
  right: 1em;
}

.white-arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 1px;
  top: 8px;
  background-color: #fff;
}

.white-arrow::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
}

.service-card:hover .white-arrow {
  animation: arrowEffect 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 下部ナビゲーションタイル */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
  min-height: 180px;
}

.nav-tile .overlay {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav-icon img {
  width: 48px;
  height: auto;
}

.nav-tile-title {
  width: 100%;
  max-width: 100%;
  margin-top: 0.5em;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

/* ニュース一覧 */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  display: flex;
  align-items: baseline;
  padding: 15px 30px;
  border-bottom: 1px dotted #ccc;
  font-size: 14px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.news-item.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--i) * 0.3s + 0.1s);
}

.news-category {
  display: inline-block;
  margin: 0 11px;
  padding: 0;
  font-size: 0 !important;
  border: 1px solid currentColor;
  vertical-align: middle;
  line-height: 1.5;
  flex-shrink: 0;
  width: 90px;
  text-align: center;
  box-sizing: border-box;
}

.news-category::before {
  font-size: 11px;
}

.news-category.ir::before {
  content: "IR";
}

.news-category.notice::before {
  content: "お知らせ";
}

.news-category.pr::before {
  content: "プレスリリース";
}

.news-title {
  flex: 1;
}

.news-title a {
  color: #333;
  text-decoration: none;
}

.news-title a:hover {
  text-decoration: underline;
}

.news-more {
  text-align: right;
  margin-top: 15px;
}

.news-more a {
  color: #333;
  text-decoration: none;
}

.more-btn,
.news-more a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.news_arrow {
  position: relative;
  display: inline-block;
  top: 1px;
  width: 24px;
  height: 1px;
  background-color: currentColor;
  margin-left: 0.5em;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.news_arrow::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: none;
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
}

@keyframes arrowEffect {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 0;
    transform: translateX(6px);
  }
  31% {
    opacity: 0;
    transform: translateX(-6px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-card:hover .news_arrow,
.news-more a:hover .news_arrow {
  animation: arrowEffect 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 実績セクション（カウントアップ） & 事例紹介 */
.stats-section {
  background-color: #f5f5f5;
  padding: 10px 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}

.stats-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.stats-number-wrap {
  display: flex;
  align-items: baseline;
  align-self: flex-end;
}

.stats-unit {
  font-size: 18px;
  font-weight: bold;
  margin-left: 8px;
}

.stats-number {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 92px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  font-kerning: none;
  letter-spacing: 0;
}

.stats-number span {
  display: inline-block;
  width: 44px;
  text-align: center;
}

.stats-number span.is-comma {
  width: 10px;
  font-size: 0.8em;
}

.case-right {
  width: 60%;
}

@media screen and (min-width: 769px) {
  .stats-container {
    gap: 0;
  }
  .stats-left {
    padding-right: 30px;
    box-sizing: border-box;
  }
  .case-right {
    padding-left: 30px;
    border-left: 1px solid #ccc;
    box-sizing: border-box;
  }
}

.case-header {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.case-header span {
  font-size: 14px;
  font-weight: normal;
}

.case-card {
  display: flex;
  background: #fff;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  gap: 20px;
  overflow: hidden;
  align-items: stretch;
  text-decoration: none;
  transition: opacity 0.3s;
}

.case-card:hover {
  text-decoration: none;
}

.case-img {
  width: 35%;
  height: auto;
  min-height: 140px;
  margin: -10px 0 -10px -10px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.case-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-content h4 {
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

.case-service {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #666;
}

.case-text {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* ブランドロゴ（無限スクロール） */
.brand-logos-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background-color: #f5f5f5;
}

.brand-logos-track {
  display: flex;
  width: max-content;
  animation: scroll 70s linear infinite;
}

.brand-logos-track img {
  height: 60px;
  margin: 0 16px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 768px以下のモバイルレイアウト (INDEX部分のみ) */
@media (max-width: 768px) {
  .hero-section {
    height: 300px;
    margin-top: 60px;
  }

  .hero-title {
    font-size: 24px;
    text-align: left;
    line-height: 1.6;
  }

  .grid-flex {
    flex-direction: column;
    height: 420px;
  }

  .service-card {
    height: 200px;
  }

  .section-container {
    padding: 0;
  }

  .news-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    padding: 12px;
  }

  .news-date,
  .news-category {
    display: inline-block;
    flex-shrink: 0;
  }

  .news-date {
    min-width: 85px;
  }

  .news-category {
    white-space: nowrap;
  }

  .news-title {
    width: 100%;
    flex-basis: 100%;
    margin-top: 8px;
    padding-left: 2px;
    flex-shrink: 0;
  }

  .news_arrow {
    width: 30px;
  }

  .service-card .card-title {
    font-size: 20px;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .stats-left {
    width: 90%;
    margin-bottom: 18px;
  }

  .stats-number {
    font-size: 72px;
  }

  .stats-number span {
    width: 34px;
  }

  .stats-number span.is-comma {
    width: 8px;
  }

  .case-right {
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #ccc;
    padding-top: 30px;
  }

  .case-card {
    flex-direction: column;
    padding: 15px;
  }

  .case-img {
    width: calc(100% + 30px);
    height: 200px;
    margin: -15px -15px 0 -15px;
  }

  .nav-grid {
    grid-template-columns: 1fr;
  }

  .nav-tile-title {
    font-size: 20px;
  }

  .nav-icon img {
    width: 48px;
    height: auto;
  }

  .brand-logos-track img {
    height: 40px;
  }
}


/* ==========================================================
   HEADER & FOOTER MENU Styles
========================================================== */

/* ヘッダー全体構造 */
header {
  width: 100%;
  padding-top: 1em;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
}

.dropdown-inner,
.footer-cols {
  max-width: 1000px;
  margin: 0 auto;
}

.header-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 6px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-lang {
  position: absolute;
  top: -10px;
  right: 88px;
  font-size: 12px;
  font-weight: bold;
}

.header-nav>ul>li.has-dropdown {
  position: static;
  padding-bottom: 30px;
  margin-bottom: -30px;
}

.header-nav>ul>li.has-dropdown>span.nav-heading,
.header-nav a,
.dropdown-links a {
  position: relative;
  display: inline-block;
}

/* メガドロップダウンメニュー */
.dropdown-menu {
  position: absolute;
  top: 61px;
  left: 0;
  width: 100%;
  background: #333;
  z-index: 999;
  padding: 0;
  box-sizing: border-box;
  box-shadow: 0 0 0 100vmax #333;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 -100vmax 100% -100vmax);
  pointer-events: none;
  transition: opacity 0.4s ease 0.3s, clip-path 0.4s ease 0.3s, visibility 0.4s ease 0.3s;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 -100vmax 0 -100vmax);
  pointer-events: auto;
}

.has-dropdown:hover .dropdown-menu {
  transition-delay: 0s;
}

.dropdown-inner {
  padding: 0 15px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.header-nav ul,
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-links {
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(8px, 6vw - 36px, 24px);
  height: 100%;
  list-style: none;
}

.dropdown-links li {
  margin: 0;
  display: flex;
  align-items: center;
}

.header-nav li {
  display: flex;
  align-items: center;
}

.dropdown-links a {
  padding: 4px 0;
  color: #fff !important;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
}

.dropdown-links li::after,
.dropdown-links li::before {
  content: none;
}

.dropdown-links li:last-child {
  margin-right: 0;
}

/* ホバー時の赤線アニメーション効果 */
.dropdown-links a::after,
.header-nav span.nav-heading::after,
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d80b18;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s ease-in-out;
}

.dropdown-links a:hover::after,
.header-nav span.nav-heading:hover::after,
.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left top;
}

.header-nav a.header-contact-btn::after,
.header-lang a::after,
.header-nav span.nav-heading a::after {
  display: none;
}

.header-nav a.header-contact-btn {
  margin-bottom: 4px;
  padding: 4px 16px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  color: #fff;
  background-color: #d80b18;
  border-radius: 999px;
  box-sizing: border-box;
  transition: background-color 0.3s, opacity 0.3s;
}

.header-nav a.header-contact-btn:hover {
  background-color: #b00813;
  color: #fff;
  text-decoration: none;
}

.dropdown-links a:hover {
  opacity: 1;
}

/* ハンバーガーメニューボタン */
.hamburger-btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1200;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.hamburger-btn span:nth-child(1) {
  top: 0;
}

.hamburger-btn span:nth-child(2) {
  top: 11px;
}

.hamburger-btn span:nth-child(3) {
  bottom: 0;
}

.nav-toggle:checked~.hamburger-btn span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.nav-toggle:checked~.hamburger-btn span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked~.hamburger-btn span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* ヘッダーロゴ類 */
.header-logo img {
  width: 120px;
}

.header-jpx-logo {
  flex-shrink: 0;
}

.header-jpx-logo img {
  width: 42px;
  height: auto;
  margin: 4px;
  display: block;
}

.header-nav>ul {
  display: flex;
  align-items: center;
}

.header-nav>ul>li {
  margin-left: 16px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}

/* PC用ナビゲーションレイアウト */
@media screen and (min-width: 769px) {
  .header-inner {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    min-width: 0;
  }

  .header-nav>ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }

  .header-nav>ul>li {
    margin-left: 0;
    flex: 0 0 auto;
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-size: 14px;
    padding: 0 clamp(6px, 4.1vw - 25px, 16px);
    box-sizing: border-box;
  }

  .header-nav>ul>li.sp-only {
    display: none !important;
  }

  .header-nav>ul>li:nth-child(-n+6) {
    background-image: linear-gradient(#ccc, #ccc);
    background-size: 1px 14px;
    background-repeat: no-repeat;
    background-position: right 0 top 7px !important;
    margin-right: 0;
  }

  .header-nav>ul>li:last-child {
    padding-right: 0;
    padding-left: clamp(6px, 4.1vw - 25px, 16px);
  }

  /* 不要な擬似要素（線）をクリア */
  .header-nav>ul>li::after {
    display: none !important;
  }

  .header-nav a.header-contact-btn {
    margin-bottom: 0;
  }
}

.header-lang a {
  text-decoration: none;
  color: #333;
}

.header-nav span.nav-heading,
.header-nav a:not(.header-contact-btn) {
  text-decoration: none;
  color: #333;
  padding-bottom: 4px;
  /* 赤線のための余白 */
  cursor: pointer;
  white-space: nowrap;
}

.header-nav span.nav-heading a {
  padding-bottom: 0;
}

.header-nav span.nav-heading:hover,
.header-nav a:hover {
  color: #333;
}

/* フッター全体 */
.main-footer {
  background-color: #595959;
  color: #fff;
  padding: 30px 0 16px 0;
  font-size: 14px;
}

.footer-cols {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
}

.footer-col {
  width: 30%;
}

.footer-col h4 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #777;
  padding-bottom: 2px;
}

.footer-col h4:first-child {
  margin-top: 0;
}

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

.footer-col li {
  margin-bottom: 0.5em;
  padding-left: 1em;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-bottom-links {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
}

.footer-bottom-links a {
  color: #ddd;
  margin: 0 10px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.copyright {
  text-align: center;
  padding: 10px 0;
  font-size: 11px;
  color: #aaa;
  background-color: #444;
}

/* ページトップに戻るボタン (footer_menu.html 内) */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 9999;
  text-decoration: none;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.pagetop-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(2px) rotate(-45deg);
}

/* 表示制御 (Header/Footer関連) */
.dropdown-menu .sp-only {
  display: none !important;
}

.footer-col .sp-only {
  display: none !important;
}

/* 768px以下のモバイルレイアウト (Header & Footerのみ) */
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block;
  }

  header {
    padding: 0;
  }

  .header-inner {
    padding: 10px 15px;
  }

  .header-jpx-logo {
    margin-right: 40px;
  }

  .header-lang {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .header-nav>ul>li.has-dropdown {
    padding: 0;
    margin-bottom: 0;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transition: right 0.3s ease;
    display: block;
    padding-top: 60px;
    overflow-y: auto;
  }

  .nav-toggle:checked~.header-nav {
    right: 0;
  }

  body:has(.nav-toggle:checked) {
    overflow: hidden;
  }

  .header-nav>ul {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .header-nav>ul>li {
    display: block;
    width: 100%;
    margin: 0 !important;
    border-bottom: 1px solid #eee;
    position: relative;
    height: auto;
  }

  .header-nav>ul>li>span.nav-heading,
  .header-nav>ul>li>a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px !important;
    font-size: 16px;
    font-weight: bold;
    color: #333 !important;
    text-decoration: none;
    background-color: #fff;
    min-height: 56px;
    cursor: pointer;
  }

  .header-nav>ul>li>span.nav-heading {
    padding: 0 !important;
    position: relative;
  }

  .header-nav>ul>li>a.header-contact-btn {
    justify-content: center !important;
    background-color: #d80b18 !important;
    color: #fff !important;
    font-size: 16px !important;
    padding: 6px 0 !important;
    margin: 16px auto !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 999px !important;
    width: 180px !important;
  }

  .header-nav>ul>li.nav-item-english-mobile>a {
    justify-content: center !important;
    color: #333 !important;
    background-color: transparent !important;
  }

  .header-nav span.nav-heading::after,
  .header-nav a::after,
  .header-nav .dropdown-menu .dropdown-links li a::after {
    display: none;
    content: none;
  }

  .header-nav>ul>li.has-dropdown>span.nav-heading::before {
    content: "▼";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 10px;
    color: #999;
    font-weight: normal;
    visibility: visible;
    opacity: 1;
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .header-nav>ul>li.has-dropdown>.acc-toggle:checked+span.nav-heading::before {
    transform: translateY(-50%) rotate(180deg);
  }

  .header-nav>ul>li.has-dropdown>span.nav-heading>label.sp-only {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 4px 20px;
    box-sizing: border-box;
    cursor: pointer;
  }

  .dropdown-menu {
    display: block;
    max-height: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    opacity: 1;
    visibility: visible;
    clip-path: none;
    box-shadow: none;
    padding: 0;
    transform: none;
    z-index: 1;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .acc-toggle:checked~.dropdown-menu {
    max-height: 500px;
  }

  .dropdown-inner {
    width: 100%;
    padding: 0;
    height: auto;
  }

  .header-nav .dropdown-links {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .header-nav .dropdown-links li {
    display: block;
    width: 100%;
    height: auto;
    align-items: stretch;
    border-bottom: 1px solid #e0e0e0;
    border-top: none;
  }

  .header-nav .dropdown-menu .dropdown-links li a {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 15px 15px 15px 30px !important;
    font-size: 14px;
    font-weight: normal;
    color: #555;
    background-color: #595959;
    text-align: left;
    box-sizing: border-box;
    position: relative;
  }

  .header-nav .dropdown-links li a::before {
    content: none;
  }

  .dropdown-menu .sp-only,
  .footer-col .sp-only {
    display: block !important;
  }

  .footer-cols {
    flex-direction: column;
  }

  .footer-col {
    width: 100%;
    border-bottom: 1px solid #555;
  }

  .footer-col h4 {
    margin-top: 0;
    padding: 0;
    display: block;
    position: relative;
  }

  .footer-col h4 label {
    display: block;
    padding: 12px 15px;
    cursor: pointer;
  }

  .footer-col h4 a {
    pointer-events: none;
    color: inherit;
  }

  .footer-col h4::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 10px;
    color: #aaa;
    transition: transform 0.3s ease;
    display: inline-block;
    pointer-events: none;
  }

  .ft-toggle:checked+h4::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .footer-col ul {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .ft-toggle:checked+h4+ul {
    max-height: 500px;
    padding: 10px 15px;
  }

  .footer-col li {
    margin-bottom: 1em;
  }

  .pagetop {
    display: none;
  }

  .footer-bottom-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding-left: 46px;
    text-align: left;
  }

  .footer-bottom-links a {
    margin: 0;
  }
}