@charset "utf-8";
/* CSS Document */
 :root {
  --color-main: #E56C21;
  --color-sub: #231815;
  --color-bg-light: #E7C297;
  --color-bg-gray: #CCCCCC;
  --color-white: #ffffff;
  --color-black: #333333;
  --sub-color: #231815;
  /* Fonts */
  --font-main: "Noto Sans JP", sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-deco: 'Cinzel', serif;
  /* Sizes */
  --header-height: 60px;
  --container-max: 1024px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: var(--font-main);
}
a {
  text-decoration: none;
  color: var(--color-sub);
  background: transparent;
}



/* footer */
.footer {
  font-family: var(--font-main);
  color: var(--color-white);
  background: var(--color-main);
  padding: 30px 31px 16px 31px;
  margin: 0;
}

.footer a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-inner p {
  margin: 27px 0 0 0;
  padding: 0 0 20px 0;
  line-height: 1.75;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
}

.footer-box1 {
  flex: 0 1 300px;
  text-align: left;
}

.footer-box2 {
  flex: 0 0 644px;
}

.footer-box2 ul {
  display: flex;
  flex-wrap: wrap;
}

.footer-box2 li {
  margin-right: 19px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
}

/* 問い合わせボタン */
.footer-box2-btn {
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  }

.footer-btn a {
  background: var(--color-white);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px auto 14px auto;
  padding: 22px 72px;
  font-weight: 400;
  color: var(--sub-color);
  font-family: var(--font-main);
  font-size: 14px;
  transition: 0.3s ease-in-out;
}

.footer-btn a:hover {
  background: #333;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 30%);
}

.copyright {
  font-family: var(--font-main);
  text-align: center;
  font-weight: 500;
  font-size: 10px;
}


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

  .footer {
    padding: 30px 16px 20px 16px;
  }

  .footer-inner {
    display: block;
    text-align: center;
  }

  /* box1（ロゴ＋会社情報） */
  .footer-box1 {
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
    padding: 30px;
    border-bottom: 0.5px solid var(--color-white);
  }

  .footer-box1 img {
    max-width: 200px;
    margin: 0 auto;
  }

  .footer-box1 p {
    padding: 0;
    margin-top: 20px;
    line-height: 1.8;
  }

  .footer-box2 {
    width: 100%;
    padding: 20px;
    display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
         }
.footer-list {
  width: 100%;
  max-width: 599px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
  .footer-box2 ul {
      display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 8px 60px;
  justify-items: center; 
  }

  .footer-box2 li {
    width: 100%;
  max-width: 150px; 
  text-align: left;
  margin: 0;
  list-style: disc;
  }

  .footer-box2-btn {
    width: 100%;
    justify-content: center;
    padding-right: 0;
    margin-top: 10px;
  }

  .footer-btn a {
    margin: 20px auto;
    border-radius: 0;
  }
}

