:root {
  /* Base font size: 16px at 375px viewport */
  font-size: clamp(12px, calc(100vw * 16 / 375), 18px);

  /* Spacing */
  --spacing-2xs: 0.25rem; /* 4px */
  --spacing-xs: 0.5rem; /* 8px */
  --spacing-s: 0.75rem; /* 12px */
  --spacing-m: 1rem; /* 16px */
  --spacing-l: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 2.5rem; /* 40px */
  --spacing-3xl: 3rem; /* 48px */
  --spacing-4xl: 3.5rem; /* 56px */
  --spacing-5xl: 4.5rem; /* 72px */
  --spacing-6xl: 5.5rem; /* 88px */
  --spacing-7xl: 6.5rem; /* 104px */
  --spacing-8xl: 7.5rem; /* 120px */

  /* Border Radius */
  --radius-s: 0.5rem; /* 8px */
  --radius-m: 1rem; /* 16px */
  --radius-l: 1.5rem; /* 24px */
  --radius-xl: 3.5rem; /* 56px */
  --radius-2xl: 5rem; /* 80px */
  --radius-full: 9999px; /* 9999px */

  /* Drop Shadow */
  --drop-shadow-m: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
  --drop-shadow-l: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --state-layer-light: linear-gradient(
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.12)
  );
  --state-layer-dark: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
  /* Theme Colors */
  --color-primary: #fde04b;
  --color-primary-light: #fff9d7;
  --color-accent: #13c285;
  --color-accent-light: #edfff8;
  --color-secondary: #fc5527;
  --color-secondary-light: #ffeae5;
  --color-attention: #ff3a4d;
  --color-attention-light: #ffdcdf;

  /* Neutral Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-dark-gray: #777777;
  --color-light-gray: #f2f4f6;

  /* Accessibility: Focus indicator */
  --color-focus: #13c285;
  --focus-outline-width: 2px;
  --focus-outline-offset: 2px;

  /* Utility Colors (for backward compatibility) */
  --color-text-primary: var(--color-black);
  --color-text-secondary: var(--color-dark-gray);
  --color-bg-light: var(--color-light-gray);
  --color-error: var(--color-attention);

  /* Typography: Font Families */
  --font-family-base: var(--font-mulish), var(--font-zen-kaku-gothic-new),
    "Noto Sans JP", sans-serif;
  --font-family-heading: var(--font-mulish), var(--font-zen-kaku-gothic-new),
    "Noto Sans JP", sans-serif;

  /* Typography: Heading Styles */
  --heading-2xl-size: 2rem; /* 32px */
  --heading-2xl-line-height: 1.5;
  --heading-2xl-letter-spacing: 0.01em;

  --heading-xl-size: 1.75rem; /* 28px */
  --heading-xl-line-height: 1.5;
  --heading-xl-letter-spacing: 0.01em;

  --heading-l-size: 1.5rem; /* 24px */
  --heading-l-line-height: 1.5;
  --heading-l-letter-spacing: 0.01em;

  --heading-m-size: 1.375rem; /* 22px */
  --heading-m-line-height: 1.5;
  --heading-m-letter-spacing: 0.01em;

  --heading-s-size: 1.25rem; /* 20px */
  --heading-s-line-height: 1.5;
  --heading-s-letter-spacing: 0.01em;

  --heading-xs-size: 1.125rem; /* 18px */
  --heading-xs-line-height: 1.5;
  --heading-xs-letter-spacing: 0.01em;

  /* Typography: Body Styles */
  --body-m-size: 1rem; /* 16px */
  --body-m-line-height: 1.75;
  --body-m-letter-spacing: 0.01em;

  --body-s-size: 0.875rem; /* 14px */
  --body-s-line-height: 1.75;
  --body-s-letter-spacing: 0.01em;

  --body-xs-size: 0.8125rem; /* 13px */
  --body-xs-line-height: 1.75;
  --body-xs-letter-spacing: 0.01em;

  --body-2xs-size: 0.75rem; /* 12px */
  --body-2xs-line-height: 1.75;
  --body-2xs-letter-spacing: 0.01em;

  --body-3xs-size: 0.625rem; /* 10px */
  --body-3xs-line-height: 1.75;
  --body-3xs-letter-spacing: 0.01em;

  /* Size utilities */
  --size-2xs: 0.25rem; /* 4px */
  --size-xs: 0.5rem; /* 8px */
  --size-s: 0.75rem; /* 12px */
  --size-m: 1rem; /* 16px */
  --size-l: 1.5rem; /* 24px */
  --size-xl: 2rem; /* 32px */
  --size-2xl: 2.5rem; /* 40px */
  --size-3xl: 3rem; /* 48px */
  --size-4xl: 3.5rem; /* 56px */
  --size-5xl: 4.5rem; /* 72px */
  --size-6xl: 5.5rem; /* 88px */
  --size-7xl: 6.5rem; /* 104px */
  --size-8xl: 7.5rem; /* 120px */
  --size-9xl: 8.5rem; /* 136px */
  --size-10xl: 9.5rem; /* 152px */
  --size-11xl: 10.5rem; /* 168px */
}

