* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul, li ,ol{list-style: none;}

html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: keep-all;
  font-size: 16px;
}

:root {
  font-family: "pretendard", -apple-system, BlinkMacSystemFont, "Malgun Gothic",
    sans-serif;
  --c_white: #fff;
  --c_lightgrey: #e4e4e4;
  --c_grey: #F3F3F3;
  --c_deepgrey: #444;
  --c_black: #222;
  --c_red: #ED6C71;
  --c_red_rgba1: #FAF0F1;
  --c_red_rgba2: #FBE3E3;
  --c_red_rgba3: #F6E4E7;

  --max_width: 1163px;
  --padding_inner: 0 50px;
  --padding: 180px 0;
  --padding_btn: 12.5px 48px;
}

.hidden-pc{display: none;}
.hidden-mo {display: block;}


.main-inner {    
  position: relative;
  display: flex;
  gap: 60px;
  max-width: var(--max_width);
  padding: var(--padding_inner);
  margin: 0 auto;
}
.whole-inner {
  position: relative;
  display: flex;
  gap: 60px;
  max-width: 1380px;
  padding: var(--padding_inner);
  margin: 0 auto;
}
._column {
  flex-direction: column;
}
.main-tit-h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--c_red);
}
.main-tit-h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--c_black);
}
.main-tit-h4 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--c_deepgrey);
}
.main-txt-p1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c_deepgrey);
}
.main-txt-p2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c_deepgrey);
}
.main-txt-p3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--c_deepgrey);
}
.main-txt-p4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c_deepgrey);
}
.main-txt-p5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c_deepgrey);
}
/*8월 배너 추가하면서 버튼 영향있어서 변경*/
/* .btn-group {
  width: fit-content;
  margin: 0 auto;
} */
.main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 267px;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--c_white);
  padding: var(--padding_btn);
  background-color: var(--c_black);
  border-radius: 4px;
  transition: all .3s ease;
}
.main-btn::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 24px;
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/icon_arrow_white.png') no-repeat center;
  background-size: cover;
  transition: all .3s ease;
}
.reverse .main-btn {
  color: var(--c_black);
  background-color: var(--c_white);
}
.reverse .main-btn:after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 24px;
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/icon_arrow_black.png') no-repeat center;
  background-size: cover;
  transition: all .3s ease;
}

/**************************/
/*    메인배너 ::   비주얼    */
.mainBannerSwiper .swiper-slide.mainBannerBG {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 490px;
}
.mainBannerSwiper .mainBannerBG .whole-inner {    
  display: block;
  width: 100%;
  min-height: 490px;
  height: 100%;
  padding: var(--padding_inner);
}
.mainBannerTitle {
  position: relative;
  width: fit-content;
  min-height: 178px;
  height: 100%;
  padding: 80px 0;
}
.main-banner-badge {
  position: absolute;
  top: 80px;
  left: 0;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: initial;
  background-color: var(--c_white);
  padding: 4px 8px;
  border-radius: 4px;
  mix-blend-mode: screen;
}
.main-banner-badge._black {
  color: var(--c_white);
  background-color: var(--c_black);
  mix-blend-mode: darken;
}
.main-banner-tit {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--c_white);
  padding: 34px 0 8px;
}
.main-banner-txt {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c_white);
}
.slide-function {
  position: absolute;
  top: auto;
  left: max(50px, calc((100% - 1280px) / 2));
  bottom:0;
}
.mainBannerSwiper .swiper-pagination-num { 
  display: flex;
  gap: 4px;
  width: fit-content;
  font-size: 14px;
  color: var(--c_white);
  z-index: 1;
}
.mainBannerSwiper .slide-function._black  .swiper-pagination-num { 
  color: var(--c_black);
}
.mainBannerSwiper .swiper-pagination-current {
  font-weight: 700;
}
.mainBannerSwiper .slide-function .swiper-pagination-progress {
  position: absolute;
  top: auto;
  bottom: 150px;
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.20);
}
.mainBannerSwiper .swiper-pagination-progressbar-fill {
  position: absolute;
  z-index: 15;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.50);
}
.slide-function._black .swiper-pagination-progress {
  background: rgba(34, 34, 34, 0.20);
  z-index: 1;
}
.mainBannerSwiper .slide-function._black  .swiper-pagination-progress .swiper-pagination-progressbar-fill {
  background: rgba(34, 34, 34, 0.50);
}
.mainBannerSwiper .swiper-button {    
  align-items: center;
  position: absolute;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 137px;
  height: 30px;
  bottom: 80px;
}
.mainBannerSwiper .swiper-button-next, .mainBannerSwiper .swiper-button-prev {
  position: static;
  top: 0;
  width: 30px;
  height: 30px;
  margin-top: 0;
  border-radius: 50%;
  background: none;
}
.mainBannerSwiper .swiper-button-prev {
  left: 0;   
}
.mainBannerSwiper .swiper-button-next {
  right: 0; 
}
.mainBannerSwiper .slide-function._black  .swiper-button-prev rect,
.mainBannerSwiper .slide-function._black  .swiper-button-prev g > path,
.mainBannerSwiper .slide-function._black  .swiper-button-next rect,
.mainBannerSwiper .slide-function._black  .swiper-button-next g > path {
  fill: var(--c_black);
}
.mainBannerSwiper .swiper-button-next:after, .mainBannerSwiper .swiper-button-prev:after {
  content: none;
}

