/* PC用のCSSはメディアクエリの外に記述する */

html {
  font-family: sans-serif;
}
ul {
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  color: #000;
}
hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}
address {
  font-style: normal;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.lg-flex {
  display: flex;
}
.footer {
  font-size: 15px;
  color: #4b5564;
  background: #fff;
}
.footer > div {
  width: 1000px;
  margin: auto;
  padding: 2rem;
}
.footer__navi-heading {
  font-weight: 600;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer__logo > img {
  width: 200px;
}
.footer__navi li {
  margin-bottom: 0.75rem;
}
.footer__address {
  margin-bottom: 2rem;
}
.contact {
  background-color: #000;
  text-align: center;
  padding: 5rem 0;
}
.content-txt {
  color: #fff;
}
.main_content-txt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.sub_content-txt {
  font-size: 1rem;
  font-weight: 700;
  margin: 22px 0 16px;
  text-align: center;
}
.md-justify-between {
  justify-content: space-between;
  color: #000;
}
.footer__address a {
  text-decoration: none;
  pointer-events: none;
}
.tel {
  cursor: text;
}



footer {
  background-color: #fff;
  color: #333;
  padding-top: 40px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.footer-section {
  flex: 1;
  min-width: 220px;
  margin: 0 20px;
}
.footer-section .footer-section_contents-title {
  font-weight: 700;
  margin-top: 3rem;
  font-size: 1rem;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #bbb;
  display: grid;
}
.footer-section ul {
  list-style-type: none;
  padding: 0;
}
.footer-section ul li {
  margin: 10px 0;
  font-size: 0.9rem;
}
.footer-section a {
  color: #333;
  text-decoration: none;
}
.footer-section a:hover {
  color: #e85400;
}
.footer-bottom {
  max-width: 1024px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid #aaa;
}
.footer-bottom a, .footer-bottom p {
  color: #333;
  text-decoration: none;
  margin: 10px 20px;
  font-size: 0.9rem;
}
.footer-bottom a:hover {
  color: #e85400;
}
.footer-bottom img {
  width: 100%;
  height: auto;
  max-height: 25px;
  object-fit: contain;
}
.footer-section a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.footer-section a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  display: block;
  background: currentColor;
  transition: width 0.3s;
  left: 0;
}
.footer-section .footer-section_contents-title a::after {
  margin-top: 5px;
  transition: width 0.5s;
}
.footer-section a:hover::after {
  width: 100%;
}
.copyright a {
  margin: 0;
}




/* PC用のCSSはメディアクエリの外に記述する */
@media screen and (max-width: 1024px) {
	/* 1024px以下に適用されるCSS（タブレット用） */
  .footer {
    width: 100%;
  }
  .lg-flex {
    display: block;
  }
  .footer > div {
    width: 100%;
  }
  .footer-bottom {
    margin: 0 1rem;
  }
}

@media screen and (max-width: 599px) {
	/* 599px以下に適用されるCSS（スマホ用） */
  .footer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .footer__address a {
    text-decoration: underline;
    pointer-events: all;
  }
}