@charset "utf-8";
:root {
  --border-gradient: linear-gradient(138deg, rgba(105, 0, 140, 0.50) 24.73%, #69008C 42.13%, #C90003 63.3%, rgba(201, 0, 3, 0.50) 77.17%);
}

.border-gra {
  --bdrs: 3rem;
  --bdw: 0.5rem;
  --bggr: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 1.11%, rgba(201, 0, 3, 0.05) 98.89%);
  position: relative;
  isolation: isolate; /* z-index 컨텍스트 분리 */
}

.border-gra::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: var(--border-gradient);  
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mas-composite: xor;  /* 겹치지 않는 영역이 결합 */
  mask-composite: exclude;  /* 겹치지 않는 영역이 결합 */
  border-radius: var(--bdrs);
  transition: padding 0.25s ease;
  z-index: 0;
}

.border-gra::after {
  content: '';
  position: absolute;
  inset: var(--bdw);
  border-radius: calc(var(--bdrs) - var(--bdw));
  background: var(--bggr);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.border-gra:hover::before {
  padding: var(--bdw);
}

.border-gra:hover::after {
  opacity: 1;
}

.border-gra > div {
  position: relative;
  z-index: 1;
}

.top-box {
  --bdrs: 3rem;
  position: relative;
  border-radius: var(--bdrs);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate; /* z-index 컨텍스트 분리 */
}

.top-box::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(164deg, #FFF 24.73%, #69008C 42.13%, #C90003 63.3%, #FFF 77.17%);  
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mas-composite: xor;  /* 겹치지 않는 영역이 결합 */
  mask-composite: exclude;  /* 겹치지 않는 영역이 결합 */
  border-radius: var(--bdrs);
  z-index: 0;
}

.top-box > div {
  position: relative;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.6rem;
  z-index: 1;
}

.top-box .tit {
  display: inline-block;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 150%;
}

.top-box .con {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 1rem;
}

.speech {
  margin-bottom: -10rem;
  font-family: var(--noto-typo-font-type);
  letter-spacing: -0.1rem;
}

.speech b {
  font-weight: 700;
}

.speech .tit-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}

.speech .tit-box .photo {
  position: absolute;
  left: 2rem;
  bottom: 0;
  width: 31.1rem;
  z-index: 1;  
}

.speech .tit-con-box {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  margin-left: 16.8rem;
  padding: 6rem 10rem 9rem 22rem;
  width: 100%;
  max-width: 123.2rem;
  border-radius: 2rem 20rem 2rem 2rem;
  background: url(../img/contents/speech-tit-box-bg.svg) no-repeat right top / 43.3rem, linear-gradient(91deg, #C90003 0%, #69008C 100%);
}

.speech .tit-con-box .tit01 {
  width: 44.6rem;
}

.speech .tit-con-box .tit02 {
  color: #FFF;
  font-family: var(--tt-typo-font-type);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  text-shadow: 0.2rem 0.2rem 0.6rem rgba(0, 0, 0, 0.19);
}

.speech .con-box01 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  margin-top: -5rem;
  padding: 5rem 5rem 0;
  border-radius: 2rem 5rem 2rem 2rem;
  background: #FFF;
  z-index: 1;
}

