@charset "utf-8";
/*
 * File       : global.css
 * Author     : FASTWEB
 * Guideline  : FWstyle.3.0.1
 *
 * Dependency : css/reset.css
 *
 * SUMMARY:
 * 00) Global []
 * 01) Header []
 * 02) Footer []
 */

/* *****************************************
 * 00) Global
 * *****************************************/
a {
  cursor: pointer;
}
a:hover {
  cursor: pointer;
}
.global-inner {
  width: 100%;
  max-width: var(--global_width);
  margin: 0 auto;
}
img {
  width: 100%;
}
.w300 {
  font-weight: var(--font-weight-300);
}
.w200 {
  font-weight: var(--font-weight-200);
}
.w700 {
  font-weight: var(--font-weight-700);
}

/* *****************************************
 * 01) Header
 * *****************************************/

.header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
}
.header .header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  width: var(--global_width);
  margin: 0 auto;
}
.logo {
  display: block;
  width: 86px;
  height: auto;
  transition-delay: 0.4s;
}
.gnb {
  height: 100%;
}
.gnb__list {
  display: flex;
  height: 100%;
  z-index: 1;
  position: relative;
}
.gnb__list .menu-item {
  display: flex;
  align-items: center;
  padding-left: 74px;
  height: calc(100% + 2px);
}
.gnb__list .menu-item a {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black-300);
}

.gnb__list .menu-item:hover a::before {
  transition: 0.1s;
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: -27px;
  left: 0;
  opacity: 0;
  background: var(--color-primary);
}

/* *****************************************
 * 02) Footer
 * *****************************************/

.footer {
  padding: 53px 11px 104px 11px;
}
.footer_inner {
  display: grid;
  grid-template-columns: 15% 1fr 1fr;
}

.footer__logo {
  max-width: 62px;
  margin-top: 5px;
}

.footer .logo:hover {
  cursor: pointer;
}

.company__title {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 8px;
}

.sns__wrap {
  width: 100%;
  display: flex;
  justify-content: end;
}

.footer__sns {
  width: 32px;
  margin-left: 19px;
}

.footer__sns:hover {
  cursor: pointer;
}

.company__description {
  font-size: 14px;
  color: var(--color-black);
  font-weight: 300;
  line-height: 1.5;
}
