@charset "utf-8";

/* 使用フォント */
:root {
  --NotoSans: "Noto Sans JP", sans-serif;
}


/* --------フッター全体-------- */
.footer_wrapper {
  width: 100%;
  height: 48.6rem;
  font: var(--NotoSans);
  background-color: #FFFFFF;
  font-size: 1.2rem;
  line-height: 2.3rem;
}


/* --------ボタンエリア-------- */

.footer_button_area {
  background-color: #26A64D;
  width: 100%;
  height: 24rem;
  display: flex;
  gap: 8rem;
  justify-content: center;
  align-items: center;
}

.footer_button_flex {
  padding: 3.5rem 5.5rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.linkedin_logo_wrap {
  width: 5rem;
  height: 5rem;
}

.linkedin_logo {
  width: 100%;
}

.linkedin_font {
  font-size: 2.4rem;
}

.footer_button {
  width: 50rem;
  height: 10rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_button:hover {
  color: #ffffff;
  background-color: #03A64D;
  border: #ffffff solid 1px;
  transition: .5s;
}

.footer_button:hover .button_text,
.footer_button:hover .button_text::after {
  color: #fff;
}

.button_text {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
  letter-spacing: .23rem;
  color: #26A64D;
  position: relative;
  left: -.5em;
}

.button_text::after {
  content: "＞";
  font-size: 2.4rem;
  position: relative;
  left: 1em;
  line-height: 3.2rem;
  color: #26A64D;
  font-weight: 300;
}

/* --------リンク一覧-------- */

.footer_links_wrapper {
  margin: 1.5rem auto 0;
  width: 100%;
  display: flex;
  padding: 0 25.5rem;
  justify-content: space-between;
}

.footer_links {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.8rem;
  max-width: 33%;
}

.footer_works {
  position: relative;
  left: -.5em;
}

.footer_about {
  position: relative;
  left: -1em;
}

.footer_company {
  position: relative;
  left: -.5em;
}

.footer_company dd {
  font-weight: normal;
  position: relative;
  font-weight: normal;
}


/* --------ロゴ画像-------- */

.footer_logo_wrapper {
  margin: 7.51rem auto 0;
  width: 24.176rem;
  height: 5.5rem;
}

.footer_logo_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/* ----------メディアクエリ---------- */

@media screen and (max-width:699.98px) {

  /* --------フッター全体-------- */
  .footer_wrapper {
    width: 100%;
    height: auto;
    font: var(--NotoSans);
    background-color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 2.3rem;
    margin: 0;
  }

  /* --------ボタンエリア-------- */

  .footer_button_area {
    height: 22rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }

  .footer_button {
    width: 33.5rem;
    height: 7rem;
    background-color: #FFFFFF;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .button_text {
    font-size: 2.4rem;
    line-height: 3.2rem;
    font-weight: 600;
    color: #26A64D;
    padding-left: 1rem;
    padding-bottom: .2rem;
    letter-spacing: .1em;
  }

  .button_text::after {
    content: "＞";
    color: #26A64D;
    position: relative;
    left: 2rem;
    font-weight: 300;
  }


  /* --------リンク一覧-------- */

  .footer_links_wrapper {
    margin: 0 auto;
    width: 100%;
    height: 28rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    column-gap: 3rem;
    padding: 2.4rem 2rem 0;
  }

  .footer_links {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2.8rem;
    position: static;
    width: auto;
    width: 13rem;
  }

  .footer_company dd {
    font-weight: normal;
    position: relative;
  }


  /* --------ロゴ画像-------- */

  .footer_logo_link {
    width: 22rem;
    height: 5rem;
    margin: 0 auto;
    display: block;
  }

  .footer_logo_wrapper {
    margin: 0 auto;
    width: 22rem;
    height: 5rem;
  }

  .footer_logo_image {
    margin: 2rem auto 3rem auto;
  }
}