/* =========================
Footer
========================= */

.gw-footer{
  position:relative;
  z-index:2;
  background:#FCF8F8;
}

.gw-footer__inner{
  width:100%;
  max-width:390px;
  margin:0 auto;
  padding:20px 0 80px;
  box-sizing:border-box;
}

.gw-footer__logo img{
  display:block;
  width:134px;
  height:auto;
}
.gw-footer__nav{
  margin-top:24px;
  padding:0 20px;
}

.gw-footer__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
}

.gw-footer__link{
  display:inline-block;
  text-decoration:none;
  color:#1D135F;
  font-family:"Noto Sans JP", sans-serif;
}

/* 親項目 */
.gw-footer__item{
  margin:0;
}

.gw-footer__item:not(.gw-footer__sub){
  margin-top:12px;
}

.gw-footer__item:not(.gw-footer__sub) .gw-footer__link{
  font-weight:700;
  font-size:14px;
  line-height:1.3;
}

.gw-footer__sub .gw-footer__link{
  font-weight:400;
  font-size:13px;
  line-height:1.3;
}
 /* =========================
  Footer
  ========================= */
@media screen and (min-width: 1024px){

  .gw-footer{
    position:relative;
    z-index:2;
    background:#FCF8F8;
  }

  .gw-footer__inner{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:28px 58px 88px;
    box-sizing:border-box;
    display:flex;
    align-items:flex-start;
  }

  .gw-footer__brand{
    flex:0 0 auto;
    margin-right:56px;
  }

  .gw-footer__logo img{
    display:block;
    width:199px;
    height:auto;
  }

  .gw-footer__nav{
    flex:1;
  }

  /* =========================
  レイアウト本体（ここが重要）
  ========================= */

.gw-footer__list{
  display:grid;
  grid-template-columns: auto auto auto auto;
  column-gap:64px;
  row-gap:8px;
}

/* 1列目 */
.gw-footer__item:nth-child(1){ grid-column:1; grid-row:1; } /* 事業紹介 */
.gw-footer__item:nth-child(2){ grid-column:1; grid-row:2; } /* キャリア支援 */
.gw-footer__item:nth-child(3){ grid-column:1; grid-row:3; } /* ITスクール */

/* 2列目 */
.gw-footer__item:nth-child(4){ grid-column:2; grid-row:1; } /* 会社概要 */
.gw-footer__item:nth-child(5){ grid-column:2; grid-row:2; } /* ブログ */

/* 3列目 */
.gw-footer__item:nth-child(6){ grid-column:3; grid-row:1; } /* プライバシー */

/* 4列目 */
.gw-footer__item:nth-child(7){ grid-column:4; grid-row:1; } /* お問い合わせ */


  /* =========================
  タイポ
  ========================= */

  .gw-footer__item:not(.gw-footer__sub) .gw-footer__link{
    font-weight:700;
    font-size:16px;
    line-height:1.4;
  }

  .gw-footer__sub .gw-footer__link{
    font-weight:400;
    font-size:16px;
    line-height:1.4;
  }

  .gw-footer__link{
    display:inline-block;
    text-decoration:none;
    color:#1D135F;
    font-family:"Noto Sans JP", sans-serif;
    white-space:nowrap;
  }

  .gw-footer__item.gw-footer__sub{
    margin-left:0;
  }

  .gw-footer__item.gw-footer__sub .gw-footer__link{
    font-size:16px;
  }

}