@charset "UTF-8";
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 100;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container #h-logo {
  flex: 0 0 auto;
  height: 60%;
}
#header .container #h-logo img {
  width: auto;
  height: 100%;
}
#header .container .h-right-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap #h-global-nav {
    display: none;
  }
}
#header .container .h-right-wrap #h-global-nav .depth-1 {
  height: 62px;
  padding: 0 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  background: #F4ECE2;
  border-radius: 10000rem;
  gap: 60px;
}
@media (max-width: 1440px) {
  #header .container .h-right-wrap #h-global-nav .depth-1 {
    height: 56px;
    padding: 0 36px;
    gap: 40px;
  }
}
#header .container .h-right-wrap #h-global-nav .depth-1 > li {
  position: relative;
  flex: 0 0 auto;
}
#header .container .h-right-wrap #h-global-nav .depth-1 > li > a {
  display: flex;
  align-items: center;
  height: 62px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: #2D2D2D;
}
#header .container .h-right-wrap #h-global-nav .depth-1 > li:hover > a {
  color: #6B400F;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #DE9300;
  text-decoration-thickness: 4px;
}
#header .container .h-right-wrap #h-global-nav .depth-1 > li:hover .depth-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
#header .container .h-right-wrap #h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  flex-direction: column;
  min-width: 170px;
  padding: 14px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 10;
}
#header .container .h-right-wrap #h-global-nav .depth-1 > li .depth-2 li a {
  display: block;
  padding: 11px 26px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #2D2D2D;
  text-align: center;
  white-space: nowrap;
  transition: 0.15s;
}
#header .container .h-right-wrap #h-global-nav .depth-1 > li .depth-2 li a:hover {
  background: #FDF6EA;
  color: #6B400F;
  font-weight: 700;
}
#header .container .h-right-wrap .m-menu-open {
  display: none;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-open {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
  }
  #header .container .h-right-wrap .m-menu-open i {
    font-size: 40px;
    line-height: 1;
    color: black;
  }
}

#footer {
  position: relative;
  padding: 80px 0;
  background: #F2F2F2;
  overflow: hidden;
}
@media (max-width: 768px) {
  #footer {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  #footer {
    padding: 40px 0;
  }
}
#footer .tail-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
#footer .container {
  position: relative;
  z-index: 1;
  width: 95%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  #footer .container {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  #footer .container {
    gap: 30px;
  }
}

/* 로고 + 정보 */
.tail-inner {
  text-align: center;
}

.tail-logo a {
  display: inline-block;
}
.tail-logo img {
  height: 74px;
  width: auto;
}
@media (max-width: 768px) {
  .tail-logo img {
    height: 58px;
  }
}
@media (max-width: 480px) {
  .tail-logo img {
    height: 48px;
  }
}

.tail-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
  max-width: 680px;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .tail-info {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }
}
@media (max-width: 480px) {
  .tail-info {
    gap: 10px;
    margin-top: 20px;
  }
}
.tail-info .info-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  line-height: 1.4;
  color: #4A4A4A;
}
@media (max-width: 768px) {
  .tail-info .info-item {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .tail-info .info-item {
    font-size: 14px;
    gap: 7px;
  }
}
.tail-info .info-item > img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .tail-info .info-item > img {
    width: 18px;
    height: 18px;
  }
}
.tail-info .info-item a {
  color: inherit;
  text-decoration: none;
}
.tail-info .info-item a:hover {
  text-decoration: underline;
}

/* 블로그 버튼 */
.tail-blog {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 170px;
  padding: 26px 10px;
  border: 1px solid #4CA054;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: 0.2s;
}
@media (max-width: 1280px) {
  .tail-blog {
    position: static;
    transform: none;
  }
}
@media (max-width: 768px) {
  .tail-blog {
    width: 150px;
    gap: 10px;
    padding: 20px 10px;
  }
}
.tail-blog:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}
.tail-blog .blog-ico img {
  display: block;
  width: 52px;
  height: auto;
}
@media (max-width: 768px) {
  .tail-blog .blog-ico img {
    width: 44px;
  }
}
.tail-blog .blog-txt {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
@media (max-width: 768px) {
  .tail-blog .blog-txt {
    font-size: 15px;
  }
}

.m-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 200;
}
.m-background.on {
  opacity: 1;
  visibility: visible;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  z-index: 201;
}
.m-menu.on {
  transform: translateX(0);
}
@media (max-width: 480px) {
  .m-menu {
    width: 280px;
  }
}
.m-menu .m-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid #EEE;
}
.m-menu .m-menu-top .m-menu-logo {
  height: 34px;
}
.m-menu .m-menu-top .m-menu-logo a {
  display: block;
  height: 100%;
}
.m-menu .m-menu-top .m-menu-logo img {
  width: auto;
  height: 100%;
}
.m-menu .m-menu-top .m-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.m-menu .m-menu-top .m-menu-close i {
  font-size: 30px;
  line-height: 1;
  color: #2D2D2D;
}
.m-menu .m-depth-1 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.m-menu .m-depth-1 > li {
  border-bottom: 1px solid #F4F4F4;
}
.m-menu .m-depth-1 > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 24px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D2D2D;
}
.m-menu .m-depth-1 > li > a i {
  font-size: 24px;
  line-height: 1;
  color: #B0A798;
  transition: transform 0.25s ease;
}
.m-menu .m-depth-1 > li .m-depth-2 {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.m-menu .m-depth-1 > li .m-depth-2 .m-depth-2-inner {
  overflow: hidden;
  background: #FBF7F0;
}
.m-menu .m-depth-1 > li .m-depth-2 .m-depth-2-inner a {
  display: block;
  padding: 13px 24px 13px 38px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #5A5248;
}
.m-menu .m-depth-1 > li .m-depth-2 .m-depth-2-inner a:active {
  color: #6B400F;
}
.m-menu .m-depth-1 > li.has-depth.open > a i {
  transform: rotate(180deg);
}
.m-menu .m-depth-1 > li.has-depth.open .m-depth-2 {
  grid-template-rows: 1fr;
}/*# sourceMappingURL=common.css.map */