.container{
    background-color:var(--yellow02) ;
  }
  main{
    position:relative;
  }
  main .charGirl{
    width: 500px;
    position:absolute;
    bottom:0;
    right:0;
    opacity: 0;
  }
  section{
      display: flex;
      flex-flow: column nowrap;
      align-items: center;
      padding:50px 0px;
      padding-bottom:200px;
      width: 70%;
      min-width: 1100px;
      margin:0 auto;
      position:relative;
  }
  .backArrow{
      position: absolute;
      left:0;
      width: 20px;
      transform: rotateY(180deg);
  }
  section .textBox{
    text-align: center;
    margin-bottom:50px;
    width: 100%;
}
  .textBox ul{
    display:flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap:20px;
    width: fit-content;
    min-width: 1100px;
    margin:0 auto;
  }
  .textBox ul>li{
    position: relative;
    width: fit-content;
    cursor: pointer;
    border-radius: 40px;
  }
  .textBox ul>li>img{
    width: 150px;
  }
  .textBox ul>li>p{
    position:absolute;
    top:45%;
    left:50%;
    transform: translate(-50%,-50%);
    color:#fff;
    font-size: 20px;
    width: 100%;
    text-align: center;
  }
  .contentWrap{
    width: 90%;
    min-width: 1100px;
    background-image: url('../img/bookclub-contentpad-large-yellow.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 1400px;
    padding:100px 0;
    position:relative;
  }
  .contentWrap>.charMice{
    width: 200px;
    position:absolute;
    top:0;
    left:-50px;
    z-index: 2;
  }
  .contentWrap>.charMouse{
    width: 160px;
    position:absolute;
    top:-20px;
    right:7%;
  }
  .contentPage{
    margin:0 auto;
    width: 80%;
    width: 1000px;
    height: 95%;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap:20px;
    padding:0 50px;
    overflow: hidden;
  }
  .contentPage .imgBox{
    width: 23%;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
  }
  .contentPage img{
    height: 100%;
  }
  .contentPage>.category{
    width: 100%;
  }
  .contentPage>.category>.topper{
    display:flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left:30px;
    margin-bottom:10px;
  }
  .contentPage>.category>.topper>.title{
    font-size: 22px;
    font-weight: 500;
  }
  .contentPage>.category>.topper>.title>span{
    font-weight: 900;
  }
  .contentPage>.category>.topper>.moreBtn{
    position:relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: block;
    width: fit-content;
  }
  .contentPage>.category>.topper>.moreBtn:hover{
    transform: translateX(-5px);
  }
  .contentPage>.category>.topper>.moreBtn>img{
    width: 120px;
  }
  .contentPage>.category>.topper>.moreBtn>p{
    font-size: 18px;
    color:var(--yellow02);
    width:fit-content;
    text-align: center;
    position:absolute;
    top:45%;
    left:60%;
    transform: translate(-50%,-50%);
  }
  .depth1Cont{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    gap:5px;
  }
  .contPagination{
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap:20px;
    font-size: 20px;
    margin-top:30px;
  }
  .contPagination>ul{
    display: flex;
    flex-flow: row nowrap;
    align-content: center;
    justify-content: center;
    gap:20px;
  }
  .contPagination>ul>li{
    width: 26px;
    height: 26px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
  }
  .contPagination>ul>li.on{
    color:var(--yellow02);
    background-color: #fff;
    font-weight: 600;
  }
  .contPagination>img{
    width: 18px;
    cursor: pointer;
  }
  .contPagination>.rightArrow{
    transform: rotateY(180deg);
  }
  @media screen and (max-width:1279px) {
    main .charGirl{
    width: 400px;
  }
  .contentWrap>.charMice{
    width: 200px;
    position:absolute;
    top:0;
    left:-80px;
  }
  }