#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 10rem;
  z-index: 500;
  background: white;
  border-bottom: 1px solid black;
}
@media (max-width: 1280px) {
  #header {
    height: 6rem;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .container #h-logo {
  flex: 0 0 auto;
  height: 60%;
  display: flex;
}
@media (max-width: 1280px) {
  #header .container #h-logo {
    height: 80%;
  }
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#header .container .h-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7rem;
}
#header .container .h-global-nav .depth-1 li {
  position: relative;
  flex: 0 0 auto;
}
#header .container .h-global-nav .depth-1 li > a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  letter-spacing: 0.2rem;
}
#header .container .right-phone {
  padding: 0.5rem 0;
  padding-left: 4.4rem;
  border-left: 1px solid black;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  letter-spacing: 0.1rem;
}
@media (max-width: 1280px) {
  #header .container .right-phone {
    display: none;
  }
}
#header .container #h-mobile-nav {
  flex: 0 0 auto;
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  #header .container #h-mobile-nav {
    display: flex;
  }
}
#header .container #h-mobile-nav a, #header .container #h-mobile-nav div {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fafafa;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
#header .container #h-mobile-nav a i, #header .container #h-mobile-nav div i {
  font-size: 28px;
  line-height: 1;
  color: #464646;
  font-variation-settings: "FILL" 1;
}
#header .container #h-mobile-nav div i {
  font-variation-settings: "wght" 600;
}

.whole-menu {
  position: fixed;
  right: -300px;
  top: 12px;
  width: 280px;
  height: calc(100% - 24px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 501;
  border: 1px solid white;
  border-right-color: #ddd;
  border-bottom-color: #ddd;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}
.whole-menu.active {
  right: 12px;
}
.whole-menu .whole-head {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.whole-menu .whole-head > a {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.whole-menu .whole-head > a > svg {
  width: 80%;
  height: 80%;
  fill: black;
}
.whole-menu .whole-head .m-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.whole-menu .whole-head .m-menu-close > svg {
  width: 80%;
  height: 80%;
  fill: black;
}
.whole-menu .whole-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-body .w-global-nav {
  width: 100%;
  height: auto;
}
.whole-menu .whole-body .w-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li > a, .whole-menu .whole-body .w-global-nav .depth-1 > li > span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  cursor: pointer;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .toggle-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .toggle-box > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 li {
  width: 100%;
  height: auto;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 li a {
  padding-left: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #3D3D3D;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li.active .toggle-box {
  transform: rotate(90deg);
}
.whole-menu .whole-body .w-global-nav .depth-1 > li.active .depth-2 {
  max-height: 200px;
  margin-top: 12px;
}

#footer {
  width: 100%;
  height: auto;
  background: black;
  padding: 90px 0;
}
@media (max-width: 1280px) {
  #footer {
    padding: 4rem 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
#footer .container .top {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 1280px) {
  #footer .container .top {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
#footer .container .top .left {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
}
@media (max-width: 1280px) {
  #footer .container .top .left {
    gap: 28px;
  }
}
#footer .container .top .left #f-logo {
  width: 170px;
  height: auto;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .container .top .left #f-logo {
    width: 140px;
  }
}
#footer .container .top .left #f-logo > img {
  width: 100%;
  height: auto;
}
#footer .container .top .left .f-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 70px;
}
@media (max-width: 1280px) {
  #footer .container .top .left .f-nav {
    gap: 12px 24px;
  }
}
#footer .container .top .left .f-nav a {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1.1;
  color: white;
  letter-spacing: 2px;
}
@media (max-width: 1280px) {
  #footer .container .top .left .f-nav a {
    font-size: 14px;
  }
}
#footer .container .top .right {
  flex: 0 1 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (max-width: 1280px) {
  #footer .container .top .right {
    grid-template-columns: repeat(2, 1fr);
  }
}
#footer .container .top .right .box-button {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #footer .container .top .right .box-button {
    width: 48px;
  }
}
#footer .container .bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1280px) {
  #footer .container .bottom {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}
#footer .container .bottom .f-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 1280px) {
  #footer .container .bottom .f-infos {
    align-items: center;
  }
}
#footer .container .bottom .f-infos > span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .bottom .f-infos > span {
    font-size: 14px;
  }
}
#footer .container .bottom .copyright {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .bottom .copyright {
    font-size: 14px;
  }
}/*# sourceMappingURL=common.css.map */