.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 9.7rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__body {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 6rem);
  padding: 0 1.8rem;
}

/* Contact button */
.mobile-menu__contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.8rem 2rem 1.7rem;
  background: linear-gradient(115deg, #E50011 22%, #FED867 75%);
  color: #FFFFFF;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}

.mobile-menu__contact img {
  width: 2.4rem;
  height: auto;
  position: absolute;
  left: 3rem;
}

/* Utils buttons */
.mobile-menu__utils {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0rem;
}

.mobile-menu__utils-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background-color: #000000;
  color: #FFFFFF;
  padding: 2rem 2rem 2.2rem;
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
}
.mobile-menu__utils-btn:nth-child(2) {
  justify-content: center;
}

.mobile-menu__utils-btn img {
  width: 1.6rem;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  right: 1.5rem;
}

/* SNS links */
.mobile-menu__sns {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.8rem 0;
  background-color: #f5f5f5;
  border-radius: 3.2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-menu__sns-label {
  margin-right: 1.6rem;
  line-height: 1.8;
  display: flex;
  flex-direction: row;
}
.mobile-menu__sns-label > span:first-child {
  font-size: 1.4rem;
}
.mobile-menu__sns-label > span:last-child {
  font-size: 1.4rem;
}

.mobile-menu__sns-item {
  margin-right: 0.8rem;
}

.mobile-menu__sns-item img {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
}

/* Nav */
.mobile-menu__nav {
  margin-top: 3.6rem;
}

.mobile-menu__item {
  border-bottom: 1px solid #DDDDDD;
}
.mobile-menu__item:first-child .mobile-menu__link {
  padding-top: 0;
  padding-bottom: 2.4rem;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  width: 100%;
  padding: 2.2rem 0rem 2.3rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.mobile-menu__link img {
  width: 2rem;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  right: 3.4rem;
}

.mobile-menu__link-text {
  flex: 1;
  letter-spacing: 0.07em;
}

.mobile-menu__link.is-active .mobile-menu__link-text,
.mobile-menu__sub-link.is-active .mobile-menu__sub-name {
  color: #E50011;
}

/* Accordion toggle icon */
.mobile-menu__toggle-icon {
  color: #E50011;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1.6rem;
}
.mobile-menu__toggle-icon svg {
  width: 100%;
  height: 100%;
}

.mobile-menu__toggle-v {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.mobile-menu__item--has-sub.is-active .mobile-menu__toggle-v {
  transform: scaleY(0);
}

.mobile-menu__item--has-sub.is-active .mobile-menu__sub {
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-bottom: 2.2rem;
}

/* Sub menu */
.mobile-menu__sub {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.mobile-menu__sub-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0rem;
  padding: 0rem 0rem;
  text-decoration: none;
  color: #000000;
}

.mobile-menu__sub-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 0.8rem;
  padding-right: 2rem;
}

.mobile-menu__sub-link:last-child {
  border-bottom: none;
}

.mobile-menu__sub-link img {
  width: 1.6rem;
  height: auto;
}

.mobile-menu__sub-num {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #E50011;
}

.mobile-menu__sub-name {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* Legal links */
.mobile-menu__legal {
  list-style: none;
  padding: 4.8rem 0rem 6rem;
  margin: 0;
}
.mobile-menu__legal .footer__nav-line {
  top: 0;
}

.mobile-menu__legal-item {
  margin-bottom: 1.3rem;
}

.mobile-menu__legal-item:last-child {
  margin-bottom: 0;
}

.mobile-menu__legal-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  padding-left: 1.8rem;
  position: relative;
}

.mobile-menu__legal-marker {
  width: 1rem;
  height: auto;
  flex-shrink: 0;
}

.mobile-menu__legal-ext {
  width: 1.4rem;
  height: auto;
  margin-left: 0.4rem;
}

/* Body scroll lock when menu is open */
body.is-menu-open {
  overflow: hidden;
}

/*# sourceMappingURL=mobile-menu.css.map */
