@charset "utf-8";

:root {
    --indigoblue: #1A237E;
    --dark: #1F2426;
    --muted: #cfd6da;
}
/* ======================================
  Footer
====================================== */

.site-footer {
  background: #051a2f;
  color: #fff;
  position: relative;
}

/* 内側レイアウト */
.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
}

/* ------------------------------
  会社情報
------------------------------ */
.site-footer__company {
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
}

.site-footer__address {
  font-style: normal;
  margin: 0px auto;
  text-align: center;
}

.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.site-footer__contact li {
  margin: 0 5px 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;
}

.site-footer__menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.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;
}

/* ------------------------------
  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;
  }

  .site-footer__menu {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .site-footer__pagetop {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 86px;
  }
}


/* ======================================
  SP固定お問い合わせバー（追加）
====================================== */

/* PCは非表示 */
.spContactWrap {
  display: none;
}

@media (max-width: 768px) {

  /* ▼ 固定バー本体 */
  .spContactWrap {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 -6px 18px rgba(0, 0, 0, .12);

    /* ▼ ふわっと表示（初期状態） */
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
  }

  /* ▼ ふわっと表示（表示状態） */
  .spContactWrap.is-show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* 上の一文 */
  .spContactWrap__text {
    margin: 0;
    padding: 10px 12px;
    font-size: 13px;
    text-align: center !important;
    background: #f3f6f8;
    color: #111;
    font-weight: 700;
  }

  /* 2ボタン */
  .spContactBar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .spContactBar__btn {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 58px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
  }

  .spContactBar__btn--tel {
    background: #ff7a00;
  }

  .spContactBar__btn--contact {
    background: #0068b7;
  }

  /* 固定バーの高さ分、ページ下が隠れないように */
  body {
    padding-bottom: 90px;
  }

  /* 既存の「TOPへ戻る」ボタンが被らないように */
  .site-footer__pagetop {
    bottom: 132px; /* 既存の86pxより上げる */
  }

  .spContactBar__icon {
  width: 18px;
  height: 18px;
  margin-right: 3px;
  fill: #fff; /* ← 白にする */
}

img.emoji {
    margin: 0 4px 0 0 !important;
}
}


/* ======================================
  reCAPTCHAの指示内容
====================================== */

/* reCAPTCHA文言：PCでは非表示、スマホのみ表示 */
.recaptcha-note-wrap{
  text-align: center;
  padding: 6px 16px 0;
  opacity: .75;           /* 目立ちすぎ防止 */
}

.recaptcha-note{
  font-size: 11px;        /* 小さめ */
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0;
  text-align: center !important;
}

.recaptcha-note a{
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 768px){
  .recaptcha-note-wrap{
    display: block;
  }
}