/* 공통적인 스타일 - 모든 html파일에서 연결 됨*/
:root{
    /* 사용할 변수 값 모읍 */
    --f-size-pc:20px;
    --f-size-tab:18px
    --f-size-mo:14px;
    /* 여백 설정 */
    --space-x-small:0.25rem; /* 5px */
    --space-small:0.5rem; /* 10px */
    --space-nomal:1rem; /* 20px */
    --space-large:2rem; /* 40px */
    --space-x-large:4rem; /* 80px */
    --space-xx-large:6rem; /* 120px  */
    /* 색상 */
    --main-color:#000;
    --brown-color:#89796A;
    --gold-color:#C89F65;
    --shadow-color:#707070;
    /* 폰트 사이즈 */
    --heading1:3rem; /* 60px */
    --heading2:2rem; /* 40px */
    --heading3:1.6rem; /* 32px */
    --heading4:1.3rem; /* 26px */
    --body:1rem;
    --detail:0.9rem; /* 12.6px */
    --button:0.75rem; /* 10.5px */
}
.more_button{
    border: 0.1rem solid #000;
    color: #000;
    font-size: var(--button);
    border-radius: var(--space-x-small);
    transition: all 0.4s ease 0s;
    cursor: pointer;
}
.more_button a{
    display: flex;
    gap: var(--space-nomal);
    padding: 0.3rem 0.8rem 0.3rem 1rem;
    align-items: center;
    justify-content: center;
}
.more_button:hover{
    background-color: #000;
    color: #fff;
}
.more_button path{
    transition: all 0.4s ease 0s;
}
.more_button:hover path{
    stroke: #fff;
}
.more_button3 {
    display: flex;
    gap: var(--space-nomal);
    padding: 0.3rem 0.8rem 0.3rem 1rem;
    align-items: center;
    justify-content: center;
    border: 0.1rem solid #fff;
    font-size: var(--button);
    color: #fff;
}
.more_button4 {
    display: flex;
    gap: var(--space-nomal);
    padding: 0.3rem 0.8rem 0.3rem 1rem;
    align-items: center;
    justify-content: center;
    border: 0.1rem solid #fff;
    font-size: var(--button);
    color: #fff;
}
.more_button3 img{
    height: 1.2rem;
    width: 1.2rem;
}
.more_button4 img{
    height: 1.2rem;
    width: 1.2rem;
}
.more_button3:hover{
    background-color: rgba(255, 255, 255, 0.384);
    color: #fff;
}
.more_button2:hover{
    background-color: rgba(255, 255, 255, 0.384);
    color: #fff;
}

@import url('//fonts.googleapis.com/earlyaccess/nanummyeongjo.css');
.nanum{
    font-family: nanummyeongjo,serif;
}
.pageNation{
    margin-top: 4rem;
    display: flex;
    gap: var(--space-large);
    justify-content: center;
    align-items: center;
  }
  .pageNumber{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-nomal);
  }
  
  .page_btn a{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page_btn{
    padding: var(--space-x-small);
  }
  .page_btn>a:hover svg,
  .page_btn>a:hover path{
    fill: var(--main-color);
    stroke: #fff;
  }
  .pn.on{
    padding: var(--space-small) var(--space-nomal);
    background-color: #454545;
    color: #fff;
    border-radius: 1.25rem;
  }
  .wrap{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: auto;
}
.main{
    flex: 1;
    height: 100%;
    position: relative;
}
.common{
    padding: 0 13rem;
}
html{
    font-size: var(--f-size-pc);
    font-family:Pretendard,sans-serif;
}
@media (max-width:1400px){
    html{
        font-size: var(--f-size-tab);
    }
    .common{
        padding: 0 2rem;
    }
}
@media (max-width:768px){
    html{
        font-size: var(--f-size-mo);
    }
    p{
        font-size: 14px;
    }
    .common{
        padding: 0 1rem;
    }
    h1.cantata{
        font-size: 2rem
    }
}
h1{
    font-size: var(--heading1);
}
.cantata{
    font-family: cantataone,serif;
    font-weight: 700;
}

h2{
    font-size: var(--heading2);
}
h3{
    font-size: var(--heading3);
}
h4{
    font-size: var(--heading4);
}
button{
    border: inherit;
}
img{
    line-height: 0;
    max-width: 100%;
}
p{
    line-height: 140%;
    font-weight: 300;
}
