@charset "UTF-8";
@import url('./font.css');

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'pretendard', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #212121;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:active,
a:hover,
a:focus {
  color: #212121;
}
button {
  border: 0 none;
  border-radius: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
ul,
ol {
  list-style: none;
}
table {
  border-collapse: collapse;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

b,
strong {
  font-weight: 700;
}
em {
  font-style: normal;
}
/* 이용약관 */
.user-policy {
  padding: 20px 0;
}
.header-tit {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.policy-detail-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem 2rem 0;
}
.policy-detail-wrap .detail-inner-box {
  overflow-y: auto;
  height: 100%;
}
.policy-detail-wrap .detail-inner-box .agree-bold-tit {
  display: block;
  line-height: 2.6rem;
  font-weight: 600;
  font-size: 1.8rem;
  padding-bottom: 2rem;
}
.policy-detail-wrap .detail-inner-box .agree-sub-tit {
  display: block;
  line-height: 1;
  font-weight: 600;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
}
.policy-detail-wrap .detail-inner-box div {
  padding-bottom: 2rem;
  line-height: 1.6;
}
/* 개인정보처리방침 */
.policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-tit {
  display: block;
  padding-bottom: 1rem;
  text-align: center;
}
.policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-table {
  display: flex;
  flex-direction: column;
  border-bottom: 0.1rem solid #ddd;
  margin: 1rem 0 1.8rem;
}
.policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-table li {
  flex: 1;
}
.policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-table li strong {
  display: block;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  white-space: nowrap;
  background-color: #f8f8f8;
  border-top: 0.1rem solid #ddd;
  border-bottom: 0.1rem solid #ddd;
}
.policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-table li span {
  display: block;
  padding: 1rem;
}
.policy-detail-wrap .detail-inner-box .agreement-marketing .agree-txt {
  display: block;
  text-align: left;
  word-break: keep-all;
  line-height: 1.2;
}
.policy-detail-wrap .detail-inner-box .agreement-marketing .agree-txt::before {
  content: '•';
  display: inline-block;
  padding-right: 0.3rem;
}
@media (min-width: 768px) {
  .policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-table {
    flex-direction: row;
  }
  .policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-table li {
    border-right: 0.1rem solid #ddd;
  }
  .policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-table li:last-child {
    border-right: none;
  }
  .policy-detail-wrap .detail-inner-box .agreement-marketing .agreement-table li strong {
    padding: 0 1rem;
  }
}
