@charset "UTF-8";
#l_footer {
  background: #383b41;
  padding: 5rem 1.6rem;
}
#l_footer .l_footer_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
}
#l_footer .l_footer_text {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  color: #99a1af;
  text-align: center;
}
#l_footer .l_footer_copy {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  color: #99a1af;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #l_footer {
    padding: 5rem 1.6rem;
  }
  #l_footer .l_footer_inner {
    gap: 1.2rem;
  }
  #l_footer .l_footer_text {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

#l_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 3rem;
  height: 7.5rem;
  transition: opacity 0.3s ease;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1411764706);
}
@media screen and (max-width: 767px) {
  #l_header {
    transition: 1s;
    padding: 1rem 1rem;
    height: 5.5rem;
  }
  #l_header.show {
    pointer-events: initial;
    opacity: 1;
  }
}
#l_header .u-logo {
  height: 100%;
}
#l_header .u-logo img {
  height: 100%;
  object-fit: contain;
}
#l_header nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  #l_header nav {
    width: auto;
    justify-content: flex-end;
  }
}
#l_header nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
  margin-right: 1rem;
}
#l_header nav ul li {
  font-family: LINE Seed JP;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s;
  border-radius: 0.5rem;
  height: 100%;
}
#l_header nav ul li:hover {
  background: rgba(239, 239, 239, 0.08);
  box-shadow: 3px 3px 3px 0 rgba(255, 255, 255, 0.355) inset;
}
#l_header nav ul li a {
  display: block;
  height: 100%;
  padding: 0.5rem 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#l_header nav ul li a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #l_header nav ul {
    display: none;
  }
}
#l_header nav .u-btn {
  display: block;
  height: 100%;
}
#l_header nav .u-btn:hover {
  opacity: 1;
}
#l_header nav .u-btn.u-form {
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #l_header nav .u-btn.u-form {
    display: none;
  }
}
#l_header nav .u-btn.u-form:hover {
  scale: 1.05;
}
#l_header nav .u-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-telback-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.p-telback-modal.is-open {
  display: flex;
}
.p-telback-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.p-telback-modal__box {
  position: relative;
  background: #fff;
  border-radius: 0.8rem;
  padding: 3rem 2.5rem 2.5rem;
  width: 88%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: telbackFadeIn 0.3s ease;
}
.p-telback-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #555;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.6rem;
  display: block;
  width: auto;
}
.p-telback-modal__close:hover {
  color: #000;
}
.p-telback-modal__confirm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.p-telback-modal__confirm-heading {
  text-align: center;
  line-height: 1.7;
  color: #db0f12;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: -1rem;
}
.p-telback-modal__confirm-title {
  font-family: "LINE Seed JP", "Yu Gothic", "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.7;
}
.p-telback-modal__confirm-btns {
  display: flex;
  gap: 1.2rem;
  width: 100%;
}
.p-telback-modal__btn {
  flex: 1;
  height: 3.8rem;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-telback-modal__btn--cancel {
  background: #e0e0e0;
  color: #555;
}
.p-telback-modal__btn--call {
  background: #db0f12;
  color: #fff;
}
.p-telback-modal__back {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.p-telback-modal__back.is-visible {
  display: flex;
}
.p-telback-modal__img {
  width: 100%;
  max-width: 28rem;
}
.p-telback-modal__text {
  font-family: "LINE Seed JP", "Yu Gothic", "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  color: #444;
  text-align: center;
  line-height: 1.8;
}

@keyframes telbackFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=layout.css.map */
