/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* code */
body {
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  width: 100%;
  min-height: 100vh;
  background-color: #0A0F2A;
}

.info-text-area {
  /* max-width: 650px; */
  width: 100%;
  margin-bottom: 44px;
}

.info-text-area > p {
  word-break: keep-all;
}

.first {
  background-image: url(/kansong/bg-1.jpg);
  background-size: 100% 100%;
  padding: 0 16px;
}
.top-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.interverse-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  margin-top: 1rem;
  /* margin-right: 1.5rem; */
  padding: 0.5rem 1.5rem;
  border-radius: 16px 0px;
  background: linear-gradient(180deg, #4924e8 0%, #8c55c0 100%);
  width: auto;
  height: auto;
}

@media (max-width: 1024px) {
  .interverse-btn {
    max-width: 30vw;
    max-height: 20vh;
  }
  .interverse-btn > img {
    max-width: 30vw;
    /* max-height: 20vh; */
  }
}

.first-text-plain {
  font-family: Pretendard;
  color: #EDD4E9;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  word-break: keep-all;
}

.first-text-background {
  background-color: #EDD4E9;
  color: #0A0F2A;
  font-weight: 800;
  word-break: keep-all;
}

.first-text-caption {
  color: #C1B4BF;
  font-size: 16px;
  text-align: center;
  word-break: keep-all;
}

.second {
  width: 100%;
  gap: 32px;
  /* padding: 0 6px; */
  /* border: 1px solid red; */
}

.second-inner {
  padding: 0px 20px;
}

.bordered-text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 852px;
  border: 1px solid #9F8C9C;
  padding: 40px 0px; /* 중요) 어차피 내용물이 중간에 위치하기 때문에 양쪽 여백은 안줘야 함 */
  margin: 32px auto; /* second-inner 내에서 중간에 위치하기 위함 */
  word-break: keep-all;
}

.bordered-text-area:first-child {
  margin: 0px auto;
}

.info-sub-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-sub-area p {
  word-break: keep-all;
}

h2 > .text-title {
  margin-bottom: 8px;
  color: #EDD4E9;
  text-align: center;
  font-family: GmarketSans;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  word-break: keep-all;
  /* 36.4px */
}

.second-text-plain {
  color: #EDD4E9;
  font-family: Pretendard;
  font-size: 20px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  word-break: keep-all;
  /* 28px */
}

.text-background {
  background-color: #EDD4E9;
  color: #0A0F2A;
  font-weight: 800;
  word-break: keep-all;
}

.apply_btn {
  font-family: Pretendard;
  background-color: #4924E8;
  border: 1px solid #4924E8;
  padding: 8px 16px;
  color: #EDD4E9;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.viewing-flow {
  display: flex;
  gap: 12px;
}

@media (max-width: 1023px) {
  .viewing-flow {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

.logo-area {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 28px;
  padding-bottom: 120px;
}

/*** utilities ***/
.content-center {
  text-align: center;
}

.no-word-break {
  word-break: keep-all;
}