@charset "utf-8";

:root {
    --indigoblue: #1A237E;
    --dark: #1F2426;
    --muted: #cfd6da;
}
/* ======================================
  Footer
====================================== */

.site-footer {
  background: #111;
  color: #fff;
  position: relative;
}

.site-footer__topmargin {
  height: 100px;
}

/* 内側レイアウト */
.site-footer__inner {
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__nav {
  background-color: #111;
}

.site-footer__nav li.nav-item {
    font-size: 20px;
    letter-spacing: 0.1em;
}

.sub-menu a.nav-link {
    font-size: 11px;
    text-align: left !important;
    line-height: 2em;
    letter-spacing: 0;
}

.site-footer__nav a:hover {
  opacity: 0.5;
}

.sub-menu {
    margin-top: 7px;
}
/* ------------------------------
  会社情報
------------------------------ */
.site-footer__company {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.site-footer__address {
  font-style: normal;
  margin-bottom: 12px;
}

.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__contact li {
  margin-bottom: 4px;
}

.site-footer__contact a {
  color: #fff;
  text-decoration: none;
}

.site-footer__contact a:hover {
  text-decoration: underline;
}

/* ------------------------------
  フッターナビ
------------------------------ */
.site-footer__nav {
  display: flex;
  align-items: flex-start;
}

.site-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  color: #fff;
}

.site-footer__menu li a {
  color: #fff;
}

.site-footer__menu a {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  text-align: left;
}

.site-footer__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.site-footer__menu a:hover::after {
  /* width: 100%; */
}

/* ------------------------------
  コピーライト
------------------------------ */
.site-footer__bottom {
  text-align: center;
  padding: 16px 20px;
  font-size: 12px;
  opacity: 0.8;
}

.site-footer__copyright {
  text-align: center!important;
  font-size: 16px;
}

/* ------------------------------
  topへ戻る
------------------------------ */
.site-footer__pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.site-footer__pagetop:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.site-footer__copyright a {
    text-decoration: none;
    color: #fff;
}


/* ======================================
  Responsive
====================================== */

@media (max-width: 768px) {

  .site-footer__inner {
    flex-direction: column;
    padding: 40px 20px 30px;
  }

  .site-footer__nav {
    margin-top: 24px;
    display: none;
  }

  .site-footer__menu {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .site-footer__pagetop {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 86px;
  }
}

a.top-button {
    position: fixed;
    right: 90px;
    bottom: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 50%; */
    background: #ff0000;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    font-size: 35px;
    font-family: 'Roboto', sans-serif;
}

@media screen and (max-width:768px) {
  a.top-button {
    bottom: 14px;
    right: 10px;
  }
}

@media screen and (max-width:425px) {
  a.top-button {
    bottom: 14px;
    right: 30px;
        width: 30px;
    height: 30px;
        font-size: 18px;
  }
}


/*- FooterのreCAPTCHA  ---------*/
.recaptcha-note {
    margin: 0px;
    font-size: 10px;
    text-align: center !important;
    line-height: 1.6;
    /* opacity: .75; */
    color: #aaa;
}

.recaptcha-note a {
    text-decoration: underline;
    color: currentColor;
    font-size: 10px;
    color: #aaa;
}


@media screen and (min-width:1024px) {
  .grecaptcha-badge {
    bottom: 60px !important;
  }
}

@media (max-width: 768px) {
    .grecaptcha-badge {
        display: none; 
    }
}
