/*
Theme Name: 未来空間株式会社
Description: オリジナルテーマ
Version: 1.0
*/

@charset "UTF-8";
/* ==========================================================================
   全般リセット & 共通設定
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #EEF4FB;
  line-height: 1.6;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ==========================================================================
  　750px基準・中央揃え
   ========================================================================== */
.lp-container {
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}
.lp-container .top-bar {
  background-color: #081775;
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
  letter-spacing: 0.05em;
}
.lp-container .site-header {
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-container .site-header .header-logo img {
  width: 250px;
}

.lp-container .site-header .header-buttons {
  display: flex;
  max-width: 50%;
}
.lp-container .site-header .header-buttons a {
  display: block;
  transition: opacity 0.2s ease;
}
.lp-container .site-header .header-buttons a:hover {
  opacity: 0.8;
}
.lp-container .site-header .header-buttons img {
  height: auto;
  width: 100%;
}

.lp-container .cta-section {
  background-color: #081775;
  padding: 40px 30px;
  text-align: center;
}
.lp-container .cta-inner {
  width: 100%;
}

.lp-container .cta-lead {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}
.lp-container {
  /* お電話での問い合わせはこちら */
}
.lp-container .cta-tel-sub {
  color: #ffffff;
  font-size: 33px;
  font-weight: 800;
  margin-top: 35px;
  letter-spacing: 0.02em;
}
.lp-container .cta-btn-wrap a {
  display: block;
  transition: opacity 0.2s ease;
}
.lp-container .cta-btn-wrap a:hover {
  opacity: 0.9;
}
.lp-container {
  /* ==========================================================================
     （アニメーション）設定
     ========================================================================== */
}
.lp-container .animate-pulse {
  animation: pulseAnimation 1.8s infinite ease-in-out;
}
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* ==========================================================================
  フッター
   ========================================================================== */
.site-footer {
  width: 100%;
}

/* 上段：リンクメニュー */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 30px 20px;
}
.footer-links a {
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* 下段：コピーライトの帯 */
.footer-copy {
  background-color: #081775;
  color: #ffffff;
  text-align: center;
  padding: 15px 10px;
}
.footer-copy small {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* ==========================================================================
  メディアクエリ
   ========================================================================== */
@media screen and (max-width: 490px) {
  .lp-container .top-bar {
    font-size: 13px;
  }
  .lp-container .cta-lead {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .lp-container .cta-tel-sub {
    margin-top: 15px;
    font-size: 17px;
  }
}
@media screen and (max-width: 400px) {
  .lp-container .top-bar {
    font-size: 10px;
  }
  .lp-container .cta-lead {
    font-size: 15px;
  }
  .lp-container .cta-tel-sub {
    font-size: 15px;
  }
}
@media screen and (min-width: 500px) and (max-width: 650px) {
  .lp-container .cta-lead {
    font-size: 28px;
  }
  .lp-container .cta-tel-sub {
    font-size: 23px;
  }
}/*# sourceMappingURL=style.css.map */