html {
  scroll-behavior: smooth;
}

/* レイアウト（土台） */
#bg {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#bg > header.header {
  width: 100%;
}

/* ヘッダー */
#header.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transform: translateY(0);
  transition: transform 0.25s ease;
  will-change: transform;
}
@media (min-width: 501px) {
  #header.header {
    border-left: 1px solid #ced8dd;
    border-right: 1px solid #ced8dd;
  }
}

#header.header.header--hidden {
  transform: translateY(-110%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #header.header {
    transition: none;
  }
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem; /* 64px */
  padding: var(--spacing-xs);
}

/* ロゴ */
#header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  width: 9.25rem;
}
#header .logo img {
  width: 100%;
  object-fit: contain;
}

/* アクションボタン */
#header .actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-left: auto;
}
#header .actions .register-button {
  display: flex;
  padding: var(--spacing-2xs) var(--spacing-s);
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: var(--radius-radius-full, 9999px);
  border: 1px solid #000;
  background: #fff;
  background-color: #fde04b;
  font-size: var(--body-2xs-size);
  line-height: var(--body-2xs-line-height);
  letter-spacing: var(--body-2xs-letter-spacing);
  gap: var(--spacing-xs);
  font-weight: 700;
}
#header .actions .register-button:hover {
  background-image: var(--state-layer-light);
}

/* ハンバーガーメニューボタン */
#header .menu-button {
  display: flex;
  align-items: center;
  margin-left: var(--spacing-xs);
}
#header .menu-button .icon-button {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  padding: 0;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
#header .menu-button .icon-button:hover {
  background-image: var(--state-layer-light);
}

#header .menu-button .icon-button .menu-button__icon {
  width: 1.5em;
  height: 1.5em;
}

#header .menu-button .icon-button .menu-button__icon-bg {
  fill: var(--menu-icon-bg, #000);
}

#header .menu-button .icon-button .menu-button__icon-bars {
  fill: currentColor;
}

/* モバイルナビゲーション */
#header + .mobile-drawer {
  display: none;
}
#header + .mobile-drawer.open {
  display: block;
}
#header + .mobile-drawer .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#header + .mobile-drawer .mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

#header + .mobile-drawer .mobile-nav-link:hover {
  opacity: 0.7;
}

#header + .mobile-drawer .mobile-nav-link:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

#header + .mobile-drawer .nav-icon-button {
  pointer-events: none;
}

/* Drawerボタンエリア */
#header + .mobile-drawer .drawer-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  margin-top: 2.5rem;
  align-items: flex-start;
}

#header + aside .drawer-button {
  width: 10.5rem;
}

/* Mobile drawer: slide in from right */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 20rem;
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 120;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
}

/* when opened */
.mobile-drawer.open,
.mobile-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-drawer .drawer-header {
  display: flex;
  justify-content: flex-end;
  padding: var(--spacing-m);
}

.mobile-drawer .drawer-header .drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  padding: 0;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-light-gray);
}

.mobile-drawer .drawer-close .drawer-close__icon {
  width: 2em;
  height: 2em;
  color: var(--color-black);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 2rem;
}

.mobile-drawer .drawer-close .drawer-close__icon-bg {
  fill: var(--drawer-close-bg, #f2f4f6);
}

.mobile-drawer .drawer-close .drawer-close__icon-cross {
  fill: currentColor;
}

.mobile-drawer .drawer-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: var(--spacing-m);
  padding-left: var(--spacing-2xl);
}