/*    END ::  메인배너   ::   비주얼    */

/**************************/
/*    버튼 탭 ::   탭 CTA    */
.sec-tabCta {
  padding: 40px 0;
  border-bottom: 1px solid var(--c_lightgrey);
}
.sec-tabCta .tabCta {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.sec-tabCta .tabCta a {
  align-items: center;
  display: grid;
  grid-template-rows: 100%;
  grid-template-columns: 22.2% 62% 3%;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-height: 100px;
  background-color: var(--c_red_rgba2);
  padding: 0 40px 0 32px;
  border-radius: 16px;
  transition: all .3s ease;
}
.sec-tabCta .tabCta a > span {
  align-items: center;
  display: flex;
  gap: 32px;
}
.sec-tabCta .tabCta p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c_black);
}

/*   섹션별 패딩 값 180px 공통 적용    */
.sec-logo,
.sec-score,
.sec-banner,
.sec-cost,
.sec-contract,
.sec-location,
.sec-product,
.sec-service,
.sec-faq {
  padding: var(--padding);
}

/**************************/
/*    logo ::   로고 섹션    */
.sec-logo {
  border-bottom: 1px solid var(--c_lightgrey);
}
.logo-list {
  position: relative;
  overflow: hidden;
}
.logo-list::before,
.logo-list::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 302px;
  height: 100%;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.86) 52.26%, rgba(255, 255, 255, 0.00) 100%);
}
.logo-list::before {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.86) 52.26%, rgba(255, 255, 255, 0.00) 100%);
}
.logo-list .logo {
  height: 100px;
  background-size: auto 100%;
  animation: logo-roller 30s linear infinite;
}
.sec-logo .logo._1 {
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_1.png') repeat-x;
  background-size: auto 100%;
}
.sec-logo .logo._2 {
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_2.png') repeat-x;
  background-size: auto 100%;
  margin-left: -110px;
  animation: logo-roller-re 30s linear infinite;
}
.sec-logo .logo._3 {
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_3.png') repeat-x;
  background-size: auto 100%;
}


/******************************/
/*    수치 ::   수치테이블 섹션    */
.score-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.score-table .main-txt-p3 {
font-weight: 400;
padding-bottom: 8px;
}
.table {
  position: relative;
  min-height: 266px;
  flex: 1 1 48%;
  background-color: var(--c_red_rgba3);
  padding: 26px 32px 32px 32px;
  border-radius: 4px;

}
.table strong {
  padding-top: 8px;
}
.table._1,
.table._4 {
  background-color: var(--c_red_rgba1);
}
.table._1 > img,
.table._2 > img,
.table._4 > img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.table._3{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  background-color: initial;
}
.mini-column {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 0;
  max-height: 121px;
  background-color: var(--c_red_rgba3);
  padding: 24px 32px 24px 0;
  border-radius: 4px;
}
.mini-column .txt-area {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  order: 2;
}


/******************************/
/*    배너 ::   중간 배너 섹션    */
.sec-banner {
  background-color: #ED6C71;
}
.sec-banner .txt-baloon {
  display: inline-block;
  width: 534px;
  height: 68px;
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_txt_baloon.png') no-repeat center;
  background-size: 100%;
  margin: 16px 16px 0 0;
  padding: 10px 10px 10px 0;
  transform: translateX(25px);
  opacity: 0;
  transition: all .3s ease;
}
.main-inner.__ani .txt-baloon {
  transform: translateX(0);
  opacity: 1;
}


