/* --------------- variables --------------------- */
/* Break Point */
.dots-wrap {
  display: flex;
  justify-content: center;
}
.dots-wrap li {
  background: #fff;
  cursor: pointer;
  border-radius: 5px;
  background-color: #DFDCE3;
}
.dots-wrap li.slick-active {
  background: #36254E;
}
.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.moreBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.03);
  font-weight: 700;
  margin: 0 auto;
  overflow: hidden;
  line-height: 1;
}
.moreBtn span {
  position: relative;
  z-index: 2;
  text-align: center;
}

h2.title {
  font-weight: 400;
  color: #333;
  border-bottom: 2px solid #D9D9D9;
  position: relative;
}
h2.title:before {
  content: "";
  display: inline-block;
  background-color: #D3CBCB;
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 11px;
  border-radius: 50%;
}
h2.title:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -4px;
}

#mv .slick-autoplay-toggle-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #CAB5F7;
  color: #36254E;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#mv .slick-autoplay-toggle-button .slick-pause-icon:before,
#mv .slick-autoplay-toggle-button .slick-play-icon:before {
  font-size: 12px;
}
#mv .slick-autoplay-toggle-button .slick-play-icon {
  padding-left: 2px;
}
#mv .mvList {
  opacity: 0;
  transition: all 0.5s linear;
}
#mv .mvList.slick-initialized {
  opacity: 1;
}
#mv .mvList .mvItem .textWrap {
  position: relative;
}
#mv .mvList .mvItem .textWrap .num {
  line-height: 1;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}
#mv .mvList .mvItem .textWrap .title {
  font-weight: 700;
}
#mv .mvList .mvItem .textWrap .ymd {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

