/*
vars
*/

:root {
  --max-width: 1200px;
  --max-width-step2: 800px;
  --card-radius: calc(8px + 0.4vw);
  --card-inner-radius: calc(7px + 0.3vw);
  --padding-hor: 2.8vw;

  /*--body-background-color: #f9f9fa;
  --header-background-color: #f7f7f8;
  --footer-background-color: #f1f1f2;
  --color-blue: #0762FF;*/

  --body-background-color: #fff;
  --header-background-color: #fff;
  --footer-background-color: #fff;
  --light-background-color: #f7f7f8;
  --color-blue: #0762FF;
  --color-darkblue: #112b85;
  --color-orange: #ec6520;
  --color-red: #d43327;
  --color-white-for-black-bg: #f5f5f7;
  --header-height: 54px;
}

body {
  background-color: var(--body-background-color);
  color: #111;
}

/*
header
*/

header {
  z-index: 991;
  position: sticky;
  top: 0;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

header>.wrap {
  margin: 0 auto;
  width: 100%;
}

header>.wrap>ul {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 4px;
  height: var(--header-height);
}


header>.wrap>ul>li {
  height: 100%;
}

header>.wrap>ul>li.left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

header>.wrap>ul>li.center {
  height: 100%;
}

header>.wrap>ul>li.left #top-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

header>.wrap>ul>li.left #top-logo img {
  display: inline;
  max-width: none;
  height: 15px;
}

header>.wrap>ul>li.left #top-logo span {
  position: relative;
  top: 2px;
  margin-left: 8px;
  color: #fff;
  font-size: 0.76rem;
  line-height: 0rem;
  letter-spacing: 0;
  font-weight: 500;
}

header>.wrap>ul>li.right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

header>.wrap>ul>li.right ul {
  display: flex;
  align-items: center;
}

header>.wrap>ul>li.right ul li:not(:first-child) {
  margin-left: 8px;
}

header>.wrap>ul>li a {
  font-family: "Poppins";
  padding: 6px 14px;
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.02rem;
  color: #ddd;
  background-color: #333;
  border-radius: 8px;


  &:hover {
    opacity: 0.9;
  }
}

/*
footer
*/

footer {
  display: flex;
  z-index: 2;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: left;
  border-top: none;
  background-color: var(--footer-background-color);
  border-top: 1px solid #ddd;
}

footer .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: calc(34px + 1vw);
  padding-bottom: calc(60px + 1vw);
  width: 100%;
}

footer ul {
  display: flex;
  flex-direction: row;
}

footer li {
  margin: 0 calc(8px + 0.4vw);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 0.8rem;
  text-decoration: underline;
}

footer .copyright {
  margin-top: calc(30px + 0.6vw);
  font-weight: 400;
  font-family: "Poppins";
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 0.9rem;
}

footer a {
  color: #666;
}

footer a:hover {
  color: #000;
}

footer .copyright {
  color: #333;
}

/*
contents default
*/

section.full-wrap {
  position: relative;
  width: 100%;
  background-color: var(--body-background-color);
}

section.limited-wrap {
  margin: 0 auto;
  width: calc(100% - (var(--padding-hor) * 2));
  max-width: var(--max-width);
}

section.contents {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  min-height: 60vh;
  background-color: var(--body-background-color);
}


section.contents .plus-icon {
  width: calc(44px + 1vw);
  height: calc(44px + 1vw);
  background: url("/assets/images/common/plus_icon.png") no-repeat center / 36%;
  background-color: rgba(232, 232, 232, 0.88);
  /*border: 1px solid #999;*/
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

section.contents .play-icon {
  width: calc(34px + 0.9vw);
  height: calc(34px + 0.9vw);
  background: url("/assets/images/common/play_icon.png?v=3") no-repeat 55% center / 31%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

section.contents .link-icon {
  width: calc(44px + 1vw);
  height: calc(44px + 1vw);
  background: url("/assets/images/common/link_icon.png?v=3") no-repeat center center / 37%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
}


span.step4::after {
  white-space: pre-wrap;
  content: "\a";
}

span.no-step1::after {
  white-space: pre-wrap;
  content: "\a";
}

span.no-step2::after {
  white-space: pre-wrap;
  content: "\a";
}

button {
  cursor: pointer;
}

button.round {
  width: calc(230px + 1.4vw);
  height: calc(44px + 0.4vw);
  font-weight: 600;
  font-size: calc(0.8rem + 0.2vw);
  border-radius: 50px;
}

button.white {
  background-color: #fff;
  border: 2px solid #999;
}

button.orange {
  background-color: var(--color-orange);
  color: #fff;
}

button.blue {
  background-color: var(--color-darkblue);
  color: #fff;
}

button.black {
  background-color: #111;
  color: #fff;
}

button.white:hover {
  border-color: #666;
}

button.orange:hover,
button.blue:hover,
button.black:hover {
  opacity: 0.8;
}

button.back-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: url("/yooshin_career/assets/images/common/arrow_left.png?v=3") no-repeat center center / auto 18px;
}

button.back-arrow:hover {
  background-color: #f4f4f4;
}

/**/

#bottom-banner-layer {
  z-index: 200;
  position: fixed;
  bottom: calc(14px + 0.8vw);
  margin: 0 auto;
  width: 100%;
}

