@charset "utf-8";

:root {
  --indigoblue: #1A237E;
  --dark: #1F2426;
  --muted: #cfd6da;
}

/* ======================================
  Footer
====================================== */
/* =========================
   CTA CONTACT
========================= */
.ctaContact {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
  background: #0b1020;
  /* 画像読み込み前の保険 */
}

.ctaContact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ctaContact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* うっすら暗幕 */
.ctaContact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55));
  z-index: 1;
}

.ctaContact__inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.ctaContact__head {
  text-align: center;
  color: #fff;
  margin-bottom: 26px;
}

.ctaContact__kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .9;
}

.ctaContact__title {
  margin: 10px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: .06em;
}

.ctaContact__desc {
  margin: 12px auto 0;
  /* max-width: 58ch; */
  line-height: 1.9;
  font-size: 14px;
  text-align: center !important;
  opacity: .95;
}

/* 2カラムカード */
.ctaPanel {
  background: rgba(255, 255, 255, .94);
  border: 1px solid #fff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 1px;
  backdrop-filter: blur(6px);
  width: 80%;
  max-width: 760px;
  margin: 0 auto;
}

.ctaPanel__col {
  padding: 18px 18px;
  /* border-radius: 18px;
  background: #fff; */
  /* border: 1px solid #fff; */
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 10px;
  min-height: 118px;
}

.ctaPanel__border {
  background-color: #aaa;
}

.ctaPanel__name {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #111;
}

.ctaPanel__tel {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  color: #111;
  letter-spacing: .02em;
}

.ctaPanel__note {
  margin: 0;
  font-size: 12px;
  color: rgba(17, 17, 17, .65);
}

.ctaPanel__label {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #111;
}

/* ボタン */
.ctaPanel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  width: fit-content;
}

.ctaPanel__btn--dark {
  background: #111;
  color: #fff;
  border-color: transparent;
}

.ctaPanel__btn--accent {
  background: #2b2f7f;
  color: #fff;
  border-color: transparent;
}

/* SP下部固定CTA（必要ならON） */
.ctaContact__spFixed {
  display: none;
}

/* =========================
   FOOTER
========================= */
.siteFooter {
  background: #aaaaaa;
  color: rgba(255, 255, 255, .88);
  padding: 54px 0 24px;
}

.siteFooter__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.siteFooter__top {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.siteFooter__logo {
  width: 180px;
  width: auto;
  display: block;
}

.siteFooter__addr {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .78);
}

.siteFooter__addr a {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
}

.siteFooter__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.siteFooter__menu a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.siteFooter__menu a:hover {
  color: #fff;
  text-decoration: underline;
}

.siteFooter__bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.siteFooter__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}

a.to-top {
    position: fixed;
    width: 40px;
    height: 40px;
    padding: 5px;
    background-color: var(--cp-color);
    right: 30px;
    font-weight: bold;
    text-align: center;
    bottom: 90px;
    color: #fff;
    text-decoration: none;
    z-index:10;
 opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

a.to-top.is-show {
  opacity: 1;
  visibility: visible;
}

.recaptcha-note {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.6;
  opacity: .75;
}

.recaptcha-note a {
  text-decoration: underline;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .ctaContact {
    padding: 64px 0;
  }

  .ctaPanel {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1px 1fr;
    padding: 16px;
  }

  .ctaPanel__col {
    min-height: auto;
  }

  .ctaPanel__tel {
    font-size: 20px;
  }


  .siteFooter__nav {
    display: none;
  }

  .siteFooter__top {
    flex-direction: column;
    gap: 18px;
  }

  .siteFooter__logo {
    width: 110px;
  }

  .siteFooter__menu {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .grecaptcha-badge {
    display: none !important;
  }
}

@media screen and (min-width:769px) {
  .recaptcha-note {
    display: none!important;
  }
}