#concept h2 {
  color: #D3CBCB;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  position: relative;
}
#concept .textWrap h3 {
  font-weight: 400;
  line-height: 1.3;
  font-weight: 600;
}
#youtube {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 3px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  main {
    padding-bottom: 67px;
    margin: 0 auto;
    width: 100vw;
    overflow-x: hidden;
  }
  .dots-wrap {
    gap: 4px;
    margin-top: 30px;
    width: 100%;
  }
  .dots-wrap li {
    flex: 1;
    height: 3px;
  }
  .postList .slick-slide {
    margin: 0 10px;
  }
  .btnWrap {
    margin-top: 67px;
  }
  .moreBtn {
    width: 220px;
    height: 72px;
    font-size: 15px;
    border-radius: 52px;
    padding: 10px 70px 10px 30px;
  }
  .moreBtn:before {
    content: "";
    display: inline-block;
    width: 58px;
    height: 58px;
    background-image: url(../images/common/arrow_w.svg);
    background-repeat: no-repeat;
    background-size: 15px 16px;
    background-color: #36254E;
    background-position: center;
    border-radius: 50%;
    position: absolute;
    right: 7px;
    top: calc(50% - 29px);
    z-index: 2;
  }
  h2.title {
    font-size: 18px;
    padding-left: 22px;
    padding-bottom: 18px;
    margin-bottom: 40px;
  }
  h2.title:before {
    top: 6px;
  }
  #mv {
    padding: 34px 13px 0;
  }
  #mv .dots-wrap {
    position: absolute;
    top: 59vw;
    left: 0;
    margin: 0 auto 0 0;
    width: calc(100% - 40px);
  }
  #mv .slick-autoplay-toggle-button {
    top: 56vw;
    right: 0;
    left: auto;
  }
  #mv .mvList .mvItem figure {
    border: 7px solid #fff;
    border-radius: 9px;
    overflow: hidden;
  }
  #mv .mvList .mvItem figure img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #mv .mvList .mvItem .textWrap {
    margin-top: 34px;
    padding: 0 3px;
  }
  #mv .mvList .mvItem .textWrap .num {
    font-size: 25px;
    position: absolute;
    top: -40px;
    left: 3px;
  }
  #mv .mvList .mvItem .textWrap .tagList {
    padding-left: 45px;
  }
  #mv .mvList .mvItem .textWrap .tagList li {
    display: inline-block;
    background-color: #F7EDF4;
    font-size: 11px;
    font-weight: 700;
    position: relative;
    line-height: 1;
    padding: 7px 14px 7px 24px;
    margin-right: 6px;
    border-radius: 16px;
  }
  #mv .mvList .mvItem .textWrap .tagList li:before {
    content: "";
    width: 9px;
    height: 9px;
    background-color: #36254E;
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: calc(50% - 5px);
  }
  #mv .mvList .mvItem .textWrap .title {
    font-size: 18px;
    margin-top: 70px;
    line-height: 1.9;
  }
  #mv .mvList .mvItem .textWrap .ymd {
    margin-top: 5px;
    font-size: 17px;
  }
  #concept {
    margin-top: 45px;
    position: relative;
    z-index: 5;
  }
  #concept .noneTama {
    position: absolute;
    transition: all 1s;
  }
  #concept .noneTama img {
    width: 100%;
    height: auto;
  }
  #concept .noneTama#tama1 {
    aspect-ratio: 110/99;
    width: 14%;
    top: 13%;
    right: 5%;
  }
  #concept .noneTama#tama2 {
    aspect-ratio: 656/629;
    width: 60%;
    bottom: -10%;
    left: -20%;
  }
  #concept .noneTama#tama3 {
    aspect-ratio: 146/133;
    width: 18%;
    right: -5%;
    top: 40%;
  }
  #concept .noneTama#tama4 {
    aspect-ratio: 490/490;
    width: 50%;
    bottom: -30%;
    right: -40%;
  }
  #concept .noneTama#tama5 {
    aspect-ratio: 115/133;
    width: 14%;
    top: -20px;
    left: 0%;
  }
  #concept .noneTama#tama6 {
    aspect-ratio: 102/121;
    width: 12%;
    left: -7%;
    top: 30%;
  }
  #concept h2 {
    font-size: 26px;
    padding-left: 33px;
  }
  #concept h2:before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #D3CBCB;
    position: absolute;
    left: 0;
    top: 9px;
    border-radius: 50%;
  }
  #concept .textWrap {
    margin-top: 25px;
    text-align: center;
  }
  #concept .textWrap h3 {
    width: 45vw;
    margin-inline: auto;
  }
  #concept .textWrap p {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
  }
  #recentPost {
    margin-top: 70px;
  }
  #youtube {
    border-radius: 22px;
    padding: 30px 5px 30px;
    margin: 75px auto 0;
    width: calc(100% - 30px);
  }
  #youtube .youtubeWrap figure {
    border-radius: 10px;
    overflow: hidden;
  }
  #youtube .youtubeWrap .btnWrap {
    margin-top: 30px;
  }
  #youtube .youtubeWrap .btnWrap .moreBtn {
    width: 100%;
    max-width: 300px;
    font-size: 17px;
    padding-left: 15px;
  }
  #recentPost .commonInner, #lifeStyle .commonInner, #bunka .commonInner {
    padding: 0;
  }
  #recentPost h2.title, #recentPost .dots-wrap, #lifeStyle h2.title, #lifeStyle .dots-wrap, #bunka h2.title, #bunka .dots-wrap {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  #lifeStyle, #bunka {
    margin-top: 55px;
  }
  #concept {
    position: relative;
    z-index: 5;
  }
  #noneWave {
    width: 200vw;
    margin: 0 -50vw;
    aspect-ratio: 1170/505;
    position: absolute;
    bottom: 30%;
    transform: translateY(50%);
    left: 0;
    z-index: -1;
  }
  #noneWave .wavePropagation {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #noneWave .wavePropagation .ellipse {
    position: absolute;
    width: 1vw;
    background: #fff;
    border-radius: 50%;
    transform-origin: center;
    z-index: 2;
    animation: wavePropagation 4s infinite;
    animation-timing-function: ease-in-out;
  }
  @keyframes wavePropagation {
    0%, 100% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
    20% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    40% {
      height: max(8px, 120% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.9;
      transform: translateY(-70px);
    }
    60% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    80% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
  }
}
@media print, screen and (min-width: 769px) {
  main {
    padding-bottom: 110px;
    position: relative;
    z-index: 2;
  }
  .dots-wrap {
    gap: 15px;
  }
  .dots-wrap li {
    flex: 1;
    height: 7px;
  }
  .dots-wrap li:hover {
    background: #36254E;
  }
  .btnWrap {
    margin-top: 70px;
  }
  .moreBtn {
    width: 220px;
    height: 72px;
    font-size: 15px;
    border-radius: 52px;
    padding: 10px 70px 10px 30px;
    transition: 0.3s;
  }
  .moreBtn:before {
    content: "";
    display: inline-block;
    width: 58px;
    height: 58px;
    background-image: url(../images/common/arrow_w.svg);
    background-repeat: no-repeat;
    background-size: 15px 16px;
    background-color: #36254E;
    background-position: center;
    border-radius: 50%;
    position: absolute;
    right: 7px;
    top: calc(50% - 29px);
    z-index: 2;
  }
  .moreBtn:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: linear-gradient(90deg, rgb(111, 208, 229) 0%, rgb(211, 170, 213) 50%, rgb(244, 82, 44) 100%);
    transition: 0.3s;
    left: 0;
  }
  .moreBtn:hover {
    color: #fff;
  }
  .moreBtn:hover:before {
    background-color: #fff;
    background-image: url(../images/common/arrow_p.svg);
  }
  .moreBtn:hover:after {
    width: 100%;
  }
  h2.title {
    font-size: 25px;
    padding-left: 26px;
    padding-bottom: 18px;
    margin-bottom: 50px;
  }
  #mv {
    max-width: 1260px;
    margin: 0 auto;
    padding-top: 60px;
    width: 90%;
  }
  #mv .dots-wrap {
    position: absolute;
    width: calc(40% - 40px);
    bottom: 10px;
    right: 40px;
  }
  #mv .slick-autoplay-toggle-button {
    bottom: 0;
    right: 0;
    left: auto;
  }
  #mv .mvList .mvItem {
    display: flex !important;
    gap: 28px;
    padding: 0 10px;
    transition: all 0.3s;
    align-items: flex-start;
  }
  #mv .mvList .mvItem:hover {
    opacity: 0.7;
  }
  #mv .mvList .mvItem figure {
    border: 13px solid #fff;
    border-radius: 23px;
    overflow: hidden;
    width: calc(60% - 14px);
  }
  #mv .mvList .mvItem figure img {
    width: 100%;
    height: auto;
  }
  #mv .mvList .mvItem .textWrap {
    width: calc(40% - 14px);
    display: flex;
    align-items: center;
    padding: 40px 0 30px;
  }
  #mv .mvList .mvItem .textWrap .num {
    font-size: 38px;
    position: absolute;
    top: 0;
    left: 0;
  }
  #mv .mvList .mvItem .textWrap .tagList li {
    display: inline-block;
    background-color: #F7EDF4;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    line-height: 1;
    padding: 8px 22px 8px 30px;
    margin-right: 7px;
    border-radius: 16px;
  }
  #mv .mvList .mvItem .textWrap .tagList li:before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #36254E;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: calc(50% - 5px);
  }
  #mv .mvList .mvItem .textWrap .title {
    font-size: 30px;
    margin-top: 20px;
    line-height: 1.5;
  }
  #mv .mvList .mvItem .textWrap .ymd {
    margin-top: 12px;
    font-size: 17px;
  }
  #concept {
    margin-top: 90px;
  }
  #concept .commonInner {
    position: relative;
    max-width: 1500px;
  }
  #concept .commonInner .noneTama {
    position: absolute;
    transition: all 1s;
  }
  #concept .commonInner .noneTama img {
    width: 100%;
    height: auto;
  }
  #concept .commonInner .noneTama#tama1 {
    aspect-ratio: 110/99;
    width: 7.3%;
    top: 13%;
    right: 15%;
  }
  #concept .commonInner .noneTama#tama2 {
    aspect-ratio: 656/629;
    width: 43.7%;
    bottom: -40%;
    left: -15%;
  }
  #concept .commonInner .noneTama#tama3 {
    aspect-ratio: 146/133;
    width: 9.7%;
    right: 0;
    top: 40%;
  }
  #concept .commonInner .noneTama#tama4 {
    aspect-ratio: 490/490;
    width: 32.6%;
    bottom: -30%;
    right: -10%;
  }
  #concept .commonInner .noneTama#tama5 {
    aspect-ratio: 115/133;
    width: 7.6%;
    top: 0;
    left: 10%;
  }
  #concept .commonInner .noneTama#tama6 {
    aspect-ratio: 102/121;
    width: 6.8%;
    left: 0;
    top: 30%;
  }
  #concept h2 {
    font-size: 26px;
    padding-left: 33px;
  }
  #concept h2:before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #D3CBCB;
    position: absolute;
    left: 0;
    top: 9px;
    border-radius: 50%;
  }
  #concept .textWrap {
    padding-left: 33px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  #concept .textWrap h3 {
    width: 100%;
    max-width: 260px;
    margin-inline: auto;
  }
  #concept .textWrap p {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500;
  }
  #recentPost {
    margin-top: 100px;
  }
  #youtube {
    border-radius: 22px;
    padding: 25px 30px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    margin-top: 136px;
  }
  #youtube .youtubeWrap {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
  }
  #youtube .youtubeWrap figure {
    flex: 1;
    cursor: pointer;
    position: relative;
  }
  #youtube .youtubeWrap figure a {
    display: block;
    padding: 8px;
    border-radius: 13px;
    background: linear-gradient(90deg, rgb(111, 208, 229) 0%, rgb(211, 170, 213) 25%, rgb(244, 82, 44) 50%, #fff 50%, #fff 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: all 0.3s;
    position: relative;
  }
  #youtube .youtubeWrap figure a:before {
    content: "";
    display: inline-block;
    background: url(../images/common/icon_play.svg) no-repeat center/cover;
    width: 68px;
    height: 68px;
    position: absolute;
    top: calc(50% - 34px);
    left: calc(50% - 34px);
  }
  #youtube .youtubeWrap figure a img {
    border-radius: 12px;
  }
  #youtube .youtubeWrap figure a:hover {
    background-position: 0 0;
    color: #fff;
  }
  #youtube .youtubeWrap .btnWrap {
    flex: 1;
    margin-top: 0;
  }
  #youtube .youtubeWrap .btnWrap .moreBtn {
    width: 100%;
    max-width: 340px;
    font-size: 20px;
    padding-left: 15px;
  }
  #lifeStyle, #bunka {
    margin-top: 100px;
  }
  #concept {
    position: relative;
    z-index: 5;
  }
  #noneWave {
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1170/505;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
  }
  #noneWave .wavePropagation {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #noneWave .wavePropagation .ellipse {
    position: absolute;
    width: 8px;
    background: #fff;
    border-radius: 50%;
    transform-origin: center;
    z-index: 2;
    animation: wavePropagation 4s infinite;
    animation-timing-function: ease-in-out;
  }
  @keyframes wavePropagation {
    0%, 100% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
    20% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    40% {
      height: max(8px, 120% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.9;
      transform: translateY(-70px);
    }
    60% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    80% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  #concept {
    position: relative;
    z-index: 5;
  }
  @keyframes wavePropagation {
    0%, 100% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
    20% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    40% {
      height: max(8px, 120% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.9;
      transform: translateY(-70px);
    }
    60% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    80% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
  }
}
@media screen and (max-width: 1200px) {
  #concept {
    position: relative;
    z-index: 5;
  }
  @keyframes wavePropagation {
    0%, 100% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
    20% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    40% {
      height: max(8px, 120% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.9;
      transform: translateY(-70px);
    }
    60% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    80% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
  }
}
@media print, screen and (min-width: 1201px) {
  #concept {
    position: relative;
    z-index: 5;
  }
  @keyframes wavePropagation {
    0%, 100% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
    20% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    40% {
      height: max(8px, 120% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.9;
      transform: translateY(-70px);
    }
    60% {
      height: max(8px, 45% * var(--random-height, 1) * var(--lemon-shape, 1));
      opacity: 0.6;
      transform: translateY(-45px);
    }
    80% {
      height: 8px;
      opacity: 0.3;
      transform: translateY(0px);
    }
  }
}
/*# sourceMappingURL=map/home.css.map */
