* {
  outline: 0;
  box-sizing: border-box;
  line-height: 150%;
  text-decoration: none;
  position: relative;
}
a,
a:link,
a:visited {
  text-decoration: none;
  color: #000;
}
p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  font-family: 'Noto Serif KR', serif;
  font-weight: normal;
  color: #000;
  word-break: normal;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
body::-webkit-scrollbar {
  display: none;
}
.menu_swrp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.menu_swrp .menu_wrp {
  width: 100%;
  max-width: 600px;
  padding: 25px;
  padding-bottom: 10px;
  background: #f0f0f0;
}
.menu_swrp .menu_wrp .top_cont {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.menu_swrp .menu_wrp .top_cont .title {
  width: 55%;
  padding-bottom: calc(55% * 90 / 370);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url('img/menu/title.svg');
}
.menu_swrp .menu_wrp .top_cont .btn_cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
}
.menu_swrp .menu_wrp .top_cont .btn_cont .btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
}
.menu_swrp .menu_wrp .top_cont .btn_cont .btns a {
  display: block;
  width: 25%;
  margin: 0 1px;
}
.menu_swrp .menu_wrp .top_cont .btn_cont .btns a .btn {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.menu_swrp .menu_wrp .top_cont .btn_cont .btn_txt {
  width: 100%;
  height: 5px;
  margin-bottom: 6px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-size: auto 100%;
  background-image: url('img/menu/btn_txt.svg');
}
@media (min-width: 740px) {
  .menu_swrp .menu_wrp .top_cont .btn_cont .btn_txt {
    height: 12px;
  }
}
.menu_swrp .menu_wrp .list_cont {
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid #000;
}
.menu_swrp .menu_wrp .list_cont .item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: #000;
  cursor: pointer;
}
.menu_swrp .menu_wrp .list_cont .item.active {
  color: #825A00;
}
.menu_swrp .menu_wrp .list_cont .item .num {
  width: 60px;
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 0.2s;
}
.menu_swrp .menu_wrp .list_cont .item .txt {
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 0.4s;
}
.menu_swrp .menu_wrp .list_cont .item .border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #000;
  transition: width 1s;
}
.menu_swrp .menu_wrp .list_cont .item.on .num {
  opacity: 1;
}
.menu_swrp .menu_wrp .list_cont .item.on .txt {
  opacity: 1;
}
.menu_swrp .menu_wrp .list_cont .item.on .border {
  width: 100%;
}
.body_wrp {
  background: #F0F0F0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body_wrp .content_wrp {
  width: 100%;
  max-width: 600px;
  padding: 25px;
}
.body_wrp .content_wrp .content_cont {
  width: 100%;
  padding-top: 0px;
  padding-bottom: 100px;
}
.body_wrp .content_wrp .content_cont .content {
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s;
  font-size: 0.9rem;
  display: none;
}
.body_wrp .content_wrp .content_cont .content h2 {
  margin-block-start: 1.5em;
  margin-block-end: 1.5em;
}
.body_wrp .content_wrp .content_cont .content h3 {
  margin-block-start: 1.5em;
  margin-block-end: 1.5em;
}
.body_wrp .content_wrp .content_cont .content p {
  margin-block-start: 2em;
  margin-block-end: 2em;
  line-height: 1.85rem;
}
.body_wrp .content_wrp .content_cont .content.on {
  opacity: 1;
}
.body_wrp .content_wrp .content_cont .content img {
  width: 100%;
  height: auto;
}
.body_wrp .content_wrp .content_cont .content sup {
  font-size: 0.5em;
}
.body_wrp .content_wrp .content_cont .content .caption {
  font-size: 0.65em;
}
@media (min-width: 370px) {
  .body_wrp .content_wrp .content_cont .content .caption {
    font-size: 0.75em;
  }
}
@media (min-width: 740px) {
  .body_wrp .content_wrp .content_cont .content .caption {
    font-size: 0.95em;
  }
}
.footer_swrp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.footer_swrp .footer_wrp {
  width: 100%;
  max-width: 600px;
  padding: 10px 25px;
}
.footer_swrp .footer_wrp .logo {
  width: calc(10px * 166 / 20);
  height: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-size: auto 100%;
  background-image: url('img/menu/logo.svg');
}
