@charset "UTF-8";

footer {
  width: 100%;
}

footer .footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F5F3F0;
  padding: 48px 0;
}

@media screen and (max-width: 1300px) {
  footer .footer {
    padding: 40px 0;
  }
}

footer .footer__container {
  width: 80%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1300px) {
  footer .footer__container {
    width: 90%;
    flex-direction: column;
  }
}

footer .footer__container__logo {
  display: flex;
  flex-direction: column;
}

footer .footer__container__logo img {
  width: 100%;
  max-width: 169px;
}

footer .footer__container__logo .text_pc {
  font-size: 12px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #B3AEA9;
  margin-top: 24px;
  display: block;
}

@media screen and (max-width: 1300px) {
  footer .footer__container__logo .text_pc {
    display: none;
  }
}

footer .footer__container__menucontent {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 1300px) {
  footer .footer__container__menucontent {
    width: 100%;
  }
}

footer .footer__container__menucontent--menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  column-gap: 40px;
  width: 100%;
}

@media screen and (max-width: 1300px) {
  footer .footer__container__menucontent--menu {
    display: grid;
    row-gap: 24px;
    margin-top: 32px;
  }
}

@media screen and (max-width: 620px) {
  footer .footer__container__menucontent--menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

footer .footer__container__menucontent--menu a {
  font-size: 16px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 1300px) {
  footer .footer__container__menucontent--menu a {
    font-size: 14px;
  }
}

footer .footer__container__menucontent--menu a:hover {
  opacity: 0.6;
}

footer .footer__container__menucontent--social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 32px;
}

@media screen and (max-width: 1300px) {
  footer .footer__container__menucontent--social {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-top: 40px;
  }
}

footer .footer__container__menucontent--social p {
  font-size: 12px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #333333;
  letter-spacing: 1px;
}

footer .footer__container__menucontent--social .socialmedia {
  display: flex;
  margin-top: 13px;
}

@media screen and (max-width: 1300px) {
  footer .footer__container__menucontent--social .socialmedia {
    margin-top: 0;
  }
}

footer .footer__container__menucontent--social .socialmedia a {
  margin-left: 24px;
  text-decoration: none;
  cursor: pointer;
}

footer .footer__container__menucontent--social .socialmedia a i {
  font-size: 20px;
  color: #333333;
}

footer .footer__container__menucontent--social .socialmedia a:hover {
  opacity: 0.6;
}

footer .footer__container .text_mobile {
  font-size: 12px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #B3AEA9;
  margin-top: 24px;
  display: none;
}

@media screen and (max-width: 1300px) {
  footer .footer__container .text_mobile {
    display: block;
  }
}

footer .footer__container .googlelinks {
  font-size: 12px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #B3AEA9;
  text-decoration: underline;
}

footer .footer .divider {
  width: 100%;
  border-bottom: 1px dotted #B3AEA9;
  margin-top: 16px;
}

footer .footer__information {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

@media screen and (max-width: 1300px) {
  footer .footer__information {
    margin-top: 16px;
    align-items: flex-start;
  }
}

footer .footer__information--menu {
  display: flex;
}

footer .footer__information--menu a,
footer .footer__information--menu p {
  font-size: 14px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #333333;
}

@media screen and (max-width: 1300px) {

  footer .footer__information--menu a,
  footer .footer__information--menu p {
    font-size: 11px;
  }
}

footer .footer__information--menu a {
  text-decoration: none;
  cursor: pointer;
}

footer .footer__information--menu a:hover {
  opacity: 0.5;
}

footer .footer__information--menu p {
  padding: 0 16px;
}

footer .footer__information--corporation {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #B3AEA9;
}

@media screen and (max-width: 1300px) {
  footer .footer__information--corporation {
    font-size: 10px;
  }
}

footer .footer-img {
  width: 100%;
  display: none;
}

@media screen and (max-width: 1300px) {
  footer .footer-img {
    display: flex;
  }
}

#page-top {
  width: 72px;
  height: 81px;
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  z-index: 99;
}

@media screen and (max-width: 1300px) {
  #page-top {
    display: none !important;
  }
}

#page-top .growcircle {
  position: absolute;
  bottom: -28px;
  right: -10px;
  width: 0;
  height: 0;
  background: linear-gradient(230deg, rgba(214, 232, 219, 0.95) 0%, rgba(168, 222, 207, 0.95) 20%, rgba(156, 212, 226, 0.95) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#page-top svg {
  position: absolute;
  bottom: 0;
  right: 0;
}

#page-top a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}

#page-top a img {
  width: 100%;
  max-width: 4px;
}

#page-top a p {
  font-size: 11px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #07B081;
  padding: 8px 0;
}

.circleExpand {
  width: 80px !important;
  height: 80px !important;
  transition: all 0.3s ease !important;
}

.footer-entry {
  height: 480px;
}

.footer-entry .bgImg {
  height: 480px;
}

@media screen and (max-width: 1000px) {
  .footer-entry {
    height: 520px;
  }

  .footer-entry .bgImg {
    height: 520px;
  }
}

.footer-entry__line a {
  color: #07b081;
  font-weight: 700;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  display: block;
  width: 338px;
  padding: 24px 16px;
  margin: 32px auto 0;
  outline: solid 1px #07b081;
  outline-offset: -6px;
}

.footer-entry__line a p {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  margin-top: 10px;
}

@media (any-hover: hover) {
  .footer-entry__line a:hover {
    color: #fff;
    background: #07b081;
    outline-color: #fff;
  }
}

@media screen and (max-width: 620px) {
  .footer-entry__line a {
    width: 320px;
  }
}