body {
  overflow-x: hidden;
}

* {
  line-height: 1.6;
}

span {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

section {
  position: relative;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  font-family: "Philosopher", "Gowun Batang", sans-serif;
  font-weight: 500;
  letter-spacing: -1.3px;
}

h3,
h4,
h5,
h3 span,
h4 span,
h5 span {
  font-family: "Gowun Batang", sans-serif;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  color: var(--color-primary);
}

.content-title {
  margin-bottom: 80px;
}

.content-title.center * {
  text-align: center;
}

.content-title.white * {
  color: #fff;
}

.content-title h2~p {
  margin-top: 35px;
}

.sub-p {
  font-family: 'Philosopher', 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #aaa;
}

.sub-p.shape {
  font-size: 14px;
  margin-bottom: 15px;
}

.sub-p.shape::before {
  content: '';
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50% 50% 0 0;
  background-color: #aaa;
  margin-bottom: 3px;
}

.en-tit {
  font-size: var(--en-tit);
  letter-spacing: var(--en-letter);
  line-height: 1.2;
}

.en-letter {
  letter-spacing: var(--en-letter);
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .content-title {
    margin-bottom: 40px;
  }

  .content-title h2~p {
    margin-top: 12px;
  }
}