:root {
  --color-white: #FFFFFF;
  --color-main: #87b828;
  --color-main-dark: #229C2A;
  --color-accent: #222e0a;
  --color-text: #505050;
  --color-red: #C62F2B;
  --font-main: "neue-haas-grotesk-text", "ryo-gothic-plusn", sans-serif;
}

/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "tsukuhou";
  src: url("../font/Tsukuhou-35Point-Gothic.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.topFvWrapper {
  position: relative;
  color: #FFFFFF;
  overflow: clip;
}
.topFvWrapper::before {
  position: absolute;
  content: "";
  bottom: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0 20rem 0 10rem #FFFFFF;
          box-shadow: 0 20rem 0 10rem #FFFFFF;
  z-index: -1;
}
@media screen and (min-width: 320px) {
  .topFvWrapper::before {
    left: calc(50% - 50rem);
    width: 100rem;
    height: 100rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFvWrapper::before {
    left: calc(50% - 225rem);
    width: 450rem;
    height: 450rem;
  }
}

.topFv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  height: 100vh;
  height: 100svh;
}
@media screen and (min-width: 320px) {
  .topFv {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 11.5rem 2.5vw 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFv {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 4.8rem 2.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .topFv .sp {
    display: none;
  }
}

@-webkit-keyframes swiperScale {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes swiperScale {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.swiper-slide-active .topFvImg,
.swiper-slide-duplicate-active .stopFvImg,
.swiper-slide-prev .topFvImg {
  -webkit-animation: swiperScale 7s linear 0s normal both;
          animation: swiperScale 7s linear 0s normal both;
}

#topFvSwiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
#topFvSwiper .swiper-slide {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#topFvThumbnailSwiper {
  position: absolute;
}
@media screen and (min-width: 320px) {
  #topFvThumbnailSwiper {
    top: 12rem;
    right: 2.5vw;
  }
}
@media screen and (min-width: 1025px) {
  #topFvThumbnailSwiper {
    top: 40rem;
    right: 1.5vw;
  }
}
#topFvThumbnailSwiper .swiper-slide {
  margin: 0;
  opacity: 0.65;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.15);
  -webkit-transition: opacity 400ms ease, -webkit-transform 400ms ease;
  transition: opacity 400ms ease, -webkit-transform 400ms ease;
  transition: opacity 400ms ease, transform 400ms ease;
  transition: opacity 400ms ease, transform 400ms ease, -webkit-transform 400ms ease;
}
@media screen and (min-width: 320px) {
  #topFvThumbnailSwiper .swiper-slide {
    width: 4rem;
    height: 4rem !important;
  }
}
@media screen and (min-width: 1025px) {
  #topFvThumbnailSwiper .swiper-slide {
    width: 8rem;
    height: 8rem !important;
  }
}
#topFvThumbnailSwiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#topFvThumbnailSwiper .img {
  border: solid 1px white;
}
#topFvThumbnailSwiper .img, #topFvThumbnailSwiper .imgWrapper {
  height: 100%;
  padding: 0;
}
@media screen and (min-width: 320px) {
  #topFvThumbnailSwiper .img, #topFvThumbnailSwiper .imgWrapper {
    border-radius: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  #topFvThumbnailSwiper .img, #topFvThumbnailSwiper .imgWrapper {
    border-radius: 2rem;
  }
}

