@charset "UTF-8";

/* ========================================
   footer（mobile base）
======================================== */
.l-footer {
  margin-top: 10px;
}

.l-footer__inner {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
  padding-top: 56px;
}

.l-footer__book {
  display: grid;
  gap: 40px;
  margin-bottom: 50px;
}

/* =========================
   CTA
========================= */
.l-footer__lead {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}

.l-footer__cta {
  display: grid;
  gap: 20px;
}

.l-footer__tel {
  display: grid;
  gap: 6px;
}

.l-footer__tel-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.l-footer__num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.l-footer__btns {
  display: grid;
  gap: 12px;
}

.l-footer__web-btn,
.l-footer__line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 10px;
  background-color: #38b2a3;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}

.l-footer__web-btn:hover,
.l-footer__line-btn:hover,
.l-footer__nav-link:hover {
  opacity: 0.75;
}

/* =========================
   info
========================= */
.l-footer__info {
  display: grid;
  gap: 32px;
}

.l-footer__info-left {
  display: grid;
}

.l-footer__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.l-footer__meta {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.l-footer__service p {
  font-size: 1rem;
  line-height: 1.8;
}

.l-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.l-footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background-color: #dff1e8;
  font-size: 1rem;
}

.l-footer__table {
  display: grid;
  grid-template-columns: 88px 1fr;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid #cfc6bb;
}

.l-footer__table dd {
    margin: 0;
}

.l-footer__table:last-of-type {
  border-bottom: 1px solid #cfc6bb;
}

.l-footer__label {
  font-size: 1rem;
  font-weight: 700;
}

.l-footer__value {
  position: relative;
  padding-left: 20px;
  font-size: 0.825rem;
  line-height: 1.8;
}

.l-footer__value::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1px;
  height: calc(100% - 0.6em);
  background: repeating-linear-gradient(
    to bottom,
    #cfc6bb,
    #cfc6bb 3px,
    transparent 3px,
    transparent 6px
  );
}

.l-footer__info-right iframe {
  width: 100%;
  display: block;
  border: 0;
}

/* =========================
   bottom
========================= */
.l-footer__footer {
  margin-top: 48px;
  margin-inline: calc(50% - 50vw);
  padding: 48px 16px 36px;
  background-color: #38b2a3;
  border-radius: 18px 18px 0 0;
  color: #fff;
}

.l-footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.l-footer__nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.l-footer__logo {
  margin-bottom: 28px;
}

.l-footer__logo img {
  width: 220px;
  margin: 0 auto;
}

.l-footer__copyright p {
  text-align: center;
  font-size: 0.825rem;
}

/* ========================================
   tablet（768〜）
======================================== */
@media (min-width: 768px) {
  .l-footer__inner {
    width: min(100% - 48px, 1200px);
    padding-top: 72px;
  }

  .l-footer__book {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }

  .l-footer__btns {
    grid-template-columns: repeat(2, 1fr);
  }

  .l-footer__info {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }

  .l-footer__info-right iframe {
    height: 320px;
  }
}

/* ========================================
   PC（1024〜）
======================================== */
@media (min-width: 1024px) {
  .l-footer {
    margin-top: 10px;
  }

  .l-footer__book {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .l-footer__tel {
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-items: end;
    gap: 32px;
  }

  .l-footer__tel-label {
    line-height: 3;
    font-weight: 700;
  }

  .l-footer__num {
    font-size: 2.5rem;
  }

  .l-footer__info {
    grid-template-columns: 1fr 430px;
    gap: 48px;
  }

  .l-footer__name {
    font-size: 2rem;
  }

  .l-footer__service p {
    font-size: 1.5rem;
  }

  .l-footer__badge {
    width: 250px;
    font-size: 1.5rem;
  }

  .l-footer__value {
    font-size: 1rem;
  }

  .l-footer__info-right iframe {
    height: 390px;
  }

  .l-footer__footer {
    padding: 52px 24px 38px;
  }
}