.mobile-drawer .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m, 16px);
}
.mobile-drawer .mobile-nav .mobile-nav_links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-m);
}
.mobile-drawer .mobile-nav .menu-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-s);
  padding: 0;
  text-decoration: none;
  color: var(--color-black);
  font-size: var(--body-m-size);
  font-weight: 700;
  transition: opacity 0.2s ease;
}
.mobile-drawer .mobile-nav .nav_subLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--spacing-m);
  padding-left: var(--spacing-2xl);
}
.mobile-drawer .mobile-nav .nav_subLinks .nav_subTitle {
  font-size: var(--body-s-size);
  line-height: var(--body-s-line-height);
  letter-spacing: var(--body-s-letter-spacing);
  font-weight: 500;
}
.mobile-drawer .mobile-nav .arrow {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-drawer .mobile-nav-link {
  padding: 12px 8px;
  color: var(--color-black, #000);
  text-decoration: none;
  font-weight: 700;
}

.mobile-drawer .drawer-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  margin-top: var(--spacing-2xl);
  align-items: flex-start;
}
.mobile-drawer .drawer-buttons a {
  display: flex;
  width: var(--size-11xl);
  padding: var(--spacing-xs) var(--spacing-m);
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: var(--radius-radius-full, 9999px);
  border: 1px solid #000;
  background: #fff;
  font-size: var(--body-xs-size);
  line-height: 1;
  letter-spacing: var(--body-xs-letter-spacing);
  gap: var(--spacing-xs);
  font-weight: 700;
}
.mobile-drawer .drawer-buttons a.yellow {
  background: #fde04b;
}

/* translucent overlay to sit behind drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
  z-index: 110;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

#breadcrumbs,
.footer_area,
#footer {
  font-family: "Mulish", "Zen Kaku Gothic New", sans-serif !important;
}

#breadcrumbs {
  padding: 24px;
  background-color: #ffffff;
}

#breadcrumbs p {
  min-height: 13px;
  max-height: 13px;
  font-weight: 500;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#breadcrumbs p a:hover {
  text-decoration: underline;
}

.footer_area {
  background-color: #000000;
  font-family: "Mulish", "Zen Kaku Gothic New", sans-serif;
}

#footer_register {
  background-image: url("/wp-content/themes/favtown/assets/images/01_top/top-cv.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 0px 56px 56px;
}

#footer_register .contents {
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

#footer_register .contents .detail {
  padding: 16px 0;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 175%;
  white-space: nowrap;
}

#footer_register .contents .register {
  height: 94px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  padding: 32px 32px 32px 40px;
  border-radius: 57px;
  width: 328px;
  justify-content: space-between;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  margin-bottom: 32px;
  white-space: nowrap;
}

#footer_register .contents .register .arrow {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
}

#footer_register .contents .socials {
  font-weight: 700;
  font-size: 16px;
  line-height: 175%;
  text-align: center;
  color: #ffffff;
}

#footer_register .contents .socials .icons {
  display: flex;
  justify-content: space-around;
  padding: 16px 0;
}

#footer_register .contents .socials .icons .icon {
  width: 54px;
  height: 54px;
  border-radius: 27px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#footer {
  background-color: #fff;
}

#footer .footer_heroDecoration {
  width: 100%;
  margin-bottom: var(--spacing-l);
  line-height: 0;
}
#footer .footer_heroDecoration img {
  display: block;
  max-width: 100%;
}

#footer .footer_logoSection {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-m);
}

#footer .footer_logoSection img {
  display: block;
  max-width: 100%;
}

#footer nav {
  margin: 0 auto;
}

#footer .footer-links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  margin-bottom: var(--spacing-xl);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-l);
}

#footer .footer-links .nav_link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.2s ease;
}
#footer .footer-links .nav_link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

#footer .footer-links .nav_link .arrow {
  gap: var(--spacing-xs);
  text-decoration: none;
  color: var(--color-black);
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  padding: 0;
  border: none;
}

#footer .footer-links .nav_link .nav_title {
  font-weight: 700;
  font-size: var(--body-m-size);
  line-height: var(--body-m-line-height);
  letter-spacing: var(--body-m-letter-spacing);
}

#footer .footer-links .nav_subLinks {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 0;
  gap: 0;
  padding-left: var(--spacing-l);
  padding-right: 6rem;
}

#footer .footer-links .nav_subLinks .nav_subLink {
  text-decoration: none;
  color: var(--color-black);
  font-size: var(--body-s-size);
  line-height: var(--body-s-line-height);
  letter-spacing: var(--body-s-letter-spacing);
  font-weight: 500;
}

#footer .footer-links .nav_subLinks .nav_subLink:hover {
  opacity: 0.7;
  text-decoration: underline;
}

#footer .footer_actionButtons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#footer .footer_actionButtons a {
  padding: var(--spacing-s) var(--spacing-l);
  font-size: var(--body-s-size);
  line-height: 1;
  letter-spacing: var(--body-s-letter-spacing);
  gap: var(--spacing-s);
  font-weight: 700;
  background-color: var(--color-white);
  color: var(--color-black);
  border: 2px solid var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  border-radius: 100px;
  white-space: nowrap;
  cursor: pointer;
  flex: 1 1;
  width: 50%;
}
#footer .footer_actionButtons a:hover {
  background-image: var(--state-layer-dark);
}
#footer .footer_actionButtons a.yellow {
  background: #fde04b;
}
#footer .footer_actionButtons a.yellow:hover {
  background-image: var(--state-layer-light);
}

#footer .footer_cityDecoration {
  margin-top: 28px;
}

#footer .footer_infoSection {
  background: #000;
  display: flex;
  padding: var(--spacing-spacing-l, 24px) var(--spacing-spacing-m, 16px);
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-spacing-m, 16px);
  align-self: stretch;
  margin-top: var(--spacing-4xl);
  padding-bottom: 8rem;
}

#footer .footer_infoSection .footer_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-spacing-m, 16px);
  align-self: stretch;
}
#footer .footer_infoSection .footer_container .items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  color: #fff;
}
#footer .footer_infoSection .footer_container .items a {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xs);
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-size: var(--body-xs-size);
  line-height: var(--body-xs-line-height);
  letter-spacing: var(--body-xs-letter-spacing);
  font-weight: 500;
}
#footer .footer_infoSection .footer_container .items a:hover {
  text-decoration: underline;
}
#footer .footer_infoSection .footer_container .items a .arrow {
  width: 1rem;
  height: 1rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  padding: 0;
}

#footer .footer_bottomSection {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

#footer .footer_bottomSection .footer_leftSection {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
#footer .footer_bottomSection .footer_leftSection a {
  text-decoration: none;
  color: var(--color-white);
  font-size: var(--body-2xs-size);
  line-height: var(--body-2xs-line-height);
  letter-spacing: var(--body-2xs-letter-spacing);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
#footer .footer_bottomSection .footer_leftSection a:hover {
  text-decoration: underline;
}

#footer .footer_bottomSection .footer_rightSection {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-spacing-m, 16px);
}

#footer .footer_bottomSection .footer_rightSection .footer_rightSection_sns {
  display: flex;
  align-items: center;
  gap: var(--spacing-spacing-m, 16px);
}

#footer
  .footer_bottomSection
  .footer_rightSection
  .footer_rightSection_sns
  .item {
  width: var(--size-2xl);
  height: var(--size-2xl);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--drop-shadow-m);
}
#footer
  .footer_bottomSection
  .footer_rightSection
  .footer_rightSection_sns
  .item:hover {
  transform: scale(1.05);
}
#footer
  .footer_bottomSection
  .footer_rightSection
  .footer_rightSection_sns
  .item
  :is(svg, img) {
  width: 1.25rem;
  height: 1.25rem;
}
#footer .footer_bottomSection .footer_rightSection .footer_copyright {
  color: #777;
  text-align: center;
  font-size: var(--12px);
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 21px */
  letter-spacing: 0.12px;
}