/*********************************/
/*    공간 ::   공간슬라이드 섹션    */
.sec-space {
  position: relative;
  font-size: 0;
}
.sec-space .main-tit-h3 {
  font-weight: 700;
  padding: 8px 0 24px;
}
.sec-space .main-inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 2;
}
.sec-space .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  padding: 120px 50px;
}
.spaceSwiper .swiper-slide > img {
  object-fit: cover;
  width: 100%;
  min-height: 950px;
}
.spaceSwiper .swiper-scrollbar {
  left: max(50px, calc((100% - 1063px) / 2));
  bottom: 100px;
  width: 100%;
  max-width: 1063px;
  height: 4px;
  background: rgba(255,255,255,0.2);
}
.swiper-scrollbar-drag {
  background: var(--c_white);
}
.spaceSwiper .swiper-button-next::after,
.spaceSwiper .swiper-button-prev::after {
  content: none;
}
.spaceSwiper .swiper-button-next {
  right: 0;
  top: 0;
  left: auto;
  width: 320px;
  height: 100%;
  margin-top: 0;
  opacity: 0;
  background-image: none;
  transition: all .5s ease-in-out;
}
.spaceSwiper .swiper-button-prev {
  position: absolute;
  left: 0;
  top: 0;
  left: auto;
  width: 320px;
  height: 100%;
  margin-top: 0;
  opacity: 0;
  background-image: none;
  transition: all .5s ease-in-out;
}
.sec-space .btn-group {
  margin: 60px auto 0 0;
}


/*********************************/
/*    비용 ::   USP 소개하는 섹션    */
.sec-cost {
  background-color: var(--c_red_rgba3);
}
.sec-cost .main-txt-p3 {
  color: var(--c_red);
  font-weight: 700;
}
.sec-cost .conts-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 48px 28px;
}
.conts-box .cost {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 48%;
}
.cost h4 {
  padding-bottom: 2px;
}
.sec-cost .btn-group {
  margin: 0 auto 0 0;
}


/*******************************************/
/*    비용 섹션 이후, USP 영역 레이아웃 공통사항    */
.sec-cost h3.main-tit-h3,
.usp-common h3.main-tit-h3 {
  padding: 8px 0 24px;
}
.usp-common p.main-txt-p3 {
  font-weight: 700;
  color: var(--c_red);
}
.usp-common .btn-group {
  margin: 60px auto 0 0;
}
.usp-common .main-inner {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 71.5% 28.5%;
  justify-content: space-between;
  gap: 0 60px;
}
.sec-contract.usp-common .conts-box {
  height: fit-content;
}
.sec-contract.usp-common .main-inner {
  align-items: center;
}
.usp-common .conts-box {  
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  grid-row: span 2;
}

/*********************************/
/*    계약 ::   USP 소개하는 섹션    */

.sec-contract {
  background-color: var(--c_red_rgba1);
}
.sec-contract .txt-box {
  width: 100%;
  grid-row: 1 / 2;
}
.sec-contract .conts-box .icon_contrat {
  position: absolute;
}
.sec-contract img.hidden-mo {
  margin: 0 auto
}
.icon_contrat._check {
  top: -48px;
  left: calc((100% - 146px) / 2);
  animation: .8s contrat-move ease infinite alternate;
}
.icon_contrat._pencile {    
  bottom: 173px;
  right: calc((100% - 150px) / 2);
}
.__ani ._pencile {
  animation: 2s pencile-move .3s ease forwards;
}

/*********************************/
/*    위치 ::   USP 소개하는 섹션    */
.sec-location {
  background-color: var(--c_red_rgba3);
}
.sec-location .conts-box {    
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 80px;
}
.icon_ping {
  position: absolute;
  animation: 1s location-move ease-in-out infinite alternate;
}
.icon_ping._1 {       
  bottom: 134px;
}
.icon_ping._2 {   
  bottom: 144px;
  left: calc((100% - 285px) / 2);
  animation-duration: .6s;
}
.icon_ping._3 {    
  bottom: 158px;
  right: calc((100% - 258px) / 2);
  animation-duration: .4s;
}

/*********************************/
/*    상품 ::   USP 소개하는 섹션    */
.sec-product {
  background-color: var(--c_red_rgba1);
}
.icon_product {
  position: absolute;
  display: block;
  top: -20px;
  left: calc((100% - 518px) / 2);
  opacity: 0;
}
.icon_product._1 {
  z-index: 5;
}
.icon_product._2 {
  top: 30px;
  z-index: 4;
}
.icon_product._3 {
  top: 80px;
  z-index: 3;
}
.icon_product._4 {
  top: 120px;
}
.__ani .icon_product._1 {
  animation: .8s product-move .3s linear forwards;
}
.__ani .icon_product._2 {
  animation: .8s product-move .5s linear forwards;
}
.__ani .icon_product._3 {
  animation: .8s product-move .7s linear forwards;
}
.__ani .icon_product._4 {
  animation: .8s product-move .9s linear forwards;
}


