/* =============================================================
  패파 소개 > 패파만의 특징 > 위치
  --------------------------------------------------------------
  관련 파일 : /page-keyword_location.php 
  작성자    : jh.roh
  작성일    : 2026-01-26
  수정일    :
============================================================= */

@charset "UTF-8";

.keyword_location {
  --title-h2 : 52px;
  --title-h3 : 40px;
  --title-h4 : 34px;
  --title-h5 : 24px;
  --text-p1 : 20px;
  --text-p2 : 18px;
  --text-p3 : 16px;
  --text-p4 : 14px;

  --easing : cubic-bezier(0.25, 1, 0.5, 1);

  --c_primary : #0095F8;
  --btn_cta_white_hover_bg : var(--c_primary);
  --btn-cta_hover_bg : var(--c_primary);
  --btn-cta_hover_color : #fff;

  --padding_horizontal : 180px;
  --padding_vertical : 20px;
}

/* 초기화 */
ul, li {
  list-style : none;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.065rem; /* -1px */
}
p, span {
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
picture {
  display: inline-block;
  font-size: 0;
  vertical-align: top;
}

/* 공통 */
.title_h3 {
  font-size: var(--title-h3); /* 40 */
  font-weight: 700;
}
.title_h4 {
  font-size: var(--title-h4); /* 34 */
  font-weight: 700;
}
em.line {
  position: relative;
  display: inline-block;
}
em.line::after {
  position: absolute;
  right: -4px; bottom: 2px; left: -4px;
  width : 0%;
  height : 24px;
  border-radius: 14px;
  background-color: var(--c_primary);
  opacity: 0.2;
  transition : 0.6s ease width;
  content : "";
}
.__ani em.line::after {
  width : calc(100% + 8px);
}
.hidden_pc {
  display: none;
}
.hidden_mo {
  display: block;
}
.sec_inner {
  max-width : max-content;
  width : 100%;
  margin : 0 auto;
  padding : var(--padding_horizontal) var(--padding_vertical);
}
/* 배경 */
._bg_primary {
  background: radial-gradient(53% 53% at 50% 47%, #0177EA 0%, #0095F8 100%);
}

/* 스와이퍼 */
.swiper-pagination-num,
.swiper-pagination-progress {
  display: none;
}
.card_slide .swiper-pagination-num {
  width : max-content;
  color: rgba(109, 117, 124, 0.3);
}
.card_slide .swiper-pagination-num .swiper-pagination-current {
  margin-right: 2px;
  color: #6D757C;
}
.card_slide .swiper-pagination-num .swiper-pagination-total {
  margin-left: 2px;
}
.card_slide .swiper-slide .txt-box{
  justify-content: flex-start;
  align-items: flex-end;
}
.card_slide .swiper-slide .tit{
  font-size: 18px;
}
.card_slide .swiper-pagination-progress {
  position: absolute;
  right: 20px;
  bottom: 14px;
  top: auto;
  left: auto;
  width: calc(100% - 80px);
  height: 2px;
  background-color: rgba(109, 117, 124, 0.30);
}
.card_slide .swiper-pagination-progress .swiper-pagination-progressbar-fill{
  position: absolute;
  left : 0;
  height: 2px;
  background: #6D757C;
  display: inline-block;
  transition : width 0.3s;
}

/* START : intro-header */
.intro-header {
  height : 502px;
}
.intro-heading {
  font-size: var(--title-h2);
}
.intro-header .btn_group {
  margin-top: 40px;
}
@keyframes txt_color_em {
  to {color: var(--c_primary);}
}
/* END : intro-header */

/* START : sec_overview */
.sec_overview {
  background-color: #EEF7FF;
  text-align: center;
}
.sec_overview .sec_inner > p {
  margin : 24px 0 60px;
  font-size: var(--text-p1);
  font-weight: 500;
}
.overview_cards {
  display: flex;
  justify-content: center;
  gap : 20px;
  margin : 0 0 24px;
} 
.overview_cards li {
  width : 268px;
  height : 336px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.overview_cards li h6 {
  font-size : var(--text-p1);
  font-weight: 400;
  color : #222;
}
.overview_cards li h4,
.overview_cards li h4 span {
  color : var(--c_primary);
  font-size: var(--title-h4);
  font-weight: 700;
}
.overview_cards li img {
  height : 100px;
  margin-top: 40px;
}
.overview_cards li:nth-child(2) img {
  margin-top: 10px;
}
.overview_cards li p {
  font-size: var(--text-p3);
  color : #777;
}
.sec_overview .sec_inner > span {
  font-size: var(--text-p3);
  color : #aaa;
}
/* END : sec_overview */

/* START : sec_subway */
.sec_subway {
  position: relative;
  padding : var(--padding_horizontal) 0 156px var(--padding_vertical); 
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  gap : 20px;
}
.subway_cards {
  position: relative;
  width : 588px;
  display: flex;
  flex-direction: column;
  gap : 20px;
}
.subway_cards li {
  height : 144px;
  padding-left : 50px;
  background-color: #EEF7FF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap : 8px;
  opacity: 0;
  transform : translateX(-40px);
}
.subway_cards.__ani li {
  transition: 0.8s ease;
  opacity: 1;
  transform : translateX(0);
}
.subway_cards.__ani li:nth-child(2){
  transition-delay : 0.2s;
}
.subway_cards.__ani li:nth-child(3){
  transition-delay : 0.4s;
}
.subway_cards li h5 {
  font-size: var(--title-h5);
  font-weight: 700;
  color : var(--c_primary);
}
.subway_cards li p {
  color : #222;
  font-size: var(--text-p1);
}
.subway_cards::before {
  position: absolute;
  left : -219px;
  bottom : -32px;
  width : 230px;
  height : 255px;
  background : url("/wp-content/themes/fastfive/assets/images/keyword_location/subway_obj.png") no-repeat center / cover;
  display: inline-block;
  z-index: 2;
  content : "";
}
.subway_slide {
  width : 47%;
  margin : 0;
}
.subway_slide li {
  position: relative;
  width : 374px;
  height : 472px;
  border-radius: 20px;
  margin-right : 20px;
  overflow: hidden;
}
.subway_slide li .mark {
  position: absolute;
  bottom : -10px;
  right : 65px;
  width : 42px;
}
/* END : sec_subway */


/* START : sec_branch */
.sec_branch .sec_inner {
  max-width : 998px;
  display: flex;
  flex-direction: column;
  gap : 70px;
}

.area_wrap {
  position: relative;
}
.area_wrap .lbl_area {
  position: absolute;
  right : 0;
  top : 0;
  width : 76px;
  height : 76px;
  color: #fff;
  text-transform: uppercase;
  font-size: var(--title-h5);
  font-weight: 700;
  background-color: var(--c_primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.area_wrap > h5{
  font-size: var(--title-h5);
  font-weight: 700;
}
.area_wrap > p {
  font-size: var(--text-p1);
  color : #222;
  margin : 8px 0 24px;
}
.branche_cards li {
  width : calc(33.3% - 13px);
  margin-right : 20px;
  border-radius: 20px;
  overflow: hidden;
}
.branche_cards li:last-child {
  margin-right : 0;
}
.area_wrap:has(.swiper:not(.swiper-initialized.swiper-horizontal)) {
  transform : translateY(30px);
  opacity: 0;
}
.area_wrap.__ani:has(.swiper:not(.swiper-initialized.swiper-horizontal)) {
  transition :  0.8s ease;
  transform : translateY(0);
  opacity: 1;
}
.area_wrap .swiper:not(.swiper-initialized.swiper-horizontal) {
  overflow: visible;
}
.area_wrap .swiper:not(.swiper-initialized.swiper-horizontal) li {
  /* 슬라이드 비활성화 되어있을 때만 */
  transform : translateY(20%);
  opacity: 0;
}
.area_wrap.__ani .swiper:not(.swiper-initialized.swiper-horizontal) li {
  transition :  0.8s 0.3s ease;
  transform : translateY(0);
  opacity: 1;
}
.area_wrap.__ani .swiper:not(.swiper-initialized.swiper-horizontal) li:nth-child(2) {
  transition-delay: 0.6s;
}
.area_wrap.__ani .swiper:not(.swiper-initialized.swiper-horizontal) li:nth-child(3) {
  transition-delay: 0.9s;
}
.branche_cards .card_info {
  height : 102px;
  padding-left : 30px;
  background: linear-gradient(100deg, #B9DEFE 14%, #E5EDFA 101%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap : 2px;
}
.branche_cards .card_info h5 {
  font-size: var(--title-h5);
}
.branche_cards .card_info span {
  font-size: var(--text-p1);
}
.sec_branch .btn_group {
  text-align: center;
}
/* END : sec_branch */


/* START : sec_provide */
.sec_provide {
  --max-width : 1320px;
  padding: var(--padding_horizontal) 0;
  background: linear-gradient(104deg, #B8DEFF 0%, #E1EBFA 35%, #E1EBFA 68%, #B8DEFF 100%);
  overflow: hidden;
}
.sec_provide h2 {
  max-width : var(--max-width);
  margin : 0 auto 64px;
  padding : 0 var(--padding_vertical);
}
.provide_inner {
  display: flex;
  flex-direction: column;
  gap : 70px;
  counter-reset: item;
}
.provide_inner > li {
  position: relative;
  counter-increment: item;
  width : 100%;
  padding-top: 56px;
}
.provide_inner > li::before {
  position: absolute;
  top : 0;
  width : 38px;
  height : 38px;
  border-radius: 50%;
  font-size: 30px;
  color : #fff;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-items: center;
  background-color: var(--c_primary);
  content: counter(item);
}
.provide_inner > li h4 {
  font-size: var(--title-h4);
}
.provide_inner > li p {
  font-size: var(--text-p2);
  color : #222;
  margin-top: 6px;
}
.provide_inner li._location { /* 환경 1 */
  max-width : var(--max-width);
  margin : 0 auto;
  padding-left : var(--padding_vertical);
  padding-right : var(--padding_vertical);
  display: flex;
  justify-content: space-between;
  gap : 30px;
}

.info_table {
  opacity: 0;
  transform : translateX(50px);
}
.info_table.__ani {
  transition : 0.8s ease;
  opacity: 1;
  transform : translateX(0);
}
.info_table dl {
  width : 632px;
  /* height : 398px; */
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.info_table dl span {
  height : 74px; 
  font-size: var(--text-p1);
  color : #777;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.info_table dl span:nth-child(1) {
  width : 46%;
  justify-content: flex-start;
  padding-left : 50px;
}
.info_table dl span:nth-child(2),
.info_table dl span:nth-child(3) {
  width : 27%;
}

.info_table dt span {
  color: #222;
  font-weight: 700;
}
.info_table dd {
  border-top: 1px solid #aaa;
}
.info_table dd.type_ff {
  border-top: none;
  background-color: var(--c_primary);
  border-radius: 20px;
  margin : 0 12px 12px;
  
}
.info_table dd.type_ff span {
  height : 90px;
  color : #fff;
  font-weight: 700;
  font-size: 30px;
}
.info_table .type_ff span:nth-child(1) {
  padding-left: 38px;
}
.info_table .type_ff span:nth-child(3) {
  padding-left : 10px;
}

.info_table .table_caption {
  margin-top: 25px;
  text-align: right;
}
.info_table .table_caption li {
  font-size: var(--text-p3);
  font-weight: 400;
  color : #444;
}

.provide_inner li._time { /* 환경 2 */
  max-width : var(--max-width);
  width : 100%;
  margin: 0 auto;
  padding-left : var(--padding_vertical);
  padding-right : var(--padding_vertical);
}
.info_grid {
  margin-top: 40px;
  gap : 40px 20px;
  display: flex;
  flex-wrap : wrap;
  justify-content: center;
}
.info_grid li {
  width : calc((100% - 40px) / 3);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
}
.info_grid.__ani li {
  transition : 0.8s ease;
  opacity: 1;
  transform: translateY(0);
}
.info_grid li .thumb {
  width: 100%;
  aspect-ratio: 412 / 346; 
  display: flex;
  justify-content: center;
}

.info_grid li h6 {
  height : 70px;
  padding : 0 30px;
  background-color: #fff;
  font-size: var(--text-p1);
  font-weight: 700;
  display: flex;
  align-items: center;
}


.provide_inner li._setting { /* 환경 3 */
  max-width : calc(var(--max-width) + ((100% - var(--max-width)) / 2));
  margin-left : auto;
  margin-right: 0;
  padding-left : var(--padding_vertical);
}
.info_grid.swiper li {
  width : 632px;
  margin-right : 20px;
}
.info_grid.swiper li .thumb {
  aspect-ratio: 632 / 346;
}
.info_grid.swiper li span {
  position: absolute;
  top : 30px; 
  left : 30px;
  height : 42px;
  padding : 0 16px;
  font-size : var(--text-p1);
  font-weight: 700;
  background-color: #fff;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}

/* END : sec_provide */

/* START : sec_review */
.sec_review {
  position: relative;
  padding-top : 166px;
  padding-bottom: 332px;
  overflow: hidden;
  text-align: center;
  color : #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap : 50px;
}
.sec_review::before{
  opacity: 0.7;
}
.sec_review p {
  font-size: var(--title-h5);
  font-weight: 700;
  margin-bottom: 16px;
}
.sec_review figcaption {
  font-size: var(--text-p1);
  font-weight: 600;
  color : rgba(255,255,255,0.6);
}
.sec_review .review blockquote,
.sec_review .review figcaption {
  opacity: 0;
  transform : translateY(50px);
}
.sec_review .review.__ani blockquote,
.sec_review .review.__ani figcaption {
  opacity: 1;
  transform : translateY(0);
  transition : 0.8s ease;
}
.sec_review .review::before {
  position: absolute;
  left : 50%;
  background-repeat : no-repeat;
  background-position: center;
  background-size : cover;
  display: inline-block;
  transform : translateX(-50%);
  content : "";
}
.sec_review .review:nth-child(1)::before {
  top : 0;
  width : 80px;
  height : 106px;
  background-image : url("/wp-content/themes/fastfive/assets/images/keyword_location/review_bg.png");
} 
.sec_review .review:nth-child(2)::before {
  bottom : 0;
  width : 368px;
  height : 290px;
  background-image : url("/wp-content/themes/fastfive/assets/images/keyword_location/review_obj.png");
}
/* END : sec_review */

.outro_sec {
  text-align: center;
}

@media screen and (max-width : 960px) { 
  
  .keyword_location {
    --title-h1 : 34px;
    --title-h2 : 28px; 
    --title-h3 : 28px;
    --title-h4 : 24px;
    --text-p1 : 18px;
    --text-p2 : 16px;
    --text-p3 : 14px;
    --text-p4 : 12px;
    --padding_horizontal : 130px;
  }
  /* 공통 */
  .hidden_pc {
    display: block;
  }
  .hidden_mo {
    display: none;
  }
  em.line::after {
    height : 20px;
  }
  .layout_500 {
    max-width : 500px;
    width : 100%; 
    margin : 0 auto;
  }
  .sec_inner {
    max-width : initial;
  }
  ._bg_primary::before  {
    --bg-primary_size : 630px;
  }
  /* 스와이퍼 */
  .swiper-pagination-num,
  .swiper-pagination-progress {
    display: inline-block;
  }

  /* START : intro-header */
  .intro-header {
    height : 516px;
  }
  .intro-header-text {
    padding-top: 40px;
    align-items: flex-start;
  }
  /* END : intro-header  */

  /* START : sec_overview */
  .sec_overview .sec_inner > p {
    margin: 16px 0 40px ;
  }
  .overview_cards {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .overview_cards li {
    position: relative;
    width : 100%;
    height : 134px;
    padding-left : 46px;
    align-items: flex-start;
    transform: translateY(50px);
    opacity: 0;
  }
  .overview_cards.__ani li {
    transition : transform 0.8s ease, opacity 0.8s ease ; 
    transform: translateY(0);
    opacity: 1;
  }
   .overview_cards.__ani li:nth-child(2) {
    transition-delay: 0.2s;
   }
   .overview_cards.__ani li:nth-child(3) {
    transition-delay: 0.4s;
   }
  .overview_cards li h4, 
  .overview_cards li h4 span {
    font-size: var(--title-h2);
  }
  .overview_cards li p {
    font-size: var(--text-p3);
  }
  .overview_cards picture {
    position: absolute;
    right : 47px; 
    bottom : 30px;
  }
  .overview_cards li img {
    height : 84px;
    margin-top: 0;
  }
  /* END : sec_overview */

  /* START : sec_subway */
  .sec_subway {
    flex-direction: column-reverse;
    gap : 14px;
    padding-bottom: 179px;
  }
  .subway_cards,
  .subway_slide {
    width : 100%;
  }
  .subway_cards {
    padding-right : var(--padding_vertical);
    gap : 14px;
  }
  .subway_cards li {
    padding-left : 0;
    text-align: center;
    align-items: center;
    gap : 6px;
  }
  .subway_cards li h5 {
    font-size: 22px;
  }
  .subway_slide li {
    width : 260px;
    height : auto;
  }
  .subway_slide li .mark {
    bottom : -3px;
  }
  .subway_cards::before {
    bottom: -179px;
    left: 50%;
    transform: translateX(-50%);
    width: 171px;
    height: 192px;
    background: url(/wp-content/themes/fastfive/assets/images/keyword_location/subway_obj_mo.png) no-repeat center / cover;
    display: inline-block;
  }
  

  /* END : sec_subway */

  /* START : sec_branch */
  
  .sec_branch {
    text-align: center;
  }

  .area_wrap > h5 {
    font-size: 22px;
  }
  .sec_branch .sec_inner {
    padding-right: 0;
    gap : 50px;
  }
  .area_wrap .lbl_area {
    position: initial;
    width : 58px;
    height : 58px; 
    margin : 0 auto 14px;
    font-size: 18px;
  }
  .branche_cards .card_info {
    height : 92px;
    padding-left : 30px;
    text-align: left;
  }
  .branche_cards li {
    width : 260px;
  }
  .branche_cards .card_info h5 {
    font-size: 22px;
  }
  .area_wrap .card_slide {
    display: flex;
    flex-direction: column;
    gap : 16px;
  }
  .area_wrap .card_slide .swiper-slide::after {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: #000;
    opacity: 0.4;
    z-index: 2;
    content: "";
  }
  .area_wrap .card_slide .swiper-slide-active::after {
    display: none;
  }
  
  /* END : sec_branch */

  /* START : sec_provide */
  .sec_provide {
    text-align: center;
  }

  .sec_provide h2 {
    margin-bottom: 50px;
  }
  .provide_inner {
    gap : 50px;
  }
  
  .provide_inner > li {
    padding-top : 42px; 
  }
  .provide_inner > li::before {
    left : 50%;
    width : 28px;
    height : 28px;
    font-size: 18px;
    transform : translateX(-50%);
  }

  .provide_inner li._location {
    flex-direction: column;
  }
  .info_table {
    transform: translateY(50px);
  }
  .info_table dl {
    width : 335px;
  }
  .info_table dl span {
    font-size: 14px;
    height : 52px;
  }
  .info_table dl span:nth-child(1),
  .info_table .type_ff span:nth-child(1) {
    padding-left : 26px;
  }
  .info_table dd.type_ff {
    border-radius: 14px;
    margin : 0 10px 10px;
  }
  .info_table dd.type_ff span {
    font-size: 14px;
    height : 54px;
  }
  
  .info_table .table_caption {
    width : max-content;
    text-align: left;
    margin : 16px auto 0;
  }
  .info_table .table_caption li {
    font-size: 12px;
  }

  .info_grid {
    gap : 18px;
  }
  .info_grid li {
    min-width: 335px;
    width : calc(50% - 20px);
  }
  .info_grid li .thumb {
    aspect-ratio : 335 / 193; 
  }
  .info_grid li h6 {
    height : 55px;
    justify-content: center;
  }
  .info_grid.swiper {
    gap : 16px;
    /* overflow: visible; */
    justify-content: flex-start;
  }
  .info_grid.swiper li {
    width : 306px;
    margin-right : 14px;
  }
  .info_grid.swiper li .thumb {
    aspect-ratio : 335 / 193; 
  }
  .info_grid.swiper li h6 {
    justify-content: flex-start;
  }
  .info_grid.swiper li span {
    top : 20px;
    left : 20px;
    height : 39px;
    font-size: 18px;
  }
  .swiper-pagination-progress {
    display: block;
  }



 

  

  /* END : sec_provide */

  /* START : sec_review */
  .sec_review {
    padding-top: 146px;
    padding-bottom: 203px;
    gap : 30px;
  }
  .sec_review p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .sec_review figcaption {
    font-weight: 500;
  }
  .sec_review .review:nth-child(2)::before {
    width : 201px;
    height : 163px;
  }
  /* END : sec_review */

} /* END ~ 960 */

