.container{
  background-image: url(../img/bookclub-bg-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  position:relative;
}
.sideNav{
  width: fit-content;
  position:fixed;
  top:50%;
  right:10px;
  transform: translateY(-50%);
  z-index: 50;
}
.sideNav>a{
  position:relative;
  display: block;
  width: fit-content;
  margin:10px auto;
  border-radius: 100px 30px 30px 100px;
}
.sideNav>a>img{
  width: 140px;  
}
.sideNav>a>div{
  width: 70%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
  gap:5px;
  position:absolute;
  top:50%;
  left:60%;
  transform: translate(-50%,-50%);
}
.sideNav>a>div>img{
  width: 20px;
}
.sideNav>a.active>div>svg>path{
  fill:#FFBB00;
}
.sideNav>a>div>p{
  font-size: 16px;
  color:#ABAB87;
  width:100%;
  text-align: center;
}
.sideNav>a.active>div>p{
  color:#FFBB00;
}
.sideNav>.topBtn{
  border-radius: 20px;
  color:#ABAB87;
  background-color:#EEEED6;
  text-align: center;
  width: fit-content;
  padding:5px 15px;
  margin-left:40px;
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap:5px;
}
.sec01 {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  scroll-margin-top: 137px;
}
.mainText {
  width: 100%;
  padding: 10% 200px;
  padding-left: 15%;
  animation: fadeText 1.2s ease-in-out;
}
@keyframes fadeText{
  0%{
    opacity: 0;
    transform: translateY(-100px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}
.mainText > p {
  font-size: 54px;
  font-weight: 600;
}
.mintT {
  color: #10b4a5;
}
.orangeT {
  color: var(--orange02);
}
.mainText > p > span {
  font-size: 72px;
  font-weight: 700;
}
.sec01 > div:nth-child(2) {
  /* display: flex;
            flex-flow: row nowrap;
            align-items: center;
            justify-content: center;
            margin-top:-350px; */
  height: 75vh;
  margin-top: -100px;
}
.sec01 > div:nth-child(2) > img {
  width: 85%;
}
.sec01 > .aboutText {
  display: flex;
  flex-flow: row nowrap;
  align-items: start;
  justify-content: center;
}
.sec01 > .aboutText > div {
  font-size: var(--size42);
  font-weight: 600;
  text-align: end;
  margin-top: 100px;
  flex: 3;
}
.sec01 > .aboutText > img {
  width: 450px;
  flex: 1;
  margin-left: 50px;
  margin-left: 100px;
  position: relative;
  z-index: -1;
}
.sec02 {
  margin-top: -50px;
  width: 100%;
  min-height: 100vh;
  height: 1350px;
  background-image: url(../img/bookclub-bg-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 150px 0px;
  position:relative;
}
.sec02 > div {
  position:relative;
}
.sec02 > div > ul {
  width: 80%;
  margin: 0 auto;
  padding-bottom:30px;
  border-bottom: 1px solid var(--orange02);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap:30px;
  position:relative;
}

.sec02 > div > ul > li > a{
  display: block;
  width: fit-content;
  position:relative;
}
.sec02 > div > ul > li > a>img {
  width: 200px;
}
.sec02 > div > ul > li > a >p{
  position:absolute;
  top:50%;
  left:55%;
  transform: translate(-50%,-50%);
  color: #a36a1b;
  font-size: 20px;
  width: 100%;
  text-align: center;
}
.sec02 > div > ul > li > a.on >p{
  color: var(--black01);
  font-weight: 600;
}
.sec02 > div > ul > li> .tabMenu1{
  position:absolute;
  top:100%;
  left:50%;
  transform: translateX(-50%);
  display: none;
}
.sec02 > div > ul > li > a.on + .tabMenu1{
  display: block;
}
.sec02 > div > ul > li .tabMenu1 .tabText{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  color:#fff;
  font-size: 20px;
  gap:20px;
  padding:20px 0;
  width: 400px;
  margin: 0 auto;
}
.sec02 > div > ul > li .tabMenu1 .tabText>.tabTit{
  border-radius: 30px;
  background-color: #E85100;
  padding:6px 30px;
  font-weight: 500;
  font-size: 22px;
  width: fit-content;
}
.sec02 .swiper {
  width: 1160px;
  height: min-content;
  margin-bottom: 30px;
}
.sec02 .swiper .swiper-wrapper .swiper-slide {
  padding: 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.sec02 .swiper .swiper-wrapper .swiper-slide .frameBox{
  position:relative;
  height: 540px;
  overflow: hidden;
}
.sec02 .swiper .swiper-wrapper .swiper-slide .frameBox>.frame{
  position:absolute;
  left:0;
  height: 100%;
}
.sec02 .swiper .swiper-wrapper .swiper-slide .frameBox>.thumb{
  height: 100%;
}
.sec02 .swiper .swiper-wrapper .swiper-slide .slideText > p {
  color: #fff;
  font-size: 20px;
  margin: 20px auto;
}
.sec02 .swiper .swiper-wrapper .swiper-slide .slideText > .slideTit {
  text-align: center;
  font-size: 24px;
  background-color: var(--orange02);
  font-weight: 600;
  padding: 5px 40px;
  width: fit-content;
  border-radius: 20px;
}
.sec02 .swiper .swiper-slide>div>img {
  width: 900px;
  margin: 0 auto;
}
.swiper-button-next,
.swiper-button-prev {
  width: 70px !important;
  height: fit-content !important;
}
.sec02 .aboutText {
  width: 80%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  margin-top:20px;
  background-color: var(--orange01);
}
.sec02 .aboutText > .textBox {
  position: relative;
  width: 640px;
}
.sec02 .aboutText > .textBox > p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 26px;
}
.sec02 .aboutText > .textBox > p > span {
  font-weight: 600;
}
.sec02 .aboutText > .textBox > img {
  width: 100%;
}
.sec02 .aboutText > div:last-child {
  width: 420px;
}
.sec02 .aboutText > div:last-child > img {
  width: 65%;
}
.sec02 .aboutText > div:last-child > p.vrAlert {
  color: #fff;
  font-weight: 200;
}
.sec03 {
  width: 100%;
  min-height: 100vh;
  background-color: #fcfcf1;
  padding: 150px 0px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-margin-top: 137px;
}
.sec03 .aboutText {
  width: 80%;
  margin: 0 auto;
}
.sec03 .aboutText p {
  width: 100%;
  text-align: center;
  color: var(--black01);
  margin-bottom: 20px;
  font-size: 20px;
}
.sec03 .aboutText p.aboutTit {
  font-size: var(--size42);
  font-weight: 600;
}
.sec03 .piterpan {
  position: absolute;
  top: 0%;
  left: -10%;
  width: 40%;
}
.sec03 .bookListWrap {
  margin-top: 30px;
  width: 1170px;
  height: 700px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-image: url(../img/book-slide-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}
.sec03 .swiper-books-1 {
  width: 1200px;
  overflow: hidden;
}
.sec03 .swiper-slide {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sec03 .swiper-slide ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.sec03 .swiper-slide ul > li > a > img {
  width: 220px;
  height: 220px;
}
.sec03 .movingImgBox {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.sec03 .movingImgBox img {
  width: 50%;
  min-width: 600px;
  animation: shake-bottom 3s linear both infinite;
}
@keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
  20% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  50% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
}

.sec04 {
  margin-top: -500px;
  width: 100%;
  min-height: 100vh;
  padding: 100px 150px;
  padding-top: 250px;
  background-image: url(../img/bookclub-bg-4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.sec04 .aboutText {
  width: 80%;
  margin: 0 auto;
}
.sec04 .aboutText p {
  width: 100%;
  text-align: center;
  color: var(--black01);
  margin-bottom: 20px;
  font-size: 20px;
}
.sec04 .aboutText p.aboutTit {
  font-size: var(--size42);
  font-weight: 600;
}
.sec04 > div {
  margin: 30px 0;
}
.sec04 .bookListWrap {
  border-radius: 30px;
  background-color: var(--mint02);
  padding: 30px;
  width: fit-content;
  margin: 30px 0;
}
.sec04 .swiper-books-3,
.sec04 .swiper-books-2 {
  width: 1000px;
  overflow: hidden;
}
.sec04 .swiper-slide ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: fit-content;
  margin: 0 auto;
}
.sec04 .swiper-slide ul > li > a > img {
  width: 220px;
  height: 220px;
}
.sec05 {
  width: 100%;
  padding: 100px 150px;
  background-image: url(../img/bookclub-bg-5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.sec05 .aboutText {
  width: 80%;
  margin: 0 auto;
}
.sec05 .aboutText p {
  width: 100%;
  text-align: center;
  color: var(--black01);
  margin-bottom: 20px;
  font-size: 20px;
}
.sec05 .aboutText p.aboutTit {
  font-size: var(--size42);
  font-weight: 600;
}
.sec05 ul {
  width: 80%;
  height: 400px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  position: relative;
  margin-top: 40px;
}
.sec05 ul > li > a {
  position: relative;
  display: block;
}
.sec05 ul > li > a > img {
  width: 180px;
}
.sec05 ul > li > a > p {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #9c8d64;
}
.sec05 ul > li > a.on > p {
  color: var(--yellow01);
  font-weight: 500;
}
.sec05 ul > li > .tabMenu2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 300px;
  background-color: var(--yellow03);
  border-radius: 30px;
  margin: 0 auto;
  display: none;
}
.sec05 ul > li > a.on ~ .tabMenu2{
  display: inline;
}
.sec05 ul > li > .tabMenu2.on{
  display: block;
  position:absolute;
}
.sec05 .swiper-books-4 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sec05 .swiper-slide ul {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 100%;
  width: fit-content;
  margin: 0 auto;
}
.sec05 .swiper-slide ul > li > a > img {
  width: 220px;
  height: 220px;
}
.sec05 .contentBtn {
  display: block;
  border-radius: 30px;
  background-color: var(--black01);
  font-size: var(--size24);
  color: #fff;
  font-weight: 500;
  padding: 12px 70px;
  margin-top: 100px;
  cursor: pointer;
}
.sec05 .contentBtn > p {
  width: 100%;
  text-align: center;
}
.sec05 .birdGirl {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 35%;
}
.sec06 {
  width: 100%;
  height: 750px;
  padding: 100px 150px;
  background-image: url(../img/bookclub-bg-6.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 137px;
}
.sec06 .aboutText {
  width: 80%;
  margin: 0 auto;
}
.sec06 .aboutText p {
  width: 100%;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 22px;
}
.sec06 .aboutText p.aboutTit {
  font-size: var(--size42);
  font-weight: 600;
}
.sec06 .swiper-slide {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.sec06 .bookListWrap {
  border-radius: 50px;
  background-color: var(--orange02);
  padding: 0 40px;
  width: fit-content;
  margin: 30px 0;
  position: relative;
}
.sec06 .swiper-books-5 {
  width: 1000px;
  overflow: hidden;
}
.sec06 .swiper-slide .reviewText {
  color: #fff;
}
.sec06 .reviewText .reviewTit {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
.sec06 .reviewText .reviewCont {
  font-size: 18px;
  font-weight: 400;
  word-break: keep-all;
  margin-bottom: 60px;
}
.sec06 .reviewText .reviewUser {
  font-size: 16px;
  font-weight: 500;
  text-align: end;
}
.sec06 .swiper-slide > img {
  width: 300px;
}
.sec06 .swiper-pagination5 {
  position: absolute;
  width: fit-content;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  --swiper-pagination-bottom: -30px;
}
.sec06 .swiper-pagination5 > span {
  background-color: var(--yellow01);
  width: 15px;
  height: 15px;
  --swiper-pagination-bullet-horizontal-gap: 6px;
}
.sec07 {
  width: 100%;
  padding: 100px 150px;
  background-color: #fcfcf1;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-margin-top: 137px;
}
.sec07 .aboutText {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
}
.sec07 .aboutText p {
  width: 100%;
  text-align: center;
  color: var(--black01);
  margin-bottom: 20px;
  font-size: 22px;
}
.sec07 .aboutText p.aboutTit {
  font-size: var(--size42);
  font-weight: 600;
}
.sec07 .aboutText .moreBtn {
  display: block;
  border-radius: 30px;
  position: relative;
  width: fit-content;
}
.sec07 .aboutText .moreBtn > img {
  width: 100px;
}
.sec07 .aboutText .moreBtn > p {
  font-size: 18px;
  position: absolute;
  top: 46%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.sec07 .faqList {
  width: 80%;
  min-width: 1000px;
  margin-top: 20px;
  margin-bottom: 200px;
}
.sec07 .faqList > li {
  background-color: var(--black01);
  border-radius: 50px;
  color: #fff;
  padding: 15px 50px;
  padding-left: 100px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.sec07 .faqList > li > .faqQ {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.sec07 .faqList > li > .faqQ > img {
  width: 30px;
  transition: all 0.3s ease-in-out;
}
.sec07 .faqList > li> .faqQ > img.on {
  transform: rotate(180deg);
}
.sec07 .faqList > li > .faqQ:hover > img {
  transform: rotate(180deg);
}
.sec07 .faqList > li > .faqA {
  padding-top: 30px;
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.3em;
  display: none;
}
.sec07 .faqList > li.on > .faqA {
  display: block;
}
.sec07 .faqList > li.on > .faqA > p {
  word-break: keep-all;
}
.sec07 > img {
  position: absolute;
}
.sec07 .deerLeft {
  top: 0;
  left: 0;
  width: 400px;
}
.sec07 .deerRight {
  bottom: 0;
  right: 0;
  width: 400px;
}
.sec07 .mice {
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
}
@media screen and (max-width:1500px) {
  .mainText > p {
    font-size: 34px;
  }
  .mainText > p > span {
    font-size: 52px;
  }
  .sec01 > div:nth-child(2) {
    height: 440px;
  }
  .sec07 .deerLeft {
    top:3%;
    width: 250px;
  }
  .sec07 .deerRight {
    bottom:3%;
    width: 250px;
  }
  .sec07 .aboutText{
    min-width: 800px;
  }
}
@media screen and (max-width:1279px) {
  .sec01 > .aboutText > div {
    font-size: 32px;
    font-weight: 600;
    text-align: end;
    margin-top: 100px;
    flex: 3;
  }
  .sec02 .swiper {
    width: 1000px;
    height: min-content;
    margin-bottom: 30px;
  }
  .sec02 .swiper .swiper-slide>div>img {
    width: 800px;
    margin: 0 auto;
  }
  .sec02 .swiper .swiper-wrapper .swiper-slide .frameBox{
    position:relative;
    height: 540px;
    overflow: hidden;
  }
  .sec02 .aboutText > .textBox > p {
    font-size: 22px;
  }
  .sec03 .bookListWrap {
    width: 1080px;
    align-items: flex-start;
    padding-top:80px;
  }
  .sec04 {
    margin-top: -400px;
  }
  .sec07 .deerLeft {
    width: 250px;
  }
  .sec07 .deerRight {
    width: 250px;
  }
  .sec07 .mice {
    width: 800px;
  }
  .sec07 .faqList {
    width: 80%;
    min-width: 800px
  }
}