@charset "UTF-8";
.ff-kaisei {
  font-family: "Kaisei Opti", serif;
}

.ff-yusei {
  font-family: "Yusei Magic", sans-serif;
}

.ff-rock {
  font-family: "RocknRoll One", sans-serif;
}

.color-main {
  color: #f26688;
}

.color-1 {
  color: #e81e79;
}

.color-2 {
  color: #876239;
}

.box-banner-home {
  display: flex;
  gap: 65px;
}

.banner-home-left {
  width: 42%;
  padding-top: 150px;
}

.banner-home-right {
  width: 58%;
  text-align: center;
  position: relative;
}

.img-banner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.img-banner::after {
  content: "";
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  position: absolute;
  top: -50px;
  left: -50px;
  z-index: -1;
  background-image: url(../images/index/text-rotate.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  animation: rotate 26s linear infinite;
  transform-origin: center;
}
.img-banner {
  position: relative;
}
.img-banner-cont {
  position: relative;
}
.img-banner-cont::after {
  content: "";
  width: 134px;
  height: 247px;
  background-image: url(../images/index/may-mini-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 83px;
  left: 62px;
}
.img-banner-cont::before {
  content: "";
  width: 127px;
  height: 126px;
  background-image: url(../images/index/may-mini-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 335px;
  right: -42px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.after-banner {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.after-banner::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: kiran 3s ease-in-out infinite;
}
.after-banner-1 {
  bottom: -85px;
  left: -40px;
}
.after-banner-2 {
  right: 13px;
  bottom: -150px;
}

@keyframes kiran {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.banner-home {
  position: relative;
  padding-top: 90px;
}
.banner-home::after {
  content: "";
  width: 1071px;
  height: 965px;
  background-image: url(../images/index/after-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -151px;
  left: -156px;
  z-index: -4;
}
.banner-home::before {
  content: "";
  width: 668px;
  height: 602px;
  background-image: url(../images/index/after-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 293px;
  right: -250px;
  z-index: -4;
}

.img-car-anim {
  position: absolute;
  bottom: -45px;
  /* tùy chỉnh vị trí */
  right: -200px;
  /* bắt đầu ngoài màn hình bên phải */
  width: 385px;
  /* kích thước xe */
  animation: carMove 15s linear infinite;
}

@keyframes carMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-120vw);
    /* chạy hết màn hình sang trái */
  }
}
.main-title {
  position: relative;
  padding-top: 40px;
  padding-bottom: 35px;
}
.main-title::after {
  content: "";
  width: 68px;
  height: 33px;
  background-image: url(../images/index/after-title-2.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.main-title::before {
  content: "";
  width: 675px;
  height: 99px;
  background-image: url(../images/index/after-title.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
.main-title h2 {
  font-family: "RocknRoll One", sans-serif;
  font-weight: normal;
  font-size: 3.8rem;
  color: #f26688;
  text-align: center;
  line-height: 1.289;
  letter-spacing: 0.1em;
}

.news-item.item-list {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
}
.news-item.item-list::after {
  content: "";
  width: 38px;
  height: 38px;
  background-image: url(../images/index/icon-right.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 2;
}
.news-item.item-list .date {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f26688;
}
.news-item.item-list:hover .news-content-right-inner::after {
  opacity: 1;
}

.img-news-left {
  width: 111px;
}

.news-content-right {
  flex: 1;
  position: relative;
  border: 3px solid #f26688;
  border-radius: 12px;
  position: relative;
  background-color: #fff;
}
.news-content-right::after {
  content: "";
  width: 46px;
  height: 46px;
  background-image: url(../images/index/after-news.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 11px;
  left: -33px;
}
.news-content-right::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #efce67;
  border: 2px solid #f26688;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -2;
}

.news-content-right-inner {
  padding: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 8px;
}
.news-content-right-inner::after {
  content: "";
  background: linear-gradient(90deg, rgb(255, 163, 0) 0%, rgb(255, 106, 222) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 8px;
  transition: 0.3s;
  opacity: 0;
}
.news-content-right-inner::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  background-color: #fff;
  z-index: -1;
  border-radius: 5px;
}

.box-date-cat {
  display: flex;
  align-items: center;
  gap: 20px;
  letter-spacing: 0.1em;
}

a.cat {
  font-size: 1.8rem;
  font-weight: bold;
  color: #29a6dd;
}

.news-title a {
  display: block;
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #754c24;
  margin-top: 10px;
}

a.btn.btn-main {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
a.btn.btn-main::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #efce67;
  border: 2px solid #f26688;
  border-radius: 15px;
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: -2;
  transform: none;
  transition: 0.3s;
}
a.btn.btn-main:hover span {
  background-color: #f26688;
  color: #fff;
}
a.btn.btn-main:hover span::after {
  background-image: url(../images/index/icon-right-hover.svg);
}
a.btn.btn-main:hover::after {
  transform: translate(-6px, -6px);
}
a.btn.btn-main span {
  border: 3px solid #f26688;
  border-radius: 15px;
  background-color: #fff;
  min-height: 67px;
  min-width: 197px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #754c24;
  font-family: "Yusei Magic", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  position: relative;
  padding-right: 15px;
}
a.btn.btn-main span::after {
  content: "";
  width: 26px;
  height: 26px;
  background-image: url(../images/index/icon-right.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: 0.3s;
}
a.btn.btn-main.v2::after {
  border-radius: 39px;
  background: #fff;
}
a.btn.btn-main.v2::before {
  width: 100%;
  height: 100%;
  border-radius: 39px;
  background: linear-gradient(90deg, rgb(255, 163, 0) 0%, rgb(255, 106, 222) 100%);
  z-index: -1;
}
a.btn.btn-main.v2 span {
  width: 344px;
  height: 78px;
  border-radius: 39px;
  background-color: transparent;
  color: #fff;
  border: none;
  font-size: 2.9rem;
  padding-right: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
a.btn.btn-main.v2 span::after {
  width: 32px;
  height: 32px;
  background-image: url(../images/index/icon-blank.svg);
  right: 40px;
}

.home-news {
  position: relative;
}
.home-news::after {
  content: "";
  width: 780px;
  height: 585px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -240px;
  left: 0;
  z-index: -5;
}

.table-relate {
  display: flex;
  gap: 8px;
  margin-bottom: 7px;
}

.table-relate-left {
  width: 116px;
  height: 51px;
  border-radius: 25px;
  background: #e74566;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.table-relate-right {
  flex: 1;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #c1976d;
  font-size: 1.8rem;
  font-weight: 500;
  color: #736357;
  padding-left: 15px;
}

.box-table-relate {
  padding: 10px;
  background-color: #fff;
  border: 4px solid #e5b989;
  border-radius: 10px;
}

.box-img-relate {
  display: flex;
}

.cont-relate-right {
  width: 45.5%;
}

.img-relate-left {
  flex: 1;
  padding-right: 35px;
  padding-top: 50px;
}

.box-home-relate {
  border: 5px solid #f26688;
  border-radius: 90px;
  padding: 55px 90px 90px;
  background-color: #fff;
  position: relative;
}

.home-relate-title {
  display: flex;
  align-items: center;
  color: #f26688;
  letter-spacing: 0.1em;
  gap: 30px;
}
.home-relate-title h3 {
  font-size: 7.2rem;
  font-family: "Yusei Magic", sans-serif;
}
.home-relate-title h4 {
  font-size: 2.7rem;
  font-family: "Reem Kufi", sans-serif;
  font-weight: 400;
}

.img-relate {
  margin-left: -50px;
}

.gallery {
  overflow: hidden;
}

.gallery-row {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 18px;
}

.gallery-track img {
  width: 386px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* chạy trái */
.row-left .gallery-track {
  animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.box-slide-store {
  margin-top: -60px;
  position: relative;
}
.box-slide-store::after {
  content: "";
  width: 100%;
  height: 246px;
  background-color: #f097a9;
  position: absolute;
  left: 0;
  bottom: -40px;
  z-index: -2;
}

.home-relate {
  position: relative;
}
.home-relate::after {
  content: "";
  width: 780px;
  height: 585px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -150px;
  left: 0;
  z-index: -5;
}
.home-relate::before {
  content: "";
  width: 856px;
  height: 338px;
  background-image: url(../images/index/after-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -245px;
  right: -140px;
  z-index: -7;
}

#home-relate {
  position: relative;
}
#home-relate::after {
  content: "";
  width: 100%;
  height: 470px;
  background-image: url(../images/index/bg-relate.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -6;
}
#home-relate::before {
  content: "";
  width: 100%;
  height: calc(100% - 400px);
  background-color: #fff5fb;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -7;
}

.box-home-link {
  border: 5px solid #f26688;
  border-radius: 40px;
}
.box-home-link:hover .box-home-link-inner img {
  transform: scale(1.05);
}

.box-home-link-inner {
  overflow: hidden;
  border-radius: 34px;
}
.box-home-link-inner img {
  width: 100%;
  transition: 0.3s;
}

.img-home-link-cs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -45px;
}

.box-btn-home-link {
  position: absolute;
  right: 45px;
  bottom: 40px;
  z-index: 2;
}

.home-link {
  position: relative;
}
.home-link::after {
  width: 780px;
  height: 585px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: -120px;
  right: 0;
  z-index: -6;
}

.img-slide-gallery {
  padding: 1px;
  background: linear-gradient(90deg, rgb(255, 163, 0) 0%, rgb(255, 106, 222) 100%);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.img-slide-gallery img {
  width: 100%;
  border-radius: 50%;
  transition: 0.3s;
}
.img-slide-gallery::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgb(255, 163, 0) 0%, rgb(255, 106, 222) 100%);
  position: absolute;
  top: 13px;
  left: 13px;
  opacity: 0.48;
  transition: 0.3s;
  z-index: -1;
}

.slide-gallery .slick-list {
  margin: 0 -24px;
  overflow: visible;
}
.slide-gallery .slick-slide {
  margin: 0 24px;
  position: relative;
}
.slide-gallery .slick-slide::after {
  content: "";
  width: 121px;
  height: 93px;
  background-image: url(../images/index/may-1.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -18px;
  left: -18px;
}
.slide-gallery .slick-slide::before {
  content: "";
  width: 78px;
  height: 69px;
  background-image: url(../images/index/may-2.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  right: -10px;
}

.item-slide-gallery:hover .img-slide-gallery img {
  transform: scale(1.05);
}

.box-home-prince {
  position: relative;
}

.after-prince-1 {
  position: absolute;
  left: -240px;
  top: -34px;
  z-index: -1;
}
.after-prince-1::after {
  content: "";
  width: 570px;
  height: 485px;
  background-image: url(../images/index/may-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50px;
  bottom: -33px;
  z-index: -4;
}

.after-prince-2 {
  position: absolute;
  right: -200px;
  top: 120px;
  z-index: -1;
}
.after-prince-2::after {
  content: "";
  width: 646px;
  height: 681px;
  background-image: url(../images/index/may-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -50px;
  z-index: -4;
  bottom: -190px;
}

.home-gallery {
  position: relative;
}
.home-gallery::after {
  content: "";
  width: 935px;
  height: 369px;
  background-image: url(../images/index/after-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  left: -185px;
  z-index: -7;
}
.home-gallery::before {
  content: "";
  width: 780px;
  height: 585px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 260px;
  right: 0;
  z-index: -5;
}

.home-prince {
  position: relative;
}
.home-prince::after {
  width: 1012px;
  height: 1012px;
  content: "";
  background-color: #fff5fb;
  border-radius: 50%;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -215px;
  z-index: -8;
}

.cont-mono {
  width: 331px;
  height: 190px;
  background-image: url(../images/index/bg-may.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e74566;
  font-size: 2.6rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  padding-bottom: 15px;
}

.box-item-mono {
  position: relative;
  padding-bottom: 115px;
}
.box-item-mono .img-mono {
  position: absolute;
  bottom: 0;
  right: -75px;
}

.slide-mono .slick-list {
  margin: 0 -10px;
}
.slide-mono .slick-slide {
  margin: 0 10px;
}

.home-mono {
  position: relative;
  padding-bottom: 165px;
}
.home-mono::after {
  content: "";
  width: 100%;
  height: 728px;
  background-image: url(../images/index/bg-mono.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

.box-instagram {
  border: 5px solid #f26688;
  border-radius: 90px;
  background-color: #fff;
  padding: 0 95px 95px;
}

.title-insta {
  display: flex;
  max-width: 936px;
  justify-content: space-between;
  align-items: center;
  border-radius: 55px;
  min-height: 132px;
  background-color: #fce3f1;
  padding: 0 50px;
  margin: 0 auto;
  margin-top: -50px;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  color: #e81e79;
}
.title-insta h3 {
  font-size: 3rem;
  letter-spacing: 0.1em;
}
.title-insta p {
  font-size: 3rem;
}
.title-insta p span {
  font-size: 8rem;
}

.img-insta {
  padding-top: 75px;
  text-align: center;
}

.logo-insta {
  text-align: center;
}
.logo-insta p {
  padding-top: 10px;
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #000;
}

.list-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 83px;
}
.list-social a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
  font-size: 1.8rem;
  color: #000;
  letter-spacing: 0.1em;
}

.box-line {
  padding: 17px;
  border: 4px solid #36c618;
  border-radius: 34px;
  background-color: #fff;
}

.title-line-cs {
  font-size: 3.5rem;
  text-align: center;
  color: #36c618;
  letter-spacing: 0.1em;
  font-family: "RocknRoll One", sans-serif;
}

.box-line-cont {
  display: flex;
  border: 5px solid #f6ab3b;
  border-radius: 18px;
  padding: 7px 13px;
  padding-left: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.box-line-cont a.btn.btn-main span::after {
  width: 18px;
  height: 18px;
  background-image: url(../images/index/icon-blank-pink.svg);
}
.box-line-cont a.btn.btn-main:hover span::after {
  background-image: url(../images/index/icon-blank.svg);
}

.box-btn-line {
  width: 270px;
}

.box-btn-line a.btn-main,
.box-btn-line a.btn-main span {
  width: 100%;
}

.home-line {
  position: relative;
}
.home-line::after {
  content: "";
  width: 640px;
  height: 480px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: -130px;
  z-index: -5;
}

.img-line-mini {
  position: absolute;
  left: -50px;
  top: -8px;
}

.title-gift {
  font-size: 3.3rem;
  color: #e81e79;
  font-family: "Yusei Magic", sans-serif;
  text-align: center;
  letter-spacing: 0.1em;
}

.box-home-gift {
  border: 3px solid #ff7ba7;
  border-radius: 50px;
  background-color: #fff;
  padding: 35px 50px;
  position: relative;
}
.box-home-gift::after {
  content: "";
  width: 229px;
  height: 173px;
  background-image: url(../images/index/after-gift-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -12px;
  left: -12px;
}
.box-home-gift::before {
  content: "";
  width: 225px;
  height: 167px;
  background-image: url(../images/index/after-gift-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -12px;
  right: -12px;
}

.home-gift-cont {
  position: relative;
}
.home-gift-cont::after {
  content: "";
  width: 223px;
  height: 128px;
  background-image: url(../images/index/after-gift-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -43px;
  right: -65px;
}
.home-gift-cont::before {
  content: "";
  width: 168px;
  height: 158px;
  background-image: url(../images/index/after-gift-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -47px;
  left: -80px;
}

.home-gift-flex {
  display: flex;
  gap: 40px;
}

.home-gift-left {
  width: 375px;
}

.home-gift-right {
  flex: 1;
  max-width: 509px;
  padding-top: 35px;
}

.home-gift {
  position: relative;
}
.home-gift::after {
  content: "";
  width: 100%;
  height: calc(100% - 220px);
  background-color: #fffcf0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.home-gift::before {
  content: "";
  width: 780px;
  height: 585px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -2;
}

.img-down-mini {
  top: -75px;
  left: 0;
}

.title-down {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.5rem;
  color: #754c24;
  letter-spacing: 0.1em;
  font-family: "Yusei Magic", sans-serif;
}
.title-down span {
  font-size: 3rem;
}
.title-down::after {
  width: 31px;
  height: 38px;
  content: "";
  background-image: url(../images/index/icon-pen.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -45px;
}
.title-down.v2::after {
  width: 78px;
  height: 50px;
  background-image: url(../images/index/icon-pc.png);
  left: -100px;
}

.img-download {
  border: 3px solid #f26688;
  border-radius: 60px;
  position: relative;
  background-color: #fff;
}
.img-download::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #efce67;
  border: 2px solid #f26688;
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: -1;
  border-radius: 60px;
}
.img-download img {
  width: 100%;
  border-radius: 60px;
}
.img-download-inner {
  overflow: hidden;
}

.box-download {
  position: relative;
}
.box-download p {
  font-size: 2.3rem;
  color: #754c24;
  text-align: center;
  padding-top: 15px;
  letter-spacing: 0.1em;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
}

.home-down {
  position: relative;
}
.home-down::after {
  content: "";
  width: 935px;
  height: 369px;
  background-image: url(../images/index/after-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  right: -185px;
  z-index: -7;
}
.home-down::before {
  content: "";
  width: 100%;
  height: 380px;
  background-color: #fff5fb;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}

.box-link-bottom {
  padding: 5px;
  border-radius: 30px;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, rgb(255, 163, 0) 0%, rgb(255, 106, 222) 100%);
}
.box-link-bottom:hover .link-bottom-inner img {
  transform: scale(1.1);
}
.box-link-bottom {
  position: relative;
}
.box-link-bottom::after {
  content: "";
  width: 94px;
  height: 39px;
  background-image: url(../images/index/after-link.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -23px;
}
.box-link-bottom a.btn.btn-main {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.box-link-bottom a.btn.btn-main span {
  min-width: 155px;
  min-height: 70px;
}

.link-bottom-inner {
  overflow: hidden;
  border-radius: 28px;
}
.link-bottom-inner img {
  transition: 0.3s;
}

.img-link-mini {
  right: -230px;
  bottom: -135px;
  position: absolute;
}

#home-down {
  position: relative;
}
#home-down::after {
  content: "";
  width: 515px;
  height: 387px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
#home-down::before {
  content: "";
  width: 640px;
  height: 480px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 250px;
  z-index: -2;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

ul.tabs-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
}
ul.tabs-nav li {
  border: 3px solid #f26688;
  border-radius: 20px 20px 0 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  width: 314px;
  font-size: 2.3rem;
  font-weight: bold;
  color: #f26688;
  background-color: #fff;
  cursor: pointer;
}
ul.tabs-nav li.active, ul.tabs-nav li:hover {
  background-color: #f26688;
  color: #fff;
}
ul.tabs-nav li span {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  font-weight: bold;
  background-color: #fff2d7;
  border-radius: 50%;
  color: #f26688;
}

.tab-panels {
  border: 5px solid #ede2e5;
  border-radius: 20px;
  background-color: #fff;
  padding: 50px 70px 35px;
  margin-top: -5px;
  position: relative;
}

h3.title-tab {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: #e74566;
  margin-bottom: 40px;
}

ul.list-note li {
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #876239;
  line-height: 1.83;
  padding-left: 28px;
  font-weight: 500;
}
ul.list-note li::after {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.box-btn-calendar a.btn.btn-main.v2 span {
  width: 500px;
  height: 100px;
  font-size: 2.5rem;
  padding-right: 0;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  padding-left: 20px;
}
.box-btn-calendar a.btn.btn-main.v2 span::before {
  content: "";
  width: 65px;
  height: 70px;
  background-image: url(../images/index/icon-calendar.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.box-btn-calendar a.btn.btn-main.v2 span::after {
  width: 45px;
  height: 45px;
  background-image: url(../images/index/icon-blank-2.svg);
  right: 18px;
}
.box-btn-calendar a.btn.btn-main.v2:hover {
  opacity: 0.7;
}

.home-calendar {
  position: relative;
}
.home-calendar::after {
  content: "";
  width: 797px;
  height: 315px;
  background-image: url(../images/index/after-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -80px;
  z-index: -2;
}

.box-border-contact {
  padding: 40px 90px;
  border: 5px solid #f26688;
  border-radius: 50px;
  background-color: #fff;
}

.box-contact {
  display: flex;
}

.box-contact-left {
  width: 50%;
  text-align: center;
  border-right: 1px solid #949494;
}
.box-contact-left h4 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ef4d6d;
  text-align: center;
  letter-spacing: 0.05em;
}
.box-contact-left p {
  letter-spacing: 0.1em;
}

.box-contact-right {
  width: 50%;
  text-align: center;
}

a.tel {
  font-size: 3.5rem;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
  position: relative;
}
a.tel::after {
  content: "";
  width: 37px;
  height: 68px;
  background-image: url(../images/index/icon-phone.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}

a.btn.btn-mail {
  max-width: 404px;
  min-height: 80px;
  background-color: #ef4d6d;
  border-radius: 21px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0px 0px 10px rgba(239, 77, 109, 0.5);
}
a.btn.btn-mail::after {
  width: 38px;
  height: 38px;
  background-image: url(../images/index/icon-blank-2.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  right: 10px;
}
a.btn.btn-mail::before {
  content: "";
  width: 38px;
  height: 30px;
  background-image: url(../images/index/icon-mail.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  left: 33px;
}

.box-btn-contact a.btn.btn-main {
  border-radius: 30px;
}
.box-btn-contact a.btn.btn-main::after {
  border-radius: 30px;
}
.box-btn-contact a.btn.btn-main span {
  width: 500px;
  height: 100px;
  padding-left: 30px;
  font-size: 2.5rem;
  color: #754c24;
  border-radius: 30px;
}
.box-btn-contact a.btn.btn-main span::before {
  content: "";
  width: 62px;
  height: 52px;
  background-image: url(../images/index/icon-1.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  left: 20px;
}
.box-btn-contact a.btn.btn-main:hover span {
  color: #fff;
}

footer {
  position: relative;
}
footer::after {
  content: "";
  width: 935px;
  height: 369px;
  background-image: url(../images/index/after-ft-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 165px;
  right: -132px;
  z-index: -1;
}

.footer {
  position: relative;
}
.footer::after {
  content: "";
  width: 100%;
  height: 470px;
  background-image: url(../images/index/bg-footer.png);
  top: 60px;
  z-index: -2;
  position: absolute;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
}
.footer::before {
  content: "";
  width: 100%;
  height: 200px;
  background-color: #f7799a;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}

.footer-wrap {
  position: relative;
}
.footer-wrap::after {
  content: "";
  width: 297px;
  height: 218px;
  background-image: url(../images/index/after-ft-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -30px;
  left: 145px;
  z-index: -3;
}
.footer-wrap::before {
  content: "";
  width: 366px;
  height: 366px;
  background-image: url(../images/index/after-ft-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -100px;
  right: 55px;
  z-index: -3;
}

.header-main .main-menu {
  position: fixed;
  width: 100vw;
  flex-direction: column;
  top: 0px;
  padding: 0;
  margin-top: 0px;
  padding-top: 130px;
  color: #000;
  background-color: #fff;
  right: -150vw;
  transition: right 0.5s;
  justify-content: start;
  display: block;
  height: 100vh;
  z-index: 2;
  overflow: hidden;
}

.menu-open .header-main .main-menu {
  right: 0;
  z-index: 10;
  overflow: hidden;
  margin-right: 0;
}

a.menu-btn {
  width: 88px;
  min-height: 88px;
  position: absolute;
  border: none;
  top: 43px;
  right: 36px;
  z-index: 8999;
  transition: none;
  height: auto;
  box-shadow: none;
  background-color: #e74566;
  border: 2px solid #fff;
  border-radius: 50%;
}

a.menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 32px;
  top: 33px;
  background-color: #fff;
  left: 27px;
  transition: all 0.5s;
}

a.menu-btn span:nth-child(2) {
  top: 23px;
  display: none;
}

a.menu-btn span:nth-child(3) {
  top: 48px;
}

a.menu-btn::after {
  content: "MENU";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  position: absolute;
  color: #e74566;
  width: -moz-max-content;
  width: max-content;
  font-size: 3rem;
  text-align: center;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

a.menu-btn.open:after {
  content: "CLOSE";
}

body.menu-open header:before {
  display: none;
}

a.menu-btn.open span {
  display: block;
  position: absolute;
  transform: rotate(45deg);
  top: 43px;
  left: 27px;
  background-image: unset;
}

a.menu-btn.open span:nth-child(2) {
  display: none;
}

a.menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.page-header {
  height: 370px;
  padding-top: 140px;
  position: relative;
}
.page-header::after {
  content: "";
  width: 100%;
  height: 451px;
  background-image: url(../images/about/bg-page.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

.title-jp {
  font-size: 5.5rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  color: #e81e79;
  letter-spacing: 0.1em;
  text-align: center;
}

.sub-title-jp {
  font-size: 2.6rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  color: #e81e79;
  letter-spacing: 0.1em;
  text-align: center;
}

.page-header-title {
  position: relative;
  padding-top: 30px;
}
.page-header-title::after {
  content: "";
  width: 52px;
  height: 22px;
  background-image: url(../images/index/after-link.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.after-page-header::after {
  content: "";
  width: 100%;
  height: 170px;
  background-image: url(../images/about/after-page-header.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
}

.img-timeline {
  padding: 4px;
  background: linear-gradient(90deg, rgba(255, 163, 0, 0.3) 0%, rgba(57, 196, 182, 0.3) 100%);
}

.img-timeline-inner {
  background-color: #fff;
  padding: 20px;
}

.box-timeline {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 75px;
  position: relative;
}
.box-timeline.reverse {
  flex-direction: row-reverse;
}
.box-timeline.reverse::after {
  content: "";
  width: 100%;
  max-width: 1200px;
  height: 600px;
  background-color: #fff5fb;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
  z-index: -5;
}
.box-timeline.reverse .timeline-right {
  padding-left: 0;
  padding-right: 60px;
}
.box-timeline.reverse .timeline-right-cont {
  margin-left: auto;
}
.box-timeline:nth-child(2) .time-box {
  background-color: #ffeed4;
}
.box-timeline:nth-child(2) .note-timeline {
  bottom: -81px;
  left: 170px;
}
.box-timeline:nth-child(3) .time-box {
  background-color: #ffe2b8;
}
.box-timeline:nth-child(4) .time-box {
  background-color: #e5f2d3;
}
.box-timeline:nth-child(5) .time-box {
  background-color: #d9e8e4;
}
.box-timeline:nth-child(5) .note-timeline {
  bottom: -20px;
  left: 200px;
}
.box-timeline:nth-child(6) .time-box {
  background-color: #dae8f2;
}
.box-timeline:nth-child(6) .note-timeline {
  left: 180px;
}
.box-timeline:nth-child(7) .time-box {
  background-color: #e5f2d3;
}
.box-timeline:nth-child(8) .time-box {
  background-color: #ffe2b8;
}
.box-timeline:nth-child(9) .time-box {
  background-color: #ffeed4;
}
.box-timeline:nth-child(10) .time-box {
  background-color: #fcf6d6;
}
.box-timeline:nth-child(10) .note-timeline {
  left: 195px;
}

.timeline-left {
  width: 50%;
  position: relative;
}

.timeline-right {
  width: 50%;
  padding-left: 60px;
}
.timeline-right-cont {
  max-width: 470px;
}

.title-timeline {
  font-size: 3.3rem;
  letter-spacing: 0.1em;
  color: #e74566;
  font-family: "Yusei Magic", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}

.timeline-right p {
  font-size: 1.8rem;
  color: #876239;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.note-left {
  width: 377px;
  height: 106px;
  border: 4px solid #e74566;
  font-size: 2.2rem;
  color: #e74566;
  font-weight: bold;
  padding-bottom: 10px;
  border-radius: 53px;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -77px;
}
.note-left::after {
  content: "";
  width: 56px;
  height: 33px;
  background-image: url(../images/about/after-note.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 110px;
  bottom: -24px;
}

.box-icon-timeline {
  margin-top: 50px;
  position: relative;
}

.icon-timeline {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.icon-timeline::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: kiran 3s ease-in-out infinite;
}

.note-timeline {
  width: 300px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  border: 4px solid #0D9EB5;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #0d9eb5;
  letter-spacing: 0.05em;
  line-height: 1.55;
  position: absolute;
  bottom: -11px;
  background-color: #fff;
  left: 160px;
}
.note-timeline::after {
  content: "";
  width: 44px;
  height: 28px;
  background-image: url(../images/about/after-note-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 60px;
  top: -20px;
}

.time-box {
  font-family: "RocknRoll One", sans-serif;
  position: absolute;
  width: 238px;
  height: 77px;
  background: #fcf6d6;
  border-radius: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  color: #876239;
  top: 0;
}

.border-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 6px;
  height: 0;
  background: linear-gradient(180deg, rgb(242, 102, 136) 0%, rgb(146, 197, 47) 100%);
}

.list-timeline {
  position: relative;
}

.text-start {
  font-size: 3.8rem;
  color: #e74566;
  font-family: "RocknRoll One", sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
}

.about-02 {
  position: relative;
}
.about-02::after {
  content: "";
  width: 100%;
  height: 332px;
  background-image: url(../images/about/bg-1.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -6;
}
.about-02::before {
  content: "";
  width: 626px;
  height: 470px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 243px;
  right: 0;
  z-index: -5;
}

.list-lesson {
  display: flex;
  flex-wrap: wrap;
  gap: 90px 16px;
  counter-reset: num-lesson;
}

.box-lesson {
  width: calc(33.33% - 11px);
  text-align: center;
  position: relative;
  padding-top: 98px;
  counter-increment: num-lesson;
}
.box-lesson::after {
  content: counter(num-lesson);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f26688;
  font-size: 3.7rem;
  font-family: "RocknRoll One", sans-serif;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -45px;
}
.box-lesson .note-left {
  width: 100%;
  padding: 5px 40px;
  text-align: left;
  color: #876239;
  font-size: 2.1rem;
  top: 0;
}

.about-03 {
  position: relative;
}
.about-03::after {
  content: "";
  width: 100%;
  height: 470px;
  background-image: url(../images/about/bg-2.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -6;
}
.about-03::before {
  content: "";
  width: 100%;
  height: calc(100% - 470px);
  background-color: #fffcee;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -5;
}

#about-03 {
  position: relative;
}
#about-03::before {
  content: "";
  width: 626px;
  height: 470px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 220px;
  left: 0;
  z-index: -2;
}
#about-03::after {
  content: "";
  width: 741px;
  height: 293px;
  background-image: url(../images/index/after-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -220px;
  left: -60px;
  z-index: -7;
}

.about-01 {
  position: relative;
}
.about-01::before {
  content: "";
  width: 626px;
  height: 470px;
  background-image: url(../images/index/after-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 93px;
  left: 0;
  z-index: -1;
}
.about-01::after {
  content: "";
  width: 741px;
  height: 293px;
  background-image: url(../images/index/after-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -110px;
  bottom: -70px;
  z-index: -7;
}

.box-flex-making {
  display: flex;
}

.box-info-making {
  width: 50%;
  position: relative;
}
.box-info-making img {
  width: 100%;
}

.box-text-making {
  width: calc(100% - 180px);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  padding: 30px 30px 40px;
  text-align: center;
  background-color: #fff5fb;
  border-radius: 30px;
  bottom: -65px;
}
.box-text-making p {
  color: #e74566;
  font-size: 2.1rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.box-text-making h3 {
  font-size: 3.2rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000;
  margin-top: 5px;
}

.sub-title {
  padding-left: 60px;
  font-size: 2.9rem;
  color: #e74566;
  letter-spacing: 0.1em;
  line-height: 1.33;
  padding-bottom: 20px;
  font-family: "Yusei Magic", sans-serif;
  margin-bottom: 35px;
  position: relative;
}
.sub-title::after {
  content: "";
  width: 38px;
  height: 16px;
  background-image: url(../images/index/after-sub.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 10px;
}
.sub-title::before {
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgb(255, 163, 0) 0%, rgb(57, 196, 182) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.img-answer {
  border: 3px solid #d94462;
  border-radius: 50%;
}

.box-answer {
  gap: 15px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.box-answer p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #876239;
  line-height: 1.83;
}

.box-img-answer {
  width: 84px;
}

.box-text-answer {
  flex: 1;
}

.box-img-answer p {
  font-size: 2rem;
  color: #e74566;
  text-align: center;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.box-making-cs {
  margin-bottom: 100px;
  position: relative;
}
.box-making-cs::after {
  content: "";
  width: 740px;
  height: 293px;
  background-image: url(../images/index/after-6.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: -190px;
  top: 0;
  z-index: -7;
}
.box-making-cs:last-child {
  margin-bottom: 0;
}
.box-making-cs:nth-child(2)::after {
  top: auto;
  bottom: 485px;
}
.box-making-cs:nth-child(3)::after {
  width: 626px;
  height: 470px;
  background-image: url(../images/index/after-3.png);
  left: auto;
  right: -190px;
  top: -260px;
}
.box-making-cs:nth-child(4)::after {
  top: -90px;
}
.box-making-cs:nth-child(5)::after {
  width: 626px;
  height: 470px;
  background-image: url(../images/index/after-3.png);
  left: auto;
  right: -190px;
  top: 525px;
}

.box-img-make-8 {
  margin-top: -45px;
  text-align: center;
  position: relative;
}

.making-01 {
  position: relative;
}
.making-01::after {
  content: "";
  height: 552px;
  width: 100%;
  background-image: url(../images/index/bg-make.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.box-slide-post {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.box-slide-post .slide-arrow {
  width: 64px;
  height: 64px;
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 245px;
  left: -85px;
  z-index: 1;
}
.box-slide-post .slide-arrow.next-arrow {
  left: auto;
  right: -85px;
}
.box-slide-post p {
  color: #876239;
  font-weight: 500;
  text-align: center;
  padding-top: 15px;
}
.box-slide-post ul.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 5px;
}
.box-slide-post ul.slick-dots li {
  border: 2px solid #ef4d6d;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
}
.box-slide-post ul.slick-dots li button {
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.box-slide-post ul.slick-dots li.slick-active {
  background-color: #ef4d6d;
}
.box-slide-post .slick-list {
  overflow: visible;
  margin: 0 -60px;
}
.box-slide-post .slick-slide {
  margin: 0 60px;
}

.single .page-navi {
  border-top: 1px solid #ef4d6d;
}

.sidebar-item .select::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #efce67;
  border: 2px solid #f26688;
  border-radius: 15px;
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: -2;
  transform: none;
  transition: 0.3s;
}

.box-main-menu {
  display: flex;
  align-items: flex-end;
}

nav.navbar.nav-main {
  width: 39%;
}

.box-img-link-header {
  width: 30%;
  padding: 0 40px;
}

.box-top-header {
  width: 31%;
  padding-left: 60px;
}

.box-img-link-header a {
  display: flex;
  margin-top: 30px;
  min-width: 330px;
  margin-left: auto;
  margin-right: auto;
}
.box-img-link-header a.btn-main {
  width: 100%;
}
.box-img-link-header a.btn-main::after {
  border-radius: 20px;
  border-width: 1px;
}
.box-img-link-header a.btn-main span {
  width: 100%;
  border-width: 1px;
  border-radius: 20px;
  font-size: 1.8rem;
}
.box-img-link-header a.btn-main span::before {
  content: "";
  width: 55px;
  height: 68px;
  background-image: url(../images/index/icon-button-header.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.box-img-link-header a.btn-main:last-child span::before {
  width: 41px;
  height: 34px;
  background-image: url(../images/index/icon-1.svg);
  left: 15px;
}

.header-main .main-menu::after {
  content: "";
  width: 593px;
  height: 233px;
  top: 200px;
  left: -75px;
  background-image: url(../images/index/after-4.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
}

.home-relate-icon {
  position: absolute;
  left: 80px;
  top: -73px;
}

.icon-home-gal.after-banner {
  top: -30px;
  right: 0;
}

.icon-home-prince.after-banner {
  width: 330px;
  right: -80px;
  top: -90px;
}/*# sourceMappingURL=style.css.map */