/*
Theme Name: Template Appkey
Theme URI: https://example.com/template-appkey
Author: Appkey
Author URI: https://example.com
Description: Custom WordPress template for Appkey
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: template-appkey
*/

/* Responsive Enhancement Added — Non-destructive scaling version (vw-based) */

/* ========================================
   CSS VARIABLES & GLOBAL SETTINGS
   ======================================== */
:root {
  --vw-with-scrollbar: 100vw;
  --header-bg: #000;
  --text-color: #fff;
  --accent-color: #fff;
  --yellow-accent: #ffdd57;
  --container-width: 1724px;
  --font-english: "Roboto Condensed", "Arial Black", "Helvetica Neue", Arial,
    sans-serif;
  --font-japanese: "Noto Sans JP", "メイリオ", "Meiryo",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  --transition-default: all 0.3s ease;
  --border-radius: 4px;
}

/* Utility Style */
.d-iblock { display: inline-block; }
@media (max-width: 1024px) {
  .hidden-sp { display: none !important; }
}
@media (min-width: 1025px) {
  .hidden-pc { display: none !important; }
}

/* Language-specific Font Classes */
.font-en {
  font-family: var(--font-english);
}

.font-jp {
  font-family: var(--font-japanese);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-japanese);
  line-height: 1.6;
  overflow-x: hidden !important;
  position: relative !important;
  max-width: 100% !important;
}

body.menu-open {
  overflow: hidden;
}

/* ========================================
   HEADER STYLES
   ======================================== */