#footer .footer_divider {
  width: 100%;
  align-self: stretch;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.2;
  margin-bottom: var(--spacing-m);
}

#footer .login {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

#footer .login .button {
  display: flex;
  width: 168px;
  height: 64px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 16px 32px;
  background-color: #ffffff;
  border-radius: 32px;
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  white-space: nowrap;
}

#footer .login .button .arrow {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .socials {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 16px 24px;
  color: #000000;
}

#footer .socials .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 175%;
  text-align: center;
  border-bottom: 2px solid #000000;
  padding: 12px 0;
}

#footer .socials .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 2px solid #f2f4f6;
}

#footer .socials .item:last-child {
  border-bottom: none;
}

#footer .socials .item .name {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 175%;
}

#footer .socials .item .name :is(svg, img) {
  margin-right: 8px;
}

#footer .socials .item .link {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 175%;
  text-decoration-line: underline;
  color: #888888;
  cursor: pointer;
}

#footer .socials .item .link :is(svg, img) {
  margin-left: 8px;
}

#footer .company {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

#footer .company .items a {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 180%;
  white-space: nowrap;
}

#footer .company .items a :is(img, svg) {
  margin-left: 8px;
}

#footer .company .inquiry a {
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 16px;
  width: 144px;
  height: 40px;
  margin-bottom: 32px;
  border: 2px solid #ffffff;
  font-size: 12px;
  white-space: nowrap;
}

#footer .company .inquiry p {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
}

.footer_mainsection {
  position: relative;
}
.footer_mainsection .footer_container {
  position: relative;
  z-index: 1;
}
.links + .bg_decoration,
.footer_mainsection .links + .bg_decoration {
  position: absolute;
  right: 0;
  top: 10px;
  pointer-events: none;
  z-index: 999;
  display: block;
}
.links + .bg_decoration img,
.footer_mainsection .links + .bg_decoration img {
  display: block;
  width: 120px;
  height: auto;
}

.footer-links-wrap {
  position: relative;
  display: block;
}

.footer_mainsection .bg_decoration--fixed {
  position: fixed !important;
  right: 12px !important;
  top: calc(100vh - 220px) !important;
  z-index: 9999 !important;
}