/**********************************/
/*    서비스 ::   USP 소개하는 섹션    */
.sec-service {
  position: relative;
  background-color: var(--c_red_rgba3);
  overflow: hidden;
}
.sec-service .main-inner {
  position: static;
  grid-template-columns: 100%;
  justify-content: flex-start;
  gap: calc((100% - 960px) / 2);
}
.sec-service .serviceSwiper .main-txt-p3 {
  font-weight: 700;
  color: #222;
  padding: 16px;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: all .2s ease;
}
.sec-service .serviceSwiper .swiper-slide-active .main-txt-p3 {
  opacity: 1;
}
.sec-service .conts-box {
  position: absolute;
  left: calc((100% / 2));
  width: calc(100% / 2);
  max-height: 405px;
  height: 100%;
  overflow: hidden;
}
.serviceSwiper {    
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% / 2);
  overflow: visible;
}
.serviceSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  width: auto;
  border-radius: 0;
}
.serviceSwiper .swiper-slide > img {
  border-radius: 4Px 4px 0 0;
}
.serviceSwiper .swiper-slide-active {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}


/*********************************/
/*    리뷰 ::   리뷰 슬라이드 섹션    */
.sec-review {
  padding: var(--padding);
  overflow: hidden;
}
.sec-review .main-inner {
  position: relative;
  max-width: 1191px;
  padding: 0 77px;
}
.reviewSwiper .swiper-slide {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 80px;
  min-height: 398px;
  height: auto;
  background-color: var(--c_grey);
  padding: 48px 80px;
  border-radius: 4px;
}
.reviewSwiper {
  width: 100%;
}
.reviewSwiper .logo-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 297px;
}
.reviewSwiper .txt-box {
  display: flex;
  flex-direction: column;
}
.reviewSwiper .txt-box .main-txt-p1 {
  padding-bottom: 32px;
}
.reviewSwiper .txt-box .main-txt-p4 + .main-txt-p4  {
  padding-top: 16px;
}
.reviewSwiper .review-badge {
  display: flex;
  gap: 16px;
}
.reviewSwiper .review-badge span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  padding: 3.5px 0;
}
.reviewSwiper .review-badge span:first-child {
  padding: 3.5px 12px;
  background-color: var(--c_white);
  border-radius: 4px;
}
.reviewSwiper .review-badge span:nth-child(2) {
  font-weight: 400;
}
.sec-review .swiper-button-prev {
  top: calc((100% - 50%) + 80px);
  left: 0;
  width: 40px;
  height: 40px;
  background: rgba(34, 34, 34, 0.10);
  border-radius: 50%;
}
.sec-review .swiper-button-next {
  top: 62%;   
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(34, 34, 34, 0.10);
  border-radius: 50%;
}
.sec-review .swiper-button-next:after {
  content: '';
  width: 20px;
  height: 20px;
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/icon_arrow_grey.png') no-repeat center;
  background-size: cover;
  transform: rotate(180deg);
  margin-left: 3px;
}
.sec-review .swiper-button-prev:after {
  content: '';
  width: 20px;
  height: 20px;
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/icon_arrow_grey.png') no-repeat center;
  background-size: cover;
  margin-right: 3px;
}


/**********************************/
/*         :: FAQ 섹션 ::          */
.sec-faq {
  background-color: #E9F5FC;
}
.sec-faq .conts-box::after {
  content: '';
  display: block;
  width: 100%;
  height: 94px;
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/shadow_faq.png') no-repeat center;
  background-size: cover;
}
.sec-faq.usp-common p.main-txt-p3 {
  color: #0095F8;
}
.icon-faq {
  margin-top: 30px;
  animation: contrat-move .8s ease-in-out infinite alternate;
}




/**********************************/
/*    배너2 ::   처칠 명언관련 섹션    */
.sec-banner2 {
  padding: var(--padding);
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_churchill_bg.jpg') no-repeat center;
  background-size: cover;
}
.sec-banner2 .txt-box {
  text-align: center;
}
.sec-banner2 .txt-box h3 {
  padding-bottom: 24px;
}
.sec-banner2 .main-txt-p2 {  
  font-weight: 400;
  color: var(--c_white);
}
.sec-banner2 .main-txt-p2.churchill {
  font-weight: 500;
}
.churchill {
  transform: skewX(-13deg);
  padding-bottom: 8px;
}
.sec-banner2 .btn-group {
  display: flex;
  justify-content: center;
  gap:24px;
}

