.siteFooter {
  margin-top: 120px;
  background: #f3f5f8;
  border-top: 1px solid #e2e5ea;
}

.siteFooter__top {
  padding: 70px 0 56px;
}

.siteFooter__inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.siteFooter__info {
	position: relative;
  width: 320px;
}

.siteFooter__logo img {
  width: 220px;
}

.siteFooter__company {
  margin: 32px 0 0 40px;
}

.siteFooter__company p {
  margin: 0;
  color: #4a4544;
  font-size: 14px;
  line-height: 2;
}

.siteFooter__company p + p {
  margin-top: 18px;
}

.siteFooter__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  flex: 1;
}

.siteFooter__col,.siteFooter__colHasChild,.siteFooter__child{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.siteFooter__colHasChild, .siteFooter__child{
  gap: 9px;
}
.siteFooter__child {
	margin-left: 5px;
}
.siteFooter__col a ,.siteFooter__colHasChild a, .siteFooter__child a{
  color: #4a4544;
  text-decoration: none;
  font-size: 14px;
  transition: opacity .3s ease;
}

.siteFooter__col a:hover,.siteFooter__colHasChild a:hover,.siteFooter__child a:hover {
  opacity: .55;
}
.siteFooter__recruit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 48px;
  padding: 0 24px;
/*
  border-radius: 999px;
*/
  background: #595554;
  color: #fff !important;
  font-weight: 700;
}

.siteFooter__bottom {
  border-top: 1px solid #dde2e8;
}

.siteFooter__bottom .siteFooter__inner {
  align-items: center;
  min-height: 72px;
}

.siteFooter__copy {
  margin: 0;
  color: #6d7480;
  font-size: 12px;
  letter-spacing: .08em;
}

.siteFooter__pagetop {
  position: relative;
  padding-right: 18px;
  color: #4a4544;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .12em;
}

.siteFooter__pagetop::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -2px;

  border-top: 1px solid #4a4544;
  border-right: 1px solid #4a4544;

  transform: rotate(-45deg);
}

.siteFooter__pagetop:hover {
  opacity: .6;
}
.siteFooterSp__toggle,
.siteFooterSp__nav {
  display: none;
}
@media (max-width: 1068px) {
	.siteFooter__info {
	  width: 260px;
	}
	.siteFooter__nav {
	  gap: 36px;
	}
}
@media (max-width: 940px) {
	.siteFooter__top {
  	padding: 40px 0 56px;
	}
	.siteFooter {
  	margin-top: 64px;
	}
	.siteFooter__inner {
		display: block;
		gap: 50px;
	}
	.siteFooter__pagetop{
		position: absolute;
		right: 8px;
	}
	.siteFooter__copy {
		position: absolute;
		left: 8px;
	}
	.siteFooter__info {
		width: 98%;
		margin: 0 auto;
	}
	.siteFooterSp__toggleOut{
		position: absolute;
		right: 0; top:0;
	}
  .siteFooter__nav {
    display: none;
  }

  .siteFooterSp__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
  }

  .siteFooterSp__toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
  }

  .siteFooterSp__toggle span::before,
  .siteFooterSp__toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .siteFooterSp__toggle span::before {
    top: -6px;
  }

  .siteFooterSp__toggle span::after {
    top: 6px;
  }

  .siteFooter__nav {
    display: none;
    padding-top: 20px;
  }

  .siteFooter__col,
  .siteFooter__colHasChild {
    display: grid;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .siteFooter__child {
    display: grid;
    gap: 8px;
    padding-left: 1em;
    font-size: .9em;
  }

  .siteFooterSp__toggle.is-open span {
    background: transparent;
  }

  .siteFooterSp__toggle.is-open span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .siteFooterSp__toggle.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
	.siteFooterSp__nav {
		display: block;
	  max-height: 0;
	  overflow: hidden;
	  opacity: 0;
	  transition:
	    max-height .35s ease,
	    opacity .25s ease;
	}

	.siteFooterSp__nav.is-open {
	  max-height: 1000px;
	  opacity: 1;
	}

  .siteFooterSp__nav a {
    display: block;
    padding: 13px 26px;
    border-bottom: 1px solid #e1e5ec;
    color: #222;
    text-decoration: none;
    font-size: 14px;
  }
  .siteFooterSp__hasChild a {
		border: none;
	}
  .siteFooterSp__hasChild a + a{
		padding: 8px 40px;
	}

  .siteFooterSp__hasChild{
    border-bottom: 1px solid #e1e5ec;
	}
  .siteFooterSp__recruit {
    margin-top: 12px;
    padding: 15px 18px !important;
    border: 1px solid #222 !important;
    text-align: center;
    font-weight: 700;
  }
}