/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Light.eot") format("embedded-opentype"), url("../fonts/Chillax-Light.ttf") format("truetype"), url("../fonts/Chillax-Light.woff") format("woff"), url("../fonts/Chillax-Light.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Regular.eot") format("embedded-opentype"), url("../fonts/Chillax-Regular.ttf") format("truetype"), url("../fonts/Chillax-Regular.woff") format("woff"), url("../fonts/Chillax-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Medium.eot") format("embedded-opentype"), url("../fonts/Chillax-Medium.ttf") format("truetype"), url("../fonts/Chillax-Medium.woff") format("woff"), url("../fonts/Chillax-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Semibold.eot") format("embedded-opentype"), url("../fonts/Chillax-Semibold.ttf") format("truetype"), url("../fonts/Chillax-Semibold.woff") format("woff"), url("../fonts/Chillax-Semibold.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Bold.eot") format("embedded-opentype"), url("../fonts/Chillax-Bold.ttf") format("truetype"), url("../fonts/Chillax-Bold.woff") format("woff"), url("../fonts/Chillax-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Quentin";
  src: url("../fonts/Quentin.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
.topFv {
  position: relative;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #FFFFFF;
  overflow-x: clip;
}
@media screen and (min-width: 320px) {
  .topFv {
    padding: 0 5vw 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFv {
    padding: 0 0 13vh 15vw;
  }
}
.topFv .swiper-pagination-bullets {
  position: absolute;
  top: 50%;
  left: unset;
  bottom: unset;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 320px) {
  .topFv .swiper-pagination-bullets {
    right: 2.5vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    gap: 1.5rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .topFv .swiper-pagination-bullets {
    right: 4.5vw;
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
    gap: 3.2rem 0;
  }
}
.topFv .swiper-pagination-bullet {
  position: relative;
  margin: unset !important;
  background: #FFFFFF;
  opacity: 1;
}
@media screen and (min-width: 320px) {
  .topFv .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFv .swiper-pagination-bullet {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.topFv .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(244, 78, 78, 0.2);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
}
@media screen and (min-width: 320px) {
  .topFv .swiper-pagination-bullet::before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
  }
}
@media screen and (min-width: 1025px) {
  .topFv .swiper-pagination-bullet::before {
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
  }
}
.topFv .swiper-pagination-bullet-active::before {
  opacity: 1;
}

.scrollIcon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ddedf9;
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  .scrollIcon {
    width: 6rem;
    height: 6rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 15svh 0 0 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .scrollIcon {
    width: 13rem;
    height: 13rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: unset;
  }
}
.scrollIcon::before {
  position: absolute;
  content: "SCROLL";
  top: 50%;
  font-family: "Chillax", sans-serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 320px) {
  .scrollIcon::before {
    left: -2.3rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .scrollIcon::before {
    left: -5rem;
    font-size: 1.4rem;
    font-weight: 600;
  }
}

.scrollIconSvg {
  width: 40%;
}

.fvTitle {
  font-weight: 700;
  line-height: 1.425;
}
@media screen and (min-width: 320px) {
  .fvTitle {
    font-size: 3rem;
    letter-spacing: 0.2rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 1025px) {
  .fvTitle {
    font-size: 8rem;
    letter-spacing: 0.6rem;
    margin-top: 6.5vh;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.fvText {
  opacity: 0.8;
  line-height: 1.7;
}
@media screen and (min-width: 320px) {
  .fvText {
    font-size: 1.2rem;
    margin: 3rem 0 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width: 1025px) {
  .fvText {
    font-size: 2rem;
    margin: 2vh 0 0 0.5rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.fvBgSvg {
  position: absolute;
  -webkit-transform: rotate(-0.5deg);
          transform: rotate(-0.5deg);
  z-index: -1;
}
@media screen and (min-width: 320px) {
  .fvBgSvg {
    top: 15vh;
    left: -62vh;
    width: 320%;
  }
}
@media screen and (min-width: 1025px) {
  .fvBgSvg {
    top: -0.6vh;
    left: -82.5vh;
    width: 160%;
  }
}

#topFvSwiper {
  position: absolute;
  top: 0;
  z-index: -2;
  width: 100%;
}
@media screen and (min-width: 320px) {
  #topFvSwiper {
    height: 60%;
    right: 0;
    -webkit-clip-path: polygon(-12% -45%, 40% 150%, 160% 51%);
            clip-path: polygon(-12% -45%, 40% 150%, 160% 51%);
  }
}
@media screen and (min-width: 1025px) {
  #topFvSwiper {
    height: 105%;
    right: -18.5%;
    -webkit-clip-path: polygon(2% -33%, 57% 127%, 125% 68%);
            clip-path: polygon(2% -33%, 57% 127%, 125% 68%);
  }
}

.newsSlider {
  padding: 8.3rem 0;
}

.topFeature {
  position: relative;
}
@media screen and (min-width: 320px) {
  .topFeature {
    margin-top: -30rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFeature {
    margin-top: 10rem;
  }
}
.topFeature::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: -1;
  opacity: 0.6;
}
@media screen and (min-width: 320px) {
  .topFeature::before {
    border-radius: 3.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFeature::before {
    border-radius: 6.4rem;
  }
}
@media screen and (min-width: 320px) {
  .topFeature .commonLinkBtn {
    margin: 4rem auto 0;
  }
}
@media screen and (min-width: 1025px) {
  .topFeature .commonLinkBtn {
    margin: 4.6rem 0 0 auto;
  }
}

.featureInner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0px 3px 64px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 64px 0px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  z-index: 1;
}
@media screen and (min-width: 320px) {
  .featureInner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 3.2rem;
    padding: 3rem 2.5vw 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .featureInner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    border-radius: 6.4rem;
    padding: 6.7rem 2.5vw 13rem;
  }
}

.featureTitle {
  font-weight: 700;
  line-height: 1.8;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (min-width: 320px) {
  .featureTitle {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .featureTitle {
    font-size: 4rem;
    margin: 5.8rem 7.5% 0 0;
    letter-spacing: -1.5rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .featureTitle .middle {
    margin: 8.5rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .featureTitle .end {
    margin: 17rem 0 0;
  }
}

@media screen and (min-width: 320px) {
  .featureTextWrapper {
    width: 100%;
    margin: 3rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .featureTextWrapper {
    width: 32.7%;
    margin: 21.5rem 3.6% 0 0;
  }
}

.featureText {
  line-height: 2.4;
}
@media screen and (min-width: 320px) {
  .featureText {
    font-size: 1.3rem;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .featureText {
    font-size: 2rem;
    text-align: left;
  }
}

.bgTextWrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  z-index: -1;
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
@media screen and (min-width: 320px) {
  .bgTextWrapper {
    top: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .bgTextWrapper {
    top: 2rem;
  }
}

.bgText {
  font-family: "Chillax", sans-serif;
  color: #e5e2ea;
  -webkit-animation: scrollText 20s linear infinite;
          animation: scrollText 20s linear infinite;
}
@media screen and (min-width: 320px) {
  .bgText {
    font-size: 5rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .bgText {
    font-size: 24rem;
    padding-right: 15rem;
  }
}

@media screen and (min-width: 320px) {
  .featureImg1 {
    width: 32%;
    border-radius: 1.6rem;
    margin: 5rem 0 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .featureImg1 {
    width: 19.5%;
    border-radius: 3.2rem;
    margin: unset;
  }
}

.featureImg2 {
  position: absolute;
  left: 2.5vw;
}
@media screen and (min-width: 320px) {
  .featureImg2 {
    top: 85%;
    width: 50%;
    border-radius: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .featureImg2 {
    top: 81%;
    width: 46%;
    border-radius: 3.2rem;
  }
}

@media screen and (min-width: 320px) {
  .topService {
    padding: 5rem 2.5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .topService {
    padding: 19rem 5vw 0;
  }
}
.topService .sectionTitleEn, .topService .sectionTitle {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1025px) {
  .topService .sectionTitle {
    padding: 0.5rem 0.5rem 0 0;
  }
}
@media screen and (min-width: 320px) {
  .topService .commonLinkList {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .topService .commonLinkList {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topService .commonLinkItem {
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .topService .commonLinkItem:hover {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  .topService .commonLinkItem:hover .itemTitle, .topService .commonLinkItem:hover .itemDesc {
    color: #FFFFFF;
  }
  .topService .commonLinkItem:hover .itemBg {
    opacity: 1;
  }
}

.sectionTitleEn {
  color: #f44e4e;
  font-family: "Chillax", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 320px) {
  .sectionTitleEn {
    font-size: 4.3rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .sectionTitleEn {
    font-size: 18rem;
    letter-spacing: 0.2rem;
  }
}

.sectionTitle {
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 320px) {
  .sectionTitle {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .sectionTitle {
    font-size: 3.2rem;
  }
}

.serviceListTitle {
  letter-spacing: 0.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 320px) {
  .serviceListTitle {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .serviceListTitle {
    font-size: 3.2rem;
    padding: 0 0 1.5rem 3.5rem;
  }
}

.commonLinkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 320px) {
  .commonLinkList {
    gap: 1.5rem 2%;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkList {
    gap: 2.5rem 0.8%;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkList.twoColumn {
    gap: 2.5rem 1%;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkList.twoColumn .commonLinkItem {
    width: 49.5%;
  }
}

.commonLinkItem {
  position: relative;
}
@media screen and (min-width: 320px) {
  .commonLinkItem {
    width: 49%;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem {
    width: 32.8%;
  }
}
.commonLinkItem::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(100deg, rgb(244, 78, 78) 0%, rgb(138, 201, 248) 100%);
  z-index: -1;
  opacity: 0.2;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
@media screen and (min-width: 320px) {
  .commonLinkItem::before {
    border-radius: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem::before {
    border-radius: 3.2rem;
  }
}
.commonLinkItem .itemInner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(255, 255, 255, 0.85);
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .commonLinkItem .itemInner {
    border-radius: 1.6rem;
    padding: 1.2rem 1rem 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem .itemInner {
    border-radius: 3.2rem;
    padding: 4rem 1.5rem 4.3rem 3.5rem;
  }
}
.commonLinkItem .itemTitle {
  z-index: 1;
  line-height: 1.35;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (min-width: 320px) {
  .commonLinkItem .itemTitle {
    width: 85%;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem .itemTitle {
    width: 85%;
    font-size: 4rem;
    letter-spacing: 0.3rem;
  }
}
.commonLinkItem .itemArrow {
  position: absolute;
}
@media screen and (min-width: 320px) {
  .commonLinkItem .itemArrow {
    top: 1rem;
    right: 1rem;
    width: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem .itemArrow {
    top: 3rem;
    right: 1.8rem;
    width: 7.7rem;
  }
}
.commonLinkItem .itemTitleEn {
  z-index: 1;
  color: #FFFFFF;
  font-family: "Chillax", sans-serif;
  border-radius: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #f44e4e;
}
@media screen and (min-width: 320px) {
  .commonLinkItem .itemTitleEn {
    font-size: 1rem;
    padding: 0 0.8rem 0.1rem;
    margin-top: 0.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem .itemTitleEn {
    font-size: 1.6rem;
    padding: 0.4rem 1.7rem 0.5rem;
    margin-top: 0.8rem;
  }
}
.commonLinkItem .itemDesc {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1.5;
  opacity: 0.6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (min-width: 320px) {
  .commonLinkItem .itemDesc {
    font-size: 1rem;
    padding: 1.5rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem .itemDesc {
    font-size: 1.6rem;
    padding: 4.5rem 6rem 0 0;
  }
}
.commonLinkItem .itemAboutWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .commonLinkItem .itemAboutWrapper {
    padding: 1.5rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem .itemAboutWrapper {
    padding: 4.5rem 2.2rem 0 0;
  }
}
.commonLinkItem .itemAbout {
  line-height: 1.5;
  opacity: 0.6;
}
@media screen and (min-width: 320px) {
  .commonLinkItem .itemAbout {
    width: 80%;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem .itemAbout {
    width: 75%;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 320px) {
  .commonLinkItem .itemImg {
    width: 10%;
    border-radius: 0.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkItem .itemImg {
    width: 23%;
    margin-top: 0.5rem;
    border-radius: 1.6rem;
  }
}
.commonLinkItem .itemBg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

@media screen and (min-width: 320px) {
  .serviceBasic {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .serviceBasic {
    margin-top: 9.6rem;
  }
}

@media screen and (min-width: 320px) {
  .serviceConsulting {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .serviceConsulting {
    margin-top: 8rem;
  }
}
.serviceConsulting .itemTitleEn {
  background: #98c2ec;
}

.topAbout {
  overflow-x: clip;
}
@media screen and (min-width: 320px) {
  .topAbout {
    padding-top: 10rem;
  }
}
@media screen and (min-width: 1025px) {
  .topAbout {
    padding-top: 18rem;
  }
}
.topAbout .commonLinkList {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 320px) {
  .topAbout .itemInner {
    padding: 1rem 1rem 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .topAbout .itemInner {
    padding: 4rem 1.5rem 3.3rem 3.5rem;
  }
}

.aboutImgSliderWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 320px) {
  .aboutImgSliderWrapper {
    gap: 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .aboutImgSliderWrapper {
    gap: 0 3rem;
  }
}

.aboutImgSlider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scrollText 40s linear infinite;
          animation: scrollText 40s linear infinite;
}
@media screen and (min-width: 320px) {
  .aboutImgSlider {
    gap: 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .aboutImgSlider {
    gap: 0 3rem;
  }
}

.aboutSlide.twoRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .aboutSlide.twoRow {
    width: 13.9rem;
  }
}
@media screen and (min-width: 1025px) {
  .aboutSlide.twoRow {
    width: 51.4rem;
  }
}
@media screen and (min-width: 320px) {
  .aboutSlide.large {
    width: 29rem;
  }
}
@media screen and (min-width: 1025px) {
  .aboutSlide.large {
    width: 106.4rem;
  }
}

@media screen and (min-width: 320px) {
  .aboutSlideImg {
    border-radius: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .aboutSlideImg {
    border-radius: 3.2rem;
  }
}

.aboutInner {
  position: relative;
}
@media screen and (min-width: 320px) {
  .aboutInner {
    margin: 0 2.5vw;
    padding: 3rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .aboutInner {
    margin: 0 10vw;
    padding: 11rem 15.3vw 0 5vw;
  }
}

.aboutTitleWrapper {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  background: #FFFFFF;
}
@media screen and (min-width: 320px) {
  .aboutTitleWrapper {
    width: 50%;
    padding: 1.5rem 0 0 2.5vw;
    border-radius: 1.6rem 1.6rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .aboutTitleWrapper {
    width: 61.7%;
    padding: 12.7rem 0 0 5vw;
    border-radius: 3.2rem 3.2rem 0 0;
  }
}
.aboutTitleWrapper::before, .aboutTitleWrapper::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  .aboutTitleWrapper::before, .aboutTitleWrapper::after {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .aboutTitleWrapper::before, .aboutTitleWrapper::after {
    width: 23rem;
    height: 23rem;
  }
}
.aboutTitleWrapper::before {
  bottom: 1px;
  right: 100%;
}
@media screen and (min-width: 320px) {
  .aboutTitleWrapper::before {
    -webkit-box-shadow: 2rem 2rem 0 0 #FFFFFF;
            box-shadow: 2rem 2rem 0 0 #FFFFFF;
  }
}
@media screen and (min-width: 1025px) {
  .aboutTitleWrapper::before {
    -webkit-box-shadow: 11.5rem 11.5rem 0 0 #FFFFFF;
            box-shadow: 11.5rem 11.5rem 0 0 #FFFFFF;
  }
}
.aboutTitleWrapper::after {
  bottom: 1px;
  left: 100%;
}
@media screen and (min-width: 320px) {
  .aboutTitleWrapper::after {
    -webkit-box-shadow: -2rem 2rem 0 0 #FFFFFF;
            box-shadow: -2rem 2rem 0 0 #FFFFFF;
  }
}
@media screen and (min-width: 1025px) {
  .aboutTitleWrapper::after {
    -webkit-box-shadow: -11.5rem 11.5rem 0 0 #FFFFFF;
            box-shadow: -11.5rem 11.5rem 0 0 #FFFFFF;
  }
}

.aboutTitle {
  position: relative;
  color: #f44e4e;
  font-family: "Chillax", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 320px) {
  .aboutTitle {
    font-size: 3rem;
    line-height: 1;
  }
}
@media screen and (min-width: 1025px) {
  .aboutTitle {
    font-size: 15rem;
    line-height: 0.6;
  }
}/*# sourceMappingURL=top.css.map */