/**********************************/
/*    배너2 ::   처칠 명언관련 섹션    */
.sec-scale {
  background-color: var(--c_grey);
  padding: var(--padding);
}
.sec-scale .main-btn {
  margin: 0 auto;
}
.scale-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.scale-list .scale {
  width: 24%;
  height: auto;
}
.scale .scale-link {
  align-items: end;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--c_white);
  padding: 20px 20px 24px;
  border-radius: 4px;
  transition: all .3s ease;
}
.scale .scale-link > div {
  width: 100%;
}
.scale .scale-link > div h5 {
  padding-bottom: 16px
}
.scale .scale-link > p {
  align-items: center;
  display: flex;
  gap: 8px;
  width: fit-content;
  font-weight: 600;
  padding-top: 24px;
  color: var(--c_red);
  border-bottom: 1px solid var(--c_red);
  margin: 0 auto 0 0;
}
.scale .scale-link > p::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 22px;
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/icon_arrow_red.png') no-repeat center;
  background-size: cover;
}


._center {text-align: center;}
._black {color: var(--c_black)}
._white {color: var(--c_white)}

@keyframes logo-roller {
  0%{background-position: 2840px center;}
  100% {background-position: center;}
}
@keyframes logo-roller-re {
  0%{background-position: -2840px center;}
  100% {background-position: center;}
}
@keyframes contrat-move {
  0%{transform: translateY(20px);}
  100% {transform: translateY(0);}
}
@keyframes pencile-move {
  0%{transform: translate(0);}
  30%{transform: translate(120px, 0px);}
  60%{transform: translate(0px, 100px);}
  100%{transform: translate(120px, 100px);}
}
@keyframes location-move {
  0%{transform: translateY(-10%);}
  100% {transform: translateY(0);}
}
@keyframes product-move {
  0%{
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media all and (min-width: 961px) { /*  ONNY PC ::   HOVER 모음  */
  .main-btn:hover {
    background-color: var(--c_red);
  }
  .reverse .main-btn:hover {
    color: var(--c_white);
  }
  .reverse .main-btn:hover::after {
    background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/icon_arrow_white.png') no-repeat center;
    background-size: cover;
  }
  .swiper-button .swiper-button-prev:hover,
  .swiper-button .swiper-button-next:hover {
    background-color: rgba(34, 2, 0, 0.2);
  }
  .sec-tabCta .tabCta a:hover {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  }
  .spaceSwiper .swiper-button-next:hover {
    background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    opacity: 0.8;
  }
  .spaceSwiper .swiper-button-prev:hover {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    opacity: 0.8;
  }
  .scale .scale-link:hover {
    transform: translateY(-16px);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  }
  .sec-faq .main-btn:hover {
    background-color: #0095F8;
  }
  .event-collection{
    display: none;
  }
}


@media all and (max-width: 960px) {

  body {
    --max_width: 375px;
    --max_width_USP: 279px;

    --padding_visual: 48px 30px 0;
    --padding_inner: 0 20px;
    --padding: 130px 20px;
    --padding_btn: 12.5px 48px;
  }
  .hidden-mo{display: none;}
  .hidden-pc {display: block;}
  .quick_link_new #chatbot {
    opacity: 0;
    transition: opacity .4s ease;
  }
  .quick_link_new.active #chatbot {
    opacity: 1;
  }
  .quick_link_new {
    bottom: -60px;
  }
  .quick_link_new.active {
    bottom: 0px;
  }

  .whole-inner, 
  .main-inner {
    max-width: var(--max_width);
  }
  .main-inner {
    gap: 40px;
  }
  .main-tit-h1 {
    font-size: 34px;
  }
  .main-tit-h3 {
    font-size: 28px;
  }
  .main-tit-h4 {
    font-size: 24px;
  }
  .main-txt-p1 {
    font-size: 20px;
  }
  .main-txt-p2 {
    font-size: 18px;
  }
  .main-txt-p3 {
    font-size: 14px;
  }

  .btn-group {
    max-width: 279px;
    width: 100%;
  }
  .main-btn {
    justify-content: center;
    width: 100%;
    font-size: 16px;
    padding: 14.5px 0;
  }



  .mainBannerSwiper {
    padding-bottom: 4px;
  }
  .mainBannerSwiper a.mainBannerBG {    
    width: 100%;
    padding: var(--padding_visual);
  }
  .mainBannerSwiper .mainBannerBG .whole-inner {
    padding: 0;
  }
  .mainBannerTitle {
    padding: 0;
  }
  .mainBannerSwiper .whole-inner {
    padding: 0;
    width: 100%;
  }
  .main-banner-badge {
    top: 0;
    line-height: 1.3;
  }
  .main-banner-tit {
    font-size: 34px;
  }
  .main-banner-txt {
    font-size: 16px;
  }
  .slide-function {
    left: auto;
    right: 0;
    width: 100%;
  }
  .mainBannerSwiper .swiper-button {
    bottom: 24px;
    right: 20px;
    gap: 8px;
    justify-content: center;
    background: rgba(34,34,34,0.50);
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 5;
  }
  .mainBannerSwiper .swiper-button-next, 
  .mainBannerSwiper .swiper-button-prev {
    display: none;
  }
  .mainBannerSwiper .slide-function._black .swiper-pagination-num {
    color: rgba(255,255,255,0.50);
  }
  .mainBannerSwiper .swiper-pagination-current {
    color: var(--c_white)
  }
  .mainBannerSwiper .slide-function .swiper-pagination-progress {  
    bottom: -4px;
    width: 100%;
    height: 4px;
  }
  .mainBannerSwiper .slide-function .swiper-pagination-progress {  
    height: 4px;
    background: rgba(34,34,34,0.20);
    z-index: 1;
  }
  .mainBannerSwiper .slide-function._black .swiper-pagination-progress .swiper-pagination-progressbar-fill {
    height: 4px;
    background: var(--c_black);
  }
  .mainBannerSwiper .swiper-pagination-progressbar-fill {    
    height: 4px;
    background: var(--c_black);
  }
  .event-collection {
    align-items: center;
    display: flex;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--c_white);
  }
  .event-collection > span {
    font-weight: 400;
    color: rgba(255,255,255,0.50);
  }
  .event-collection::before {
    content: '';
    width: 1px;
    height: 12px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.50);
  }



  .sec-tabCta {
    padding: 24px 0;
  }
  .sec-tabCta .whole-inner {
    padding: 0 20px;
  }
  .sec-tabCta .tabCta {
    gap: 14px
  }
  .sec-tabCta .tabCta a {    
    grid-template-columns: 34% 46% 14%;
    gap: 4px;
    padding: 14px 2px;
  }
  .sec-tabCta .tabCta a > span {
    width: 53px;
    height: 53px;
    gap: 4px;
  }
  .sec-tabCta .tabCta p {
    font-size: 14px;
  }
  .sec-tabCta .tabCta a > svg {
    margin: 0 9px 0 auto;
  }



  .sec-logo, .sec-score, .sec-banner, .sec-cost, 
  .sec-contract, .sec-location, .sec-product, .sec-service {
    padding: var(--padding);
  }
  .sec-logo .main-inner {
    max-width: none;
    padding: 0;
  }
  .logo-list::before,
  .logo-list::after {
    content: none;
  }
  .logo-list .logo {
    height: 70px;
  }
  .sec-logo .logo._1 {
    background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_1_m.png') repeat-x;
    background-size: auto 100%;
    animation-duration: 35s;
  }
  .sec-logo .logo._2 {
    background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_2_m.png') repeat-x;
    background-size: auto 100%;
    animation-duration: 35s;
  }
  .sec-logo .logo._3 {
    background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_3_m.png') repeat-x;
    background-size: auto 100%;
    animation-duration: 35s;
  }
  .sec-logo .logo._4 {
    background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_4_m.png') repeat-x;
    background-size: auto 100%;
    animation: logo-roller-re 35s linear infinite;
  }


  .score-table {
    flex-direction: column;
    gap: 12px;
  }
  .table {
    min-height: 146px;
    padding: 20px 0 0 20px;
  }
  .table strong {
    padding-top: 0;
  }
  .table._1 {
    order: 1;
  }
  .table._2 {
    order: 3;
  }
  .table._3 {
    flex-direction: row;
    gap: 12px;
    order: 2;
  }
  .table._4 {
    order: 4;
  }
  .table._1 > img {
    width: 182px;
  }
  .table._2 > img {
    width: 175px;
    bottom: 7px;
  }
  .table._4 > img {
    width: 167px;
    bottom: 5px;
  }
  .mini-column {
    position: relative;
    flex-direction: row-reverse;
    flex: 1;
    min-height: 146px;
    border-radius: 4px;
    padding: 0;
  }
  .mini-column .txt-area {     
    align-items: baseline;
    justify-content: flex-start;
    display: block;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 20px 0 8px 20px;
  }
  .mini-column > img.hidden-pc {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }


  .sec-banner .txt-baloon {
    width: 287px;
    height: 106px;
    background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_txt_baloon_m.png') no-repeat center;
    background-size: 100%;
    margin: 16px auto 4px;
    padding: 10px;
    transform: translateX(25px);
    opacity: 0;
    transition: all .3s ease;
  }


  .sec-space .main-txt-p3 {
    font-size: 18px;
  }
  .spaceSwiper .swiper-slide > img {
    min-height: 791px;
  }
  .spaceSwiper .swiper-button-next,
  .spaceSwiper .swiper-button-prev {
    display: none;
  }
  .sec-space .txt-box {
    left: 50%;
    max-width: 279px;
    width: 100%;
    padding: 130px 0 0;
    margin: 0 auto;
    transform: translateX(-50%);
  }
  .sec-space .btn-group {
    margin: 40px auto 0;
  }
  .spaceSwiper .swiper-scrollbar {
    left: max(20px, calc((100% - 324px) / 2));
    max-width: 324px;
  }



  /****************************************/
  /*                        MO  ::    USP */
  .sec-cost .main-inner, 
  .sec-contract .main-inner, 
  .sec-location .main-inner, 
  .sec-product .main-inner, 
  .sec-service .main-inner {
    max-width: var(--max_width_USP);
    padding: 0;
  }
  .usp-common .main-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .usp-common .btn-group {
    margin: 0 auto;
  }
  .usp-common .main-txt-p3 {
    font-size: 18px;
    font-weight: 700;
  }


  .sec-cost h3.main-tit-h3 {
    padding: 8px 0 0;
  }
  .sec-cost .main-txt-p3 {
    font-size: 18px;
  }
  .conts-box .cost {
    width: 100%;
  }
  .sec-cost .conts-box {
    gap: 40px;
  }
  .conts-box .cost._3 {
    order:4;
  }


  .icon_contrat._check {
    left: calc((100% - 82px) / 2);
  }
  .sec-contract .conts-box {
    width: 188px;
    margin: 11px 40px 0 auto;
  }
  .sec-contract .conts-box .icon_contrat {
    width: 82px;
    left: calc((100% - 122px) / 2);
  }
  .icon_contrat._check {
    top: -35px;
  }
  .icon_contrat._pencile {
    bottom: 100px;
  }

  
  .sec-location .conts-box {
    height: 190px;
    padding: 0;
  }
  .icon_location._base {
    width: 232px;
  }
  .icon_ping._1 {
    width: 89px;
    bottom: 40px;
  }
  .icon_ping._2 {
    width: 28px;
    left: calc((100% - 158px) / 2);
    bottom: 46px;
  }
  .icon_ping._3 {
    width: 22px;
    right: calc((100% - 138px) / 2);
    bottom: 50px;
  }



  .sec-product .conts-box {
    height: 280px;
  }
  .icon_product {
    left:0;
  }
  .icon_product {
    top: 0;
  }
  .icon_product._2 {
    top: 30px;
  }
  .icon_product._3 {
    top: 65px;
  }
  .icon_product._4 {
    top: 110px;
  }



  .sec-service .main-inner {
    width: 100%;
    max-width: none;
  }
  .sec-service .txt-box {
    max-width: 279px;
    width: 100%;
    margin: 0 auto;
  }
  .sec-service .conts-box {
    position: relative;
    height: 241px;
    width: 100%;
    left: calc((100% - 279px) / 2);
  }
  .serviceSwiper {
    width: 100%;
  }
  .serviceSwiper .swiper-slide {
    width: 240px !important;
    height: 241px !important;
  }
  .serviceSwiper .swiper-slide > img {
    width: 240px;
    height: 190px;
  }
  .sec-service .serviceSwiper .main-txt-p3 {
    padding: 10px 34px;
  }



  /**********************************/
  /*         :: FAQ 섹션 ::          */
  .sec-faq {
    background-color: #E9F5FC;
  }
  .sec-faq .txt-box {
    max-width: 279px;
    margin: 0 auto;
  }
  .sec-faq .conts-box::after {
    content: '';
    display: block;
    width: 100%;
    height: 54px;
    background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/shadow_faq.png') no-repeat center;
    background-size: cover;
  }
  .icon-faq {
    width: 201px;
  }


  
  .sec-review .main-inner {    
    max-width: var(--max_width);
    padding: var(--padding_inner);
  }
  .sec-review .main-txt-p4 {
    font-size: 16px;
  }
  .reviewSwiper {
    width: 100%;
  }
  .sec-review .swiper-button-prev,
  .sec-review .swiper-button-next {
    display: none;
  }
  .reviewSwiper .swiper-slide {    
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
    max-height: 706px;
    padding: 24px 32px 40px;
  }
  .reviewSwiper .logo-box {
    width: 271px;
    gap: 8px;
  }
  .reviewSwiper .review-badge span {
    font-size: 14px;
    padding: 2px 0;
  }
  .reviewSwiper .review-badge span:first-child {
    padding: 2px 10px;
  }
  .reviewSwiper .txt-box {
    gap: 8px;
  }
  .reviewSwiper .txt-box > .main-txt-p1 {    
    padding-bottom: 8px;
  }
  .reviewSwiper .txt-box::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
    margin-bottom: 32px;
  }
  .sec-review .swiper-pagination {
    bottom: -24px;
    height: 8px;
    display: flex;
    justify-content: center;
  }
  .sec-review .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--c_lightgrey);
    opacity: 1;
  }
  .sec-review .swiper-pagination-bullet-active {
    background-color: var(--c_black);
  }


  .sec-banner2 {
    background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_churchill_bg_m.jpg') no-repeat center;
    background-size: cover;
  }
  .sec-banner2 .txt-box h3 {
    font-size: 28px;
    padding-bottom: 16px;
  }
  .sec-banner2 .btn-group {
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
  }


  .sec-scale {
    overflow: hidden;
  }
  .sec-scale .main-inner {
    max-width: none;
    padding: 0;
  }
  .sec-scale .btn-group {
    margin: 0 auto;
  }
  .scale-list .scaleSwiper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .scaleSwiper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 219px;
    margin: 0 auto;
  }
  .scale-list {
    gap: 0;
    justify-content: flex-start;
  }
  .scaleSwiper .swiper-slide {
    flex-shrink: 0;
    opacity: 0.5;
  }
  .scaleSwiper .swiper-slide-active {
    margin: 0 auto 0 auto;
    opacity: 1;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  }
  .scaleSwiper .swiper-slide-prev, .scaleSwiper .swiper-slide-next {
    /* 비활성화된 슬라이드의 너비 조정 */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .scale .scale-link {    
    max-height: 317px;
    padding: 10px 10px 20px 20px;
  }
  .scale-link .main-txt-p1 {
    font-size: 22px;
  }
  .scale-link .main-txt-p5 {
    font-size: 14px;
  }
  .scale .scale-link > p {
    padding-top: 16px;
  }

  @keyframes pencile-move {
    0%{transform: translate(0);}
    30%{transform: translate(68px, 0px);}
    60%{transform: translate(0px, 55px);}
    100%{transform: translate(68px, 55px);}
  }


}


