/*

Theme Name: lp-theme

Description: ピタエネ専用のカスタムテーマ

Version: 1.0

Author: You

*/
html {
  scroll-behavior: smooth;
}
/***** header *****/
header {
  position: fixed;
  max-width: 800px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255); 
  backdrop-filter: blur(6px); /* 背景のぼかし効果（オプション） */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* 横並び＆スペース調整 */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 20px;
}
/* ロゴ */
.logo img {
  height: 60px; /* ロゴサイズは調整 */
}
@media screen and (max-width: 768px) {
  .logo img {
    height: 35px; /* ロゴサイズは調整 */
  }
}
/*フッター*/
footer {
  position: relative;
  z-index: 9999;
  color: #fff;
  background: #EC6E24;
  text-align: center;
  padding: 20px 0;
}
.footer_wrap {
  margin: 20px 0;
}
/*.footer_wrap p {

  padding-bottom: 10px;

}*/
.footer_wrap a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.copy_wrap p {
  margin: 0 auto;
}
.copy {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 11px;
}