﻿
/* 共通
---------------------------------------------------------- */
html{
  font-size: 10px;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
img{
  width: 100%;
}
a{
  text-decoration: none;
  color: #000;
}
ul,ol{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
h1,h2,h3,h4,p,figure{
  margin: 0;
}
@media(max-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/* footer
---------------------------------------------------------- */
footer{
  padding: 30px 5vw;
  background-color: #1E1E1E;
  color: #fff;

  display: flex;
  column-gap: 120px;
  row-gap: 30px;
  flex-wrap: wrap;
}
footer h3{
  font-weight: 500;
}
footer a{
  color: #fff;
  text-decoration: underline;
}
footer a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  background-image: url(/kankyo/common/img/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
.footer-contents p{
  padding-top: 0.5em;
}
.footer-link ul{
  margin-top: 1em;
  line-height: 2;

  display: flex;
  column-gap: 2em;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px){
  footer{
    padding: 30px 15px;
  }
  .footer-contents {/*2025.12*/
      margin-bottom: 1em;
  }
  footer div.footer-link {/*2025.12*/
    flex: auto!important;
  }
}

/*2025.12*/
footer div.contact-link {
  text-align: center;
  width: 100%;
  padding: .5em 0;
  margin: .5em 0 .25em;
  background: #fff;
  color: #077319;
  text-decoration: underline;
  transition: all 0.3s;
}
footer div.contact-link:hover {
  background-color: #077319;
  color: #fff;
  text-decoration-color: #077319;
}
footer div.footer-link {
  flex: 1 1;
}
footer div.footer-link div:not(:last-child) {
  margin-bottom: 2.5em;
}
footer a.link-small {
  font-size: 90%;
}