.popup_full.active {display: block;}
.popup_full{
  position: fixed;
  top: calc(50% - 220px);
  right: 213px;
  z-index: 10000;
  width: 400px;
  font-size: 0;
  line-height: 0;
  display: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 10px 20px 80px 0px rgba(0, 0, 0, 0.20);
}
.pop_content{
  background: #fff;
  padding: 32px 45px 16px;
}
.pop_content p{
color: #222;
font-size: 18px;
line-height: 1.7;
font-weight: 500;
}
.pop_content .btn_group{
  margin-top: 20px;
}
.pop_content .btn_group a{
  border-radius: 8px;
  color: #fff;
  background: #222;
  display: flex;
justify-content: center;
align-items: center;
  padding: 8px 48px 8px 52px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
  height: 56px;
}
.pop_content .btn_group a:after{
  content: '';
  display: inline-block;
  width: 24px;
  margin-left: 4px;
  height: 24px;
  background: url(/wp-content/themes/fastfive/assets/images/feat/ico_arrow_w.svg) 50% 50% no-repeat;
  background-size: 24px 24px;
}
.close_group{
  padding: 20px 34px;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.close_today{
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 3px;
}
.close_today:before{
  content: '';
  display: inline-block;
  width: 22px;  
  height: 22px;
  background: url(/wp-content/themes/fastfive/assets/event/2024bigsaleparty/image/ico_check_box.png) 50% 50% no-repeat;
  background-size: 24px 24px;
}
.close_now{
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
}
@media (max-width:960px) {
  .popup_full, .popup_full.active{
    display: none;
  }
}