.topFv_copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
@media screen and (min-width: 320px) {
  .topFv_copy {
    padding-bottom: 8rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFv_copy {
    padding-bottom: 0;
  }
}

.topFv_copyMain {
  position: absolute;
}
@media screen and (min-width: 320px) {
  .topFv_copyMain {
    top: 7.6rem;
    right: 0;
    width: 65.5%;
  }
}
@media screen and (min-width: 1025px) {
  .topFv_copyMain {
    top: 16.8rem;
    right: 5vw;
    width: 27.5%;
  }
}
.topFv_copyMain img {
  display: block;
  width: 100%;
  height: auto;
}

.topFv_copyDesc {
  position: absolute;
  font-weight: 700;
  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_copyDesc {
    top: 11.2rem;
    right: auto;
    left: 2.5vw;
    width: 100%;
    font-size: 1.24rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .topFv_copyDesc {
    top: 76.8rem;
    right: 5vw;
    left: auto;
    width: 27.5%;
    font-size: 2.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.topFv_copyDesc span {
  display: inline-block;
}
@media screen and (min-width: 320px) {
  .topFv_copyDesc span:last-child {
    -webkit-transform: translateX(4.8rem);
            transform: translateX(4.8rem);
  }
}
@media screen and (min-width: 1025px) {
  .topFv_copyDesc span:last-child {
    -webkit-transform: translateX(8rem);
            transform: translateX(8rem);
  }
}

.topFv_copyEn {
  position: relative;
  bottom: 0;
  left: -1%;
  z-index: 1;
  mix-blend-mode: overlay;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 0.9;
}
@media screen and (min-width: 320px) {
  .topFv_copyEn {
    font-size: 6.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFv_copyEn {
    font-size: 22.4rem;
  }
}

@media screen and (min-width: 320px) {
  .isMin .topFv_copyMain {
    width: 51.5%;
  }
}
@media screen and (min-width: 1025px) {
  .isMin .topFv_copyMain {
    width: 27.5%;
  }
}
@media screen and (min-width: 320px) {
  .isMin .topFvImg {
    -o-object-position: center -18rem;
       object-position: center -18rem;
  }
}
@media screen and (min-width: 1025px) {
  .isMin .topFvImg {
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (min-width: 320px) {
  .isMin .topFv_copyEn {
    font-size: 5.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .isMin .topFv_copyEn {
    font-size: 22.4rem;
  }
}

.topFvHeading {
  font-family: var(--font-main);
  line-height: 1.111;
  text-shadow: 0px 1px 30px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.7rem;
}
@media screen and (min-width: 320px) {
  .topFvHeading {
    font-size: 5.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFvHeading {
    font-size: 14rem;
  }
}
.topFvHeading .largeText {
  font-size: 130%;
}

.topFvImg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (min-width: 320px) {
  .topFvImg {
    -o-object-position: bottom;
       object-position: bottom;
  }
}
@media screen and (min-width: 1025px) {
  .topFvImg {
    -o-object-position: center;
       object-position: center;
  }
}

.topFvCatch {
  font-family: var(--font-main);
  letter-spacing: 0.15rem;
  line-height: 1;
}
@media screen and (min-width: 320px) {
  .topFvCatch {
    font-size: 1.8rem;
    padding: 3rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .topFvCatch {
    font-size: 3.6rem;
    padding: 2rem 0 0 0.5vw;
  }
}

.topAboutWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 320px) {
  .topAboutWrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 12rem 5vw 17rem;
  }
}
@media screen and (min-width: 1025px) {
  .topAboutWrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 22rem 12vw 33rem 14.5vw;
  }
}

.topAboutHeading {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-main);
}
.topAboutHeading .smallText {
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 320px) {
  .topAboutHeading .smallText {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .topAboutHeading .smallText {
    font-size: 3rem;
  }
}
.topAboutHeading .largeText {
  letter-spacing: 0.3rem;
}
@media screen and (min-width: 320px) {
  .topAboutHeading .largeText {
    font-size: 6rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topAboutHeading .largeText {
    font-size: 12rem;
    margin-top: 4.6rem;
  }
}
.topAboutHeading .small {
  font-size: 80%;
}

.topAboutDesc {
  line-height: 2.083;
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .topAboutDesc {
    width: 100%;
    font-size: 1.5rem;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topAboutDesc {
    width: 43%;
    font-size: 2.4rem;
    margin-top: 12rem;
  }
}

.topGal {
  position: relative;
}
@media screen and (min-width: 320px) {
  .topGal {
    padding: 0 5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .topGal {
    padding: 0 5vw 0 10vw;
  }
}

@media screen and (min-width: 320px) {
  .topGalImg {
    border-radius: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .topGalImg {
    border-radius: 3rem;
  }
}
@media screen and (min-width: 320px) {
  .topGalImg:nth-child(1) {
    width: 25rem;
    height: 16.4rem;
    margin-top: -12rem;
  }
}
@media screen and (min-width: 1025px) {
  .topGalImg:nth-child(1) {
    width: 76.7rem;
    height: 51.1rem;
    margin-top: -30rem;
  }
}
.topGalImg:nth-child(2) {
  margin-left: auto;
}
@media screen and (min-width: 320px) {
  .topGalImg:nth-child(2) {
    width: 23rem;
    height: 15.3rem;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topGalImg:nth-child(2) {
    width: 63.2rem;
    height: 42.1rem;
    margin-top: -2rem;
  }
}
@media screen and (min-width: 320px) {
  .topGalImg:nth-child(3) {
    width: 16rem;
    height: 10.4rem;
    margin: 6rem 0 0 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topGalImg:nth-child(3) {
    width: 37.3rem;
    height: 24.8rem;
    margin: -12rem 0 0 24rem;
  }
}

@-webkit-keyframes scrollText {
  100% {
    translate: -100%;
  }
}

@keyframes scrollText {
  100% {
    translate: -100%;
  }
}
.bgTextWrapper {
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 320px) {
  .bgTextWrapper {
    top: 23.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .bgTextWrapper {
    top: 37rem;
  }
}

.bgText {
  font-family: var(--font-main);
  color: #87b828;
  line-height: 1;
  -webkit-animation: scrollText 30s linear infinite;
          animation: scrollText 30s linear infinite;
}
@media screen and (min-width: 320px) {
  .bgText {
    font-size: 15rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .bgText {
    font-size: 34rem;
    padding-right: 7rem;
  }
}

.topStrength {
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .topStrength {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 1025px) {
  .topStrength {
    margin-top: 15rem;
  }
}

.commonTitleEng {
  font-family: var(--font-main);
  color: #87b828;
}
@media screen and (min-width: 320px) {
  .commonTitleEng {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonTitleEng {
    font-size: 18rem;
  }
}
.commonTitleEng.right {
  text-align: right;
}
@media screen and (min-width: 320px) {
  .commonTitleEng.right {
    margin-right: -0.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonTitleEng.right {
    margin-right: -2rem;
  }
}
.commonTitleEng.left {
  text-align: left;
}
@media screen and (min-width: 320px) {
  .commonTitleEng.left {
    margin-left: -0.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonTitleEng.left {
    margin-left: -2rem;
  }
}

@media screen and (min-width: 320px) {
  .topStrengthIntro {
    width: 90vw;
    margin: 2rem 0 0 5vw;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthIntro {
    width: 56rem;
    margin: 0 0 -31rem 5vw;
  }
}

.topStrengthSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 320px) {
  .topStrengthSlide {
    padding: 0 2.5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthSlide {
    padding: 0 5vw 0 calc(5vw + 56rem);
  }
}

.commonTitle {
  font-family: var(--font-main);
}
@media screen and (min-width: 320px) {
  .commonTitle {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonTitle {
    font-size: 9rem;
  }
}

.topStrengthDesc {
  font-weight: 700;
  line-height: 2;
  opacity: 0.8;
}
@media screen and (min-width: 320px) {
  .topStrengthDesc {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthDesc {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
}

.topStrengthItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 320px) {
  .topStrengthItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8rem 7.5vw 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 25rem 11rem 0 0;
  }
}
@media screen and (min-width: 320px) {
  .topStrengthItem:nth-last-child(1) {
    padding: 3rem 0 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem:nth-last-child(1) {
    padding: 16rem 0 0 0;
  }
}
.topStrengthItem .itemTitleWrapper {
  position: relative;
  background: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemTitleWrapper {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    border-radius: 0 0 0 2rem;
    margin: 0 0 0 auto;
    padding: 0 0 1rem 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemTitleWrapper {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    border-radius: 0 0 0 3rem;
    margin: -5rem 0 0 -7.5rem;
    padding: 0 0 4.5rem 4.5rem;
  }
}
.topStrengthItem .itemTitleWrapper::before, .topStrengthItem .itemTitleWrapper::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemTitleWrapper::before, .topStrengthItem .itemTitleWrapper::after {
    width: 2rem;
    height: 2rem;
    -webkit-box-shadow: 1rem -1rem 0 0 #FFFFFF;
            box-shadow: 1rem -1rem 0 0 #FFFFFF;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemTitleWrapper::before, .topStrengthItem .itemTitleWrapper::after {
    width: 6rem;
    height: 6rem;
    -webkit-box-shadow: 3rem -3rem 0 0 #FFFFFF;
            box-shadow: 3rem -3rem 0 0 #FFFFFF;
  }
}
.topStrengthItem .itemTitleWrapper::before {
  right: 100%;
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemTitleWrapper::before {
    top: 4.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemTitleWrapper::before {
    top: 5rem;
  }
}
.topStrengthItem .itemTitleWrapper::after {
  top: 100%;
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemTitleWrapper::after {
    right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemTitleWrapper::after {
    right: 7.4rem;
  }
}
.topStrengthItem .itemTag {
  font-family: var(--font-main);
  font-weight: 700;
  color: #FFFFFF;
  background: #87b828;
  border-radius: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemTag {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem 0.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemTag {
    font-size: 1.8rem;
    padding: 1.5rem 0.5rem 1.5rem 0.2rem;
  }
}
.topStrengthItem .itemTitle {
  font-family: var(--font-main);
  margin: 1rem 1rem 0 0;
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemTitle {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemTitle {
    font-size: 4rem;
  }
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemImg {
    width: 95vw;
    height: 34rem;
    border-radius: 2rem;
    margin-top: -3rem;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemImg {
    width: 55rem;
    height: 64rem;
    border-radius: 3rem;
    margin-top: 0;
  }
}
.topStrengthItem .itemDesc {
  position: relative;
  color: rgba(80, 80, 80, 0.8);
  background: #FFFFFF;
  border-radius: 0 3rem 0 0;
  line-height: 1.9;
  z-index: 1;
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemDesc {
    width: 95vw;
    font-size: 1.5rem;
    margin: 0 0 0 0;
    padding: 1rem 1rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemDesc {
    width: 38rem;
    font-size: 2rem;
    margin: auto -7rem 0 0;
    padding: 5rem 3.5rem 0 0;
  }
}
.topStrengthItem .itemDesc::before, .topStrengthItem .itemDesc::after {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  -webkit-box-shadow: -3rem 3rem 0 0 #FFFFFF;
          box-shadow: -3rem 3rem 0 0 #FFFFFF;
}
@media screen and (min-width: 320px) {
  .topStrengthItem .itemDesc::before, .topStrengthItem .itemDesc::after {
    content: none;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem .itemDesc::before, .topStrengthItem .itemDesc::after {
    content: "";
  }
}
.topStrengthItem .itemDesc::before {
  bottom: 100%;
  right: 1rem;
}
.topStrengthItem .itemDesc::after {
  bottom: 0;
  left: 100%;
}
@media screen and (min-width: 320px) {
  .topStrengthItem.blank {
    width: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topStrengthItem.blank {
    width: 8.5rem;
  }
}

@media screen and (min-width: 320px) {
  .topServices {
    margin: 10rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .topServices {
    margin: 32rem 0 10rem;
  }
}
.topServices .commonTitle {
  margin-left: 5vw;
}
@media screen and (min-width: 320px) {
  .topServices .commonTitle {
    margin: 2rem 0 0 5vw;
  }
}
@media screen and (min-width: 1025px) {
  .topServices .commonTitle {
    margin: 0 0 0 5vw;
  }
}

.topServicesIntroDesc {
  width: 100%;
  font-weight: 700;
  line-height: 1.64;
  opacity: 0.8;
}
@media screen and (min-width: 320px) {
  .topServicesIntroDesc {
    font-size: 1.5rem;
    padding: 0.5rem 5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesIntroDesc {
    font-size: 2.4rem;
    padding: 0.5rem 0 0 6vw;
  }
}
.topServicesIntroDesc small {
  font-size: 75%;
}

.topServicesIntroImg {
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 320px) {
  .topServicesIntroImg {
    height: 40rem;
    margin-top: -5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesIntroImg {
    height: 122rem;
    margin-top: -10rem;
  }
}
.topServicesIntroImg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #FFFFFF), to(transparent));
  background: linear-gradient(to bottom, #FFFFFF 20%, transparent);
}
@media screen and (min-width: 320px) {
  .topServicesIntroImg::before {
    height: 10rem;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesIntroImg::before {
    height: 23rem;
  }
}

.topServicesAbout {
  position: relative;
  background: #FFFFFF;
}
@media screen and (min-width: 320px) {
  .topServicesAbout {
    width: 80%;
    margin: -10rem 0 0 auto;
    padding: 2.5rem 2.5vw 0 2rem;
    border-radius: 2rem 0 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesAbout {
    width: 50%;
    margin: -28.7rem 0 0 auto;
    padding: 5rem 2.5vw 0 7rem;
    border-radius: 4rem 0 0 0;
  }
}
.topServicesAbout::before {
  position: absolute;
  content: "";
  right: 100%;
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  .topServicesAbout::before {
    top: 6rem;
    width: 4rem;
    height: 4rem;
    -webkit-box-shadow: 2rem 2rem 0 0 #FFFFFF;
            box-shadow: 2rem 2rem 0 0 #FFFFFF;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesAbout::before {
    top: 20.7rem;
    width: 8rem;
    height: 8rem;
    -webkit-box-shadow: 4rem 4rem 0 0 #FFFFFF;
            box-shadow: 4rem 4rem 0 0 #FFFFFF;
  }
}
.topServicesAbout .serviceTitle {
  font-family: var(--font-main);
}
@media screen and (min-width: 320px) {
  .topServicesAbout .serviceTitle {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesAbout .serviceTitle {
    font-size: 4.8rem;
  }
}
.topServicesAbout .serviceDesc {
  font-weight: 700;
  line-height: 1.9;
  opacity: 0.8;
}
@media screen and (min-width: 320px) {
  .topServicesAbout .serviceDesc {
    width: 100%;
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesAbout .serviceDesc {
    width: 83%;
    font-size: 2rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 320px) {
  .topServicesAbout .commonLinkBtn {
    margin: 2rem 0 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesAbout .commonLinkBtn {
    margin: 2rem 0 0 auto;
  }
}

.topServicesList {
  display: grid;
}
@media screen and (min-width: 320px) {
  .topServicesList {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
    padding: 7rem 5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesList {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 12rem 2.5vw 0;
  }
}

.topServicesItem {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.topServicesItem .serviceImg {
  aspect-ratio: 1/1;
  background: #505050;
}
@media screen and (min-width: 320px) {
  .topServicesItem .serviceImg {
    border-radius: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesItem .serviceImg {
    border-radius: 3rem;
  }
}
.topServicesItem .serviceTitle {
  font-family: var(--font-main);
}
@media screen and (min-width: 320px) {
  .topServicesItem .serviceTitle {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesItem .serviceTitle {
    font-size: 3rem;
    margin-top: 4rem;
  }
}
.topServicesItem .serviceDesc {
  width: 100%;
  opacity: 0.8;
  line-height: 1.778;
  text-align: center;
  border-top: 1px solid;
}
@media screen and (min-width: 320px) {
  .topServicesItem .serviceDesc {
    font-size: 1.3rem;
    padding: 1.5rem 0 3rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .topServicesItem .serviceDesc {
    font-size: 1.8rem;
    padding: 3rem 0 4.5rem;
    margin-top: 3.5rem;
  }
}

.topFvNews .fvNewsItem {
  position: absolute;
  max-width: 100%;
}
@media screen and (min-width: 320px) {
  .topFvNews .fvNewsItem {
    width: 90%;
    right: 5vw;
    top: calc(90vh - 7.5rem);
    top: calc(90svh - 7.5rem);
  }
}
@media screen and (min-width: 1025px) {
  .topFvNews .fvNewsItem {
    width: auto;
    right: 1.5vw;
    top: calc(90vh - 4rem);
    top: calc(90svh - 4rem);
  }
}
.topFvNews a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  border-radius: 50rem;
}
@media screen and (min-width: 320px) {
  .topFvNews a {
    width: 100%;
    padding: 4px 16px 4px 4px;
  }
}
@media screen and (min-width: 1025px) {
  .topFvNews a {
    width: auto;
    padding: 4px 48px 4px 4px;
  }
}
.topFvNews a:hover .columnTitle {
  text-decoration: none;
}
.topFvNews a:hover .thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (min-width: 320px) {
  .topFvNews .thumb {
    width: 6.5rem;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .topFvNews .thumb {
    width: 9.5rem;
    margin-right: 16px;
  }
}
.topFvNews .thumb .imgWrapper {
  position: relative;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.topFvNews .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
}
.topFvNews .titleArea {
  color: rgba(68, 68, 68, 0.6);
}
@media screen and (min-width: 320px) {
  .topFvNews .titleArea {
    width: calc(100% - 6.5rem - 16px);
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .topFvNews .titleArea {
    width: auto;
    font-size: 1.5rem;
  }
}
.topFvNews .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4px;
}
.topFvNews .cat {
  color: #229C2A;
  margin-right: 8px;
}
.topFvNews .columnTitle {
  font-weight: 400;
  text-decoration: underline;
  color: rgba(68, 68, 68, 0.8);
}
@media screen and (min-width: 320px) {
  .topFvNews .columnTitle {
    font-size: 120%;
  }
}
@media screen and (min-width: 1025px) {
  .topFvNews .columnTitle {
    font-size: 135%;
  }
}

.columnPickup {
  overflow: hidden;
}/*# sourceMappingURL=top.css.map */