@charset "UTF-8";
/* Reset CSS
 * --------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: bold;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
  margin: 0;
  padding: 0;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

a {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body {
  overscroll-behavior-y: none;
}

main {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
main::after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

aside {
  position: fixed;
  padding: 200px 54px 40px;
  background-color: var(--color-flat-black);
  top: 0;
  width: 440px;
  right: 0;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  box-sizing: border-box;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
aside .menu-area {
  z-index: 9;
  background: var(--color-flat-black);
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
aside .menu-area nav {
  display: flex;
  flex-flow: column;
  gap: 50px;
}
aside .menu-area nav a {
  position: relative;
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: white;
  overflow: hidden;
}
aside .menu-area nav a::before {
  position: absolute;
  display: block;
  content: " ";
  left: 0;
  bottom: 14px;
  right: -5px;
  height: 12px;
  background-color: var(--color-primary);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
aside .menu-area nav a.active::before {
  opacity: 1;
}
@media (hover: hover) {
  aside .menu-area nav a:hover::before {
    opacity: 1;
  }
}
aside .menu-area .info-area {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-grey-300);
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-grey-300);
  opacity: 0.7;
}
aside .menu-area .copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-grey-300);
  opacity: 0.7;
}

.float-aside-btn {
  position: fixed;
  top: 46px;
  right: 46px;
  width: 46px;
  height: 46px;
  z-index: 100;
  cursor: pointer;
}
.float-aside-btn::before, .float-aside-btn::after {
  position: absolute;
  display: block;
  content: " ";
  background: white;
  transition: all 0.2s ease-in-out;
  border-radius: 1px;
}
.float-aside-btn::before {
  top: 15px;
  left: 8px;
  right: 8px;
  height: 3px;
}
.float-aside-btn::after {
  top: 28px;
  left: 8px;
  right: 8px;
  height: 3px;
}

.bg-white .float-aside-btn::before, .bg-white .float-aside-btn::after {
  background: black;
}

.show-aside .float-aside-btn::before, .show-aside .float-aside-btn::after {
  background: white !important;
}

.float-top-btn {
  position: fixed;
  bottom: 60px;
  right: 60px;
  width: 58px;
  height: 58px;
  border-radius: 29px;
  cursor: pointer;
  background: url(../img/arrow_up.svg) center no-repeat;
  overflow: hidden;
  filter: blur(0.5px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.float-top-btn::before {
  display: block;
  content: " ";
  width: 100%;
  height: 100%;
}
.float-top-btn.hide {
  opacity: 0;
}
.float-top-btn .stroke {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.float-top-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.show-aside {
  height: 100vh !important;
  overflow: hidden !important;
}
.show-aside main {
  transform: translateX(-440px);
}
.show-aside main::after {
  z-index: 9;
  opacity: 1;
}
.show-aside aside {
  transform: translateX(0);
  z-index: 90;
}
.show-aside .float-aside-btn::before {
  top: 21px;
  transform: rotate(45deg);
}
.show-aside .float-aside-btn::after {
  top: 21px;
  transform: rotate(-45deg);
}
.show-aside .contact-page {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.2s ease-in-out;
  background: black;
  box-sizing: border-box;
  padding: 200px 30px 80px;
  z-index: 100;
}
.show-aside .contact-page .items {
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
}
.show-aside .contact-page .items > li {
  margin-bottom: 15px;
  padding: 10px 15px 10px 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-indent: -25px;
  word-break: keep-all;
}
.show-aside .contact-page .items > li:first-of-type::before {
  content: "📍";
}
.show-aside .contact-page .items > li:nth-of-type(2)::before {
  content: "📞";
}
.show-aside .contact-page .items > li:nth-of-type(3)::before {
  content: "✉️";
}
.show-aside .contact-page .items > li::before {
  margin-right: 8px;
}
@media screen and (max-width: 500px) {
  .show-aside .contact-page {
    width: 100%;
    transform: none;
    height: 100vh;
    display: none;
  }
}

.show-detail .float-aside-btn {
  z-index: 10000;
}
.show-detail .float-aside-btn::before {
  top: 21px;
  transform: rotate(45deg);
}
.show-detail .float-aside-btn::after {
  top: 21px;
  transform: rotate(-45deg);
}

.show-contact main {
  transform: translateX(-920px);
}
.show-contact aside {
  transform: translateX(-480px);
}
.show-contact aside .contact-link::before {
  opacity: 1;
}

.contact-page {
  display: none;
}
.contact-page h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: white;
}
.contact-page form {
  margin-top: 53px;
  display: flex;
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
}
.contact-page form .input {
  margin-top: 20px;
  width: 100%;
  display: block;
  height: 37px;
  background: none;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--color-grey-600);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: white;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.contact-page form .input:focus {
  border-bottom: 1px solid white;
}
.contact-page form .input::-moz-placeholder {
  color: var(--color-grey-900);
}
.contact-page form .input::placeholder {
  color: var(--color-grey-900);
}
.contact-page form textarea {
  margin-top: 30px;
  border: 1px solid var(--color-grey-600);
  background: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: white;
  outline: none;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}
.contact-page form textarea:focus {
  border: 1px solid white;
}
.contact-page form textarea::-moz-placeholder {
  color: var(--color-grey-900);
}
.contact-page form textarea::placeholder {
  color: var(--color-grey-900);
}
.contact-page form button {
  margin-top: 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  height: 47px;
  color: white;
  border: 1px solid var(--color-grey-600);
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease-in-out;
  outline: none;
}
.contact-page form button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

header {
  z-index: 9;
}
header .logo {
  position: fixed;
  top: 50px;
  left: 50px;
  width: 220px;
  height: 48px;
  background: url(../img/logo_wh.svg) center no-repeat;
  background-size: contain;
  z-index: 9;
  transition: all 0.6s ease-in-out;
  opacity: 0;
}
header .logo span {
  display: none;
}

.loaded .logo {
  opacity: 1;
}

.bg-white header {
  overflow: hidden;
}
.bg-white header .logo {
  background: url(../img/logo_bk.svg) center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 500px) {
  header .logo {
    top: 20px;
    left: 20px;
  }
  header .float-aside-btn {
    top: 15px;
    right: 20px;
  }
  .float-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  aside {
    padding: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    transform: none;
    opacity: 0;
  }
  aside .menu-area {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  aside .menu-area nav {
    text-align: center;
  }
  aside .menu-area .copyright {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
  .show-aside aside {
    opacity: 1;
  }
  .show-aside main {
    transform: none;
  }
  .show-contact aside {
    transform: none;
  }
  .show-contact aside .contact-page {
    padding-top: 50px;
    display: block;
  }
}
.work-page {
  min-height: 100%;
  background-color: var(--color-flat-black);
}
.work-page .start-section {
  position: relative;
  padding-top: 56.25%;
}
.work-page .start-section .start-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  color: white;
  font-size: 56px;
  letter-spacing: -1.6px;
  line-height: 74px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.work-page .start-section .start-text p {
  margin-left: 70px;
  font-weight: 500;
}
.work-page .start-section .start-text p span {
  font-weight: 700;
}
.work-page .start-section .start-text p:nth-of-type(1) {
  margin-left: 70px;
}
.work-page .start-section .start-text p:nth-of-type(2) {
  margin-left: -70px;
}
.work-page .start-section .start-text p:nth-of-type(3) {
  margin-left: 70px;
}
.work-page .start-section .start-text2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  font-size: 56px;
  text-align: left;
  color: white;
  opacity: 0;
}
.work-page .start-section .start-text2 .title {
  font-weight: 700;
  font-size: 56px;
}
.work-page .start-section .start-text2 .subtitle {
  margin-top: 20px;
  font-size: 20px;
}
.work-page .start-section .video-area {
  position: absolute;
  left: 50%;
  top: 100vh;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 50%;
  height: 270px;
  max-height: 100%;
  border-radius: 13px 13px 0 0;
  overflow: hidden;
  opacity: 0;
}
.work-page .start-section .video-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.work-page .start-section .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-page .start-section .video-container video.mo {
  display: none;
}
.work-page .work-section {
  width: 100%;
  padding: 100px 40px;
}
.work-page .work-section #project-list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1920px;
  width: 90%;
}
.work-page .work-section #project-list li {
  position: relative;
  color: white;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.work-page .work-section #project-list li .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.work-page .work-section #project-list li .thumb::before {
  display: block;
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}
.work-page .work-section #project-list li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-page .work-section #project-list li .thumb:hover {
  transform: scale(1.02);
}
.work-page .work-section #project-list li .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
}
.work-page .work-section #project-list li .content .title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.02em;
  z-index: 1;
}
.work-page .work-section #project-list li .content .subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  z-index: 1;
  color: var(--color-grey-200);
}
@media screen and (max-width: 500px) {
  .work-page .start-section {
    padding: 0;
    height: 100vh;
  }
  .work-page .start-section .start-text,
  .work-page .start-section .start-text2 {
    font-size: 38px;
    line-height: 1.3;
  }
  .work-page .start-section .start-text {
    white-space: nowrap;
  }
  .work-page .start-section .video-container video.pc {
    display: none;
  }
  .work-page .start-section .video-container video.mo {
    display: block;
  }
  .work-page .work-section {
    padding: 50px 20px 20px;
    box-sizing: border-box;
  }
  .work-page .work-section #project-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
  }
  .work-page .work-section #project-list li .content {
    padding: 20px;
  }
  .work-page .work-section #project-list li .content .title {
    margin-top: 5px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  .work-page .work-section #project-list li .content .subtitle {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: var(--color-grey-200) !important;
  }
}

.work-detail-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  opacity: 0;
  overflow-y: scroll;
  inset: 0;
}
.work-detail-page .close-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  z-index: 9;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
}
.work-detail-page .close-btn::before, .work-detail-page .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: white;
}
.work-detail-page .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.work-detail-page .close-btn::after {
  transform: translate(-50%, -50%) rotate(135deg);
}
.work-detail-page .top-area {
  width: 100%;
}
.work-detail-page .video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .work-detail-page .video-container {
    margin: 50px auto 0;
    max-width: 80%;
  }
}
.work-detail-page .video-container > iframe,
.work-detail-page .video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: none;
  outline: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.work-detail-page > .container {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  padding: 40px 20px;
}
.work-detail-page > .container .title {
  font-size: 24px;
}
.work-detail-page > .container .more-btn {
  display: none;
}
.work-detail-page > .container .subtitle {
  margin-top: 10px;
  font-size: 20px;
  color: var(--color-grey-900);
}
.work-detail-page > .container .content {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-grey-600);
}
@media screen and (max-height: 800px) and (min-width: 501px) {
  .work-detail-page {
    overflow: hidden;
  }
  .work-detail-page > .container {
    position: fixed;
    bottom: 0;
    width: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    color: white;
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
    max-width: none;
  }
  .work-detail-page > .container > .inner-container {
    max-width: 1200px;
  }
  .work-detail-page > .container .more-btn {
    font-size: 16px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    opacity: 0.7;
    cursor: pointer;
  }
  .work-detail-page > .container .content {
    overflow: hidden;
  }
}

:root {
  --color-primary: #00a2b1;
  --color-secondary: #bce4e5;
  --color-flat-black: #000604;
  --color-grey-50: #f9f9f9;
  --color-grey-200: #e1e5e6;
  --color-grey-300: #dcddde;
  --color-grey-600: #bcbec0;
  --color-grey-900: #6d6e71;
}

html {
  font-family: "Pretendard";
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  overscroll-behavior: none;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll-lock {
  overflow: hidden !important;
}

.w-100 {
  width: 100%;
}

.hide {
  display: none;
}

.color-primary {
  color: var(--color-primary) !important;
}

.color-secondary {
  color: var(--color-secondary) !important;
}

@media screen and (min-width: 501px) {
  .mobile-only {
    display: none;
  }
}
@media screen and (min-width: 501px) {
  .title-area h3 {
    position: relative;
    padding: 40px 0;
    font-family: "Pretendard";
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
    text-align: center;
    color: var(--color-flat-black);
  }
  .title-area h3::before {
    position: absolute;
    display: block;
    content: " ";
    top: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    margin-left: -50px;
    background-color: var(--color-primary);
  }
  .title-area p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: var(--color-grey-900);
  }
}
@media screen and (max-width: 501px) {
  .title-area h3 {
    position: relative;
    padding: 30px 0;
    font-family: "Pretendard";
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    color: var(--color-flat-black);
  }
  .title-area h3::before {
    position: absolute;
    display: block;
    content: " ";
    top: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    margin-left: -50px;
    background-color: var(--color-primary);
  }
  .title-area p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: var(--color-grey-900);
  }
  h3 .color-secondary {
    display: block;
  }
}
.page {
  min-height: 100%;
  overflow: hidden;
}
.page > .container {
  margin: 0 auto;
  padding: 180px 20px;
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  .page > .container {
    padding: 50px 20px;
  }
}

.about-page {
  background: black;
  padding: 0;
  color: white;
}
.about-page .container {
  padding: 0 20px;
}
.about-page .section {
  margin-bottom: 150px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .about-page .section {
    margin-bottom: 100px;
  }
}
.about-page .section1 {
  height: 100vh;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.about-page .subtitle {
  margin-bottom: 50px;
  font-size: 30px;
  line-height: 1.3;
  color: white;
}
.about-page .desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: var(--color-grey-900);
  word-break: keep-all;
}
@media screen and (max-width: 700px) {
  .about-page .desc {
    font-size: 16px;
    line-height: 1.6;
  }
}
.about-page .line {
  margin-top: 200px;
  margin-bottom: 100px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .about-page .line {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}
.about-page .line span {
  position: relative;
  padding: 0 40px;
  background-color: black;
  z-index: 9;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.about-page .line::before {
  position: absolute;
  display: block;
  content: " ";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  margin-top: -1px;
  background: var(--color-secondary);
}
.about-page .partner-list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1200px;
  align-items: center;
  gap: 60px;
  justify-content: center;
  list-style: none;
}
.about-page .partner-list > li {
  position: relative;
  height: 200px;
}
.about-page .partner-list > li .img-wrap {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .partner-list > li .img-wrap img {
  width: 100%;
  filter: grayscale(1);
  opacity: 0.7;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-page .partner-list > li p {
  margin-top: 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  opacity: 0.7;
  line-height: 1.6;
}
.about-page ul.client-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 60px;
}
.about-page ul.client-list li {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page ul.client-list li img {
  width: 100%;
  min-width: 100px;
  max-height: 100%;
  max-width: 150px;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}
.about-page ul.client-list li img[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 0.8;
}
.about-page ul.client-list li img.invert {
  filter: grayscale(1) invert(1);
}
@media screen and (max-width: 500px) {
  .about-page .subtitle {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .about-page .desc {
    margin-top: 20px;
  }
  .about-page .partner-list {
    margin: 0 auto;
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex-flow: column;
  }
  .about-page .partner-list li {
    height: 140px;
  }
  .about-page .partner-list li .img-wrap {
    height: 80px;
  }
  .about-page .partner-list li p {
    margin-top: 20px !important;
    font-size: 13px;
  }
  .about-page ul.client-list {
    margin: 0 auto;
    width: 80%;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.news-page {
  background-color: var(--color-grey-50);
  padding: 50px 0;
}
.news-page .news-list {
  border-top: 1px solid var(--color-grey-900);
  margin-top: 150px;
  display: flex;
  flex-flow: column;
  width: 100%;
}
.news-page .news-list > li {
  padding: 20px;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.news-page .news-list > li a {
  display: flex;
  flex-flow: row;
  color: var(--color-flat-black);
}
.news-page .news-list > li a .img-wrap {
  position: relative;
  min-width: 300px;
  height: 200px;
  background: #ccc;
  overflow: hidden;
}
.news-page .news-list > li a .img-wrap > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-page .news-list > li a > div {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.news-page .news-list > li a .title {
  padding-left: 40px;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.news-page .news-list > li a .content {
  color: var(--color-grey-900);
  padding-left: 40px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.6;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
@media screen and (max-width: 500px) {
  .news-page .news-list {
    margin-top: 50px;
  }
  .news-page .news-list li {
    padding: 20px 0;
  }
  .news-page .news-list li a {
    flex-flow: column;
  }
  .news-page .news-list li a .title {
    margin-top: 10px;
    padding: 0;
  }
  .news-page .news-list li a .content {
    margin-top: 10px;
    padding: 0;
    -webkit-line-clamp: 2;
    font-size: 15px;
    line-height: 1.4;
  }
}

.recruit-page {
  background-color: var(--color-grey-50);
  padding: 50px 0;
}
.recruit-page .main-img {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .recruit-page .main-img img {
    width: 200%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.recruit-page ul.links {
  margin-top: 60px;
  display: flex;
  flex-flow: column;
  gap: 30px;
}
@media screen and (max-width: 500px) {
  .recruit-page ul.links {
    margin-top: 0;
  }
}
.recruit-page ul.links > li {
  border: 1px solid var(--color-grey-200);
  transition: background-color 0.3s ease-in-out;
  background: white;
}
@media (hover: hover) {
  .recruit-page ul.links > li:hover .title span::before {
    opacity: 1;
  }
}
.recruit-page ul.links > li a {
  display: block;
  padding: 30px 40px;
}
.recruit-page ul.links > li .title {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: var(--color-flat-black);
}
.recruit-page ul.links > li .title span {
  position: relative;
  z-index: 9;
}
.recruit-page ul.links > li .title span::before {
  position: absolute;
  display: block;
  content: " ";
  left: 0;
  bottom: 14px;
  right: -5px;
  height: 12px;
  background-color: var(--color-secondary);
  transition: all 0.3s ease-in-out;
  z-index: -1;
  opacity: 0;
}
.recruit-page ul.links > li ul.infos {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.recruit-page ul.links > li ul.infos > li {
  display: flex;
  flex-flow: column;
  gap: 6px;
  font-weight: 400;
}
.recruit-page ul.links > li ul.infos > li span:first-of-type {
  font-size: 14px;
  color: var(--color-grey-900);
}
.recruit-page ul.links > li ul.infos > li span:last-of-type {
  font-size: 16px;
  color: var(--color-flat-black);
}
@media screen and (max-width: 500px) {
  .recruit-page ul.links > li ul.infos {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gray-img {
  filter: grayscale(1) !important;
}

.gray-invert-img {
  filter: grayscale(1) invert(1) !important;
}/*# sourceMappingURL=main.css.map */