*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.lp-wrapper {
  background-color: #f0f0f0;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

section {
  width: 100%;
}

.lp-wrapper {
  max-width: 375px;
  margin: 0 auto;
  padding-bottom: 50px;
  background: #fff;
}


/* FV
--------------------------------------- */
.lp-wrapper .fv {
  width: 100%;
}

.lp-wrapper .btn {
  padding: 20px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.lp-wrapper .btn img,
.btn-sticky img{
  width: 96%;
  max-width: 365px;
  margin: 0 auto;
}
.btn-sticky {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.btn-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
}


/* What is
--------------------------------------- */
.what-is {
  background: #FFFCC4;
  padding: 28px 16px 24px;
}

.what-is__title {
  font-size: 32px;
  font-weight: 900;
  color: #CC0033;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-is__title img {
  width: 50%;
}

.what-is__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.what-is__item {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 30px 10px 14px;
  color: #fff;
  transition: .4s background ease;
}

.what-is__item--1 { background: #8E60A9; }
.what-is__item--2 { background: #3D5A99; }
.what-is__item--3 { background: #428BCA; }
.what-is__item--4 { background: #5CB85C; }
.what-is__item--5 { background: #FFC107; }
.what-is__item--6 { background: #F0AD4E; }
.what-is__item--7 { background: #D95383; }
.what-is__item--8 { background: #D9534F; }

ul.what-is__list a {
    text-decoration: none;
    position: relative;
}

ul.what-is__list a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    transition: .4s top ease;
    z-index: 1;
}

ul.what-is__list a:hover::before {
    top: 10px;
}

ul.what-is__list a:hover li {
    opacity: .8;
}

.what-is__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.what-is__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.what-is__body {
  flex: 1;
}

.what-is__name {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.what-is__name sup {
  font-size: 10px;
  font-weight: 700;
  vertical-align: super;
}

.what-is__desc {
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.92;
  margin-top: 2px;
}

.what-is__desc sup {
  font-size: 9px;
  vertical-align: super;
}

.what-is__notes {
  margin-top: 14px;
  font-size: 12px;
  color: #444;
  line-height: 1.6;
}

.what-is__notes p {
  padding-left: 2em;
  text-indent: -1.75em;
}


/* お悩みスライダー
--------------------------------------- */
.worries {
  background: #fff;
  padding: 24px 0 28px;
}

.worries__title {
  font-size: 23px;
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
  padding: 0 20px;
}

.worries__title em {
  font-style: normal;
  color: #e60012;
}

.worries__slider {
  position: relative;
  overflow: hidden;
}

.worries__track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.worries__slide {
  min-width: 100%;
  padding: 8px 20px 4px;
  box-sizing: border-box;
}

.worries__card {
  background: #fff;
  overflow: hidden;
}

.worries__case-label {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: 0 auto -18px;
  padding: 6px 28px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
}

.worries__case-label--1 { background: #008737; }
.worries__case-label--2 { background: #CC0033; }
.worries__case-label--3 { background: #0068B7; }
.worries__case-label--4 { background: #00CDD7; }

.worries__problem-area {
  padding: 24px 16px 16px;
  border: 1px solid #333;
  border-radius: 10px;
  position: relative;
}

.worries__problem-area::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 60px solid #333;
  border-left: 160px solid transparent;
  border-right: 160px solid transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
}

.worries__problem {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}

.worries__em--1 { color: #008737; }
.worries__em--2 { color: #CC0033; }
.worries__em--3 { color: #0068B7; }
.worries__em--4 { color: #00CDD7; }

.worries__illust {
  padding: 10px 20px 0;
  max-height: 240px;
  text-align: center;
}

.worries__illust img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.worries__solution {
  margin-top: 30px;
  padding: 30px 5px 16px;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #333;
  position: relative;
  z-index: 1;
}

.worries__solution--1 { border-color: #008737; }
.worries__solution--2 { border-color: #CC0033; }
.worries__solution--3 { border-color: #0068B7; }
.worries__solution--4 { border-color: #00CDD7; }

.worries__solution-label {
  width: 70%;
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  padding: 5px 0;
  border-radius: 30px;
  letter-spacing: 0.04em;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

.worries__solution-label--1 { background: #008737; }
.worries__solution-label--2 { background: #CC0033; }
.worries__solution-label--3 { background: #0068B7; }
.worries__solution-label--4 { background: #00CDD7; }

.worries__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-bottom: 10px;
}

.worries__tag {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 5px;
  border-radius: 4px;
  color: #fff;
}

.worries__tag--1 { background: #008737; }
.worries__tag--2 { background: #CC0033; }
.worries__tag--3 { background: #0068B7; }
.worries__tag--4 { background: #00CDD7; }

.worries__solution-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

.worries__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  background: #333;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  border-radius: 30px;
}

.worries__arrow--prev { left: 0; }
.worries__arrow--next { right: 0; }

.worries__arrow:hover {
  background: rgba(60, 60, 60, 0.85);
}

.worries__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.worries__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: background 0.2s;
}

.worries__dot--active {
  background: #555;
}


/* Point
--------------------------------------- */
.point {
  background-image: url('/fnt/cms/design_img/shared/img/cam/other/2026/0401_ad-lp/bg2.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.point__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 32px;
}

.point__label {
  display: inline-block;
  background: #CC0033;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  padding: 5px 24px;
  border-radius: 30px;
  margin-bottom: -20px;
  letter-spacing: 0.08em;
  z-index: 1;
}

.point__heading-box {
  width: 94%;
  background: #fff;
  border: 3px solid #CC0033;
  border-radius: 60px;
  padding: 30px 16px 20px;
  margin-bottom: 16px;
  text-align: center;
  box-shadow: 0 5px 0 #CC0033;
}

.point__heading {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.point__heading strong {
  font-size: 30px;
  color: #CC0033;
  display: block;
  margin-top: 2px;
}

.point__sub-title {
  font-size: 20px;
  font-weight: 900;
  color: #CC0033;
  text-align: center;
  width: 100%;
  margin-bottom: 4px;
}

.point__sub-desc {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.point__sub-desc.big {
  font-size: 20px;
}

.point__visual {
  width: 100%;
  margin: -8px 0 -12px;
}

.point__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.point__note-box {
  width: 94%;
  background: #fff;
  border: 3px dashed #e60012;
  padding: 12px 14px;
}

.point__note {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

.point__notes {
  width: 94%;
  margin-top: 14px;
  font-size: 12px;
  color: #444;
  line-height: 1.4;
}

.point__notes p {
  padding-left: 2em;
  text-indent: -1.75em;
}


/* シミュレーション
--------------------------------------- */
.simulation {
  background: #fff;
  padding: 32px 20px 28px;
}

.simulation__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.simulation__title {
  font-size: 25px;
  font-weight: 900;
  color: #CC0033;
  line-height: 1.4;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.simulation__title img {
  width: 50%;
}

.simulation__title-line {
  width: 100%;
  margin: -10px 0 16px;
}

.simulation__title-line img {
  width: 100%;
  height: auto;
  display: block;
}

.simulation__sub {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  width: 100%;
  text-align: center;
  margin-bottom: 2px;
}

.simulation__total-lead {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}

.simulation__total-lead strong {
  font-size: 28px;
  font-weight: 900;
  color: #CC0033;
}

.simulation__total-lead sup {
  font-size: 10px;
  vertical-align: super;
}

.simulation__visual {
  width: 100%;
  margin-bottom: 0;
}

.simulation__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.simulation__result {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  white-space: nowrap;
}

.simulation__result-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}

.simulation__result-text {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.simulation__result-text strong {
  font-size: 48px;
  font-weight: 900;
  color: #CC0033;
  line-height: 1;
}

.simulation__result-text strong span {
  font-size: 18px;
  color: #333;
}

.simulation__note {
  font-size: 11px;
  color: #666;
  line-height: 1.75;
}


/* お客様の声
--------------------------------------- */
.voice {
  background: url('/fnt/cms/design_img/shared/img/cam/other/2026/0401_ad-lp/bg.png') center center / cover no-repeat;
  padding: 32px 16px 36px;
}

.voice__inner {
  display: flex;
  flex-direction: column;
}

.voice__title {
  font-size: 20px;
  font-weight: 900;
  color: #CC0033;
  line-height: 1.55;
  margin-bottom: 24px;
  text-align: center;
}

.voice__title img {
  width: 50%;
  display: inline;
  transform: translateY(12px);
}

.voice__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 14px 14px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.voice__icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

.voice__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice__text {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  line-height: 1.75;
  flex: 1;
}


/* FAQ
--------------------------------------- */
.lp__faq {
  background: #fff;
  padding: 36px 20px 20px;
}

.faq__header {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 20px;
}

.faq__title-en {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #CC0033;
  line-height: 1;
  margin-bottom: 4px;
}

.faq__title-ja {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid #e0e0e0;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #CC0033;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background 0.2s;
}

.faq__question:hover {
  background: #a8002a;
}

.faq__q-label {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}

.faq__q-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex: 1;
  line-height: 1.5;
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.faq__icon::before {
  width: 10px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 10px;
}

.faq__item--open .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__answer {
  display: flex;
  gap: 10px;
  padding: 0 16px;
  background: #fafafa;
  align-items: flex-start;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item--open .faq__answer {
  max-height: 600px;
  padding: 16px;
}

.faq__a-label {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #333;
  flex-shrink: 0;
  line-height: 1.2;
}

.faq__a-text {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__a-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.faq__a-list li {
  padding-left: 1em;
  position: relative;
}

.faq__a-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.faq__link {
  color: #0068b7;
  text-decoration: underline;
}

.faq__link:hover {
  color: #004a80;
}


/* フッター
--------------------------------------- */
.lp-wrapper .footer {
  background: #222;
  padding: 20px;
  text-align: center;
}

.lp-wrapper .footer__text {
  font-size: 11px;
  color: #888;
  line-height: 1.8;
}

.lp-wrapper .footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.lp-wrapper .footer__links a {
  font-size: 11px;
  color: #aaa;
  text-decoration: none;
}

.lp-wrapper .footer__links a:hover {
  color: #fff;
}
