:root{
  --corp-bg: #F1EEFF;
  --corp-ink: #151C29;
  --corp-accent: var(--brand-600);
}

.corp_hero{
  background: var(--corp-bg);
  overflow: hidden;
}

.corp_hero .container{
  width: 100%;
  padding: 72px 24px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.corp_title{
  font: var(--title-title4-b);
  letter-spacing: var(--ls-title-title4-b);
  color: var(--corp-ink);
  line-height: 1.25;
}
.corp_title .brand{color: var(--corp-accent);}

.corp_illust{
  width: 100%;
  max-width: 520px;
  align-self: flex-end;
}
.corp_illust img{
  width: 100%;
  height: auto;
  display: block;
}
.corp_illust .illust_main{
    width: 100%;
    height: 100%;
    min-height: 300px;
    background : url('/images/member/illust.png') no-repeat left  center;
    background-size: contain;

}

.corp_desc{
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--neutral-750);
  /* font: var(--body-body2-r); */
  font-size: 17px;
  letter-spacing: var(--ls-body-body2-r);
  line-height: 1.55;
}

.corp_emphasis{
  margin-top: 8px;
  color: var(--corp-accent);
  font: var(--title-title6-b);
  letter-spacing: var(--ls-title-title6-b);
  line-height: 1.35;
}

.corp_sign{
  margin-top: 6px;
  color: var(--neutral-750);
  font: var(--body-body2-m);
  letter-spacing: var(--ls-body-body2-m);
  line-height: 1.55;
}


/* decorations (simple doodle 느낌) */
.corp_deco{
    position: absolute;
    pointer-events: none;
    user-select: none;
    opacity: 0.95;
    filter: drop-shadow(0 2px 0 rgba(0,0,0,0.02));
  }
  
  .corp_deco.cloud{
      background: url('/images/member/icons-cloud.png') no-repeat center center;
      background-repeat: no-repeat;
  }
  
  .corp_deco.cloud.large{
      background-size: calc(370px / 3) calc(300px / 3);
      width: calc(370px / 3); 
      height: calc(300px / 3);
  }
  .corp_deco.cloud.medium{
      background-size: calc(370px / 4) calc(300px / 4);
      width: calc(370px / 4);
      height: calc(300px / 4);
  }
  
  
  
  .corp_deco.star{
    background: url('/images/member/icons-star.png') no-repeat center center;
    background-repeat: no-repeat;
  }
  
  .corp_deco.star.small {
      background-size: calc(313px / 9) calc(331px / 9);
    width: calc(313px / 9);
    height: calc(331px / 9);
  }
  .corp_deco.star.medium {
      transform: rotate(30deg);
      background-size: calc(313px / 7) calc(331px / 7);
      width: calc(313px / 7);
      height: calc(331px / 7);
  }
  .corp_deco.star.large {
      background-size: calc(313px / 6) calc(331px / 6);
      width: calc(313px / 6);
      height: calc(331px / 6);
  }
  
  
  .corp_deco.swirl{
      background: url('/images/member/icons-swirl.png') no-repeat center center;
      background-repeat: no-repeat;
      background-size: calc(299px / 7) calc(322px / 7);
      width: calc(299px / 7);
      height: calc(322px / 7);
  }
  
  .corp_deco.tl{left: 15px;top: 15px;transform: rotate(-162deg); }
  .corp_deco.t{right: 10%; top: 14%;display: none; }
  .corp_deco.tr{right: 5%; top: 6%;display: none; }
  .corp_deco.bl{left: 5%; top: 44%}
  
  .corp_deco.br0{right: 5%; bottom: 170px;}
  .corp_deco.br{right: 5%; bottom: 110px;}
  .corp_deco.br2{right: 5%; bottom: 10px; transform: scale(0.9);}