@charset "utf-8";

:root {
  --primary-color: #009933;
  --secondary-color: #ffe500;
  --tertiary-color: #353a4d;
  --white-color: #ffffff;
  --black-color: #333333;
  --base-font-size: 20px;
  --big-font-size-pt2: 24px;
  --mini-font-size: 16px;
  --mini-line-height: 200%;
  --big-font-size: 32px;
}
body {
  font-style: normal;
  font-size: var(--base-font-size);
  line-height: 200%;
  font-family: "Noto Sans JP", sans-serif;

  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width:1280px) {
  :root {
    --base-font-size: calc(20/1280 * 100vw);
    --mini-font-size: calc(16/1280 * 100vw);
    --mini-line-height: 200%;
    --big-font-size: calc(32/1280 * 100vw);
  }
}
@media screen and (max-width:767px) {
  :root {
    --base-font-size: 4vw;
    --mini-font-size: 3.5vw;
    --mini-line-height: 200%;
    --big-font-size: 4.2vw;
    --big-font-size-pt2: 5vw;
  }
}



#container {
  color: var(--black-color);
}
img {
  max-width: 100%;
}
.inr {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.section_innner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}
.section_innner_1280 {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.section_innner_975 {
  position: relative;
  z-index: 1;
  max-width: 975px;
  margin: 0 auto;
}
.section_innner_860 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media screen and (max-width:1280px) {
  .section_innner_1280 {
    max-width: calc(1280/1280 * 100vw);
  }
  .section_innner_975 {
    max-width: calc(975/1280 * 100vw);
  }
  .section_innner_860 {
    max-width: calc(860/1280 * 100vw);
  }
}
@media screen and (max-width:767px) {
  .section_innner_1280 {
    max-width: 100%;
  }
  .section_innner_975 {
    max-width: 90vw;
  }
  .section_innner_860 {
    max-width: 90vw;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}



/**************** footer ********/
footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  padding: 150px 0 10px;
  margin-top: -100px;
  background: var(--black-color);
  color: var(--white-color);
  text-align: center;
}
footer .footer_link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 30px;
  margin-bottom: 30px;
}
footer .footer_list a {
  font-size: 14px;
}
footer .footer_link a {
  font-size: 13px;
}
footer .companylogo {
  position: absolute;
  top: 150px;
  right: 0;
  width: 240px;
}
footer .copyright {
  font-size: 13px;
}
@media screen and (max-width:1280px) {
  footer {
    padding: calc(150/1280 * 100vw) 0 calc(10/1280 * 100vw);
    margin-top: calc(-100/1280 * 100vw);
  }
  footer .footer_link {
    gap: 0 calc(30/1280 * 100vw);
    margin-bottom: calc(30/1280 * 100vw);
  }
  footer .footer_list a {
    font-size: calc(14/1280 * 100vw);
  }
  footer .footer_link a {
    font-size: calc(13/1280 * 100vw);
  }
  footer .companylogo {
    top: calc(150/1280 * 100vw);
    width: calc(240/1280 * 100vw);
  }
  footer .copyright {
    font-size: calc(13/1280 * 100vw);
  }
}
@media screen and (max-width:767px) {
  footer {
    padding: 24vw 0 3vw;
    margin-top: -12vw;

  }
  footer::before, footer::after {
    top: -12vw;
    width: 12vw;
    height: 12vw;
  }
  footer::after {
    border-radius: 0 0 12vw 0;
  }
  footer .footer_list, footer .footer_link {
    justify-content: space-between;
    gap: 3vw 0;
    margin-bottom: 14vw;
    padding: 0 2vw;
  }
  footer .footer_link {
    gap: 3vw;
    margin-bottom: 20vw;
  }
  footer .footer_list li {
    width: 100%;
  }
  footer .footer_list a {
    font-size: var(--base-font-size);
  }
  footer .footer_link a {
    font-size: 3vw;
  }
  footer .companylogo {
    top: auto;
    bottom: 16vw;
    width: 53vw;
  }
  footer .copyright {
    font-size: 2.8vw;
  }
}
/**************** footer END ********/