@charset "utf-8";

:root {
  --primary-color: #2e2e2e;
  --accent-color: #7e5f4b;
  --bg-color: #fafafa;
  --text-color: #444;
  --font-heading: 'Pretendard', sans-serif;
  --font-body: 'Noto Sans KR', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-color);
}

/* 공통 레이아웃 */
.p6_intro_section {
  padding: 80px 20px;
  background: url('../img/p6_img.jpg') no-repeat center top;
  background-size: cover;
  text-align: center;
}

.p6_intro_wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 20px;
  border-radius: 16px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 타이틀 */
.p6_intro_title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.p6_intro_subtitle {
  font-size: 20px;
  margin-bottom: 10px;
}

.p6_intro_highlight {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 40px;
}

/* 본문 */
.p6_intro_content p {
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.p6_intro_greeting {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

.p6_intro_sign {
  margin-top: 30px;
  font-weight: 600;
}

.p6_intro_sign span {
  display: block;
  font-size: 22px;
  font-family: 'Nanum Pen Script', cursive;
  color: var(--accent-color);
}

/* 반응형 */
@media screen and (max-width: 768px) {
  .p6_intro_section {
    padding: 40px 10px;
  }

  .p6_intro_wrapper {
    padding: 30px 15px;
  }

  .p6_intro_title {
    font-size: 22px;
  }

  .p6_intro_subtitle,
  .p6_intro_highlight {
    font-size: 16px;
  }

  .p6_intro_content p {
    font-size: 14px;
  }

  .p6_intro_sign span {
    font-size: 18px;
  }
}


/* ===== P7: 히스토리 섹션 ===== */
.p7_history_section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.p7_history_wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.p7_title_area {
  text-align: center;
  margin-bottom: 50px;
}

.p7_title {
  text-align: left;
  font-size: 40px;
  color: #3D3D3D;
  font-weight: 700;
  margin-bottom: 10px;
}

.p7_subtitle {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.p7_subtitle strong {
  display: block;
  margin-top: 8px;
  color: #222;
  font-weight: 600;
}

/* 타임라인 레이아웃 */
.p7_timeline {
  border-left: 3px solid #ddd;
  padding-left: 0;
}

.p7_timeline_item {
  position: relative;
  margin-bottom: 40px;
}

.p7_timeline_item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #3D3D3D;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff;
}

.p7_year {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  padding-left: 20px;
}

.p7_timeline_item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p7_timeline_item li {
  padding: 10px 0 0 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.p7_timeline_item li span {
  display: inline-block;
  min-width: 28px;
  font-weight: bold;
  color: #333;
}

/* 모바일 최적화 */
@media screen and (max-width: 768px) {
  .p7_title {
    font-size: 22px;
  }

  .p7_subtitle {
    font-size: 16px;
  }

  .p7_year {
    font-size: 18px;
  }

  .p7_timeline_item li {
    font-size: 14px;
  }

  .p7_timeline {
    padding-left: 20px;
  }
}


/* ===== P8: 조직도 섹션 ===== */
.p8_org_section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.p8_org_wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.p8_org_title {
  font-size: 28px;
  font-weight: 700;
  color: #7e5f4b;
  margin-bottom: 10px;
}

.p8_org_description {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* 조직도 그래픽 구조 */
.p8_org_chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.p8_level {
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  background-color: #7e5f4b;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.p8_level-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.p8_level-group .dept {
  background-color: #e6e0dc;
  color: #333;
}

.p8_level-subgroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.p8_box {
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f2f2f2;
  color: #333;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 반응형 */
@media screen and (max-width: 768px) {
  .p8_org_title {
    font-size: 22px;
  }

  .p8_org_description {
    font-size: 14px;
  }

  .p8_level {
    font-size: 16px;
    padding: 10px 20px;
  }

  .p8_box {
    font-size: 13px;
    padding: 8px 16px;
  }
}


/* ===== P10: 특징 소개 ===== */
.p10_feature_section {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.p10_feature_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.p10_title_area {
  text-align: center;
  margin-bottom: 50px;
}

.p10_title {
  font-size: 28px;
  color: #7e5f4b;
  font-weight: 700;
}

.p10_subtitle {
  font-size: 18px;
  color: #444;
  margin-top: 8px;
}

/* 카드 영역 */
.p10_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.p10_card {
  width: calc(25% - 20px);
  background: #fff;
  padding: 30px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.p10_card p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  color: #666;
}

/* 설명 영역 */
.p10_descriptions {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p10_desc p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.p10_desc .p10_num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: #7e5f4b;
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
}

.p10_desc b {
  color: #222;
  display: block;
  margin-bottom: 6px;
}

/* 반응형 */
@media screen and (max-width: 768px) {
  .p10_title {
    font-size: 22px;
  }

  .p10_card {
    width: calc(50% - 10px);
    padding: 20px 10px;
  }

  .p10_desc p {
    font-size: 16px;
  }

  .p10_desc .p10_num {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }

  .p10_desc {
    font-size: 14px;
  }
}


/* ===== P11: 모바일웹 소개 ===== */
.p11_mobile_section {
  padding: 80px 20px;
  background-color: #fff;
}

.p11_wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.p11_title_area {
  text-align: center;
  margin-bottom: 40px;
}

.p11_title {
  font-size: 28px;
  font-weight: 700;
  color: #7e5f4b;
}

.p11_intro {
  font-size: 18px;
  margin-top: 10px;
}

.p11_subtext {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

.p11_banner {
  background: #f2f2f2;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  margin: 40px 0;
}

.p11_banner h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.p11_banner p {
  font-size: 16px;
  line-height: 1.6;
}

.p11_subtitle_box {
  text-align: center;
  margin: 60px 0 30px;
}

.p11_subtitle_box h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.p11_benefit_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

.p11_benefit_cards li {
  flex: 1 1 30%;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.p11_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-color: #eee;
}
.icon01 { background-image: url('../page/img/p11_icon01.png'); }
.icon02 { background-image: url('../page/img/p11_icon02.png'); }
.icon03 { background-image: url('../page/img/p11_icon03.png'); }

.p11_benefit_cards h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
.p11_benefit_cards h5 span {
  display: block;
  font-size: 13px;
  color: #7e5f4b;
}

.p11_benefit_cards p {
  font-size: 14px;
  line-height: 1.6;
}

.p11_points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.p11_points li {
  flex: 1 1 48%;
  background: #fafafa;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.p11_points .num {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #7e5f4b;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  line-height: 32px;
  font-weight: bold;
  margin-right: 10px;
}

.p11_attention {
  padding: 30px;
  background: #f5f5f5;
  border-radius: 16px;
}

.p11_attention h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

.p11_attention p {
  font-size: 14px;
  margin-bottom: 10px;
}

.p11_attention ul {
  padding-left: 20px;
  text-align: left;
}
.p11_attention ul li {
  list-style: disc;
  font-size: 14px;
  margin-bottom: 6px;
}

/* 반응형 */
@media screen and (max-width: 768px) {
  .p11_title { font-size: 22px; }
  .p11_banner h3 { font-size: 18px; }
  .p11_subtitle_box h4 { font-size: 18px; }
  .p11_benefit_cards { flex-direction: column; }
  .p11_points { flex-direction: column; }
}


/* ===== P15: 마케팅 최적화 ===== */
.p15_marketing_section {
  padding: 0px 20px;
  background-color: #fff;
}

.p15_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom:40px;
}

.p15_title_area {
  text-align: center;
  margin-bottom: 40px;
}

.p15_title {
  font-size: 28px;
  font-weight: 700;
  color: #7e5f4b;
}

.p15_subtitle {
  font-size: 18px;
  margin-top: 10px;
  color: #555;
}

.p15_desc {
  font-size: 15px;
  color: #444;
  margin-bottom: 40px;
  text-align: center;
}

.p15_content_area {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.p15_content_left {
  flex: 1 1 45%;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 30px;
}

.p15_box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.p15_content_right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p15_item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.p15_item p {
  font-size: 14px;
  line-height: 1.6;
}

.p15_subtitle_box h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.p15_routes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0;
  gap: 15px;
}

.p15_routes li {
  flex: 1 1 22%;
  background: #f9f9f9;
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.p15_path_highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p15_path_highlight .arrow {
  font-weight: bold;
  font-size: 16px;
  position: relative;
  text-align: center;
}

.p15_path_highlight .arrow span {
  display: block;
  width: 24px;
  height: 24px;
  background: #7e5f4b;
  border-radius: 50%;
  margin: 6px auto 0;
}

.p15_path_highlight .info {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  font-size: 14px;
  line-height: 1.6;
}

/* 반응형 */
@media screen and (max-width: 768px) {
  .p15_title { font-size: 22px; }
  .p15_content_area { flex-direction: column; }
  .p15_routes { flex-direction: column; }
  .p15_routes li { flex: 1 1 100%; }
}

.grid-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.p15_image_card {
  flex: 1 1 45%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.p15_image_card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.p15_overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background-color: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 12px;
}

.p15_overlay h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.p15_overlay p {
  font-size: 14px;
  line-height: 1.6;
}

.p15_text_content {
  flex: 1 1 50%;
}

.p15_paragraph {
  margin-bottom: 20px;
}

.p15_paragraph h5 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #333;
}