.speech .con-box01 .con  {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.speech .con-box01 .con .tit {
  font-size: 2.4rem;
  font-weight: 700;
}

.speech .con-box02 {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 5rem;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-top: 1px dashed #A1A1A1;
  border-bottom: 1px solid #A1A1A1;
}

.speech .con-box02>div {
  display: flex;
  gap: 3.6rem;
}

.speech .con-box02>div .photo {
  flex: 0 0 auto;
  width: 32rem;
  height: 25rem;
  border-radius: 2rem;
  overflow: hidden;
}

.speech .con-box02>div dl {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2rem 0;
}

.speech .con-box02>div dl dt {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
}

.speech .con-box02>div dl dt span {
  display: inline-flex;
  align-items: center;
  height: 3.6rem;
  padding: 0.3rem 1.4rem;
  color: #fff;
  font-size: 2rem;
  border-radius: 3rem;
  background: #BC435A;
}

.speech .con-box02>div dl dd {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.speech .con-box03 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6rem;
  padding-left: 7rem;
  padding-right: 6rem;
}

.speech .con-box03 .con {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.speech .con-box03 .con .tit {
  display: inline-block;
  margin-top: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(91deg, #C90003 0%, #69008C 99.1%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.speech .con-box03 .photo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.speech .con-box03 .photo .img {
  width: 100%;
  max-width: 34.4rem;
}

.speech .con-box03 .photo .name {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 1.9rem;
  margin-top: -8.3rem;
  padding: 0 3rem 0 3rem;
  height: 8.3rem;
  font-weight: 700;
  border-radius: 15rem 0 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, #FFF 100%);
}

.speech .con-box03 .photo .name img {
  width: 9.4rem;
}

.history {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
}

.history .photo {
  max-width: 54.7rem;
  width: 100%;
}

.history .con {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.history .con .tit {
  display: flex;
  flex-direction: column;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
}

.history .con .tit .name {
  font-size: 4.4rem;
}

.history .con dl {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--krds-light-color-border-disabled);
}

.history .con dl dt {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 16rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 150%; /* 3.3rem */
}

.history .con dl dt::before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: url(../img/contents/history-ic.svg) no-repeat 0 0 / auto 4rem;
}

.history .con dl.experience dt::before {
  background-position: -4rem 0;
}

.history .con dl.award dt::before {
  background-position: -8rem 0;
}

.history .con dl dd .krds-info-list > li {
  font-size: 1.8rem;
}

.suggestion {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.suggestion > li {
  flex: 1 1 calc(50% - 2rem);
  border-radius: var(--bdrs);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.suggestion > li > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem;
}

.suggestion .tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.suggestion .tit::before {
  content: '';
  width: 12rem;
  height: 10rem;
  background: url(../img/contents/suggestion-ic.svg) no-repeat 0 0 / auto 10rem;
}

.suggestion .survey .tit::before {
  background-position: -12rem 0;
}

.suggestion .idea .tit::before {
  background-position: -24rem 0;
}

.suggestion .budget .tit::before {
  background-position: -36rem 0;
}

.suggestion > li:hover .tit {
  text-decoration: underline;
}

.suggestion .con {
  text-align: center;
  max-width: 60rem;
  min-height: 9.1rem;
  margin-bottom: 3.8rem;
}

.suggestion .con .ref-blet {
  color: #900C16;
}

.wish {
  background: url(../img/contents/wish-bg.png) no-repeat right 1px top 1px / 140rem, linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(201, 0, 3, 0.05) 100%);
}

.wish > div {
  padding-right: 64rem;
}

.wish .tit {
  background: var(--gra);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sns {

  display: flex;
  gap: 4rem;
}

.sns > li {
  --bdw: 1px;
  --bggr: #fff;

  flex: 1 1 calc(50% - 2rem);
  box-shadow: var(--shadow);
  border-radius: var(--bdrs);
  overflow: hidden;
}

.sns > li > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
  overflow: hidden;
} 

.sns .tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 0.6rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 150%;
}

.sns .tit::before {
  content: '';
  width: 10rem;
  height: 10rem;
  border-radius: 1rem;
  background: url(../img/contents/sns-ic.svg) no-repeat 0 0 / auto 10rem;
  box-shadow: 0.2rem 0.2rem 0.8rem 0 rgba(0, 0, 0, 0.11);
}

.sns .instagram .tit::before {
  background-position: -10rem 0;
}

.sns a {
  margin-top: 3.8rem;
}

.vision {
  padding-bottom: 34rem;
  background: url(../img/contents/vision-bg.png) no-repeat center bottom / auto 34rem;
}

.vision .slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7rem;
  border-radius: 3rem;
  border: 1px dashed var(--krds-light-color-border-gray-light);
}

.vision .slogan img {
  width: 60rem;
}

.vision .policy {
  display: flex;
  gap: 2rem;
}

