body, ul, li, a, figure, button, h1, h2, h3, h4, p, span, button, hr {
  margin: 0;
  line-height: 1;
  padding: 0;
  text-decoration: none;
  color: black;
  list-style: none;
  border: none;
  background-color: transparent;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
* {
  font-family: 'Noto Sans', 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  word-break: keep-all;
}
body {
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 340px;
}
.visuallyhidden {
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  position: absolute;
  top: 50%;
  overflow: hidden;
}
:root {
  --hd-height: 100px;
  --ft-height: 120px;
  --max-width: 1280px;
  --copy-color: 64,64,64;
  --main-color1: 50,37,92;
  --main-color2: 0,143,159;
  --main-color3: 0,211,211;
  --main-color4: 65,64,153;
  --main-color5: 139,139,216;
}
header {
  position: relative;
  width: 100%;
  height: var(--hd-height);
}
.hd-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hd-height);
  background-color: white;
  z-index: 90;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.hd-globalnav {
  margin: 0 auto;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hd-height);
  max-width: var(--max-width);
  box-sizing: border-box;
  z-index: 99;
}
.hd-globalnav[aria-selected="true"] * {
  color: white;
}
.hd-globalnav[aria-selected="true"] .hd-gn-logo-img {
  background-image: url(../Images/GTSci-Logo2.png);
}
.hd-gn-container {
  height: inherit;
  margin: 0 -10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.hd-gn-logo {
  width: 250px;
  height: 55px;
}
.hd-gn-logo-img {
  height: inherit;
  background-image: url(../Images/GTSci-Logo1.png);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  background-origin: content-box;
}
.hd-gn-menu-wrapper,
.hd-gn-menu-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.hd-gn-menu-wrapper {
  gap: 30px;
}
.hd-gn-menu-list {
  position: relative;
}
.hd-gn-link {
  padding: 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(var(--copy-color),1);
  cursor: pointer;
}
.hd-gn-link:hover {
  color: rgba(var(--main-color3),1);
}
.hd-gn-menu-list > div.active {
  color: rgba(var(--main-color1),1);
  transition: 0.3s ease;
}
.hd-gn-menu-list > div:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: rgba(var(--main-color3),0);
}
.hd-gn-menu-list > div.active:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  height: 2px;
  background-color: rgba(var(--main-color3),0.8);
  transition: 0.3s ease;
}
.hd-gn-language {
  display: inherit;
  padding: 0 10px;
  gap: 20px;
}
.hd-gn-language > div,
.hd-gn-mobile-language > div {
  position: relative;
}
.hd-gn-language > div:first-child > a::after,
.hd-gn-mobile-language > div:first-child > a::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -10.5px;
  width: 1px;
  height: 16px;
  background-color: #6e6e73;
}
.hd-gn-mobile-language > div:first-child > a::after {
  height: 13px;
}
.hd-gn-lang-link {
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  color: #1d1d1f;
}
.hd-gn-lang-link[aria-selected="true"] {
  color: #6e6e73;
  opacity: 0.6;
  cursor: auto;
}
.hd-gn-mobile-menu  {
  display: none;
}
.hd-gn-container {
  position: relative;
}
.hd-globalnav[aria-selected="true"] .menu-bar,
.hd-globalnav[aria-selected="true"] .menu-bar::before,
.hd-globalnav[aria-selected="true"] .menu-bar::after {
  background-color: white;
}
.hd-gn-mobile-menu-button {
  position: relative;
  padding: 10px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.menu-bar1,
.menu-bar2,
.menu-bar3 {
  margin: 5px 0;
  width: 30px;
  height: 5px;
  border-radius: 5px;
  background-color: #6e6e73;
}
.menu-bar2 {
  transition: 0.3s ease;
}
.menu-bar1,
.menu-bar3 {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 5px;
  border-radius: 5px;
  transition: 0.3s ease;
}
.menu-bar1 {
  top: 0px;
}
.menu-bar3 {
  top: 20px;
}
.change-button .menu-bar1,
.change-button .menu-bar3 {
  position: absolute;
  top: calc(50% - 5px);
  left: 50%;
  transition: 0.3s ease;
}
.change-button .menu-bar2 {
  opacity: 0;
  transition: 0.3s ease;
}
.change-button .menu-bar1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.change-button .menu-bar3 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hd-gn-mobile-menu-container {
  display: none;
}
.hd-gn-mobile-menu-wrapper {
  padding: 10px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1d1d1f;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.hd-gn-mobile-menu-wrapper > a::after {
  content: "";
  margin: 31.5px 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  height: 1px;
  background-color: #d5d5d5;
}
.hd-gn-mobile-menu-container {
  opacity: 0.9;
}
.hd-gn-mobile-menu-wrapper > * {
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
}
.hd-gn-mobile-menu-wrapper > a:hover {
  color: rgba(var(--main-color3),1);
}
.hd-gn-mobile-language {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.hd-gn-mobile-language a {
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: white;
}
.tabcontent {
  display: none;
}
.show {
  display: block;
}
footer {
  position: relative;
  width: 100%;
  height: var(--ft-height);
  background: linear-gradient(330deg, rgba(0,186,189,1), rgba(4,162,171,1), rgba(0,162,171,1), rgba(0,186,189,1));
}
.ft-container {
  padding: 0 20px;
  width: 100%;
  max-width: var(--max-width);
  height: var(--ft-height);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 99;
}
.ft-wrapper {
  height: 100%;
}
.ft-information {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.ft-information > * {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: white;
  line-height: 1.5;
}
.ft-information > *:first-child {
  font-size: 18px;
}
.ft-information > *:last-child {
  font-size: 14px;
}
main {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  overflow: hidden;
}
section.front-landing * {
  color: white;
  background-color: transparent;
  box-shadow: none;
}
.front-landing {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white !important;
  z-index: 98;
}
.front-landing-image {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../Images/ASImage1.jpeg);
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.front-landing-container {
  margin: 0 auto;
  padding: var(--hd-height) 0 var(--ft-height);
  width: 100%;
  height: calc(100% - (var(--hd-height) + var(--ft-height)));
  max-width: var(--max-width);
}
.front-landing-content-wrapper {
  position: relative;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.front-landing-content {
  position: relative;
  padding: 150px 30px;
  line-height: 2;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 3px 6px 12px rgba(0,0,0,0.3);
  z-index: 99;
}
.front-landing-content-logo {
  width: 100%;
  height: 120px;
  background-image: url(../Images/GTSci-Symbol-white.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
.front-landing-content > h1 {
  padding-top: 50px;
  font-size: 44px;
  font-weight: 700;
}
.front-landing-content > h1 > br {
  display: none;
}
.front-landing-content > h2 {
  padding-top: 30px;
  font-size: 28px;
  font-weight: 500;
}
.content-top-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
}
.corp-introduction-image,
.biz-introduction-image,
.brand-image,
.contact-image {
  position: absolute;
  top: auto;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translatex(-50%);
  width: 2560px;
  background-size: 2560px auto;
  background-repeat: no-repeat;
  z-index: -1;
}
.corp-introduction-image {
  height: 400px;
}
.biz-introduction-image {
  height: 500px;
}
.brand-image {
  height: 320px;
}
.contact-image {
  height: 400px;
}
.corp-introduction-image { background-image: url(../Images/ASImage2.jpeg); }
.biz-introduction-image { background-image: url(../Images/ASImage3.jpeg); }
.brand-image { background-image: url(../Images/ASImage4.jpeg); }
.contact-image { background-image: url(../Images/ASImage5.jpeg); }
.content-top-copy {
  width: 100%;
  color: white;
  font-size: 30px;
  font-weight: 500;
  line-height: 2;
  z-index: 9;
}
.content-top-copy-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.content-top-copy-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: right;
}
.corp-introduction,
.biz-introduction,
.brand-introduction,
.contact {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: var(--max-width);
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 70;
}
.corp-introduction-container,
.biz-introduction-container,
.brand-introduction-container,
.contact-container {
  margin: 0 -10px;
}
.corp-introduction-wrapper,
.biz-introduction-wrapper,
.brand-introduction-wrapper,
.contact-wrapper {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.corp-introduction-wrapper > div,
.biz-introduction-wrapper > div,
.brand-introduction-wrapper > div,
.contact-wrapper > div {
  padding: 50px 10px;
  width: 100%;
  box-sizing: border-box;
}
.corp-introduction-wrapper h1,
.biz-introduction-wrapper h1,
.brand-introduction-wrapper h1,
.contact-wrapper h1 {
  font-size: 36px;
  font-weight: 700;
  color: rgba(var(--main-color1),1);
}
.corp-history-wrapper,
.biz-service {
  position: relative;
}
.content-bg-color {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: calc(100% - 100px);
  background-image: linear-gradient(0deg, rgba(79,207,210,1) 0%, rgba(0,186,189,1) 50%,rgba(4,162,171,1) 100%);
  z-index: -1;
}
.corp-overview-content {
  margin: 0 auto;
  max-width: 1000px;
  padding: 30px 60px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.corp-overview-content * {
  text-align: center;
}
.corp-overview-copy1 {
  padding-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  color: rgba(var(--main-color4),1);
}
.corp-overview-copy1 > br {
  display: none;
}
.corp-overview-copy2 {
  font-size: 22px;
  font-weight: 500;
  color: rgba(var(--main-color2),1);
}
.corp-overview-copy3 {
  font-size: 22px;
  line-height: 1.5;
}
.hr-line {
  position: relative;
  text-align: center;
  margin: 20px 0;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  color: rgba(var(--main-color4),1);
}
.hr-line::before,
.hr-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 60px);
  height: 1px;
  background-color: rgba(var(--main-color2),1);
}
.hr-line::before {
  left: 0;
}
.hr-line::after {
  right: 0;
}
.gtsci-symbol {
  width: 100%;
  height: 80px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../Images/GTSci-Symbol.png);
}
.corp-overview-vision,
.corp-overview-value {
  width: 100%;
}
.corp-overview-vision-content,
.corp-overview-value-copy {
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.corp-overview-vision-content {
  gap: 50px;
  text-wrap: nowrap;
}
.corp-overview-vision-content > .gtsci-symbol:first-child {
  background-position: center right;
}
.corp-overview-vision-content > .gtsci-symbol:last-child {
  background-position: center left;
}
.corp-overview-vision-content-copy > h3 {
  padding: 0 0 20px;
  font-size: 24px;
  font-weight: 500;
  color: rgba(var(--main-color2),1);
}
.corp-overview-vision-content-copy > h2 {
  font-size: 32px;
  font-weight: 700;
  color: rgba(var(--main-color1),1);
}
.corp-overview-value-circle {
  position: relative;
  flex: 1;
  border-radius: 50%;
  aspect-ratio: 1;
  z-index: -1;
}
.corp-overview-value-circle:nth-child(2n-1) {
  background: conic-gradient(from 50deg, rgba(var(--main-color2),1), rgba(var(--main-color2),1) 180deg, rgba(var(--main-color3),1) 180deg, rgba(var(--main-color3),1));
}
.corp-overview-value-circle:nth-child(2n) {
  background: conic-gradient(from 50deg, rgba(var(--main-color4),1), rgba(var(--main-color4),1) 180deg, rgba(var(--main-color5),1) 180deg, rgba(var(--main-color5),1));
}
.corp-overview-value-circle > h4 {
  width: 86%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  aspect-ratio: 1;
  border-radius: 50%;
}
.corp-overview-value-circle:last-child > h4 > br:last-child {
  display: none;
}
.corp-message-wrapper {
  padding-top: 50px;
}
.corp-message {
  margin: 0 auto;
  max-width: 1000px;
  padding: 30px 60px 0;
}
.corp-message > p {
  padding-top: 10px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
.corp-message > p:first-child {
  padding-top: 0;
}
.corp-message > p:last-child {
  padding-top: 30px;
  font-weight: 500;
  text-align: center;
}
.corp-history-wrapper * {
  color: white;
}
.corp-history-title {
  padding: 70px 0 0;
}
.corp-history-title > h1 {
  color: white;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.corp-history-content {
  padding: 30px 60px 70px;
}
.corp-history-content > h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: white;
}
.corp-history-figure-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  height: calc((100vw - 160px) / 1.629);
  max-height: calc(1000px / 1.6298);
}
.corp-history-figure1 {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(../Images/GTSci-History.png);
}
.corp-organization {
  padding-top: 30px;
}
.corp-organization-content {
  padding: 30px 60px 0;
  margin: 0 auto;
  max-width: 1000px;
  height: calc((100vw - 160px) / 1.5117);
  max-height: calc(1000px / 1.5117);
}
.corp-organization-figure1 {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(../Images/GTSci-Organization.png);
}
.biz-area-content {
  margin: 0 auto;
  padding-top: 30px;
  max-width: 1000px;
}
.biz-area-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.biz-area-list {
  margin: 5px;
  position: relative;
  flex-basis: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  background-color: rgba(218,242,242);
}
.biz-area-list:nth-child(1) { border-radius: 50px 0 0 0; }
.biz-area-list:nth-child(2) { border-radius: 0 50px 0 0; }
.biz-area-list:nth-child(3) { border-radius: 0 0 0 50px; }
.biz-area-list:nth-child(4) { border-radius: 0 0 50px 0; }
.biz-area-list > figure {
  position: absolute;
  z-index: 1;
  width: 13vw;
  max-width: 120px;
  height: 120px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
}
.biz-area-list-figure1 {
  top: 10%;
  left: 70%;
  background-image: url(../Images/BusinessArea-icon1.png);
}
.biz-area-list-figure2 {
  top: 10%;
  right: 70%;
  background-image: url(../Images/BusinessArea-icon2.png);
}
.biz-area-list-figure3 {
  bottom: 10%;
  left: 70%;
  background-image: url(../Images/BusinessArea-icon3.png);
}
.biz-area-list-figure4 {
  bottom: 10%;
  right: 70%;
  background-image: url(../Images/BusinessArea-icon4.png);
}
.biz-area-list-copy {
  padding: 30px;
}
.biz-area-list-copy > h2 {
  padding-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
  color: rgba(var(--main-color1),1);
}
.biz-area-list-copy > h3 {
  padding-bottom: 22px;
  font-size: 24px;
  font-weight: 600;
  color: rgba(var(--main-color2),1);
}
.biz-area-list-copy > p {
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
  padding-left: 10px;
  text-indent: -10px;
}
.biz-area-list-copy > p:last-of-type {
  padding-bottom: 0;
}
.biz-area-list:nth-child(2),
.biz-area-list:nth-child(4) {
  text-align: right;
}
.biz-area-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  background-color: white;
  z-index: 2;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.biz-area-logo-figure {
  width: 100%;
  height: 75px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../Images/GTSci-Symbol.png);
}
.biz-area-logo-copy > h2 {
  padding-top: 5px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(var(--main-color1),1);
  text-align: center;
}
.biz-area-logo-copy > h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(var(--main-color2),1);
  text-align: center;
}
.biz-service-title {
  padding-top: 70px;
  text-align: center;
}
.biz-service-title > h1 {
  font-size: 36px;
  color: white;
}
.biz-service-content {
  margin: 0 auto;
  padding: 30px 0 70px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: stretch;
  max-width: 980px;
  gap: 20px;
}
.biz-service-list-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.biz-service-list-wrapper > figure {
  width: 15vw;
  max-width: 130px;
  aspect-ratio: 1;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.biz-service-list-figure1 { background-image: url(../Images/Services-icon1.png); }
.biz-service-list-figure2 { background-image: url(../Images/Services-icon2.png); }
.biz-service-list-figure3 { background-image: url(../Images/Services-icon3.png); }
.biz-service-list-copy {
  flex: 1;
  width: 100%;
  padding: 25px;
  background-color: white;
  text-align: center;
  border-radius: 20px;
  box-sizing: border-box;
}
.biz-service-list-copy > h3 {
  padding-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(var(--main-color1),1);
  border-bottom: 1px solid rgba(var(--main-color2),1);;
}
.biz-service-list-copy > p {
  padding-top: 15px;
  font-size: 20px;
  line-height: 1.5;
}
.biz-client-wrapper {
  padding: 30px 60px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.biz-client-copy > h2 {
  padding-bottom: 15px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
.biz-client-content {
  width: 100%;
}
.biz-client-list-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.biz-client-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.biz-client-list-figure {
  width: 11vw;
  max-width: 100px;
  height: 90px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.biz-client-list-figure1 { background-image: url(../Images/Clients-icon1.png); }
.biz-client-list-figure2 { background-image: url(../Images/Clients-icon2.png); }
.biz-client-list-figure3 { background-image: url(../Images/Clients-icon3.png); }
.biz-client-list h3,
.biz-client-list h3 > p {
  font-weight: 700;
  color: rgba(var(--main-color1),1);
}
.biz-client-list h3 {
  padding-bottom: 20px;
  font-size: 30px;
}
.biz-client-list h3 > p {
  font-size: 40px;
}
.biz-client-list h4,
.biz-client-list h4 > p {
  font-size: 20px;
  line-height: 1.7;
}
.brand-partner-content {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: stretch;
}
.brand-partner-agency1-list,
.brand-partner-agency2-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
}
.brand-partner-agency1-figure,
.brand-partner-agency2-figure {
  width: 100%;
  height: 50px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  flex-basis: calc(100% / 5);
}
.brand-partner-agency2-figure {
  flex-basis: calc(100% / 6);
}
.brand-partner-agency1-figure1 { background-image: url(../Images/BrandLogo-1_01.png); }
.brand-partner-agency1-figure2 { background-image: url(../Images/BrandLogo-1_02.png); }
.brand-partner-agency1-figure3 { background-image: url(../Images/BrandLogo-1_03.png); }
.brand-partner-agency1-figure4 { background-image: url(../Images/BrandLogo-1_04.png); }
.brand-partner-agency1-figure5 { background-image: url(../Images/BrandLogo-1_05.png); }
.brand-partner-agency1-figure6 { background-image: url(../Images/BrandLogo-1_06.png); }
.brand-partner-agency1-figure7 { background-image: url(../Images/BrandLogo-1_07.png); }
.brand-partner-agency1-figure8 { background-image: url(../Images/BrandLogo-1_08.png); }
.brand-partner-agency2-figure1 { background-image: url(../Images/BrandLogo-2_01.png); }
.brand-partner-agency2-figure2 { background-image: url(../Images/BrandLogo-2_02.png); }
.brand-partner-agency2-figure3 { background-image: url(../Images/BrandLogo-2_03.png); }
.brand-partner-agency2-figure4 { background-image: url(../Images/BrandLogo-2_04.png); }
.brand-partner-agency2-figure5 { background-image: url(../Images/BrandLogo-2_05.png); }
.brand-partner-agency2-figure6 { background-image: url(../Images/BrandLogo-2_06.png); }
.brand-partner-agency2-figure7 { background-image: url(../Images/BrandLogo-2_07.png); }
.brand-partner-agency2-figure8 { background-image: url(../Images/BrandLogo-2_08.png); }
.brand-partner-agency2-figure9 { background-image: url(../Images/BrandLogo-2_09.png); }
.brand-partner-agency2-figure10 { background-image: url(../Images/BrandLogo-2_10.png); }
.brand-partner-agency2-figure11 { background-image: url(../Images/BrandLogo-2_11.png); }
.brand-partner-agency2-figure12 { background-image: url(../Images/BrandLogo-2_12.png); }
.brand-partner-agency2-figure13 { background-image: url(../Images/BrandLogo-2_13.png); }
.brand-partner-agency1-figure:last-child {
  display: none;
}
.brand-bionexa-title-wrapper {
  padding: 20px 0 0;
}
.brand-bionexa-hr-line {
  position: relative;
  text-align: center;
  margin: 20px auto;
  max-width: 900px;
  font-size: 22px;
  font-weight: 500;
  color: rgba(var(--main-color4),1);
}
.brand-bionexa-hr-line::before,
.brand-bionexa-hr-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 100px);
  height: 1.5px;
  background-color: rgba(var(--main-color2),1);
}
.brand-bionexa-hr-line::before {
  left: 0;
}
.brand-bionexa-hr-line::after {
  right: 0;
}
.brand-bionexa-title {
  margin: 0 auto;
  padding: 10px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 70px;
  max-width: 900px;
}
.brand-bionexa-title-figure {
  width: 30%;
  height: 90px;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}
.brand-bionexa-title-figure { background-image: url(../Images/BioNexaLogo.png); }
.brand-bionexa-title-copy > div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
.brand-bionexa-title-copy > div > p {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.brand-bionexa-title-copy > div > p > span {
  font-size: 20px;
}
.brand-bionexa-intro-wrapper {
  position: relative;
  padding: 50px 0;
  width: 100%;
  max-width: var(--max-width);
}
.content-bg-color2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: calc(100% - 100px);
  background-color: rgba(218,242,242);
  z-index: -1;
}
.brand-bionexa-intro1 {
  padding: 50px 0 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 45px;
}
.brand-bionexa-intro1-figure {
  width: 30%;
  height: 220px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.brand-bionexa-intro1-figure { background-image: url(../Images/ASImage6.jpeg); }
.brand-bionexa-intro1-copy > p {
  display: flex;
  border-bottom: 1.5px solid rgba(var(--main-color2),1);
}
.brand-bionexa-intro1-copy > p > span {
  padding: 3px 12px ;
  font-size: 22px;
  color: white;
  letter-spacing: 3px;
  background-color: rgba(var(--main-color2),1);
}
.brand-bionexa-intro1-copy > h3 {
  padding: 30px 0 20px;
  font-size: 30px;
  font-weight: 500;
  color: rgba(var(--main-color2),1);
}
.brand-bionexa-intro1-copy > h4 {
  font-size: 24px;
  line-height: 1.5;
  ;
}
.brand-bionexa-intro1-copy > h4 > span { 
  font-size: 26px;
  font-weight: 500;
}
.brand-bionexa-intro2 {
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 0 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}
.brand-bionexa-intro2-list {
  position: relative;
  flex: 1;
  padding: 25px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}
.brand-bionexa-intro2-list-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(90deg, rgba(93,197,203) 0%, rgba(5,184,187) 50%,rgba(6,162,170) 100%);
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  border-radius: 50%;
  width: 36px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  color: white;
  text-align: center;
}
.brand-bionexa-intro2-list > p {
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
.brand-bionexa-product-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin: 0 auto;
  max-width: 1240px;
}
.brand-bionexa-product {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.brand-bionexa-product-wrapper-item56 {
  gap: 50px;
}
.brand-bionexa-product-item7,
.brand-bionexa-product-item8 {
  flex-basis: 100%;
}
.brand-bionexa-product-item5,
.brand-bionexa-product-item6 {
  width: 100%;
}
.brand-bionexa-product-item2,
.brand-bionexa-product-item3,
.brand-bionexa-product-item4,
.brand-bionexa-product-wrapper-item56 {
  flex-basis: calc(50% - 25px);
}
.brand-bionexa-product table * {
  line-height: 1.5;
}
.brand-bionexa-product > h2 {
  font-size: 26px;
  font-weight: 700;
  color: rgba(var(--main-color1),1);
}
.brand-bionexa-product p {
  padding-left: 15px;
  line-height: 1.5;
}
.brand-bionexa-product-item3 p,
.brand-bionexa-product-item4 p {
  margin-top: -7px;
  font-size: 14px;
}
.brand-bionexa-product-item7 p,
.brand-bionexa-product-item8 p {
  font-size: 20px;
}
.brand-bionexa-product-item8-copy {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.brand-bionexa-product-item-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.brand-bionexa-product-item-wrapper > table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.brand-bionexa-product-item-wrapper > table th:first-child {
  padding: 4px 15px;
  border-right: 1px solid black;
}
.brand-bionexa-product-item-wrapper > table th, td {
  padding: 4px 0 4px 15px;
  font-size: 18px;
  border-bottom: 1px solid black;
}
.brand-bionexa-product-table2 .table-item-name > span,
.brand-bionexa-product-table1 .table-item-name > span {
  font-size: 12px;
  font-weight: 500;
}
.brand-bionexa-product-item-wrapper > table th:last-child, td:last-child {
  padding-right: 15px;
}
.brand-bionexa-product-item-wrapper > table th {
  font-size: 20px;
  font-weight: 500;
  color: white;
  border-top: 1px solid black;
}
.table-item-name {
  font-weight: 500;
  text-align: left;
  border-right: 1px solid black;
}
.brand-bionexa-product-table1 > thead,
.brand-bionexa-product-table8 > thead {
  background-color: rgba(10,163,170);
}
.brand-bionexa-product-table1 .table-item-name,
.brand-bionexa-product-table8 .table-item-name {
  background-color: rgba(218,242,242);
}
.brand-bionexa-product-table2 > thead { background-color: rgba(243,129,131); }
.brand-bionexa-product-table2 .table-item-name { background-color: rgba(253,235,236); }
.brand-bionexa-product-table3 > thead { background-color: rgba(115,190,68); }
.brand-bionexa-product-table3 .table-item-name { background-color: rgba(241,247,230); }
.brand-bionexa-product-table4 > thead { background-color: rgba(248,158,77); }
.brand-bionexa-product-table4 .table-item-name { background-color: rgba(255,240,227); }
.brand-bionexa-product-table5 > thead { background-color: rgba(139,137,194); }
.brand-bionexa-product-table5 .table-item-name { background-color: rgba(232,231,243); }
.brand-bionexa-product-table6 > thead { background-color: rgba(41,172,227); }
.brand-bionexa-product-table6 .table-item-name { background-color: rgba(199,233,248); }
.brand-bionexa-product-table7 > thead { background-color: rgba(74,107,178); }
.brand-bionexa-product-table7 .table-item-name { background-color: rgba(220,232,246); }
.brand-bionexa-product-item7 .brand-bionexa-product-table7,
.brand-bionexa-product-item8 .brand-bionexa-product-table8 {
  width: 70%;
}
.brand-bionexa-product-table1 .table-item-name {
  width: 50%;
}
.brand-bionexa-product-table1 th:nth-last-child(2), td:nth-last-child(2) {
  width: 20%;
}
.brand-bionexa-product-table1 th:last-child, td:last-child {
  width: 30%;
}
.brand-bionexa-product-table2 .table-item-name,
.brand-bionexa-product-table4 .table-item-name {
  width: 58%;
}
.brand-bionexa-product-table2 td:nth-last-child(2),
.brand-bionexa-product-table4 td:nth-last-child(2) {
  width: 16%;
}
.brand-bionexa-product-table2 td:last-child,
.brand-bionexa-product-table4 td:last-child {
  width: 26%;
}
.brand-bionexa-product-table3 .table-item-name,
.brand-bionexa-product-table5 .table-item-name,
.brand-bionexa-product-table6 .table-item-name {
  width: 45%;
}
.brand-bionexa-product-table7 .table-item-name {
  width: 40%;
}
.brand-bionexa-product-table7 td:nth-child(2) {
  width: 22%;
}
.brand-bionexa-product-table7 td:nth-child(n+3) {
  width: 19%;
}
.brand-bionexa-product-table8 td:nth-child(2) > br:not(:first-child) {
  display: none;
}
.brand-bionexa-product-table8 tr:last-child > td:nth-child(2) > br:nth-child(2) {
  display: unset;
}
.brand-bionexa-product-table8 td:nth-child(1) {
  width: 24%;
}
.brand-bionexa-product-table8 td:nth-child(2) {
  width: 24%;
}
.brand-bionexa-product-table8 td:nth-child(n+3) {
  width: 13%;
}
.brand-bionexa-product-table7 > tbody > tr > td > br {
  display: none;
}
.brand-bionexa-product-table8 > tbody > tr > td:first-child > span {
  font-size: 16px;
}
.brand-bionexa-product-table8 > tbody > tr > td:nth-child(2) > span {
  font-size: 18px;
}
.brand-bionexa-product-table8 > tbody > tr > td:nth-child(2) > span:nth-of-type(1),
.brand-bionexa-product-table8 > tbody > tr:nth-child(4) > td:nth-child(2) > span:nth-of-type(2) {
  color: rgba(60,126,60);
}
.brand-bionexa-product-table8 > tbody > tr > td:nth-child(2) > span:nth-of-type(2),
.brand-bionexa-product-table8 > tbody > tr:nth-child(4) > td:nth-child(2) > span:nth-of-type(3) {
  color: rgba(212,57,40);
}
.brand-bionexa-product-table8 > tbody > tr:nth-child(4) > td:nth-child(2) > span:nth-of-type(1) {
  color: rgba(77,171,224);
}
.brand-bionexa-product-table1 > tbody tr:nth-child(odd),
.brand-bionexa-product-table2 > tbody tr:nth-child(odd),
.brand-bionexa-product-table3 > tbody tr:nth-child(odd) {
  background-color: rgba(241,241,242);
}
.table-item-border {
  border-bottom: 1px dashed black;
}
.brand-bionexa-product-item-wrapper > figure {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 29%;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.brand-bionexa-product-item7-figure1 {
  bottom: 110% !important;
  right: 30% !important;
  height: 240px;
  background-image: url(../Images/BioNexa-DNALadder1.png);
}
.brand-bionexa-product-item7-figure2 {
  aspect-ratio: 1.04;
  background-image: url(../Images/BioNexa-DNALadder2.png);
}
.brand-bionexa-product-item8-figure1 {
  aspect-ratio: 1.28;
  background-image: url(../Images/BioNexa-ProteinMarker.png);
}
.contact-title {
  padding-bottom: 0 !important;
}
.contact-location-map-wrapper {
  padding: 30px 10px !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
.contact-location {
  padding: 0 20px;
  width: calc(100vw - 40px);
  max-width: 900px;
  height: calc((100vw - 40px) / 1.7282);
  max-height: 500px;
}
.contact-location-image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
.contact-location-image.kor { background-image: url(../Images/GTSci-Map-Kor.png); }
.contact-location-address-wrapper {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  box-sizing: border-box;
}
.contact-location-address-wrapper > h2 {
  width: 100%;
  max-width: 900px;
  padding: 10px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  border-top: 3px solid rgba(var(--main-color2),1);
  border-bottom: 3px solid rgba(var(--main-color2),1);
}
.contact-location-address {
  position: relative;
}
.contact-location-address li:first-child {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.contact-location-address li:nth-child(2),
.contact-location-address li:nth-child(2) > a {
  font-size: 20px;
  line-height: 1.5;
}
.contact-location-address ul {
  padding: 15px 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
  border-bottom: 1px solid rgba(var(--main-color2),1);
}
.contact-location-address li:first-child {
  min-width: 100px;
}
@media only screen and (max-width: 1093px) {
  .corp-overview-copy3,
  .corp-message > p {
    text-align: left;
  }
  .corp-overview-copy3 > br,
  .corp-message > p > br {
    display: none;
  }
  .corp-overview-value-circle > h4 {
    font-size: 22px;    
  }
  .corp-message > p:last-child {
    padding-right: 10px;
    text-align: right;
  }
  .corp-history-figure-wrapper,
  .corp-organization-content {
    max-width: 900px;
  }
  .corp-history-title,
  .biz-service-title {
    padding: 50px 0 0;
  }
  .corp-history-content {
    padding: 30px 20px 50px;
  }
  .corp-history-figure-wrapper {
    max-height: calc(900px / 1.6298);
  }
  .corp-organization-content {
    padding: 30px 20px 0;
  }
  .corp-organization-content {
    max-height: calc(900px / 1.5117);
  }
}
@media only screen and (max-width: 1040px) {
  .biz-client-copy > h2 {
    text-align: left;
  }
  .biz-client-copy > h2 > br {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  header *  {
    transition: 0.3s ease;
  }
  .hd-gn-link:hover {
    transition: unset;
  }
}
@media only screen and (max-width: 1007px) {
  .corp-overview-value-circle > h4 {
    font-size: 20px;
  }
  .corp-history-figure-wrapper,
  .corp-organization-content {
    max-width: 900px;
  }
  .corp-history-figure-wrapper {
    max-height: calc(900px / 1.6298);
  }
  .corp-organization-content {
    max-height: calc(900px / 1.5117);
  }
  .biz-area-content {
    padding: 30px 60px 0;
  }
  .biz-area-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
  }
  .biz-area-list {
    margin: unset;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-radius: 30px !important;
    text-align: left !important;
  }
  .biz-area-list-copy {
    flex: 1;
    padding: 25px 0 25px 25px;
  }
  .biz-area-list-copy br {
    display: none;
  }
  .biz-area-list:first-child p:last-child > br:first-child {
    display: unset;
  }
  .biz-area-list-copy > h2,
  .biz-area-list-copy > h3 {
    display: inline-block;
  }
  .biz-area-list-copy > h3::before {
    content: "|";
    padding: 0 10px;
    font-size: 32px;
    font-weight: 500;
    color: rgba(var(--main-color3),1)
  }
  .biz-area-list > figure {
    position: unset;
    order: 2;
    margin: 20px;
  }
  .biz-area-logo {
    display: none;
  }
  .biz-service-content,
  .biz-client-list-wrapper {
    flex-direction: column;
  }
  .biz-service-list-wrapper {
    padding-right: 15px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .biz-service-list-copy {
    padding: 20px;
    text-align: left;
  }
  .biz-service-list-copy br {
    display: none;
  }
  .biz-client-list-wrapper {
    gap: 15px;
  }
  .biz-client-list {
    flex-direction: row;
    text-align: left;
    gap: 30px;
  }
  .biz-client-list-figure {
    min-width: 100px;
    height: 70px;
  }
  .biz-client-list h3,
  .biz-client-list h3 > p {
    padding: 0 0 3px;
    font-size: 24px;
    line-height: 1.5;
  }
  .biz-client-list h4,
  .biz-client-list h4 > p {
    font-size: 18px;
    line-height: 1.5;
  }
  .biz-client-list p {
    display: inline-block;
  }
  .biz-client-list h3 > p::after {
    content: "";
    padding: 0 5px;
  }
  .biz-client-list h4 > p::after {
    content: "|";
    padding: 0 5px;
  }
}
@media only screen and (max-width: 999px) {
  :root {
    --hd-height: 80px;
    --ft-height: 100px;
  }
  header * {
    transition: 0.3s ease;
  }
  .hd-gn-link:hover {
    transition: unset;
  }
  .hd-gn-menu-wrapper {
    gap: 20px;
  }
  .hd-gn-language {
    gap: 18px;
  }
  .hd-gn-link {
    font-size: 18px;
  }
  .hd-gn-lang-link {
    font-size: 16px;
  }
  .hd-gn-lang-kor > a::after {
    top: 2px;
    right: -9.5px;
    height: 13px;
  }
  .hd-gn-link:hover {
    transition: unset;
  }
  .front-landing-content {
    padding-left: 0;
    padding-right: 0;
    line-height: 1.5;
  } 
  .front-landing-content > h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 929px) {
  :root {
    --hd-height: 70px;
    --ft-height: 90px;
  }
  header * {
    transition: 0.3s ease;
  }
  .hd-gn-link:hover {
    transition: unset;
  }
  .hd-gn-menu-wrapper {
    gap: 16px;
  }
  .hd-gn-language {
    gap: 16px;
  }
  .hd-gn-link {
    font-size: 16px;
  }
  .hd-gn-lang-link {
    font-size: 14px;
  }
  .hd-gn-lang-kor > a::after {
    top: 3px;
    right: -8.5px;
    height: 12px;
  }
  .hd-gn-link:hover {
    transition: unset;
  }
  .ft-information > * {
    font-size: 14px;
  }
  .ft-information > *:first-child {
    font-size: 16px;
  }
  .ft-information > *:last-child {
    font-size: 12px;
  }
  .front-landing-content {
    line-height: 1.2;
  }
  .front-landing-content-logo {
    height: 110px;
  }
  .front-landing-content > h1 {
    padding-top: 40px;
    font-size: 36px;
  } 
  .front-landing-content > h2 {
    font-size: 24px;
  }
  .corp-overview-value-circle > h4 {
    font-size: 18px;
  }
  .corp-history-content {
    padding: 20px 10px 30px;
  }
  .corp-organization-content {
    padding: 20px 10px 0;
  }
  .biz-area-list > figure {
    margin: 1.5vw;
    height: unset;
  }
  .brand-bionexa-title {
    justify-content: space-evenly;
    gap: 0px;
  }
}
@media only screen and (max-width: 833px) {
  :root {
    --hd-height: 60px;
    --ft-height: 80px;
  }
  header * {
    transition: 0.3s ease;
  }
  .hd-gn-link > a:hover {
    transition: unset;
  }
  .hd-gn-logo {
    width: 150px;
    height: 45px;
  }
  .hd-gn-menu-list,
  .hd-gn-language {
    display: none;
  }
  .hd-gn-mobile-menu  {
    display: unset;
  }
  .ft-information > * {
    font-size: 12px;
  }
  .ft-information > *:first-child {
    font-size: 14px;
  }
  .ft-information > *:last-child {
    font-size: 10px;
  }
  .front-landing-content {
    line-height: 1;
  }
  .front-landing-content-logo {
    height: 100px;
  }
  .front-landing-content > h1 {
    font-size: 32px;
  }
  .front-landing-content > h2 {
    font-size: 20px;
  } 
  .content-top-image-wrapper {
    height: 100px;
  }
  .content-top-copy {
    font-size: 24px;
    line-height: 1.5;
  }
  .corp-overview-content,
  .corp-message {
    padding: 30px 0 0;
  }
  .corp-history-title,
  .biz-service-title {
    padding: 30px 0 0;
  }
  .corp-history-content,
  .biz-service-content {
    padding: 20px 0 30px;
  }
  .corp-history-figure-wrapper {
    height: calc((100vw - 80px) / 1.629);
  }
  .corp-organization-content {
    padding: 20px 0 0;
    height: calc((100vw - 80px) / 1.5117);
  }
  .biz-area-content,
  .biz-client-wrapper {
    padding: 30px 0 0;
  }
  .biz-area-list > figure {
    position: absolute;
    order: unset;
  }
  .biz-area-list-figure1,
  .biz-area-list-figure2,
  .biz-area-list-figure3,
  .biz-area-list-figure4 {
    top: 0;
    right: 0;
    left: unset;
    bottom: unset;
  }
  .brand-partner-agency1-figure,
  .brand-partner-agency2-figure {
    height: 30px;
    flex-basis: calc(100% / 4);
  }
  .brand-partner-agency1-figure:last-child {
    display: unset;
  }
  .brand-bionexa-title {
    justify-content: space-evenly;
    gap: 15px;
  }
  .brand-bionexa-title-figure {
    width: 38%;
  }
  .brand-bionexa-intro1-figure {
    display: none;
  }
  .brand-bionexa-intro2 {
    padding: 20px 10px 50px;
    box-sizing: border-box;
  }
  .brand-bionexa-intro2-list {
    flex: unset;
    width: calc((100% - 40px) / 2);
    box-sizing: border-box;
  }
  .brand-bionexa-product-item7-figure1 {
    display: none;
  }
  .brand-bionexa-product-item7 .brand-bionexa-product-table7,
  .brand-bionexa-product-item8 .brand-bionexa-product-table8 {
    width: 100%;
  }
  .brand-bionexa-product-item2,
  .brand-bionexa-product-item3,
  .brand-bionexa-product-item4,
  .brand-bionexa-product-wrapper-item56 {
    flex-basis: 100%;
  }
  .brand-bionexa-product-table1 tbody td:first-of-type,
  .brand-bionexa-product-table2 tbody td:first-of-type,
  .brand-bionexa-product-table3 tbody td:first-of-type,
  .brand-bionexa-product-table4 tbody td:first-of-type,
  .brand-bionexa-product-table5 tbody td:first-of-type,
  .brand-bionexa-product-table6 tbody td:first-of-type {
    width: 50%;
  }
  .brand-bionexa-product-table1 tbody td:nth-last-of-type(2),
  .brand-bionexa-product-table2 tbody td:nth-last-of-type(2),
  .brand-bionexa-product-table3 tbody td:nth-last-of-type(2),
  .brand-bionexa-product-table4 tbody td:nth-last-of-type(2),
  .brand-bionexa-product-table5 tbody td:nth-last-of-type(2),
  .brand-bionexa-product-table6 tbody td:nth-last-of-type(2) {
    width: 20%;
  }
  .brand-bionexa-product-table1 tbody td:last-of-type,
  .brand-bionexa-product-table2 tbody td:last-of-type,
  .brand-bionexa-product-table3 tbody td:last-of-type,
  .brand-bionexa-product-table4 tbody td:last-of-type,
  .brand-bionexa-product-table5 tbody td:last-of-type,
  .brand-bionexa-product-table6 tbody td:last-of-type {
    width: 30%;
  }
  .contact-location-map-wrapper {
    gap: 30px;
  }
  .contact-location-address ul {
    padding: 15px 40px;
    gap: 30px;
  }
}
@media only screen and (max-width: 719px) {
  .corp-overview-value-copy {
    gap: 15px;
  }
  .corp-history-figure-wrapper {
    height: calc((100vw - 60px) / 1.629);
  }
  .corp-organization-content {
    height: calc((100vw - 60px) / 1.5117);
  }
}
@media only screen and (max-width: 679px) {
  .front-landing-content-logo {
    height: 90px;
  }
  .front-landing-content > h1 {
    font-size: 28px;
  }
  .front-landing-content > h2 {
    font-size: 18px;
  }
  .corp-overview-value-circle > h4 {
    font-size: 16px;
  }
  .corp-history-figure-wrapper {
    height: calc((100vw - 40px) / 1.629);
  }
  .corp-organization-content {
    height: calc((100vw - 40px) / 1.5117);
  }
}
@media only screen and (max-width: 609px) {
  .ft-information > * {
    font-size: 10px;
  }
  .ft-information > *:first-child {
    font-size: 12px;
  }
  .ft-information > *:last-child {
    font-size: 8px;
  }
  .front-landing-content-logo {
    height: 80px;
  }
  .front-landing-content > h1 {
    font-size: 24px;
  }
  .front-landing-content > h2 {
    padding-top: 20px;
    font-size: 16px;
  }
  .corp-overview-value-copy {
    gap: 10px;
  }
  .corp-overview-value-circle > h4 {
    font-size: 14px;
    line-height: 1.3;
  }
  .corp-overview-value-circle:last-child > h4 > br:last-child {
    display: inline;
  }
  .corp-overview-vision-content {
    gap: 25px;
  }
  .contact-location-address ul {
    padding: 15px 30px;
    gap: 25px;
  }
}
@media only screen and (max-width: 529px) {
  .front-landing-content {
    padding: 80px 30px;
  }
  .front-landing-content > h1 {
    padding-top: 30px;
    font-size: 20px;
    line-height: 1.5;
  }
  .front-landing-content > h1 > br {
    display: unset;
  }
  .front-landing-content > h2 {
    font-size: 14px;
  }
  .corp-introduction-wrapper,
  .biz-introduction-wrapper,
  .brand-introduction-wrapper,
  .contact-wrapper {
    padding-bottom: 20px;
  }
  .corp-introduction-wrapper > div,
  .biz-introduction-wrapper > div,
  .brand-introduction-wrapper > div,
  .contact-wrapper > div {
    padding: 30px 10px;
  }
  .corp-introduction-wrapper h1,
  .corp-history-title h1,
  .biz-introduction-wrapper h1,
  .biz-service-title > h1,
  .brand-introduction-wrapper h1,
  .contact-wrapper h1 {
    font-size: 24px;
  }
  .content-bg-color {
    height: 100%;
  }
  .corp-overview-content {
    padding: 20px 0 0;
    gap: 15px;
  }
  .corp-overview-copy1 {
    padding-bottom: 0;
    font-size: 22px;
    line-height: 1.2;
  }
  .corp-overview-copy1 > br {
    display: unset;
  }
  .corp-overview-copy2 {
    font-size: 16px;
  }
  .corp-overview-copy3 {
    font-size: 16px;
  }
  .hr-line {
    padding-top: 5px;
    margin: 10px 0;
    font-size: 20px;
  }
  .corp-overview-vision-content,
  .corp-overview-value-copy {
    padding-top: 5px;
  }
  .gtsci-symbol {
    height: 55px;
  }
  .corp-overview-vision-content-copy > h2 {
    font-size: 24px;
  }
  .corp-overview-vision-content-copy > h3 {
    padding: 0 0 10px;
    font-size: 18px;
  }
  .corp-overview-value-copy {
    gap: 5px;
  }
  .corp-overview-value-circle > h4 {
    width: 88%;
    font-size: 12px;
    line-height: 1.1;
  }
  .corp-message {
    padding: 20px 0 0;
  }
  .corp-message > p {
    font-size: 16px;
  }
  .corp-message > p:last-child {
    padding-top: 15px;
  }
  .corp-history-title,
  .biz-service-title {
    padding: 0;
  }
  .corp-history-content,
  .biz-service-content {
    padding: 20px 0 0;
  }
  .corp-organization-content {
    padding: 10px 0 0;
  }
  .biz-area-content,
  .biz-client-wrapper {
    padding: 20px 0 0;
  }
  .biz-area-list-copy {
    padding: 20px;
  }
  .biz-area-list:first-child p:last-child > br:last-child {
    display: unset;
  }
  .biz-area-list-copy > h2 {
    font-size: 20px;
  }
  .biz-area-list-copy > h3 {
    padding-bottom: 15px;
    font-size: 16px;
  }
  .biz-area-list-copy > h3::before {
    padding: 0 3px;
    font-size: 20px;
  }
  .biz-area-list-copy > p {
    padding-bottom: 5px;
    font-size: 16px;
  }
  .biz-area-list > figure {
    display: none;
  }
  .biz-service-list-wrapper {
    padding-right: 0;
    gap: 10px;
  }
  .biz-service-list-wrapper > figure {
    margin-left: -5px;
    width: 20vw;
  }
  .biz-service-list-copy > h3 {
    padding-bottom: 5px;
    font-size: 18px;
  }
  .biz-service-list-copy > p {
    padding-top: 10px;
    font-size: 16px;
  }
  .biz-client-copy > h2 {
    font-size: 18px;
  }
  .biz-client-list {
    gap: 15px;
  }
  .biz-client-list-figure {
    min-width: 85px;
    height: 60px;
  }
  .biz-client-list h3,
  .biz-client-list h3 > p {
    padding: 0 0 1px;
    font-size: 20px;
  }
  .biz-client-list h4,
  .biz-client-list h4 > p {
    font-size: 14px;
  }
  .brand-partner-content {
    padding-top: 30px;
  }
  .brand-partner-agency1-list,
  .brand-partner-agency2-list {
    gap: 20px;
  }
  .brand-partner-agency1-figure,
  .brand-partner-agency2-figure {
    height: 30px;
    flex-basis: calc(100% / 4);
  }
  .brand-bionexa-title-wrapper {
    padding: 10px 0 0;
  }
  .brand-bionexa-title {
    padding: 0;
    gap: 10px;
  }
  .brand-bionexa-title-figure {
    width: 30%;
    height: 70px;
  }
  .brand-bionexa-title-copy > div > p {
    font-size: 18px;
    line-height: 1.5;
  }
  .brand-bionexa-title-copy > div > p > span {
    font-size: 12px;
  }
  .brand-bionexa-intro-wrapper {
    margin: -30px 0;
    padding: 50px 0;
  }
  .brand-bionexa-intro1 {
    padding: 30px 0 10px;
  }
  .brand-bionexa-intro1-copy > p > span {
    font-size: 22px;
    letter-spacing: 3px;
  }
  .brand-bionexa-intro1-copy > h3 {
    padding: 20px 0 15px;
    font-size: 24px;
    line-height: 1.5;
  }
  .brand-bionexa-intro1-copy > h4,
  .brand-bionexa-intro1-copy > h4 > span {
    padding-bottom: 5px;
    font-size: 18px;
  }
  .brand-bionexa-intro2 {
    padding: 20px 0 30px;
    gap: 30px;
  }
  .brand-bionexa-intro2-list {
    padding: 22px 15px 15px;
    width: calc((100% - 30px) / 2);
  }
  .brand-bionexa-intro2-list > p {
    font-size: 16px;
  }
  .brand-bionexa-intro2-list > p > br {
    display: none;
  }
  .brand-bionexa-intro2-list-number {
    width: 30px;
    font-size: 16px;
  }
  .brand-bionexa-product-wrapper,
  .brand-bionexa-product-wrapper-item56 {
    gap: 25px;
  }
  .brand-bionexa-product {
    gap: 12px;
  }
  .brand-bionexa-product > h2 {
    font-size: 20px;
    line-height: 1.2;
  }
  .brand-bionexa-product p {
    padding: 0 5px;
  }
  .brand-bionexa-product-item3 p,
  .brand-bionexa-product-item4 p {
    margin-top: -2px;
    font-size: 12px;
  }
  .brand-bionexa-product-item7,
  .brand-bionexa-product-item8 {
    gap: 10px;
  }
  .brand-bionexa-product-item7 p,
  .brand-bionexa-product-item8 p {
    font-size: 14px;
    padding-left: 15px;
    text-indent: -10px;
  }
  .brand-bionexa-product-table8 td:nth-child(2) {
    width: 22%;
  }
  .brand-bionexa-product-item8-copy {
    flex-direction: column;
    gap: 0px;
  }
  .brand-bionexa-product-item-wrapper > table th:first-child {
    padding: 5px;
  }
  .brand-bionexa-product-item-wrapper > table th, td {
    padding: 5px;
    font-size: 14px;
  }
  .brand-bionexa-product-table1 .table-item-name > span,
  .brand-bionexa-product-table2 .table-item-name > span {
    font-size: 10px;
    font-weight: 500;
  }
  .brand-bionexa-product-item-wrapper > table th:last-child, td:last-child,
  .brand-bionexa-product-item7 th:nth-last-child(2), td:nth-last-child(2),
  .brand-bionexa-product-item8 th:nth-last-child(2), td:nth-last-child(2) {
    padding: 5px 5px 5px 0;
  }
  .brand-bionexa-product-item-wrapper > table th {
    font-size: 14px;
  }
  .brand-bionexa-product-table7 > tbody > tr > td > br {
    display: unset;
  }
  .brand-bionexa-product-table8 > tbody > tr > td:first-child > span {
    font-size: 12px;
  }
  .brand-bionexa-product-table8 > tbody > tr > td:nth-child(2) > span {
    font-size: 14px;
  }
  .brand-bionexa-product-item-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .brand-bionexa-product-item-wrapper > figure {
    margin: 10px 0;
    position: relative;
    width: 70%;
  }
  .contact-location-address-wrapper > h2 {
    font-size: 20px;
  }
  .contact-location-address li:first-child {
    font-size: 17px;
  }
  .contact-location-address li:nth-child(2),
  .contact-location-address li:nth-child(2) > a {
    font-size: 16px;
  }
  .contact-location-address ul {
    padding: 10px 30px;
    gap: 15px;
  }
  .contact-location-address li:first-child {
    min-width: 85px;
  }
}