.tab-area {
  display: flex;
  gap: 12px;
}
.tab-area .tab-element {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  height: 81px;
  background-color: white;
  border-radius: 20px 20px 0 0;
  font-family: var(--global--font--m-plus);
  font-size: 30px;
  font-weight: 800;
  color: #8F8F8F;
  cursor: pointer;
}
.tab-area .tab-element.selected {
  color: var(--global--color--purple);
  cursor: default;
}

.content-body {
  background-color: white;
  border-radius: 0 20px 20px 20px;
  padding: 50px;
}

.content-body .content.q-and-a .content-element {
  font-family: var(--global--font--m-plus);
  font-size: 18px;
  font-weight: 500;
  color: var(--global--color--dark-purple);
  text-align: start;
}
.content-body .content.q-and-a .content-element:not(:first-child) {
  padding-top: 20px;
}
.content-body .content.q-and-a .content-element:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: solid 3px #FDDDED;
}
.content-body .content.q-and-a .content-element .q {
  display: flex;
  align-items: center;
}
.content-body .content.q-and-a .content-element .q .text {
  font-weight: 800;
}
.content-body .content.q-and-a .content-element .q::before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "Q";
  width: 40px;
  height: 40px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  background-color: #4D3E4E;
  color: white;
  margin-right: 15px;
  flex-shrink: 0;
}
.content-body .content.q-and-a .content-element .a {
  padding-top: 10px;
  display: flex;
}
.content-body .content.q-and-a .content-element .a::before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "A";
  width: 40px;
  height: 40px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  background-color: var(--global--color--pink);
  color: white;
  margin-right: 15px;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .content-body .content.q-and-a .content-element {
    font-size: 24px;
  }
}

.zoom-popup-bg {
  z-index: 1000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.68);
}
.zoom-popup-bg .close {
  position: fixed;
  right: 50px;
  top: 50px;
  width: 50px;
  cursor: pointer;
}
.zoom-popup-bg .img-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  max-height: 800px;
  aspect-ratio: 3/4;
  width: 100%;
}
.zoom-popup-bg .img-box .img-anchor {
  position: relative;
  width: 100%;
}
.zoom-popup-bg .img-box .img-anchor img {
  width: 100%;
  background-color: white;
  object-fit: cover;
}
.zoom-popup-bg .img-box .img-anchor .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.68);
  font-size: 30px;
  font-weight: 800;
  font-family: var(--global--font--noto-sans);
}
.zoom-popup-bg .img-box .img-anchor .button.previous {
  left: -80px;
}
.zoom-popup-bg .img-box .img-anchor .button.next {
  right: -80px;
}
@media screen and (max-width: 750px) {
  .zoom-popup-bg .img-box .img-anchor .button {
    width: 80px;
    height: 80px;
    font-size: 50px;
  }
  .zoom-popup-bg .img-box .img-anchor .button.previous {
    left: -20px;
  }
  .zoom-popup-bg .img-box .img-anchor .button.next {
    right: -20px;
  }
}

.detail-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.detail-img .content-element {
  padding-bottom: 30px;
}
.detail-img .content-element .img {
  width: 250px;
  height: 355px;
  background-color: black;
  cursor: pointer;
}
.detail-img .content-element .date {
  padding-top: 5px;
  text-align: start;
  font-size: 16px;
  font-family: var(--global--font--noto-sans);
  color: #8F8F8F;
}