.vision .policy > li {
  flex: 1 1 calc(100% - 10rem / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 4rem;
  border-radius: 3rem;
  background: linear-gradient(180deg, #FFF 0%, #F5F5F5 100%);
  box-shadow: var(--shadow);
}

.vision .policy > li .num {
  order: 0;
  font-weight: 700;
  border-bottom: 1px solid var(--krds-light-color-text-subtle);
}

.vision .policy > li::before {
  order: 1;
  content: '';
  width: 10rem;
  height: 10rem;
  background: url(../img/contents/vision-ic.svg) no-repeat 0 0 / auto 100%;
}

.vision .policy > li:nth-child(2)::before {
  background-position: -10rem 0;
}

.vision .policy > li:nth-child(3)::before {
  background-position: -20rem 0;
}

.vision .policy > li:nth-child(4)::before {
  background-position: -30rem 0;
}

.vision .policy > li:nth-child(5)::before {
  background-position: -40rem 0;
}

.vision .policy > li .txt {
  order: 2;
  margin-top: 1rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 150%;
}

.vision .policy > li .txt span {
  display: block;
  font-weight: 700;
}

.regulation .date {
  text-align: right;
  margin-top: 4.5rem;
  margin-bottom: 5rem;
}

.regulation .bl-list.dash {
  gap: 0.4rem;
  margin-top: 0.2rem;
  padding: 1rem 0 1rem 2.2rem;
  border-radius: 1rem;
  background: #F6F6F6;
}

.regulation .bl03+.bl-list.dash {
  margin-left: 2.2rem;
}

.regulation .bl-list.dash>li {
  padding-left: 1.2rem;
  color: var(--krds-light-color-text-basic);
  font-size: 1.5rem;
}

.regulation .bl-list.dash>li::before {
  color: #000;
}

.regulation .bl-list>li .bl-list {
  padding: 0.3rem 0 0.3rem 0.5rem;
}

.manifesto .top-box>div {
  padding-left: 21.6rem;
}

.manifesto .top-box>div::before {
  content: '';
  position: absolute;
  left: 6rem;
  top: 6rem;
  width: 12rem;
  height: 12rem;
  border-radius: 3rem;
  border-radius: 7rem;
  background: url(../img/contents/manifesto-ic.svg) no-repeat center / 8.6rem;
  border: 2px dashed #CECECE;
}

.manifesto .list {
  display: flex;
  flex-direction: column;
  padding: 6rem;
  gap: 3.6rem;
  margin-top: 5rem;
  border-radius: 3rem;
  background: rgba(255, 240, 232, 0.50);
}

.manifesto .list > li {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #DBDBDB;
}

.manifesto .list > li:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0;
}

.manifesto .list > li::before {
  flex: 0 0 auto;
  content: '';
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: url(../img/contents/manifesto-flag.svg) no-repeat 0 0 / auto 100%;
}

.manifesto .list .uk::before {
  background-position: -12rem 0;
}

.manifesto .list .usa::before {
  background-position: -24rem 0;
}

.manifesto .list .ja::before {
  background-position: -36rem 0;
}

.manifesto .list > li > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manifesto .list > li .tit {
  font-size: 1.9rem;
  font-weight: 700;
}

/* mob */
@media (max-width: 1023px) {
  .history {
    flex-direction: column;
    align-items: center;
  }

  .history .con {
    width: 100%;
  }

  .history .con dl {
    flex-direction: column;
    gap: 10px;
  }

  .vision .policy {
    flex-wrap: wrap;
  }

  .vision .policy > li {
    flex-basis: auto;
    width: 100%;
    max-width: calc(50% - 1rem);
  }

  .speech>i {
    display: inline-block;
    margin-left: calc(var(--krds-contents-padding-x) * -1);
    width: calc(100% + (var(--krds-contents-padding-x) * 2));
  }
}

@media (max-width: 767px) {
  .top-box::before {
    background: linear-gradient(117deg, #FFF 24.73%, #69008C 42.13%, #C90003 63.3%, #FFF 77.17%);
  }

  .top-box>div {
    padding: 30px 16px;
  }
  
  .speech {
    position: relative;
    padding-top: 10rem;
  }

  .speech .tit-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0 3rem 10rem 3rem;
    border-radius: 10px 100px 10px 10px;
    background: url(../img/contents/speech-tit-box-bg.svg) no-repeat right top / 43.3rem, linear-gradient(91deg, #C90003 0%, #69008C 100%);
  }

  .speech .tit-box .photo {
    position: static;
    margin-top: -10rem;
    border-radius: 1.8rem;
    overflow: hidden;
  }

  .speech .tit-con-box {
    gap: 1rem;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: none;
  }

  .speech .tit-con-box .tit01 {
    max-width: 100%;
  }

  .speech .con-box01 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .speech .con-box02>div {
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }

  .speech .con-box02>div dl dt {
    align-items: flex-start;
  }

  .speech .con-box02>div .photo {
    width: 100%;
    height: auto;
  }
  
  .speech .con-box02>div .photo img {
    width: 100%;
    height: 100%;
  }

  .speech .con-box03 {
    flex-direction: column;
    gap: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .speech .con-box03 .con {
    margin: 0;
  }

  .speech .con-box03 .photo .img {
    max-width: 17rem;
  }

  .suggestion {
    flex-direction: column;
  }
  
  .wish {
    background: url(../img/contents/wish-bg-mob.svg) no-repeat center bottom / 100%, linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(201, 0, 3, 0.05) 100%);
    background-position: center bottom;
  }

  .wish>div {
    padding-bottom: 259px;
  }
  
  .sns {
    flex-direction: column;
  }

  .vision .policy > li {
    max-width: 100%;
  }

  .manifesto .top-box>div {
    padding-top: 21.6rem;
    padding-left: 30px;
  }

  .manifesto .top-box>div::before {
    left: 16px;
  }

  .manifesto .list > li {
    flex-direction: column;
  }
}