#bottom-banner-layer .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 12px 0;
  width: 100%;
  background-color: #222;
  opacity: 0.95;
  border-radius: 10px;
}

#bottom-banner-layer .wrap p {
  padding-left: 24px;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.52rem;
  letter-spacing: -0.02rem;
  color: #fff;
  text-align: left;
}

#bottom-banner-layer .wrap .button-wrap {
  flex-direction: row;
  margin: 0;
  padding-right: 24px;
  min-width: fit-content;
}

#bottom-banner-layer .wrap .button-wrap button {
  margin-top: 0;
  margin-left: 8px;
  padding: 4px 16px 4px 16px;
  width: auto;
  height: auto;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.52rem;
  letter-spacing: -0.02rem;
  color: #111;
  background-color: #fff;
  opacity: 0.86;
  border-radius: 4px;
}

button.close-x {
  position: relative;
  z-index: 500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: url("/assets/images/common/gnb_close_btn_black.png") no-repeat center center / auto 18px;
  background-color: rgba(255, 255, 255, 0.7);
}

button.close-x:hover {
  border: 1px solid #ddd;
  background-color: #fff;
}



@media all and (max-width:1280px) {
  header>.wrap>ul {
    padding: 0 12px;
  }
}

@media all and (max-width:1024px) {}

@media all and (max-width:768px) {
  header .logo img {
    width: calc(82px + 3.4vw);
  }

  header .depth1-menu ul {
    display: none;
  }

  section.tag-button-wrap {
    top: 40px;
  }

  section.tag-button-wrap .tag-button {
    position: relative;
    transform: rotate(-90deg);
    width: 100px;
    height: 50px;
    top: 56px;
    padding-top: 18px;
    padding-bottom: 20px;
    right: -28px;
    margin-bottom: 50px;
    cursor: pointer
  }

  section.tag-button-wrap .tag-button:hover {
    right: -28px;
  }

  .mobile-menu-button {
    display: block;
    position: fixed;
    z-index: 10;
    width: calc(58px + 0.4vw);
    height: calc(58px + 0.4vw);
    left: calc(50% - ((58px + 0.4vw) / 2));
    bottom: 0;
    transform: translateY(-3.4vh);
    margin: 0;
    padding: 0;
    border-radius: 9px;
    background-color: #fff;
    box-shadow: 0.6px 1.4px 4px 0.2px rgba(0, 0, 0, 0.16);
  }

  .mobile-menu-button .bar {
    margin: 6px auto;
    width: 40.2%;
    height: 3px;
    background-color: #000;
  }

  span.step2::after {
    white-space: pre-wrap;
    content: "\a";
  }

  span.no-step2::after {
    white-space: unset;
    content: "\a";
  }

  /**/

  #bottom-banner-layer {
    bottom: calc(10px + 0.4vw);
  }

  #bottom-banner-layer .wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  #bottom-banner-layer .wrap p {
    padding: 0 14px;
    font-size: 0.81rem;
    line-height: 1.34rem;
    letter-spacing: -0.02rem;
  }

  #bottom-banner-layer .wrap .button-wrap {
    margin-top: 8px;
    padding-left: 14px;
  }

  #bottom-banner-layer .wrap .button-wrap button {
    margin-left: 0;
    margin-right: 8px;
    font-size: 0.81rem;
    line-height: 1.34rem;
    letter-spacing: -0.02rem;
  }
}

@media all and (max-width:540px) {
  header h2 {
    letter-spacing: -0.03rem;
  }

  footer .wrap {
    padding-bottom: calc(100px + 1vw);
  }

  footer .wrap>ul {
    flex-direction: column;
  }

  footer .wrap>ul li {
    text-align: center;
  }

  footer .wrap>ul li:not(:first-child) {
    margin-top: 14px;
  }

  section.tag-button-wrap {
    top: 44px;
  }

  section.tag-button-wrap .tag-button {
    position: relative;
    transform: rotate(-90deg);
    width: 100px;
    height: 40px;
    top: 56px;
    padding-top: 14px;
    padding-bottom: 20px;
    right: -32px;
    margin-bottom: 60px;
    cursor: pointer
  }

  section.tag-button-wrap .tag-button:hover {
    right: -28px;
  }

  span.step1::after {
    white-space: pre-wrap;
    content: "\a";
  }

  span.no-step1::after {
    white-space: unset;
    content: "\a";
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}