.site-header {
  background: var(--header-bg) !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  padding: calc(20 * var(--vw-with-scrollbar) / 1920) 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header-container {
  width: 1761px;
  width: calc(1761 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Site Logo */
.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 28px;
  font-size: calc(28 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  display: block;
  transition: var(--transition-default);
}

.site-logo a:hover {
  opacity: 0.8;
}

/* Header Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 60px;
  gap: calc(60 * var(--vw-with-scrollbar) / 1920);
}

.header-right .contact-entry {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition-default);
  display: block;
}

.header-right .contact-entry-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.header-right .contact-entry-main {
  display: flex;
  align-items: center;
  font-family: var(--font-english);
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 1px;
  letter-spacing: calc(1 * var(--vw-with-scrollbar) / 1920);
  font-style: italic;
  position: relative;
  padding-bottom: 0;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-underline-offset: calc(2 * var(--vw-with-scrollbar) / 1920);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.header-right .contact-entry:hover .contact-entry-main {
  color: #ffdd57;
  text-decoration-color: #ffdd57;
}

.header-right .contact-entry-jp {
  font-size: clamp(12px, 1.5vw, 16px);
  font-style: normal;
  font-weight: bold;
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  white-space: nowrap;
  margin-top: -15px;
  margin-top: calc(-15 * var(--vw-with-scrollbar) / 1920);
  transition: color 0.3s ease;
}

.header-right .contact-entry:hover .contact-entry-jp {
  color: #ffdd57;
}

.header-right .contact-entry-jp .jp-mobile {
  display: none;
}

.header-right .contact-entry-jp .jp-desktop {
  display: inline;
}

/* Menu Toggle Button */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  gap: calc(4 * var(--vw-with-scrollbar) / 1920);
  transition: var(--transition-default);
}

.menu-label {
  color: var(--text-color);
  font-family: var(--font-english);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  font-style: italic;
  margin-bottom: 4px;
  margin-bottom: calc(4 * var(--vw-with-scrollbar) / 1920);
  transition: color 0.3s ease;
}

.menu-toggle:hover .menu-label {
  color: #ffdd57;
}

.menu-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  gap: calc(12 * var(--vw-with-scrollbar) / 1920);
  align-items: flex-end;
  width: 100%;
}

.menu-line {
  height: 2px;
  background: var(--text-color);
  transition: background 0.3s ease;
  width: 100%;
}

.menu-toggle:hover .menu-line {
  background: #ffdd57;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000;
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: hidden;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-container {
  padding: 0 250px;
  padding: 0 calc(250 * var(--vw-with-scrollbar) / 1920);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Mobile Menu Close */
.mobile-menu-close-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  margin-top: calc(20 * var(--vw-with-scrollbar) / 1920);
  margin-right: -100px;
  margin-right: calc(-100 * var(--vw-with-scrollbar) / 1920);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  gap: calc(5 * var(--vw-with-scrollbar) / 1920);
  transition: var(--transition-default);
}

.mobile-menu-close:hover {
  opacity: 0.8;
}

.close-text {
  font-size: 32px;
  font-size: calc(32 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  font-style: italic;
  font-family: var(--font-english);
}

.close-icon {
  width: auto;
  height: auto;
}

/* Mobile Menu Recruit Section */
.mobile-menu-recruit {
  margin-bottom: 15px;
  margin-bottom: calc(15 * var(--vw-with-scrollbar) / 1920);
  flex-shrink: 0;
}

.mobile-menu-recruit-header {
  text-align: left;
  margin-bottom: 5px;
  margin-bottom: calc(5 * var(--vw-with-scrollbar) / 1920);
  display: block;
  text-decoration: none;
  transition: var(--transition-default);
}

.mobile-menu-recruit-title {
  font-size: 64px;
  font-size: calc(64 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1;
  margin: 0;
  color: #fff;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  letter-spacing: 0.05em;
  transition: var(--transition-default);
  margin-bottom: -5px;
  margin-bottom: calc(-5 * var(--vw-with-scrollbar) / 1920);
  line-height: 0.8;
}

.mobile-menu-recruit-subtitle {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  color: #fff;
  font-weight: bold;
  transition: var(--transition-default);
}

.mobile-menu-recruit-header:hover .mobile-menu-recruit-title,
.mobile-menu-recruit-header:hover .mobile-menu-recruit-subtitle {
  color: var(--yellow-accent);
}

.mobile-menu-recruit-header:hover .mobile-menu-recruit-title {
  text-decoration-color: var(--yellow-accent);
}

.mobile-menu-recruit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  gap: calc(5 * var(--vw-with-scrollbar) / 1920);
  width: 75%;
}

.mobile-menu-recruit-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.3s ease;
  border: 1px solid #ffdd57;
  overflow: hidden;
}

.mobile-menu-recruit-card:hover {
  transform: translateY(-5px);
}

.mobile-menu-recruit-card-image {
  width: 257px;
  width: calc(257 * var(--vw-with-scrollbar) / 1920);
  height: 139px;
  height: calc(139 * var(--vw-with-scrollbar) / 1920);
  overflow: hidden;
  position: relative;
}

.mobile-menu-recruit-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffdd57;
  mix-blend-mode: darken;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.mobile-menu-recruit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mobile-menu-recruit-card:hover .mobile-menu-recruit-card-image::after {
  opacity: 1;
}

.mobile-menu-recruit-card:hover .mobile-menu-recruit-card-image img {
  transform: scale(1.1);
}

.mobile-menu-recruit-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 11px;
  font-size: calc(11 * var(--vw-with-scrollbar) / 1920);
  gap: 5px;
  gap: calc(5 * var(--vw-with-scrollbar) / 1920);
  z-index: 1;
}

.mobile-menu-recruit-card-text {
  background: var(--yellow-accent);
  padding: 1px 5px;
  padding: calc(1 * var(--vw-with-scrollbar) / 1920)
    calc(5 * var(--vw-with-scrollbar) / 1920);
  display: inline-block;
}

.mobile-menu-recruit-card-arrow {
  background: var(--yellow-accent);
  padding: 4px 3px;
  padding: calc(4 * var(--vw-with-scrollbar) / 1920)
    calc(3 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin-bottom: 15px;
  margin-bottom: calc(15 * var(--vw-with-scrollbar) / 1920);
  flex-shrink: 0;
  column-gap: 50px;
  column-gap: calc(50 * var(--vw-with-scrollbar) / 1920);
}

.mobile-menu-nav-column {
  display: flex;
  flex-direction: column;
}

.mobile-menu-nav-header {
  display: block;
  text-decoration: none;
  transition: var(--transition-default);
}

.mobile-menu-nav-title {
  font-size: 64px;
  font-size: calc(64 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 0.9;
  color: #fff;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  letter-spacing: 0.02em;
  transition: var(--transition-default);
  margin-bottom: -8px;
  margin-bottom: calc(-8 * var(--vw-with-scrollbar) / 1920);
  white-space: nowrap;
}

.mobile-menu-nav-subtitle {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  margin: 0 0 3px 0;
  margin: 0 0 calc(3 * var(--vw-with-scrollbar) / 1920) 0;
  color: #fff;
  font-weight: bold;
  transition: var(--transition-default);
}

.mobile-menu-nav-header:hover .mobile-menu-nav-title,
.mobile-menu-nav-header:hover .mobile-menu-nav-subtitle {
  color: var(--yellow-accent);
}

.mobile-menu-nav-header:hover .mobile-menu-nav-title {
  text-decoration-color: var(--yellow-accent);
}

.mobile-menu-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav-list li {
  margin-bottom: 3px;
  margin-bottom: calc(3 * var(--vw-with-scrollbar) / 1920);
}

.mobile-menu-nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: calc(14 * var(--vw-with-scrollbar) / 1920);
  transition: var(--transition-default);
  line-height: 1.2;
  display: inline-block;
}

.mobile-menu-nav-list a:hover {
  color: #000;
  background-color: var(--yellow-accent);
}

.mobile-menu-nav-extra {
  margin-top: 12px;
  margin-top: calc(12 * var(--vw-with-scrollbar) / 1920);
}

/* Mobile Menu Contact */
.mobile-menu-contact {
  margin-top: 0px;
  margin-top: calc(0 * var(--vw-with-scrollbar) / 1920);
  flex-shrink: 0;
}

.mobile-menu-contact-header {
  display: block;
  text-decoration: none;
  transition: var(--transition-default);
}

.mobile-menu-contact-title {
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 0.8;
  margin: 0;
  color: #fff;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  text-underline-offset: calc(2 * var(--vw-with-scrollbar) / 1920);
  letter-spacing: 0.05em;
  display: inline-block;
  transition: var(--transition-default);
}

.mobile-menu-contact-subtitle {
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  color: #fff;
  font-weight: bold;
  transition: var(--transition-default);
  margin-top: -10px;
  margin-top: calc(-10 * var(--vw-with-scrollbar) / 1920);
}

.mobile-menu-contact-header:hover .mobile-menu-contact-title,
.mobile-menu-contact-header:hover .mobile-menu-contact-subtitle {
  color: var(--yellow-accent);
}

.mobile-menu-contact-header:hover .mobile-menu-contact-title {
  text-decoration-color: var(--yellow-accent);
}

.mobile-menu-contact-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 74px;
  gap: calc(74 * var(--vw-with-scrollbar) / 1920);
}

.mobile-menu-contact-image {
  width: 250px;
  width: calc(250 * var(--vw-with-scrollbar) / 1920);
  height: 165px;
  height: calc(165 * var(--vw-with-scrollbar) / 1920);
  overflow: hidden;
}

.mobile-menu-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu-contact-btn {
  background: none;
  border: 2px solid var(--yellow-accent);
  width: 165px;
  width: calc(165 * var(--vw-with-scrollbar) / 1920);
  height: 80px;
  height: calc(80 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  color: var(--yellow-accent);
  text-decoration: none;
}

.mobile-menu-contact-btn:hover {
  color: #000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
main {
  padding-top: 80px;
  padding-top: calc(80 * var(--vw-with-scrollbar) / 1920);
}

.site-main {
  min-height: 500px;
  min-height: calc(500 * var(--vw-with-scrollbar) / 1920);
  background: #000;
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 0 0 0;
  padding: calc(60 * var(--vw-with-scrollbar) / 1920) 0 0 0;
  position: relative;
  z-index: 100;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  padding: 0 calc(40 * var(--vw-with-scrollbar) / 1920);
}

/* Footer Recruit Section */
.footer-recruit {
  margin-bottom: 53px;
  margin-bottom: calc(53 * var(--vw-with-scrollbar) / 1920);
}

.footer-recruit-header {
  text-align: left;
  margin-bottom: 12px;
  margin-bottom: calc(12 * var(--vw-with-scrollbar) / 1920);
  display: block;
  text-decoration: none;
  transition: var(--transition-default);
}

.footer-recruit-title {
  font-size: 64px;
  font-size: calc(64 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1;
  margin: 0;
  color: #fff;
  font-style: italic;
  letter-spacing: 0.05em;
  font-family: var(--font-english);
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  margin-bottom: -18px;
  margin-bottom: calc(-18 * var(--vw-with-scrollbar) / 1920);
  transition: var(--transition-default);
}

.footer-recruit-subtitle {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  margin: 8px 0 0 0;
  margin: calc(8 * var(--vw-with-scrollbar) / 1920) 0 0 0;
  color: #fff;
  font-weight: bold;
  transition: var(--transition-default);
}

.footer-recruit-header:hover .footer-recruit-title,
.footer-recruit-header:hover .footer-recruit-subtitle {
  color: var(--yellow-accent);
}

.footer-recruit-header:hover .footer-recruit-title {
  text-decoration-color: var(--yellow-accent);
}

.footer-recruit-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  gap: calc(8 * var(--vw-with-scrollbar) / 1920);
  max-width: 70%;
}

.footer-recruit-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.3s ease;
  border: 1px solid #ffdd57;
  overflow: hidden;
}

.footer-recruit-card:hover {
  transform: translateY(-5px);
}

.footer-recruit-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.footer-recruit-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffdd57;
  mix-blend-mode: darken;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.footer-recruit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.footer-recruit-card:hover .footer-recruit-card-image::after {
  opacity: 1;
}

.footer-recruit-card:hover .footer-recruit-card-image img {
  transform: scale(1.1);
}

.footer-recruit-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 14px;
  font-size: calc(14 * var(--vw-with-scrollbar) / 1920);
  gap: 10px;
  gap: calc(10 * var(--vw-with-scrollbar) / 1920);
  z-index: 1;
}

.footer-recruit-card-text {
  background: var(--yellow-accent);
  padding: 2px 7px;
  padding: calc(2 * var(--vw-with-scrollbar) / 1920)
    calc(7 * var(--vw-with-scrollbar) / 1920);
  display: inline-block;
}

.footer-recruit-card-arrow {
  background: var(--yellow-accent);
  padding: 6px 5px;
  padding: calc(6 * var(--vw-with-scrollbar) / 1920)
    calc(5 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Navigation */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  gap: calc(50 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: 60px;
  margin-bottom: calc(60 * var(--vw-with-scrollbar) / 1920);
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
}

.footer-nav-header {
  display: block;
  text-decoration: none;
  transition: var(--transition-default);
}

.footer-nav-title {
  font-size: 64px;
  font-size: calc(64 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  font-style: italic;
  letter-spacing: 0.02em;
  font-family: var(--font-english);
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  white-space: nowrap;
  margin-bottom: -18px;
  margin-bottom: calc(-18 * var(--vw-with-scrollbar) / 1920);
  transition: var(--transition-default);
}

.footer-nav-subtitle {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  margin: 0 0 7px 0;
  margin: 0 0 calc(7 * var(--vw-with-scrollbar) / 1920) 0;
  color: #fff;
  font-weight: bold;
  transition: var(--transition-default);
}

.footer-nav-header:hover .footer-nav-title,
.footer-nav-header:hover .footer-nav-subtitle {
  color: var(--yellow-accent);
}

.footer-nav-header:hover .footer-nav-title {
  text-decoration-color: var(--yellow-accent);
}

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

.footer-nav-list li {
  margin-bottom: 8px;
  margin-bottom: calc(8 * var(--vw-with-scrollbar) / 1920);
}

.footer-nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: calc(14 * var(--vw-with-scrollbar) / 1920);
  transition: var(--transition-default);
  display: inline-block;
}

.footer-nav-list a:hover {
  color: #000;
  background-color: var(--yellow-accent);
}

.footer-nav-extra {
  margin-top: 30px;
  margin-top: calc(30 * var(--vw-with-scrollbar) / 1920);
}

.footer-nav-spacing {
  height: 32px;
  height: calc(32 * var(--vw-with-scrollbar) / 1920);
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: #333;
  margin-bottom: 30px;
  margin-bottom: calc(30 * var(--vw-with-scrollbar) / 1920);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  padding-bottom: calc(30 * var(--vw-with-scrollbar) / 1920);
}

.footer-copyright {
  font-size: 12px;
  font-size: calc(12 * var(--vw-with-scrollbar) / 1920);
  color: #727272;
}

.footer-back-to-top {
  background: var(--yellow-accent);
  border: none;
  width: 111px;
  width: calc(111 * var(--vw-with-scrollbar) / 1920);
  height: 50px;
  height: calc(50 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
}

.footer-back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.footer-back-to-top:hover {
  background: #ffc700;
  transform: translateY(-2px);
}

/* ========================================
   CONTACT ENTRY SECTION
   ======================================== */
.contact-entry-section {
  position: relative;
  min-height: 800px;
  min-height: calc(800 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 10;
  margin-top: 80px;
  margin-top: calc(80 * var(--vw-with-scrollbar) / 1920);
}

.contact-entry-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact-entry-bg-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-entry-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-entry-bg-image .noise-canvas {
  object-fit: cover;
}

/* Workers Image */
.contact-entry-workers {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 112%;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.contact-entry-workers picture {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-workers-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-entry-container {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 100px 40px;
  padding: calc(100 * var(--vw-with-scrollbar) / 1920)
    calc(40 * var(--vw-with-scrollbar) / 1920);
}

.contact-entry-content {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-entry-title {
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1;
  margin: 0;
  font-style: italic;
  display: inline-block;
  font-family: var(--font-english);
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  text-underline-offset: calc(2 * var(--vw-with-scrollbar) / 1920);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact-entry-subtitle {
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  margin: -15px 0 40px 0;
  margin: calc(-15 * var(--vw-with-scrollbar) / 1920) 0
    calc(40 * var(--vw-with-scrollbar) / 1920) 0;
  font-weight: bold;
}

.contact-entry-description {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  line-height: 1.8;
  margin: 0 auto 50px auto;
  margin: 0 auto calc(50 * var(--vw-with-scrollbar) / 1920) auto;
  color: #000;
  font-weight: bold;
  /* line-parts animation styles */
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0;
  background: white;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.6s;
}

.contact-entry-description:before,
.contact-entry-description:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
}

.contact-entry-description:before {
  transform: translateX(0);
  z-index: 1;
}

.contact-entry-description:after {
  transform: translateX(0);
  z-index: 5;
  transition: transform 0.45s cubic-bezier(0.36, 0.48, 0.02, 0.98);
}

.contact-entry-description .line-txt {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920)
    calc(25 * var(--vw-with-scrollbar) / 1920);
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  transition: none;
}

.mobile-break1 {
  display: none;
}

.contact-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  gap: calc(15 * var(--vw-with-scrollbar) / 1920);
  background: #fff;
  color: #000;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  padding: 18px 80px;
  padding: calc(18 * var(--vw-with-scrollbar) / 1920)
    calc(80 * var(--vw-with-scrollbar) / 1920);
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  transition: all 0.3s ease;
  border: 4px solid #000;
  border: calc(4 * var(--vw-with-scrollbar) / 1920) solid #000;
  min-width: 500px;
  min-width: calc(500 * var(--vw-with-scrollbar) / 1920);
}

.contact-entry-btn:hover {
  background: #000;
  color: #ffdd57;
  border-color: #ffdd57;
}

.contact-entry-btn:hover .arrow {
  content: url("../template-appkey/assets/images/arrow.svg");
  width: 16px;
  height: 16px;
}

/* Contact Entry Animation States */
.contact-entry-section.animate-contact-entry .contact-entry-title {
  opacity: 1;
  animation: contactTitleCrackle 0.8s ease;
  position: relative;
}

.contact-entry-section.animate-contact-entry .contact-entry-title::before,
.contact-entry-section.animate-contact-entry .contact-entry-title::after {
  content: "CONTACT・ENTRY";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  font-family: inherit;
  font-style: inherit;
  line-height: inherit;
  text-decoration: inherit;
}

.contact-entry-section.animate-contact-entry .contact-entry-title::before {
  color: #00552e !important;
  z-index: -1;
  animation: reverse-position 0.1s infinite linear;
}

.contact-entry-section.animate-contact-entry .contact-entry-title::after {
  color: #ffdd57 !important;
  z-index: -2;
  animation: forward-position 0.13s infinite linear;
}

.contact-entry-section.animate-contact-entry .contact-entry-subtitle {
  opacity: 1;
  border-color: #00ff00;
}

.contact-entry-section.animate-contact-entry .contact-entry-btn {
  opacity: 1;
  transform: translateX(0);
}

.contact-entry-section.animate-contact-entry .contact-entry-description {
  transform: scaleX(1);
}

.contact-entry-section.animate-contact-entry
  .contact-entry-description
  .line-txt {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 1.1s;
}

.contact-entry-section.animate-contact-entry .contact-entry-description:after {
  transform: translateX(100%);
  transition: transform 0.6s ease 0.5s;
}

.contact-entry-section.animate-contact-entry .contact-entry-bg-image {
  opacity: 1;
}

.contact-entry-workers {
  opacity: 0;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transition: 1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.contact-entry-section.animate-contact-entry .contact-entry-workers.is-show {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
}

@keyframes imageBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

/* Crackle/Glitch effect for title with green band */
@keyframes contactTitleCrackle {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  10% {
    opacity: 0.8;
    transform: translate(-2px, 2px);
  }

  20% {
    opacity: 1;
    transform: translate(2px, -2px);
  }

  30% {
    transform: translate(-1px, 1px);
  }

  40% {
    transform: translate(0, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Title fade in after band */
@keyframes titleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Glitch position animations */
@keyframes reverse-position {
  0% {
    left: 0;
    top: 0;
  }
  8% {
    left: -2px;
    top: -1px;
  }
  16% {
    left: -4px;
    top: -2px;
  }
  24% {
    left: -1px;
    top: -3px;
  }
  32% {
    left: -3px;
    top: 1px;
  }
  40% {
    left: -5px;
    top: -2px;
  }
  48% {
    left: -2px;
    top: -4px;
  }
  56% {
    left: -4px;
    top: 2px;
  }
  64% {
    left: -1px;
    top: -2px;
  }
  72% {
    left: -3px;
    top: -1px;
  }
  80% {
    left: -2px;
    top: 1px;
  }
  88% {
    left: -4px;
    top: -3px;
  }
  96% {
    left: -1px;
    top: -1px;
  }
  100% {
    left: 0;
    top: 0;
  }
}

@keyframes forward-position {
  0% {
    left: 0;
    top: 0;
  }
  12% {
    left: 2px;
    top: 1px;
  }
  24% {
    left: 4px;
    top: 2px;
  }
  36% {
    left: 1px;
    top: 3px;
  }
  48% {
    left: 3px;
    top: -1px;
  }
  60% {
    left: 5px;
    top: 2px;
  }
  72% {
    left: 2px;
    top: 4px;
  }
  84% {
    left: 4px;
    top: -2px;
  }
  96% {
    left: 1px;
    top: 1px;
  }
  100% {
    left: 0;
    top: 0;
  }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Mobile Styles (max-width 768px) */
@media (max-width: 1024px) {
  /* Header */
  .site-header {
    overflow-y: auto;
    max-height: 100vh;
  }

  body.menu-open {
    overflow-y: auto;
  }

  .header-container {
    padding: 0 10px;
    padding: 0 calc(10 * 100vw / 400);
  }

  .site-logo a {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
  }

  .header-right {
    gap: 20px;
    gap: calc(20 * 100vw / 400);
  }

  .header-right .contact-entry-jp {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    white-space: normal;
    line-height: 1;
    text-align: center;
  }

  .header-right .contact-entry-main {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .header-right .contact-entry-jp .jp-desktop {
    display: none;
  }

  .header-right .contact-entry-jp .jp-mobile {
    display: inline;
    text-align: center;
  }

  .header-right .contact-entry-wrapper {
    align-items: center;
  }

  .menu-toggle {
    margin-top: -10px;
    margin-top: calc(-10 * 100vw / 400);
  }

  .menu-label {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .menu-toggle-lines {
    display: flex;
    flex-direction: column;
    gap: 14px;
    gap: calc(14 * 100vw / 400);
    align-items: flex-end;
    width: 100%;
  }

  /* Mobile Menu */

  .close-text {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .close-icon {
    width: 48px;
    width: calc(48 * 100vw / 400);
    height: auto;
  }

  .mobile-menu-recruit-title {
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
    text-underline-offset: 4px;
  }

  .mobile-menu-recruit-subtitle {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    margin-bottom: 10px;
    margin-bottom: calc(10 * 100vw / 400);
  }

  .mobile-menu-nav-subtitle {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    margin-bottom: 10px;
    margin-bottom: calc(10 * 100vw / 400);
  }

  .mobile-menu-contact-subtitle {
    font-size: 21px;
    font-size: calc(21 * 100vw / 400);
  }

  .mobile-menu-contact-content {
    align-items: flex-start;
  }

  .mobile-menu-contact-btn img {
    width: 15px;
    width: calc(15 * 100vw / 400);
    height: 15px;
    height: calc(15 * 100vw / 400);
  }

  .mobile-menu {
    overflow-y: auto;
  }

  .mobile-menu-container {
    padding: 30px 20px;
    padding: calc(30 * 100vw / 400) calc(20 * 100vw / 400);
  }

  .mobile-menu-recruit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    gap: calc(15 * 100vw / 400);
    width: 100%;
    padding-bottom: 30px;
    padding-bottom: calc(30 * 100vw / 400);
  }

  .custume-gap {
    gap: 25px;
    gap: calc(25 * 100vw / 400);
    padding-bottom: 30px;
    padding-bottom: calc(30 * 100vw / 400);
  }

  .mobile-menu-recruit-card-image {
    height: 120px;
    height: calc(120 * 100vw / 400);
    width: 100%;
  }

  .mobile-menu-recruit-card-label {
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
    gap: 8px;
    gap: calc(8 * 100vw / 400);
  }

  .mobile-menu-recruit-card-text {
    padding: 2px 7px;
    padding: calc(2 * 100vw / 400) calc(7 * 100vw / 400);
  }

  .mobile-menu-recruit-card-arrow {
    padding: 5px 10px;
    padding: calc(5 * 100vw / 400) calc(10 * 100vw / 400);
  }

  .mobile-menu-recruit-card-arrow img {
    width: 15px;
    width: calc(15 * 100vw / 400);
    height: 15px;
    height: calc(15 * 100vw / 400);
  }

  .mobile-menu-nav {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    gap: calc(30 * 100vw / 400);
  }

  .mobile-menu-nav-title {
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
    text-underline-offset: 4px;
  }

  .mobile-menu-nav-list a {
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
    padding: 0px 0px;
    padding: calc(0 * 100vw / 400) calc(0 * 100vw / 400);
  }

  .mobile-menu-contact-title {
    font-size: 66px;
    font-size: calc(66 * 100vw / 400);
    text-decoration: none;
    line-height: 1;
  }

  .mobile-menu-contact-title::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 2px solid #fff;
    margin-top: 2px;
  }

  .mobile-menu-contact-image {
    width: 250px;
    width: calc(250 * 100vw / 400);
    height: 200px;
    height: calc(200 * 100vw / 400);
  }

  .mobile-menu-contact-btn {
    width: 60px;
    width: calc(60 * 100vw / 400);
    height: 40px;
    height: calc(40 * 100vw / 400);
  }

  .mobile-menu-nav-list li {
    margin-bottom: 4px;
    margin-bottom: calc(4 * 100vw / 400);
  }

  .mobile-menu-close-section {
    margin-right: 0px;
    margin-right: calc(0 * 100vw / 400);
  }

  /* Footer */
  .site-footer {
    padding: 0 0 40px 0;
    padding: 0 0 calc(40 * 100vw / 400) 0;
  }

  body.page-template-business .site-footer {
    padding-bottom: 0;
  }

  .footer-container {
    padding: 30px 24px 0 24px;
    padding: calc(30 * 100vw / 400) calc(24 * 100vw / 400) 0
      calc(24 * 100vw / 400);
  }

  .footer-recruit {
    margin-bottom: 40px;
    margin-bottom: calc(40 * 100vw / 400);
  }

  .footer-recruit-title {
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
    text-underline-offset: 4px;
  }

  .footer-recruit-subtitle {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    margin-bottom: 10px;
    margin-bottom: calc(10 * 100vw / 400);
  }

  .footer-recruit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    gap: calc(15 * 100vw / 400);
    max-width: 100%;
  }

  .footer-recruit-card-image {
    height: 100%;
  }

  .footer-recruit-card-label {
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
    gap: 8px;
    gap: calc(8 * 100vw / 400);
  }

  .footer-recruit-card-text {
    padding: 2px 7px;
    padding: calc(2 * 100vw / 400) calc(7 * 100vw / 400);
  }

  .footer-recruit-card-arrow {
    padding: 5px 10px;
    padding: calc(5 * 100vw / 400) calc(10 * 100vw / 400);
  }

  .footer-recruit-card-arrow img {
    width: 15px;
    width: calc(15 * 100vw / 400);
    height: 15px;
    height: calc(15 * 100vw / 400);
  }

  .footer-nav {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    gap: calc(30 * 100vw / 400);
    margin-bottom: 40px;
    margin-bottom: calc(40 * 100vw / 400);
  }

  .footer-nav-title {
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
    text-underline-offset: 4px;
    margin-bottom: -4px;
    margin-bottom: calc(-4 * 100vw / 400);
  }

  .footer-nav-title-contact {
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
  }

  .footer-nav-subtitle {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    margin-bottom: 10px;
    margin-bottom: calc(10 * 100vw / 400);
  }

  .footer-nav-list a {
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
    padding: 0px 0px;
    padding: calc(0 * 100vw / 400) calc(0 * 100vw / 400);
  }

  .footer-nav-extra {
    margin-top: 20px;
    margin-top: calc(20 * 100vw / 400);
  }

  .footer-back-to-top {
    width: 40px;
    width: calc(40 * 100vw / 400);
    height: 40px;
    height: calc(40 * 100vw / 400);
    bottom: 0px;
    right: 0px;
  }

  .footer-back-to-top svg {
    width: 18px;
    width: calc(18 * 100vw / 400);
    height: 18px;
    height: calc(18 * 100vw / 400);
  }

  /* Contact Entry */
  .contact-entry-section {
    height: auto;
    min-height: 423px;
    min-height: calc(423 * 100vw / 400);
    margin-top: 150px;
    margin-top: calc(150 * 100vw / 400);
  }

  .contact-entry-bg-image {
    height: auto;
  }

  .contact-entry-bg-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .contact-entry-workers {
    height: auto;
    top: 0;
  }

  .contact-workers-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .contact-entry-content {
    margin-top: -312px;
    margin-top: calc(-312 * 100vw / 400);
  }

  .contact-entry-container {
    padding: 70px 20px 0 20px;
    padding: calc(70 * 100vw / 400) calc(20 * 100vw / 400) 0
      calc(20 * 100vw / 400);
  }

  .contact-entry-title {
    font-size: 80px;
    font-size: calc(80 * 100vw / 400);
    padding-bottom: 10px;
    padding-bottom: calc(10 * 100vw / 400);
    border-bottom-width: 2px;
    white-space: normal;
    text-decoration: none;
  }

  /* Adjust glitch for mobile */
  .contact-entry-section.animate-contact-entry .contact-entry-title::before,
  .contact-entry-section.animate-contact-entry .contact-entry-title::after {
    font-size: 80px;
    font-size: calc(80 * 100vw / 400);
    white-space: normal;
    word-break: break-word;
    line-height: 1;
  }

  .contact-entry-title .entry-text {
    position: relative;
  }

  .contact-entry-title .entry-text::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0px;
    height: 2px;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .contact-entry-section.animate-contact-entry
    .contact-entry-title
    .entry-text::after {
    opacity: 1;
  }

  .contact-entry-subtitle {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
    margin: 0px 0 30px 0;
    margin: calc(0 * 100vw / 400) 0 calc(30 * 100vw / 400) 0;
    background-color: #0000007a;
  }

  .contact-entry-description {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    margin-bottom: 30px;
    margin-bottom: calc(30 * 100vw / 400);
    line-height: 1.6;
    max-width: 60%;
    padding: 10px 5px;
    padding: calc(15 * 100vw / 400) calc(15 * 100vw / 400);
  }

  .mobile-break1 {
    display: inline;
  }

  .contact-break::after {
    content: "\A";
    white-space: pre;
  }

  .footer-nav-list li {
    margin-bottom: 4px;
    margin-bottom: calc(4 * 100vw / 400);
  }

  .contact-entry-btn {
    padding: 12px 20px;
    padding: calc(15 * 100vw / 400) calc(15 * 100vw / 400);
    font-size: 18px;
    font-size: calc(18 * 100vw / 400);
    display: inline-flex;
    gap: 10px;
    gap: calc(10 * 100vw / 400);
    border: 4px solid #000;
    border: calc(4 * 100vw / 400) solid #000;
  }

  .contact-entry-btn .arrow {
    width: 15px;
    width: calc(15 * 100vw / 400);
    height: 15px;
    height: calc(15 * 100vw / 400);
  }

  .contact-entry-btn:hover {
    border-color: #ffdd57;
    color: #ffdd57;
    background: #000;
  }

  .contact-entry-btn:hover .arrow {
    content: url("../template-appkey/assets/images/arrow.svg");
  }

  .contact-entry-bg-image picture {
    align-items: baseline;
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
  }

  .contact-entry-bg-image .noise-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .footer-nav-title.contact {
    text-decoration: none;
  }

  .footer-nav-title.contact .entry-text {
    position: relative;
    top: -6px;
  }

  .footer-nav-title.contact .entry-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: -100px;
    right: calc(-100 * 100vw / 400);
    height: 1px;
    background-color: #fff;
  }

  .footer-nav-spacing {
    height: 30px;
    height: calc(20 * 100vw / 400);
  }

  .footer-copyright {
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
  }
}
