@font-face {
  font-family: 'montserrat';
  src: local(montserrat-Regular),
    url(/public/resource/fonts/montserrat-Regular.woff2) format('woff2'),
    url(/public/resource/fonts/montserrat-Regular.woff) format('woff'),
    url(/public/resource/fonts/montserrat-Regular.ttf) format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'montserrat';
  src: local(montserrat-SemiBold),
    url(/public/resource/fonts/montserrat-SemiBold.woff2) format('woff2'),
    url(/public/resource/fonts/montserrat-SemiBold.woff) format('woff'),
    url(/public/resource/fonts/montserrat-SemiBold.ttf) format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'montserrat';
  src: local(montserrat-Bold),
    url(/public/resource/fonts/montserrat-Bold.woff2) format('woff2'),
    url(/public/resource/fonts/montserrat-Bold.woff) format('woff'),
    url(/public/resource/fonts/montserrat-Bold.ttf) format('truetype');
  font-weight: 800;
}

@font-face {
  font-family: 'Jalnan';
  src: local(Jalnan),
    url(/public/resource/fonts/Jalnan.woff2) format('woff2'),
    url(/public/resource/fonts/Jalnan.woff2) format('woff');
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  letter-spacing: -0.025em;
}

body {
  font-family: 'montserrat';
  font-weight: 400;
  font-size: 36px;
  line-height: 1.4;
  color: #3d3d3d;
}

ul,
ol,
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

a {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

img,video{
  display: block;
  object-fit: cover;
}

button{
  font-size: inherit;
  outline: inherit;
  border: inherit;
  background-color: inherit;
  color: inherit;
  font-family: 'montserrat';
  font-size: 18px;
  cursor: pointer;
}

.wrap {
  position: relative;
  /* overflow: hidden; */
  min-width: 1440px;
}

.con{
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.flex{
  display: flex;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.title{
  text-align: center;
  font-family: 'Jalnan';
  font-size: 76px;
  color: #7A33CC;
}

.title h3{
  position: relative;
  display: inline-block;
  margin-bottom: 84px;
  &::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: -48px;
    width: 24px;
    height: 24px;
    background-color: #FFDFDF;
    border-radius: 100px;
  }
  &::after{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: -48px;
    width: 24px;
    height: 24px;
    background-color: #FFDFDF;
    border-radius: 100px;
  }
}

section{
  margin-bottom: 240px;
}

/* ********************************* */

/* header */
header{
  padding: 12px 0px;
  background-color: #fff;
}
header .inner{
  justify-content: center;
}
/* header end */

/* cta btn */
.stiky{
  position: absolute;
  top: 100px;
  right: 50px;
  height: calc(100% - 50px);
}
.stiky .btn_cta{
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  display: inline-block;
  padding: 36px 40px;
  border-radius: 100px;
  background-color: #FF774D;
  box-shadow: -8px 8px 10px rgba(0,0,0,0.3);
  line-height: 1;
  z-index: 100;
}
.stiky .btn_cta img{
  height: 32px;
}
/* cta btn end */

/* section01 */
.main_visual{
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  background-color: #471C78;
  background-image: url(/public/resource/images/bg_space.png);
  background-position: center;
  background-size: cover;
}
.main_visual .con{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
.main_visual .con h3{
  margin-bottom: 36px;
}

.main_visual .con h3 p{
  font-size: 64px;
}


.main_visual .con h3 .title{
  text-align: left;
  color: #fff;
  font-size: 86px;
}
.main_visual .con .text p{
  font-size: 30px;
  &.point{
    margin-top: 56px;
    font-size: 48px;
    font-weight: 800;
    color: #FFCB45;
  }
}
/* section01 end */

/* section02 */
.mockUp_section .text{
  display: flex;
  align-items: center;
}

.mockUp_section .text p{
  letter-spacing: 0;
}
/* section02 end */

.wave_section_wrap{
  position: relative;
  padding-top: 240px;
}
.wave_section_wrap .wave{
  position: absolute;
  top: 0;
  width: 100%;
  height: 240px;
}
.wave_section_wrap .inner{
  min-height: 100vh;
  background: linear-gradient(#F9F3FF,#ffffff);
}

/* section03 */
.publishers .flex{
  align-items: center;
  margin-bottom: 84px;
}
.publishers .flex:last-child{
  margin-bottom: 0;
}
.logo_wrap{
  flex-shrink: 0;
  width: 408px;
}
.logo_wrap .logo{
  margin-bottom: 24px;
  &.redChair{
  margin: 0 auto;
  margin-bottom: 24px;
}
}
.logo_wrap .text{
  font-size: 24px;
}
.bookCover_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bookCover_wrap img{
  height: 190px;
}
.bookCover_wrap.rourke_book img{
  width: calc((100% - 12px) / 3 );
  height: 156px;
}
/* section03 end */

/* section04 */
.step img{
  margin-bottom: 64px;
}

.step p{
  width: 1108px;
  margin: 0 auto;
  text-align: center;
}
/* section04 end */

/* section05 */
.app p{
  display: inline-block;
  padding: 16px 42px;
  background-color: #FFF0F0;
  border-radius: 100px;
  text-align: center;
}

.app p span{
  font-weight: 800;
  color: #FF7676;
}
/* section05 end */

/* section06 */
.slide_section{
  max-width: 100%;
  overflow: hidden;
}

.slide_section .slide_item .swiper-wrapper{
  gap: 12px;
}

.slide_section .slide_item .swiper-wrapper .swiper-slide img{
  width: 280px;
  border-radius: 20px;
  &:first-child{
    margin-bottom: 48px;
  }
  &:last-child{
    transform: translateX(-121px);
  }
}
/* section06 end */

/* footer */
footer{
  border-top: 1px solid #cecece;
}
footer .con{
  align-items: center;
  padding: 48px 0;
  font-size: 18px;
}

footer .logo{
  width: 293px;
  object-fit: contain;
}

footer .con p.copy{
  margin-top: 32px;
  color: #ADADAD;
}

footer .con ul{
  width: auto;
  justify-content: inherit;
  gap: 36px;
}
/* footer end */

/* popup */
.dimmed{
  position: fixed;
  top: 0;
  left: 0;
  gap: inherit;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  z-index: 101;

  display: none;
}

.dimmed .popup{
  position: relative;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  max-width: 1320px;
  width: 100%;
  max-height: 540px;
  padding: 36px;
  border-radius: 20px;
  background-color: #fff;
  font-size: 18px;
}

.dimmed .popup .btn_close{
  border: inherit;
  outline: inherit;
  position: absolute;
  top: -27px;
  right: -27px;
  width: 54px;
  height: 54px;
  border-radius: 100px;
  background-color: #7A33CC;
  background-image: url(/public/resource/images/icn_close.svg);
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center;
}

.dimmed .popup .inner{
  width: 100%;
  height: 540px;
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1.6;
  display: none;
}

.dimmed .popup .inner::-webkit-scrollbar {
  width: 4px;
}

.dimmed .popup .inner::-webkit-scrollbar-thumb {
  background: #FF3D8E;
  border-radius: 10px;
}

.dimmed .popup .inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
/* popup end */