/**
 * GMS フッター
 */

/* フッター */
.gms-footer {
  align-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: auto;
  justify-content: center;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

/* 内部ラッパー */
.gms-footer__inner {
  align-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  border-radius: 0;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

/* コンテンツエリア */
.gms-footer__content {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 100px;
  height: auto;
  justify-content: flex-start;
  margin: 0 0 50px 0;
  padding: 50px 80px;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__content {
    gap: 30px;
    margin: 0 0 20px 0;
    padding: 30px;
  }
}

/* 上部セクション */
.gms-footer__top {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  height: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__top {
    flex-direction: column;
    gap: 40px;
  }
}

/* ロゴリンク */
.gms-footer__logo-link {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: auto;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
}

/* ロゴ画像 */
.gms-footer__logo {
  flex: none;
  height: auto;
  margin: 0;
  width: 57px;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__logo {
    width: 46px;
  }
}

/* ナビゲーションコンテナ */
.gms-footer__nav {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 25px;
  height: auto;
  justify-content: center;
  width: 80%;
  max-width: 80%;
}

@media screen and (max-width: 840px) {
  .gms-footer__nav {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 540px) {
  .gms-footer__nav {
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
  }
}

/* ナビゲーションカラム */
.gms-footer__nav-column {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: auto;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 840px) {
  .gms-footer__nav-column {
    flex: none;
    width: calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
  }
}

@media screen and (max-width: 540px) {
  .gms-footer__nav-column {
    flex: none;
    width: 50%;
  }
}

/* ナビゲーションタイトル */
.gms-footer__nav-title {
  border-bottom: 1px solid #009c7a;
  color: var(--s-color-6595484e, #333);
  flex: none;
  font-family: var(--s-font-15b9af0f, "Noto Sans JP", sans-serif);
  font-size: 14px;
  font-weight: 400;
  height: auto;
  line-height: 1.4;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  text-align: left;
  width: 100%;
  max-width: 100%;
}

/* Girls Meet STEM タイトル（Poppins） */
.gms-footer__nav-title--gms {
  font-family: var(--s-font-c1a2ec16, "Poppins", sans-serif);
  font-weight: 500;
}

/* ナビゲーションリンクコンテナ */
.gms-footer__nav-links {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: auto;
  justify-content: flex-start;
  margin: 0 -10px;
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
}

/* ナビゲーションリンク */
.gms-footer__nav-link {
  color: var(--s-color-6595484e, #333);
  font-family: var(--s-font-15b9af0f, "Noto Sans JP", sans-serif);
  font-size: 13px;
  font-weight: 400;
  height: auto;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding: 6px 10px;
  text-align: left;
  text-decoration: none;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__nav-link {
    font-size: 12px;
  }
}

/* Poppinsフォント用リンク */
.gms-footer__nav-link--poppins {
  font-family: var(--s-font-c1a2ec16, "Poppins", sans-serif);
  font-weight: 500;
}

/* 下部セクション */
.gms-footer__bottom {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__bottom {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

/* 会社情報 */
.gms-footer__info {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
  height: auto;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__info {
    gap: 10px;
  }
}

/* 会社名 */
.gms-footer__company-name {
  color: var(--s-color-6595484e, #333);
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-size: 15px;
  font-weight: 700;
  height: auto;
  letter-spacing: 0.07em;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__company-name {
    font-size: 14px;
  }
}

/* 住所 */
.gms-footer__address {
  color: var(--s-color-6595484e, #333);
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-size: 14px;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__address {
    font-size: 10px;
  }
}

/* コピーライト */
.gms-footer__copyright {
  color: var(--s-color-6595484e, #333);
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-size: 13px;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__copyright {
    font-size: 10px;
  }
}

/* ソーシャルセクション */
.gms-footer__social {
  align-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  border-radius: 0;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  height: auto;
  justify-content: space-between;
  padding: 0;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__social {
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* ソーシャルラベル */
.gms-footer__social-label {
  color: var(--s-color-6595484e, #333);
  font-family: var(--s-font-c1a2ec16, "Poppins", sans-serif);
  font-size: 16px;
  font-weight: 600;
  height: auto;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__social-label {
    font-size: 12px;
  }
}

/* ソーシャルアイコンコンテナ */
.gms-footer__social-icons {
  align-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: auto;
  justify-content: center;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 540px) {
  .gms-footer__social-icons {
    gap: 5px;
  }
}

/* ソーシャルアイコン */
.gms-footer__social-icon {
  color: var(--s-color-6595484e, #333);
  font-size: 32px;
  padding: 10px;
  text-decoration: none;
}

/* ボトム画像 */
.gms-footer__bottom-image {
  display: flex;
  flex: none;
  height: auto;
  margin: 0 0 -2px 0;
  opacity: 1;
  width: 100%;
  max-width: 100%;
}
