/* BASIC css start */
  .syouwa-guide-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    box-sizing: border-box;
    text-align: center;
  }

  .syouwa-guide-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0 0 70px;
    letter-spacing: -1px;
  }

  .syouwa-guide-line {
    width: 100%;
    border-top: 1px dotted #222;
    margin-bottom: 50px;
  }

  .syouwa-guide-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: left;
  }

  @media (max-width: 768px) {
    .syouwa-guide-section {
      padding: 50px 15px 30px;
    }

    .syouwa-guide-title {
      font-size: 28px;
      margin-bottom: 40px;
    }

    .syouwa-guide-line {
      margin-bottom: 30px;
    }

    .syouwa-guide-content {
      font-size: 15px;
      line-height: 1.7;
    }
  }
/* 회사 소개 제목 */
.syouwa-title{
    font-size:38px;
    font-weight:700;
    color:#000;
    margin:0 0 40px;
    line-height:1.3;
}

/* 모바일 */
@media all and (max-width:768px){

    .syouwa-title{
        font-size:28px;
        margin-bottom:25px;
    }

}
```


/* 쇼우와 ABOUT */
.syouwa-about{
    width:100%;
    overflow:hidden;
    background:#fff;
}

/* 녹색 → 흰색 그라데이션 */
.syouwa-about-bg{
    background:linear-gradient(
        to bottom,
          #efefef 0%,
         #ffffff  35%,
        #ffffff 100%
    );
    padding:40px 40px 100px; /* 위 여백 줄임 */
}

/* 내부 */
.syouwa-about-inner{
    max-width:1100px;
    margin:0 auto;
}

/* 본문 + 이미지 */
.syouwa-about-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:60px;
}

/* 텍스트 */
.syouwa-text{
    flex:1;
    color:#444;
    font-size:22px;
    line-height:2;
    word-break:keep-all;
    margin-top:-20px; /* 텍스트 위로 */
}

.syouwa-text p{
    margin:0 0 45px;
}

/* 회사정보 */
.syouwa-company{
    margin-top:60px;
    font-size:20px;
    line-height:2.2;
    color:#555;
}

/* 오른쪽 하단 이미지 */
.syouwa-about-img{
    width:330px;
    flex-shrink:0;

    margin-left:auto;
    position:relative;
    top:-200px;
}

.syouwa-about-img img{
    width:100%;
    display:block;
}

/* 모바일 */
@media all and (max-width:768px){

    .syouwa-about-bg{
        padding:30px 20px 60px;
    }

    .syouwa-about-content{
        flex-direction:column;
        gap:30px;
    }

    .syouwa-text{
        font-size:16px;
        line-height:1.9;
        margin-top:0;
    }

    .syouwa-text p{
        margin-bottom:30px;
    }

    .syouwa-company{
        font-size:16px;
        line-height:1.9;
    }
    .syouwa-about-wrap{
        display:flex;
        flex-direction:column;
    }

    .syouwa-about-img{
        order:2;
        width:100%;
        max-width:300px;
        margin:30px auto 0;
        position:static;
    }
}
/* BASIC css end */

