@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
  color: #333333;
  padding-top: 70px;
  cursor: default;
}

a{text-decoration: none; color: inherit; margin:0;}
li{list-style: none;}
ul{padding: inherit}
html {scroll-behavior: smooth;}

/* 스크롤 애니메이션 */
.scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

/* 메뉴 스크롤 이동시 상단여백 _ 고정 nav에 안가려지게 */
#content01, #consult {scroll-margin-top: 80px;}
#content02, #content03, #content04, #content05 {scroll-margin-top: 120px;}

/* 각 컨텐츠 간 간격 */
#content01,#content02,#content03, #content04{margin-bottom: 140px;}


/* 폰트스타일 */
.ft21{font-size: 21px; font-weight: 600; margin:0;}
.ft19_b{font-size: 19px; font-weight: 600; margin:0;}
.ft18_m{font-size: 18px; font-weight: 500; margin:0; line-height: 1.6em;}
.ft18_r{font-size: 18px; font-weight: 400; margin:0; line-height: 1.6em;}
.ft17_r{font-size: 17px; font-weight: 400; margin:0; line-height: 1.6em;}
.ft16_m{font-size: 16px; font-weight: 500; margin:0;}
.ft15_r{font-size: 15px; font-weight: 400; margin:0;}
.m_t2{margin-top: 2px;}
.m_t10{margin-top: 10px;}
.m_t15{margin-top: 15px;}

/*컬러*/
:root {
  --main-color:  #FF9898;
  --bg-color: #F6F6F6;
  --bg-color2: #505050;
  --bg-color3: #ffe3e0;
}
.gray2{color: #808080;}


/* 그리드 기본 */
.grid-container {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1200px) 1fr;
  min-height: 100%;
}


/* 네비게이션_고정*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  opacity: 1;
  padding: 0 20px;
}

.nav-container {
  padding: 0;
  max-width: 1200px;
  min-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-sizing: border-box;
}


/* 로고영역 : flex, 왼쪽 정렬*/
.nav-logo img {
  display: block;
  height: 48px;
  width: auto;
}

/* 메뉴 영역 : flex, 오른쪽 정렬 */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

/* 메뉴 텍스트 스타일 */
.nav-menu li {
  font-size: 16px;
  font-weight: 400;
}


/* 상담신청 버튼 스타일 */
.nav-btn {
  background-color: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  padding: 7px 20px 8px;
  cursor: pointer;
  font-family: 'Noto Sans KR', sans-serif;
  background-image: linear-gradient(90deg, var(--main-color) 0%, var(--main-color) 100%);
  background-size: 200% 100%;
  background-position: left;
}

/* 호버 시 반복되는 그라데이션 효과 */
.nav-btn:hover {
  background-image: linear-gradient(135deg, #ffca8e, hsl(342, 100%, 70%), #ffca8e);
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out infinite;
  color: #fff;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*메인배너*/
.banner{
  width: 100vw;
  min-width: 100vw;
  height: 450px;
  background-color: #f6f5f7;
  transition: background-color 0.4s cubic-bezier(0.4,0,0.2,1);
}

.banner > .center {
  max-width: 1200px;
  margin: 0 auto;
}

/*배너 텍스트 스타일*/
.banner-desc{
  font-size: 22px;
  font-weight: 400;
  margin: 0px;
}
.banner-title{
  font-size: 35px;
  font-weight: 600;
  margin-top: 5px;
}


/*메인배너 버튼스타일*/
.banner-btn{
  color: #fff;
  width: 130px;
  text-align: center;
  padding: 12px 17px ;
  border-radius: 50px;
  margin-top: 40px;
}
.btn01{ background-color: var(--main-color);}
.btn02{background-color: rgb(255, 126, 169);}
.btn03{background-color:  #4d7986;}



/* 배너 슬라이드 영역: 슬라이드 구조 */
.banner_slides {
  position: relative;
  width: 100%;
  height: 450px;
}

/* 각 배너 슬라이드: 기본적으로 숨김, 활성화된 것만 보임 */
.banner_slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 1200px;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 auto;
}
.banner_slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.banner_text_layer {
  position: absolute;
  left: 10px;
  top: 53%;
  transform: translateY(-50%);
  z-index: 2;
}

.banner_slide img {
  display: block;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}


/* 콘텐츠 */

.tit1{
  font-size: 31px;
  font-weight: 600;
  color: #333333;
  line-height: 1.5em;
  width: 20%
}

.tit{
  font-size: 31px;
  font-weight: 500;
  color: #333333;
}


.intro {
  max-width: 1200px;
  min-width: 900px;
  padding: 10px 30px;
  display: flex;
  margin-top: 50px;
}


.intro_tit {
  display: flex;
  line-height: 28px;
  width: 100%;
  justify-content: space-between;
}


.line{
  width: 100%;
  height: 75px;
  border-bottom: 1px solid #c5c5c5;
}


.intro_text {
  display: flex;
  flex-direction: column;
  line-height: 28px;
  width: 100%;
}

.intro_tagline{
  font-size: 18px;
  font-weight: 400;
}


.intro_subtit{
  font-size: 19px;
  font-weight: 400;
  line-height: 1.9em;
  margin: 30px 0;

}


/* 카테고리 롤링 컨테이너 */
.cate_container {
  position: relative;
  max-width: 1110px;
  margin: 60px auto 30px;
  overflow: hidden;
}

.cate_wrapper {
  display: flex;
  gap: 30px;
  transition: transform 1s ease;
  width: max-content;
}

/* cate_box 내부 이미지 스타일 */
.cate_box img {
  width: 100%;
  height: auto;
  display: block;
}

.cate_tit {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  padding: 3px;
}

/* 좌우 버튼 */
.cate_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  transition: all 0.2s ease;
  z-index: 10;
  user-select: none;
}

.cate_btn:hover {
  background: var(--main-color);
  color: white;
  border-color: var(--main-color);
}

.cate_btn.prev {
  left: 0px;
}

.cate_btn.next {
  right: 10px;
}


/* 혜택 영역 */
.benefit_zone {
  display: flex;
  gap: 5%;
  padding: 20px 20px 0;
  justify-content: center;
}

.benefit {
  display: flex;
  flex-direction: column;
  min-width:200px;
  gap: 13px;
  text-align: center;
  height: 160px;
  padding: 80px 5px 40px;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-8px);
  z-index: 2;
}


