body {
  position: relative;
}

.header-nav {
  display: flex;
  align-items: baseline;
}
.header-nav-sns {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
.header-nav-sns li + li {
  margin-left: 0.5rem;
}
.header-nav-sns img {
  display: block;
  width: 40px;
}
header {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* X方向 Y方向 ぼかし 色 */
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
}
.header-inner {
  height: 80px;
}
.lp-bg {
  width: 100%;
  height: 100vh;
  background: url("../img/lp/lp-bg.png") no-repeat bottom / cover;
  position: fixed;
  z-index: 9;
  top: 0;
}
.lp-bg-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
footer {
  display: block;
  z-index: 30;
}

main {
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  background-color: #fff;
}

.lp-bg-icon01 {
  position: absolute;
  left: 3.5%;
  top: 55%;
  width: 100px;
}
.lp-bg-icon02 {
  position: absolute;
  right: -2%;
  top: 20%;
  width: 150px;
  z-index: 2;
}
.lp-menu {
  position: absolute;
  right: 0;
  top: 17%;
}
.lp-menu p {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #03c4ff;
  padding-bottom: 1rem;
  font-size: 1.1rem;
  padding-right: 5rem;
}
.lp-menu span {
  display: block;
  background-color: #03c4ff;
  color: #fff;
  width: fit-content;
  padding: 0.35rem 0.5rem;
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 0.25rem;
}

.lp-menu li {
  margin-top: 0.5rem;
}
.lp-menu li a {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.lp-menu li a img {
  display: inline-block;
  margin-right: 1rem;
}
.lp-section {
  position: relative;
}
.lp-section img {
  display: block;
  width: 100%;
}

#lp-section09 {
  padding-bottom: 300px;
}
.lp-menu ul li a.active {
  color: #03c4ff; /* ハイライト色（任意に変更可） */
  font-weight: bold;
}

.lp-more {
  width: 290px;
  height: 70px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 43px;
}

/*faq*/
.faq-wrap {
  width: 95%;
  max-width: 455px;
  margin: 0 auto;
}
.faq-item {
  margin: 20px auto;
  color: #4a4a4a;
  cursor: pointer;
}
.faq-item + .faq-item {
  margin-top: 30px;
}

.faq-question {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #999;
  padding: 8px 0;
  position: relative;
}

.q-text::before {
  content: attr(data-icon);
  color: #11c8ff; /* Q の青 */
  margin-right: 6px;
  font-size: 1.75rem;
  font-weight: 500;
}

.q-text {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
  line-height: 28px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 2px solid #666;
  border-radius: 50%;
  background: none;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: #666;
  transition: 0.3s;
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 開いたときはマイナス */
.faq-item.open .faq-toggle::after {
  height: 0;
}

.faq-answer {
  padding: 8px 0 0;
  display: none;
}

.a-text::before {
  content: attr(data-icon);
  color: #fbe440; /* A の黄色 */
  margin-right: 6px;
  font-size: 1.75rem;
  font-weight: 500;
}

.a-text {
  font-size: 1.22rem;
  font-weight: 500;
  display: flex;
  line-height: 28px;
}

.lp-sp-menu {
  width: 100%;
  max-width: 576px;
  overflow-x: auto; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
  display: none;
  background-color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.lp-sp-menu ul {
  display: flex;
  flex-wrap: nowrap; /* 折り返さず横並び */
  gap: 12px; /* 項目間の余白 */
  padding: 8px 12px; /* 内側余白 */
  margin: 0;
  list-style: none;
  min-width: max-content; /* 中身に応じて幅確保 */
}

.lp-sp-menu li {
  flex: 0 0 auto; /* アイテム幅を固定 */
}

.lp-sp-menu a {
  display: flex;
  flex-direction: column; /* アイコン＋テキスト縦並び */
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
  color: #333;
}

.lp-main {
  padding-top: 100px;
}

.lp-sp-menu ul li a.active {
  color: #03c4ff; /* ハイライト色（任意に変更可） */
  font-weight: bold;
}

.lp-spacer {
  width: 100%;
  height: 20px;
}
