@keyframes fadeInUp {
  from {
    transform: translate3d(0, 4rem, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 4rem, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes fadeInRight {
  from {
    transform: translate3d(8rem, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@-webkit-keyframes fadeInRight {
  from {
    transform: translate3d(8rem, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes fadeInLeft {
  from {
    transform: translate3d(-8rem, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    transform: translate3d(-8rem, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@-webkit-keyframes scroll_reverse {
  0% {
    transform: translateX(calc(-100% + 190rem));
  }

  100% {
    transform: translateX(calc(250px * 7));
  }
}

@keyframes scroll_reverse {
  0% {
    transform: translateX(calc(-100% + 190rem));
  }

  100% {
    transform: translateX(calc(250px * 7));
  }
}

body {
  padding-top: 0 !important;
  background-color: #000 !important;
  overflow-x: hidden;
}

header {
  background: #000;
  border-bottom-color: transparent;
  transition: 0.35s all ease-out;
  box-shadow: none;
}

header .logo-wrap span {
  color: #fff;
}

header .app-logo:not(.white) {
  display: none;
}


header .logo-wrap span {
  color: #222;
  transition: 0.35s all ease-out;
}

header .app-logo.white {
  display: block;
  transition: 0.35s all ease-out;
}

header nav ul:not(.sub-menu)>li:hover>a,
header nav .sub-menu li:hover>a,
header nav>ul>li,
header nav>ul>li>a {
  color: #fff;
}

header nav>ul>li>a:hover,
header nav>ul>li>a:visited,
header nav>ul>li>a:focus {
  color: inherit;
}


section {
  padding: 0;
}

.layout-inner {
  overflow-x: hidden;
}

.gradient-border {
  background-image: linear-gradient(105.14deg, #6557FF 0%, #AA3FFF 30%, #FCAA4A 68%, #F8522E 90%) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2px;
}

.gradient-border.gold {
  background-image: linear-gradient(76deg, #f87b30, #f87b30 0%, #f8c251 100%, #f8c251) !important;
}

.gradient-border::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(105.14deg, #6557FF 0%, #AA3FFF 30%, #FCAA4A 68%, #F8522E 90%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
}

.gradient-border.gold::after {
  display: none;
}

.gradient-border .inner {
  width: 100%;
  height: 100%;
  background-color: #080808;
}

button.gradient-border::after {
  transition: all 0.3s linear;
}
button.gradient-border:hover::after {
  opacity: 0.9;
}

.start-btn {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  border-radius: 10rem;
  margin: 0 auto;
}

.start-btn .inner {
  padding: 2.5rem 4.5rem;
  border-radius: 10rem;
}

.content-card {
  width: 90%;
  max-width: 160rem;
  margin: 0 auto;
}

.content-card li+li {
  margin-top: 7rem;
}

.content-card li {
  border-radius: 3rem;
  opacity: 0;
}

.content-card li>.inner {
  border-radius: 3rem;
  padding: 7rem;
  display: flex;
}

.content-card li .card-img {
  display: block;
  flex: none;
  width: auto;
  height: 40rem;
}

.content-card li .content {
  padding: 0 0 0 5rem;
}

.content-card li:nth-child(even) .content {
  padding: 0 5rem 0 0;
}

.content-card li .content .title {
  font-size: 6rem;
  color: #f7f7f7;
  margin-bottom: 3rem;
}

.content-card li .content .title span {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #f87b30, #f8c251);
  -webkit-background-clip: text;
  background-clip: text;
}

.content-card li .content p {
  color: #f7f7f7;
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.content-card li .content .start-btn {
  margin: 0 auto 0 0;
}

.content-card li.on {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.fade-in-up {
  animation: fadeInUp 1s linear both;
  -webkit-animation: fadeInUp 1s linear both;
}

.fade-in-animate {
  opacity: 0;
  transform: translate3d(0, 4rem, 0);
}

/* section1 */
.section1 {
  height: 100vh;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
}

.section1 .bg-section1 {
  z-index: -1;
  opacity: .75;
  mix-blend-mode: screen;
  width: 102.7vw;
  max-width: none;
  display: block;
  position: absolute;
  inset: -25vw auto 0%;
}

.section1 .title-box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.section1 .title-box .title-wrap {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif !important;
}

.section1 .title-box .title-wrap h2 {
  font-size: 8rem;
  font-weight: 700;
  font-family: inherit;
}

.section1 .title-box .title-wrap p {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: inherit;
  margin: 7rem 0;
}
/* section1 */


/* section2 */
.section2 {
  padding-top: 5rem;
}



/* section2 */


/* section3 */
.section3 {
  position: relative;
}

.section3 .bg-section3 {
  opacity: .8;
  mix-blend-mode: screen;
  width: 100vw;
  max-height: 150rem;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  inset: auto 0% -27%;
  overflow: visible;
  position: absolute;
  z-index: -1;
}

.section3 .section3-slider-wrap {
  margin-top: 10rem;
  padding: 18rem 0;
}

.section3 .section3-slider-wrap .slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.section3 .section3-slider-wrap .slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(100% / 3.5 * 10);
}

.section3 .section3-slider-wrap .slider .slide {
  flex: none;
  width: 50rem;
  padding: 2.4rem 2.4rem 5.5rem;
  border-radius: 1.4rem;
  background-color: #080808;
  border: 1px solid #80808080;
  margin: 0 2rem;
}

.section3 .section3-slider-wrap .slider img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.4rem;
  margin-bottom: 1.5rem;
}

.section3 .section3-slider-wrap .slider .title {
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}

.section3 .section3-slider-wrap .slider .memo {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 140%;
}

/* section3 */

/* section4 */
.section4 .review-title {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
}

.section4 .review-title span {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #f87b30, #f8c251);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 3rem;
}

.section4 .review-slider-wrap {
  margin: 18rem 0 7rem 0;
  position: relative;
}

.section4 .review-slider-wrap::before,
.section4 .review-slider-wrap::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  width: 15rem;
  z-index: 10;
}

.section4 .review-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.section4 .review-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}


.section4 .review-slider-wrap .slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  color: #f2f2f2;
}

.section4 .review-slider-wrap .slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(50rem * 20);  
}

.section4 .review-slider-wrap .slider .slide {
  width: 50rem;
  flex: none;
  padding: 2.4rem;
  border-radius: 1.4rem;
  background-color: #222;
  margin: 0 2rem;
}

.section4 .review-slider-wrap .slider.reverse .slide-track {
  -webkit-animation: scroll_reverse 80s linear infinite;
  animation: scroll_reverse 80s linear infinite;
}

.section4 .review-slider-wrap .slider .slide-track:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.section4 .review-slider-wrap .slider+.slider {
  margin-top: 3rem;
}

.section4 .review-slider-wrap .slider .profile-wrap {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 2rem;
}

.section4 .review-slider-wrap .slider .profile-wrap .profile {
  margin-right: 0.5rem;
  width: 5rem;
  height: 5rem;
  background: #f2f2f2;
  border-radius: 50%;
}

.section4 .review-slider-wrap .slider .profile-wrap .nickname {
  font-size: 1.6rem;
  color: #f2f2f2;
  margin-left: 1rem;
}

.section4 .review-slider-wrap .slider .star-wrap {
  margin-bottom: 2rem;
}

.section4 .review-slider-wrap .slider .review-memo {
  line-height: 1.5;
  font-size: 1.5rem;
  color: #f2f2f2;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 8.6rem;
}

.section4 .review-slider-wrap .slider .date {
  font-size: 1.4rem;
  margin-top: 4rem;
  color: #b2b2b2;
}
/* section4 */


/* section5 */
.section5 {
  padding: 13rem 0 18rem 0;
}

.section5 .gradient-border:not(.start-btn) {
  padding: 2px 0;
}

.section5 .gradient-border:not(.start-btn)::after {
  filter: blur(80px);
  opacity: 0.9;
}

.section5 .gradient-border:not(.start-btn)>.inner {
  min-height: 40rem;
  padding: 10rem;
  text-align: center;
}

.section5 .gradient-border .inner .main-title {
  font-size: 8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.section5 .gradient-border .inner .main-title span {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #f87b30, #f8c251);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 3rem;
}

.section5 .gradient-border .inner .box-title {
  color: #fff;
  background-color: #252525;
  border-radius: .8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .8rem 1.4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 140%;
  margin: 4rem auto;
}

.section5 .radio-button-wrap {
  margin: 0 auto;
  justify-content: center;
}

.section5 .radio-button-wrap label {
  margin-left: 0;
  height: 7rem;
  line-height: 7rem;
  font-size: 1.7rem;
  border-radius: 1.4rem 0 0 1.4rem;
  width: 14rem;
  flex: none;
  color: #fff;
  background-color: transparent;
  border: 0.5px solid #333;
}

.section5 .radio-button-wrap label:last-child {
  border-radius: 0 1.4rem 1.4rem 0;
  border-left: none;
}

.section5 .radio-button-wrap input:checked + label {
  background-image: linear-gradient(62deg, #f88435, #f9b84c), linear-gradient(#5dff52, #5dff52);
}

.section5 .price-swiper {
  margin-top: 5rem;
}

.section5 .price-swiper .swiper-slide {
  background-color: #000;
}

.section5 .price-swiper .price-wrap {
  display: flex;
  justify-content: center;
}

.section5 .price-swiper .price-wrap li {
  flex: none;
  width: 45rem;
  border-radius: 2rem;
  background: #b3b3b3;
  transition: all 0.7s;
  overflow: hidden;
  padding: 2px;
}

.section5 .price-swiper .price-wrap li>.inner {
  padding: 2.8rem 4.4rem 5rem;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 1.8rem;
}

.section5 .price-swiper .price-wrap li:hover {
  transform: scale(0.97);
}

.section5 .price-swiper .price-wrap li+li {
  margin-left: 8rem;
}

.section5 .price-swiper .price-wrap li .membership-title {
  font-size: 3.5rem;
  margin-bottom: 3rem;
}

.section5 .price-swiper .price-wrap li .membership-price {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.section5 .price-swiper .price-wrap li .membership-price b {
  font-size: 5.5rem;
  font-weight: 700;
}

.section5 .price-swiper .price-wrap li .membership-desc {
  line-height: 1.4;
  margin-bottom: 3rem;
}

.section5 .price-swiper .price-wrap li .check-list {
  line-height: 1.5;
  text-align: left;
  margin-bottom: 3rem;
}

.section5 .price-swiper .price-wrap li .label {
  font-size: 1.8rem;
  font-weight: normal;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: left;
}

.section5 .price-swiper .price-wrap li .check-item {
  display: flex;
  align-items: center;
}

.section5 .price-swiper .price-wrap li .check-item i {
  display: block;
  flex: none;
  width: 3rem;
  height: 3rem;
  background: url(/skin/img/home/landing1/check-gradient-gold.svg) center 100% no-repeat;
  margin-bottom: 1rem;
  margin-right: 1.5rem;
}

.section5 .price-swiper .price-wrap li .gradient-txt {
  font-size: 2.8rem;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #f87b30, #f8c251);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.section5 .price-swiper .price-wrap li .off-code {
  margin-bottom: 3rem;
}

.section5 .price-swiper .price-wrap li .gradient-border::after {
  display: none;
}

.section5 .price-swiper .price-wrap li.gradient-border {
  padding: 2px;
}

.section5 .safe-txt {
  font-size: 3.5rem;
  font-weight: normal;
  color: #fff;
  margin-bottom: 3rem;
  margin-top: 8rem;
}

.section5 .safe-desc {
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.3;
}

/* section5 */



/* section6 */
.section6 .content-card li.full-img>.inner {
  padding: 0;
}

.section6 .content-card li + li {
  margin-top: 21rem;
}

.section6 .content-card li.full-img>.inner .card-img {
  width: 100%;
  /* height: 54.5rem; */
}
/* section6 */



/* section7 */
.section7 {
  margin: 9.5rem 0;
  position: relative;
  min-height: 100rem;
}

.section7 .bg-section7 {
  opacity: .8;
  mix-blend-mode: screen;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.15;
  background-image: url(/skin/img/home/landing1/section2.avif);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position-x: 50%;
  background-position-y: -110rem;
}

.section7 .main-title {
  font-size: 7rem;
  color: #fff;
  margin-bottom: 5rem;
  text-align: center;
}

.section7 .card-list {
  width: 90%;
  max-width: 90rem;
  margin: 0 auto;
  margin-bottom: 8rem;
}

.section7 .card-list li {
  border-radius: 2rem;
  position: relative;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  opacity: 0;
}

.section7 .card-list.on li:nth-child(2) {
  animation-delay: 0.3s;
}
.section7 .card-list.on li:nth-child(3) {
  animation-delay: 0.6s;
}

.section7 .card-list.on li {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.section7 .card-list li + li {
  margin-top: 7rem;
}

.section7 .card-list li + li::before {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 3rem;
  left: 50%;
  top: -5rem;
  transform: translateX(-50%);
  background: url(/skin/img/ic-arrow-down-w.svg) center / 100% no-repeat;
}

.section7 .card-list li::after {
  display: none;
}

.section7 .card-list li .inner {
  padding: 3rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
}

.section7 .card-list li .img {
  flex: none;
  display: block;
  width: 7rem;
  height: 7rem;
  background-color: #f2f2f2;
  margin-right: 2.5rem;
}

.section7 .card-list li .content {
  flex: 1;
  color: #fff;
}

.section7 .card-list li .content .title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.section7 .card-list li .content p {
  font-size: 1.7rem;
  line-height: 1.5;
}

.section7 .faq-list {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
}

.section7 .faq-list li {
  background-color: #000;
  color: #fff;
  border: 1px solid #b3b3b3;
  padding: 4rem;
  border-radius: 2rem;
  opacity: 0;
}

.section7 .faq-list li + li {
  margin-top: 5rem;
}

.section7 .faq-list li .title {
  padding: 0;
}

.section7 .faq-list li .content {
  background-color: transparent;
  color: #fff;
  padding: 2rem 0 0 0;
}
/* section7 */


/* section8 */
.section8 {
  position: relative;
  padding: 5rem 0 10rem;
}

.section8 .bg-section8 {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.section8 .sns-icon {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section8 .sns-icon li {
  font-size: 3.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  padding: 5rem 0;
}

.section8 .sns-icon li .icon {
  display: block;
  width: 10rem;
  height: 10rem;
  background-color: #3acaff;
  margin-bottom: 2rem;
}

.section8 .sns-icon li p {
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

.section8 .sns-icon li button {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #fff;
}

.section8 .sns-icon.on li:first-child {
  animation: fadeInLeft 1s linear both;
  -webkit-animation: fadeInLeft 1s linear both;
  opacity: 0;
  transform: translate3d(-8rem, 0, 0);
}

.section8 .sns-icon li:first-child button {
  background-color: #6671d1;
}

.section8 .sns-icon li:first-child p span {
  color: #6671d1;
}

.section8 .sns-icon.on li:last-child {
  animation: fadeInRight 1s linear both;
  -webkit-animation: fadeInRight 1s linear both;
  opacity: 0;
  transform: translate3d(8rem, 0, 0);
}

.section8 .sns-icon li:last-child button {
  background-color: #eb8938;
}

.section8 .sns-icon li:last-child p span {
  color: #eb8938;
}

.section8 .main-title {
  font-size: 7rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  margin: 10rem auto 6rem auto;
  text-align: center;
}

/* section8 */


/* footer */
.footer {
  background-color: transparent;
}

.footer .agree-wrap {
  border-top: 0;
}
/* footer */



@media (max-width: 760px) {
  .start-btn {
    font-size: 1.5rem;
  }

  .gradient-border::after {
    filter: blur(10px);
  }

  .content-card li>.inner {
    padding: 2rem 2rem 4rem 2rem;
    flex-direction: column;
  }

  .content-card li+li {
    margin-top: 4rem;
  }

  .content-card li .card-img {
    width: 100%;
    height: auto;
  }
  
  .content-card li .content {
    padding: 0 !important;
    margin-top: 2rem;
  }

  .content-card li .content .title {
    font-size: 2.7rem;
  }

  .content-card li .content .start-btn {
    width: 70%;
    margin: 0 auto;
  }
  

  /* section1 */
  .section1 .bg-section1 {
    width: 100%;
    height: 100vh;
    inset: 11vw auto 0%;
    opacity: 0.6;
  }

  .section1 .title-box .title-wrap {
    width: 100%;
  }

  .section1 .title-box .title-wrap h2 {
    font-size: 4rem;
  }

  .section1 .title-box .title-wrap p {
    font-size: 1.7rem;
    margin: 3rem auto;
  }

  .section1 .title-box .start-btn {
    width: 80%;
  }
  /* section1 */

  /* section2 */
  .section2 .content-card li:nth-child(2)>.inner {
    flex-direction: column-reverse;
  }
  /* section2 */

  /* section3 */
  .section3 .bg-section3 {
    width: 100%;
    height: 100rem;
    inset: auto 0% -12%;
  }

  .section3 .section3-slider-wrap {
    padding: 5rem 0;
    margin-top: 5rem;
  }

  .section3 .section3-slider-wrap .slider .slide {
    width: 80vw;
    flex: none;
    padding-bottom: 8rem;
  }
  
  /* section3 */

  /* section4 */
  .section4 .review-title {
    font-size: 3.4rem;
  }

  .section4 .review-slider-wrap::before,
  .section4 .review-slider-wrap::after {
    width: 3rem;
  }
  /* section4 */

  /* section5 */
  .section5 {
    padding: 8rem 0 9rem 0;
  }

  .section5 .gradient-border:not(.start-btn)>.inner {
    padding: 5rem 2rem;
  }

  .section5 .gradient-border .inner .main-title {
    font-size: 2.7rem;
  }

  .section5 .gradient-border:not(.start-btn)::after {
    filter: blur(40px);
  }

  .section5 .radio-button-wrap label {
    height: 5rem;
    line-height: 5rem;
    border-radius: 1rem 0 0 1rem;
  }

  .section5 .radio-button-wrap label:last-child {
    border-radius: 0 1rem 1rem 0;
  }

  .section5 .price-swiper .price-wrap {
    flex-direction: column;
  }

  .section5 .price-swiper .price-wrap li {
    width: 100%;
  }

  .section5 .price-swiper .price-wrap li+li {
    margin-left: 0;
    margin-top: 5rem;
  }

  .section5 .safe-txt {
    font-size: 1.8rem;
    text-align: left;
  }

  .section5 .safe-desc {
    font-size: 1.5rem;
    text-align: left;
  }
  
  /* section5 */


  /* section6 */
  .section6 .content-card li+li {
    margin-top: 4rem;
  }

  .section6 .content-card li.full-img>.inner {
    overflow: hidden;
  }

  .section6 .content-card li.full-img>.inner .card-img {
    height: auto;
  }
  /* section6 */

  /* section7 */
  .section7 .card-list li .inner {
    display: block;
  }

  .section7 .card-list li .img {
    margin: 0 auto 3rem auto;
  }

  .section7 .main-title {
    font-size: 2.7rem;
  }

  .section7 .faq-list li {
    padding: 2.5rem;
  }

  .section7 .faq-list li+li {
    margin-top: 2.5rem;
  }
  /* section7 */

  /* section8 */
  .section8 .sns-icon {
    display: block;
  }

  .section8 .sns-icon li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    font-size: 2.8rem;
  }

  .section8 .sns-icon .dash-line {
    display: none;
  }

  .section8 .main-title {
    font-size: 3.2rem;
  }

  .section8 .bg-section8 {
    height: 73vh;
  }

  .section8 .start-btn {
    width: 80%;
  }
  /* section8 */

}