.content-body.store,
.content-body.cast,
.content-body.blog {
  border-radius: 0 25px 25px 25px;
  background-color: white;
}
@media screen and (max-width: 750px) {
  .content-body.store,
  .content-body.cast,
  .content-body.blog {
    padding: 30px;
  }
}
.content-body.store .article-element,
.content-body.cast .article-element,
.content-body.blog .article-element {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-body.store .article-element .link,
.content-body.cast .article-element .link,
.content-body.blog .article-element .link {
  display: block;
  text-decoration: none;
  flex-grow: 1;
}
.content-body.store .article-element .link .thumbnail,
.content-body.cast .article-element .link .thumbnail,
.content-body.blog .article-element .link .thumbnail {
  height: 250px;
  width: 250px;
}
.content-body.store .article-element .link .thumbnail img,
.content-body.cast .article-element .link .thumbnail img,
.content-body.blog .article-element .link .thumbnail img {
  height: 100% !important;
  width: 100% !important;
}
.content-body.store .article-element .link .text,
.content-body.cast .article-element .link .text,
.content-body.blog .article-element .link .text {
  text-align: start;
  font-size: 20px;
  font-weight: 800;
  color: var(--global--color--dark-purple);
}
.content-body.store .article-element .other,
.content-body.cast .article-element .other,
.content-body.blog .article-element .other {
  display: flex;
  font-size: 15px;
  color: #8F8F8F;
  font-weight: 500;
  gap: 10px;
}
.content-body.store .article-element .other .play,
.content-body.cast .article-element .other .play,
.content-body.blog .article-element .other .play {
  color: var(--global--color--purple);
  font-weight: 800;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.content-body.store .article-element .other .play::before,
.content-body.cast .article-element .other .play::before,
.content-body.blog .article-element .other .play::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url("../img/mic-icon.svg") no-repeat;
  padding-right: 5px;
  pointer-events: none;
}
.content-body.store .article-element .other .play.playing::before,
.content-body.cast .article-element .other .play.playing::before,
.content-body.blog .article-element .other .play.playing::before {
  background: url("../img/stop-icon.svg") no-repeat;
}
.content-body.store .article-element .other .flex-spacer,
.content-body.cast .article-element .other .flex-spacer,
.content-body.blog .article-element .other .flex-spacer {
  flex-grow: 1;
}
.content-body.store .article-element .date,
.content-body.cast .article-element .date,
.content-body.blog .article-element .date {
  text-align: end;
  font-size: 15px;
  color: #8F8F8F;
  font-weight: 500;
}

.content-body.store,
.content-body.cast,
.content-body.blog {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.content-body.store .article-element,
.content-body.cast .article-element,
.content-body.blog .article-element {
  width: 1155px;
  height: 130px;
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.content-body.store .article-element .link,
.content-body.cast .article-element .link,
.content-body.blog .article-element .link {
  text-decoration: none;
  flex-grow: 0;
}
.content-body.store .article-element .link .thumbnail,
.content-body.cast .article-element .link .thumbnail,
.content-body.blog .article-element .link .thumbnail {
  width: 130px;
  height: 130px;
}
.content-body.store .article-element .right-element,
.content-body.cast .article-element .right-element,
.content-body.blog .article-element .right-element {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content-body.store .article-element .content-text,
.content-body.cast .article-element .content-text,
.content-body.blog .article-element .content-text {
  padding-top: 10px;
  text-align: start;
  font-size: 15px;
  color: #8F8F8F;
}
@media screen and (max-width: 750px) {
  .content-body.store .article-element,
  .content-body.cast .article-element,
  .content-body.blog .article-element {
    width: 630px;
    height: 150px;
  }
  .content-body.store .article-element .link .thumbnail,
  .content-body.cast .article-element .link .thumbnail,
  .content-body.blog .article-element .link .thumbnail {
    width: 150px;
    height: 150px;
  }
  .content-body.store .article-element .content-text,
  .content-body.cast .article-element .content-text,
  .content-body.blog .article-element .content-text {
    padding-top: 10px;
  }
  .content-body.store .article-element .other,
  .content-body.cast .article-element .other,
  .content-body.blog .article-element .other {
    justify-content: space-between;
  }
}
.content-body.store hr,
.content-body.cast hr,
.content-body.blog hr {
  height: 1px;
  width: 100%;
  background-color: #8F8F8F;
  margin: 0;
  border: none;
}
.content-body.store hr:last-child,
.content-body.cast hr:last-child,
.content-body.blog hr:last-child {
  display: none;
}

/*# sourceMappingURL=recruit-q-and-a.css.map */
