* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Malgun Gothic", dotum, Georgia, serif;
  background: #fff;
  color: #000;
}

a {
  color: #262626;
  text-decoration: none;
}

ul {
  list-style: none;
}

#content {
  /* padding-top: 20px; */
  padding-left: 16px;
}

#footer {
  font-size: 10pt;
  padding: 5px 0;
  text-align: center;
}

.foot_desc {
  font-size: 10pt;
  padding: 5px 0;
  text-align: center;
}

.band p,
.band-notice p {
  display: none;
}

/* h3 {
    padding: 20px 10px 5px 0;
    margin: 0;
} */

h4 {
  padding: 10px 0 5px 0;
  color: #606060;
}

img {
  margin-right: 8px;
  align-items: center;
}

.head_desc {
  padding-left: 20px;
  color: #606060;
  font-size: 0.9rem;
}
.button {
  background-color: dodgerblue;
  color: white;
  margin: 20px 0 25px 20px;
  padding: 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.button:hover {
  background-color: darkblue;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.category-title {
  /* overflow: hidden; */
  display: flex;
  max-width: 1100px;
  font-size: 2rem;
  /* font-size: 20px; */
  font-weight: 700;
  padding: 20px 0 15px 0;
}
.gallery {
  border: 0px solid #ccc;
}
.gallery:hover {
  border: 0px solid #777;
}
.gallery img {
  width: 200px;
  height: auto;
}

/* 멤버십 전용 콘텐츠 강제 줄 바꿈 */
.membership-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: crimson 5px solid;
  /* height: 50px; */
}
.membership-contents span,
.membership-contents i {
  padding-left: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: crimson;
}

/* 미디어쿼리 */
@media (max-width: 700px) {
  #header p,
  #header .button,
  nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .menu-button:hover {
    opacity: 0.5;
  }

  .menu-hidden {
    /* 화면 크기 축소시 좌측에 나타나는 메뉴 */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #f2f2f2;
    width: 50%;
    height: 100%;
    border-right: #ccc 1px solid;
    opacity: 0.9;
    padding: 30px;
    transform: translateX(-500px);
    transition: transform 0.5s ease-in-out;
  }

  .menu-hidden li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
  }

  .menu-hidden li:last-child {
    border-bottom: 0;
  }

  .menu-hidden.show {
    transform: translateX(-20px);
  }

  .logo-hidden {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-image: url("http://www.iexceller.com/images/home_logo_kor.png");
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 auto;
  }

  .band,
  .band-notice {
    grid-template-columns: repeat(2, 1fr);
  }

  .links .links-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .band,
  .band-notice {
    grid-template-columns: 1fr;
  }

  .links .links-inner {
    grid-template-columns: 1fr;
  }
}
