@charset "utf-8";
.icon-list li {
  position: relative;
}
.icon-list li a,
.main-menu-st2 a,
.ft-main-menu li a {
  position: relative;
  transition: 0.3s ease-in-out;
}
.icon-list li a:hover,
.main-menu-st2 a:hover,
.ft-main-menu li a:hover {
  color: #f88b3d;
}
.icon-list li a::before {
  content: "";
  width: max(4.861vw, 4rem);
  height: max(4.861vw, 4rem);
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, -100%);
}
.icon-list ul li a::before {
  content: none;
}
.icon-list li:nth-child(1) a::before {
  background: url(../../../uploads/2026/03/m-icon1.webp) no-repeat;
  background-size: contain;
}
.icon-list li:nth-child(2) a::before {
  background: url(../../../uploads/2026/03/m-icon2.webp) no-repeat;
  background-size: contain;
}
.icon-list li:nth-child(3) a::before {
  background: url(../../../uploads/2026/03/m-icon3.webp) no-repeat;
  background-size: contain;
}
.icon-list li:nth-child(4) a::before {
  background: url(../../../uploads/2026/03/m-icon4.webp) no-repeat;
  background-size: contain;
}
.icon-list li:nth-child(5) a::before {
  background: url(../../../uploads/2026/03/m-icon5.webp) no-repeat;
  background-size: contain;
}
.icon-list li:nth-child(6) a::before {
  background: url(../../../uploads/2026/03/m-icon6.webp) no-repeat;
  background-size: contain;
}
.icon-list li:nth-child(7) a::before {
  background: url(../../../uploads/2026/03/m-icon7.webp) no-repeat;
  background-size: contain;
}
.icon-list li:hover > .sub-menu {
  display: block;
}
.icon-list li .sub-menu {
  z-index: 9;
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0%;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.7);
}
.icon-list li .sub-menu li:first-child {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.icon-list li .sub-menu li {
  margin-right: 0;
}
.icon-list .sub-menu li a {
  color: #000;
  font-weight: 500;
}
/*-------.is-fixed------*/
.fixed-wrap.is-fixed {
  display: flex;
  position: fixed;
  z-index: 700;
  animation: slideDown 0.4s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.fixed-wrap {
  display: none;
  justify-content: center;
  background: #fff;
  width: 100%;
  padding: 15px 0px 30px;
}
.main-menu {
  display: flex;
  gap: 2.361vw;
  margin-right: 2.361vw;
}
.main-menu-st2 {
  gap: 2.361vw;
}
.main-menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-menu.icon-list li a::before {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
}
.fixed-wrap a {
  font-size: max(1.111vw, 1.2rem);
  letter-spacing: 2px;
  font-weight: 700;
}
#menu-button {
  visibility: hidden;
  opacity: 1;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 900;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
  background: #e75493;
}

#menu-button.nav-on {
  visibility: visible;
  opacity: 1;
}

#menu-button .ham-lines {
  position: relative;
  margin: 0 auto;
  width: 30px;
  height: 23px;
}

#menu-button .ham-lines span,
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
  position: absolute;
  display: block;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 1px;
}

#menu-button .ham-lines span {
  bottom: 10px;
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
  content: "";
}

#menu-button .ham-lines::before {
  bottom: 20px;
  animation: menu-bar01 0.75s forwards;
}

#menu-button .ham-lines::after {
  bottom: 0px;
  animation: menu-bar03 0.75s forwards;
}

#menu-button .ham-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

#menu-button.is-active .ham-lines span {
  opacity: 0;
}

#menu-button.is-active .ham-lines::before {
  animation: active-menu-bar01 0.5s forwards;
}

#menu-button.is-active .ham-lines::after {
  animation: active-menu-bar03 0.5s forwards;
}
.main-menu-container {
  display: flex;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(9px) rotate(45deg);
  }

  50% {
    transform: translateY(9px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar03 {
  0% {
    transform: translateY(-9px) rotate(-45deg);
  }

  50% {
    transform: translateY(-9px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(9px) rotate(0);
  }

  100% {
    transform: translateY(9px) rotate(45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-9px) rotate(0);
  }

  100% {
    transform: translateY(-12px) rotate(-45deg);
  }
}
/*-------container----*/
@media screen and (max-width: 1180px) {
  .main-menu {
    display: flex;
    gap: 15px;
    margin-right: 15px;
  }
  .main-menu-st2 {
    gap: 15px;
  }
}

@media screen and (max-width: 820px) {
  body #menu-button {
    position: fixed;
    visibility: visible;
    opacity: 1;
    display: flex;
    z-index: 701;
  }
  #main-menu-container .main-menu {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  #main-menu-container {
    position: fixed;
    z-index: 700;
    top: 0;
    left: auto;
    right: -100vw;
    bottom: auto;
    overflow-y: auto;
    background: #fafafa;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    transition: 0.3s linear;
    padding-left: 25%;
    padding-top: calc(55px + 30px);
  }

  #main-menu-container.is-active {
    right: 0vw;
  }
  .fixed-wrap {
    display: flex;
    background: none;
    padding: 0;
  }
  .main-menu li a {
    flex-direction: row;
  }
  .main-menu-st2 {
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-direction: column;
  }
  .main-menu {
    margin-right: 0;
  }
  .main-menu.icon-list li a::before {
    margin-right: 1em;
  }
  .main-menu-container {
    display: flex;
    flex-direction: column;
  }
  .icon-list li .sub-menu {
    display: none !important;
  }
}
