@charset "utf-8";

:root {
    /* =============== Color Palette =============== */
    --color-bg-main: #B2F7EF;            /* 全体背景色 */
    --color-text-main: #333333;         /* メインテキスト色 */
    --color-primary: #007acc;           /* CTA・リンクなどアクセント色 */
    --color-hero-bg: #B2F7EF;           /* ヒーローセクション背景 */
    --color-feature-bg: #e0f7fa;        /* 特長セクション背景 */
    --color-comparison-bg: #EFF7F6;     /* 比較セクション背景 */
    --color-faq-bg: #B2F7EF;            /* FAQセクション背景 */
    --color-white: #f3f3f3;             /* 白（ボックス内など） */
    --color-text-title: #227c8c;
  
    /* =============== Z-Index Layers =============== */
    --z-base: 0;                        /* 通常レイヤー */
    --z-dropdown: 1000;                 /* ドロップダウンメニューなど */
    --z-modal: 2000;                    /* モーダルウィンドウ */
    --z-loader: 3000;                   /* ローディングアニメーション */
    --z-fixed-ui: 4000;                 /* 固定UI（ヘッダーなど） */
  }
/* =============== Header =============== */
.lp-site-header {
  background: var(--color-white);
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  position: relative;
  z-index: var(--z-fixed-ui);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-site-logo img {
  height: 32px;
  padding-left: 30px;
}

.lp-site-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

.lp-site-nav a {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.lp-site-nav a:hover {
  color: var(--color-primary);
}

/* =============== Footer =============== */
.lp-site-footer{
    width: 100vw;
    background: var(--color-white);
}

footer strong {
    font-weight: normal;
  }

.lp-footer-inner {
  background: var(--color-white);
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  font-weight: normal;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

  
/* ハンバーガーアイコン */
.lp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  
  .lp-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-main);
    transition: 0.3s;
  }
  
  /* モバイル時のメニュー挙動 */
  @media screen and (max-width: 768px) {
    .lp-header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .lp-menu-toggle {
      display: flex;
    }
  
    .lp-site-nav {
      display: none;
      width: 100%;
    }
  
    .lp-site-nav.open {
      display: block;
      margin-top: 10px;
    }
  
    .lp-site-nav ul {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  }


  #btn_animation {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
  }
  
  /* シンプルなボタンスタイル */
  #btn_animation .btn {
    display: block;
    width: 200px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    background-color: #ffa319;
    color: #ffffff;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  /* ホバー演出（お好みで） */
  #btn_animation .btn:hover {
    background-color: #da7d03;
    transform: translateY(-2px);
  }



  