/* 진행절차 */
.process{
  text-align: center;
}

#content02{
  background-color: #f8f8f8 ;
  padding: 80px 0 110px;
}

.process_container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}


/* 제휴사례 */
.example {
  text-align: center;
}

/* 제휴사례 소메뉴 영역 */
.example-tabs {
  display: flex;
  justify-content: center;
  gap: 150px;
  border-bottom: 1px solid #eee;
  padding: 45px 20px 0;
  margin: 0 20px;
}

.tab{width: 130px;}

.example-tabs .tab {
  font-size: 19px;
  font-weight: 400;
  color: #333333;
  padding: 12px 0 14px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.example-tabs .tab.active {
  font-weight: 500;
  color: #333333;
}
.example-tabs .tab.active::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background-color: var(--main-color);
  transform: scaleX(0);
  transform-origin: center;
  animation: lineExpand 0.2s ease-out forwards;
}

/* 제휴사례 소메뉴 액티브바 효과 */
@keyframes lineExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* 제휴사례 상세설명 박스 */
.example-descs {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 0 5% ;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin: 40px 20px;
}
.example-descs .desc { display: none; }
.example-descs .desc.active { display: block; }

/* 카드 목록 영역 */
.cards {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.cards.active {
  display: grid;
}

.card {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.card_name{
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 3% 1%;
}

.card img {
  width: 100%;
  height: 300px ;
  aspect-ratio: 1/1;
  object-fit: cover;
}


/* 제휴기업(로고) 영역 */
.Corp {
  text-align: center;
}

.Corp-logo {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
}

.Corp-logo li{
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.Corp-logo li img{
  height: 90%;
  object-fit: contain;
  display: block;
}


/* 상담신청 영역 */
.consult{
  background-color: var(--bg-color3);
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

.consult > .center {
  max-width: 1200px;
  margin: 0 auto;
}

.consult-card {
  width: 450px;
  margin: 30px auto;
  padding: 50px 60px;
  background: #fff;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.consult-title {
  font-weight: 400;
  margin-bottom: 40px;
  font-size: 25px;
}

.consult-subtitle {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 17px;
  text-align: left;
}

.consult-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consult-inputs input {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  padding: 13px 0;
  font-size: 16px;
  outline: none;
  color:#333 ;
}

.consult-section {
  margin-top: 40px;
  width: 100%;
  min-height: 120px;
  border: none;
}

.consult-section textarea{
  width: 92%;
  min-height: 130px;
  font-size: 16px;
  border: none;
  resize: none;
  margin-top: 10px;
  color: #333;
  padding: 4%;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.6em;
  background-color: var(--bg-color);
}

textarea:focus {
  outline: none;
}

.consult-agree {
  margin-top: 5px;
  font-size: 15px;
  color: #333;
  text-align: left;
}

.consult-agree input[type="checkbox"] {
  margin-right: 5px;
}

.consult-submit {
  margin: auto;
  width: 100%;
  background: var(--bg-color3);
  color: #333;
  border: none;
  border-radius: 30px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Noto Sans KR', sans-serif;
}

.consult-submit:hover {
  background: #ffcdc7;
}

/* 상담신청_제휴문의 */
.CC_info{
  width: 450px;
  margin: auto;
  text-align: left;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.CC_tit2{
  font-size: 18px;
  margin-top: 5px;
}


/* 푸터 영역 */
footer{
  background-color: var(--bg-color2);
  padding: 50px 20px;
}
.footer_info{
  margin-top: 0px;
  color: #acacac;
  font-size: 14px;
  line-height: 1.8em;
}

footer > .center {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content:space-between;
  align-items: center;
}


/* 사이즈 조절 */
@media (max-width: 1100px) {
  .cards {grid-template-columns: repeat(2, 1fr);}
  .card { width: 100%; min-width: 140px; }
  .Corp-logo {grid-template-columns: repeat(2, 1fr);}
}


/* 플라워시티 회사소개 */
.info_intro_container{
  width: 100%;
  height: 1357px;
  background-size: cover;
}

.info_intro{
  width: 1200px;
  margin: auto;
}

.intro_ment{
  margin-top: 70px;
}

.intro_tit01{
  font-size: 28px;
}

.intro_tit02{
  margin-top: 5px;
  font-size: 42px;
  font-weight: 600;
}

.intro_ment{
  padding: 50px;
}

.intro_story{
  margin: 70px 0 ;
  font-size: 21px;
  line-height: 41px;
}

.CI_container, .CC_container{
  width: 1200px;
  margin: auto;
}

.pinkbar{
  height: 7px;
  width: 50px;
  background-color: var(--main-color);
  margin-bottom: 30px;
}

.CI_tit, .CC_tit{
  padding: 90px 40px 40px;
}

.sub_tit{
  font-size: 26px;
  margin-top: 7px;
}