/* 공용 */
@font-face {
  font-family: 'Freesentation-9Black';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2404@1.0/Freesentation-9Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
* { margin:0; padding:0; box-sizing: border-box; }
a { text-decoration: none; color:#111; display: block; white-space: nowrap; font-family: 'Freesentation-9Black';}
li { list-style:none; }
img { width:100%; height:100%; object-fit: cover; }

body {
  font-family: 'Freesentation-9Black';
}

h1{ font-size: 30px; }
h2{ font-size: 24px; }
h3{ font-size: 20px; }
p { font-size: 16px; }
span { font-size:16px; }
i { font-style:normal; font-size: 14px; }
b { font-size: 14px; }
.fs12 {font-size:12px;}
.center { width:1200px; margin:0 auto; }
.flex { display: flex; flex-flow: row nowrap; justify-content:space-between; align-items: center; }
.flex2 { display: flex; flex-flow: column nowrap; justify-content: center; align-content: flex-start; }
.swiper-slide { cursor: pointer; }

html { overflow-x: hidden;}

.flex {
  display:flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.wrap { width:100%;}
section {
  width: 100%;
}
/* View more버튼 */
/* rem단위 - root em이라는 뜻, 브라우저 가로길이가 기준이며 1rem은 16px정도임 > 상대크기 */
.more-btn {
  width: 10rem;
  height: 3rem;
  border: 1px solid #fff;
  margin-top: 48rem;
}
.more-btn a{
  display:flex;
}
.more-btn a .more {
  width: 70%;
  height: 3rem;
  /* text-align: center; */
  border-right: 1px solid #fff;
  position: relative;
}
.more-btn a .more span{
  position: absolute;
  background-color: #fff;
  width: 0;
  height: 100%;
  transition:width 0.4s ease-out;
}
.more-btn a .more p{
  position:absolute;
  width: 100%;
  height: 100%;
  /* 글자를 가운데로 정렬 */
  display:flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color 0.4s ease-out;
}
.more-btn:hover a .more span {
  width: 100%;
}
.more-btn:hover a .more p{
  color:#222;
}
.more-btn a .arrow {
  padding: 0.6rem 0.8rem;
  width:30%;
}


header {
    border-bottom: 1px solid #666;
    width:100%;
    height:90px;
    display: flex;
    flex-flow:column nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    z-index: 100;
    background-color: white;
    transition: top 0.5s;
    position: fixed;
    top:0;
}
header .logo {
    width:240px;
    margin: 0 auto;
}

.policy-check h1 {
  padding-bottom: 60px;
  text-align: center;
}
.policy-box {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.policy-box h2 {
      padding-bottom: 30px;
}
.policy-content {
  max-height: 200px;
  overflow-y: auto;
  background: #f9f9f9;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 14px;
}
label {
  display: block;
  margin-top: 10px;
}
button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background: #007bff;
  color: white;
  cursor: pointer;
}
button:disabled {
  background: #aaa;
  cursor: not-allowed;
}

footer {
    width: 100%;
    margin-top: 50px;
}
footer .footer-link {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
}
footer .footer-link .login {
    border-bottom: 1px solid #666;
    padding-bottom: 3px;
    margin-bottom: 15px;
}
footer .copy {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}