* {
  word-break: keep-all;
}

body {
  height: auto;
  padding-top: 88px;
  overflow: hidden;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 88px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.3);
  z-index: 300;
}
#header .container {
  position: relative;
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: grid;
  grid-template-columns: 124px 1fr 124px;
  gap: 1rem;
}
#header .container .logo-cell {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#header .container .logo-cell #h-logo {
  width: auto;
  height: auto;
}
#header .container .logo-cell #h-logo > img {
  width: auto;
  height: 50px;
}
#header .container .h-global-nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#header .container .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container .h-global-nav .depth-1 > li {
  position: relative;
  flex: 0 0 180px;
  height: 100%;
}
#header .container .h-global-nav .depth-1 > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
  color: black;
  line-height: 1.3;
  text-align: center;
  word-break: keep-all;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0px;
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: 60px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 > a:hover {
  background: #196587;
  color: white;
}
#header .container .h-global-nav .depth-1 > li:hover > a {
  background: #196587;
  color: white;
}
#header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  max-height: 360px;
}
#header .container .h-right-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
#header .container .h-right-box .sch-button {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
#header .container .h-right-box .sch-button > svg {
  width: 100%;
  height: auto;
  fill: black;
}
#header .container .h-right-box .menu-open-btn {
  width: auto;
  height: 18px;
  cursor: pointer;
}
#header .container .h-right-box .menu-open-btn > img {
  width: auto;
  height: 100%;
}

.product-detail-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.product-detail-modal.active {
  visibility: visible;
  opacity: 1;
}
.product-detail-modal .modal-close-btn {
  position: absolute;
  top: 10px;
  right: calc((100% - 1280px) / 2);
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 1440px) {
  .product-detail-modal .modal-close-btn {
    right: 2.5%;
  }
}
.product-detail-modal .modal-close-btn > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.product-detail-modal .product-image-box {
  position: relative;
  width: 95%;
  height: 100%;
  max-width: 1280px;
}
.product-detail-modal .product-image-box > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#footer {
  width: 100%;
  height: auto;
  padding: 70px 0 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1520px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 1rem;
}
#footer .container .left {
  width: 100%;
  padding-top: 68px;
}
#footer .container .left .policy-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#footer .container .left .policy-wrap > a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #3D3D3D;
  line-height: 1.2;
}
#footer .container .left .policy-wrap > a:not(:last-of-type) {
  padding-right: 12px;
  margin-right: 12px;
}
#footer .container .left .policy-wrap > a:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 80%;
  background: #3D3D3D;
}
#footer .container .center {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .container .center > a {
  width: auto;
  height: 60px;
  margin-bottom: 12px;
  display: flex;
}
#footer .container .center > a > img {
  width: auto;
  height: 100%;
}
#footer .container .center .f-slogan {
  margin-bottom: 56px;
  font-size: 18px;
  line-height: 1.2;
  color: black;
  text-align: center;
  word-break: keep-all;
}
#footer .container .center .f-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#footer .container .center .f-info .item {
  font-size: 16px;
  line-height: 1.2;
  word-break: keep-all;
  text-align: center;
  color: #3D3D3D;
}
#footer .container .right {
  width: 100%;
  height: auto;
  padding-top: 68px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 136px;
}
#footer .container .right .social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
#footer .container .right .social-nav > a {
  flex: 0 0 38px;
  display: flex;
}
#footer .container .right .social-nav > a > img {
  width: 100%;
  height: auto;
}
#footer .container .right .copyright {
  font-size: 14px;
  line-height: 1;
  color: #3D3D3D;
  word-break: keep-all;
}/*# sourceMappingURL=common.css.map */