@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

:root {
  --color-primary: #2ab7af;
  --color-secondary: #ed569d;
  --color-bg: #f5f9fc;
  --color-bg-light: #e8f7f6;
  --color-bg-pink: #fef5f8;
  --color-text: #333333;
  --color-white: #ffffff;
  --color-border: #dddddd;
  --color-gray: #666666;
  --max-width: 1200px;
  --padding-sp: 24px;
  --padding-pc: 40px;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: break-all;
}

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table.table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

html {
  font-size: 62.5%;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  line-height: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

a:active,
a:focus {
  outline: 0;
}

/* ========== BASE ========== */
html {
  visibility: visible;
}

body {
  position: relative;
  display: block;
  overflow-x: hidden;
  width: 100%;
  min-width: 100%;
  margin: 0 auto;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
  text-align: justify;
  text-justify: inter-ideograph;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  line-height: 1.8;
}

small {
  font-size: 0.85em;
}

li {
  line-height: 1.8;
}

a,
a img {
  transition: opacity 0.3s;
}

a:hover,
a:hover img {
  opacity: 0.7;
}

/* ========== UTILITY ========== */
.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-text--center {
  text-align: center !important;
}

.lp-text--primary {
  color: var(--color-primary);
}

.lp-text--secondary {
  color: var(--color-secondary);
}

.lp-text--red {
  color: red;
}

.lp-text--marker {
  background: linear-gradient(transparent 65%, #FFEA00 65%);
}


.lp-text--title {
  text-align: center;
}

.lp-text--noto {
  font-family: "Noto Sans JP", sans-serif;
}

/* ========== HEADER ========== */
.lp-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 56px;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  /* 半透明の白 */
  -webkit-backdrop-filter: blur(5px);
  /* Safari対応 */
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.lp-header.is-fixed {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}

.lp-header.gnav-open {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}

.lp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 var(--padding-sp);
}

.lp-header__logos {
  display: flex;
  gap: 15px;
  align-items: center;
}

.lp-header__logo {
  width: 110px;
  z-index: 101;
}

.lp-header__logo a {
  display: block;
}

.lp-header__icons {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.lp-header__icon img {
  height: 30px;
  width: auto;
}

.lp-header__icon.shop img {
  height: 32px;
}


/* ========== GNAV (SP: Full Screen Overlay) ========== */
.lp-gnav {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  height: 100%;
  transition: 0.3s ease-in-out;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: visible;
}

.lp-gnav.is-open {
  position: fixed;
  visibility: visible;
  transition: 0.5s ease-in-out;
  opacity: 1;
  z-index: 1000;
  background: rgba(4, 32, 30, 0.3);
  overflow-y: scroll;
}

.lp-gnav.is-disabled {
  transition: none !important;
}

.lp-gnav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
}

.lp-gnav__close {
  position: absolute;
  top: 18px;
  right: 15px;
  z-index: 100;
  height: 30px;
}

.lp-gnav__close img {
  height: 100%;
  width: auto;
}

.lp-gnav__list {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  padding: 20px 20px 35px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  max-width: 400px;
}

.lp-gnav__item {
  display: inline-block;
  padding: 10px;
  text-align: left;
}

.lp-gnav__link {
  position: relative;
  display: inline-block;
  text-align: left;
  padding-right: 40px;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 0.5px solid #000;
}

.lp-gnav__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  transition: all 0.5s ease;
  background: url("../images/icon-nav-link.png") no-repeat center center/contain;
}

.lp-gnav__link:hover {
  opacity: 0.7;
}

.lp-gnav__link:hover::after {
  background: url("../images/icon-nav-link-hover.png") no-repeat center center/contain;
}

.lp-gnav__cta-text {
  max-width: 185px;
  margin: 0 auto;
}

.lp-gnav__cta {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 10px;
  width: 100%;
  max-width: 310px;
}

.lp-gnav__cta .lp-cta__btn {
  width: 100%;
  height: 75px;
  border-radius: 100px;
  padding: 15px 30px;
}

.lp-gnav__cta .lp-cta__btn::before {
  border-radius: 100px;
}

.lp-gnav__cta .icon-amazon {
  height: 55px;
}

.lp-gnav__cta .icon-rakuten {
  height: 35px;
}

.lp-gnav__cta .icon-qoo10 {
  height: 30px;
}

.lp-gnav__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px var(--padding-sp);
}

.lp-gnav__logo {
  max-width: 170px;
  width: 100%;
  z-index: 100;
}

/* ========== GNAV TOGGLE (Hamburger) ========== */
.lp-gnav-toggle {
  display: block;
  position: fixed;
  width: 30px;
  height: 30px;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 9999;
}

.lp-gnav-toggle__item,
.lp-gnav-toggle__item::before,
.lp-gnav-toggle__item::after {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  height: 2px;
  width: 30px;
  background: var(--color-primary);
  display: block;
  transform: translateY(-50%);
  border-radius: 2px;
  content: "";
  transition: 0.5s ease;
}

.lp-gnav-toggle__item::before {
  margin-top: -10px;
}

.lp-gnav-toggle__item::after {
  margin-top: 10px;
}

/* ========== MAIN ========== */
/* .lp-main {
  padding-top: 56px;
} */

/* ========== MAINVISUAL ========== */
.lp-mainvisual {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  height: auto;
  aspect-ratio: 119/213;
  background: url("../images/img-mainvisual-sp.jpg") no-repeat center center/cover;
}

.lp-mainvisual__inner img {
  width: 100%;
}

.lp-mainvisual__logo {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 200px;
  z-index: 90;
}

.lp-mainvisual__title {
  position: absolute;
  z-index: 80;
}

.lp-mainvisual__desc {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 75%;
  height: auto;
  z-index: 90;
}

.lp-mainvisual__product {
  position: absolute;
  right: -65%;
  top: 57%;
  width: 105%;
  z-index: 70;
  transform: translate(-50%, -50%);
  height: auto;
}

.lp-mainvisual__slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 35%;
  transform: translateY(-50%);
  overflow: hidden;
}

.lp-mainvisual__row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lp-mainvisual__row:nth-child(1) {
  z-index: 2;
}

.lp-mainvisual__row:nth-child(1) .lp-mainvisual__track {
  animation: marquee2 var(--duration-fast, 40s) linear infinite;
}

.lp-mainvisual__row:nth-child(2) {
  z-index: 1;
}

.lp-mainvisual__row:nth-child(2) .lp-mainvisual__track {
  animation: marquee2 var(--duration-slow, 70s) linear infinite;
  animation-delay: -5s;
}

.lp-mainvisual__track {
  height: 100%;
  display: flex;
  width: fit-content;
}

.lp-mainvisual__track img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

@keyframes marquee2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== INTRO ========== */
.lp-intro {
  background: var(--color-white);
}

.lp-intro__inner {
  padding: 25px var(--padding-sp) 0px;
}

.lp-intro__bnr {
  margin-bottom: 25px;
}

.lp-intro__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.lp-intro__content {
  order: 2;
}

.lp-intro__cta {
  order: 1;
  margin-bottom: 50px;
}

.lp-intro__heading {
  margin-bottom: 20px;
  text-align: center;
}

.lp-intro__title {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.lp-intro__title .lp-text--secondary {
  font-size: 1.7rem;
}

.lp-intro__title .lp-text--primary {
  font-size: 3.8rem;
}

.lp-intro__note {
  font-size: 1rem;
  color: var(--color-gray);
  margin-top: 5px;
  margin-bottom: 40px;
}

.lp-intro__info {
  margin-bottom: 20px;
}

.lp-intro__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.lp-intro__text {
  font-size: 1.4rem;
  line-height: 1.9;
  margin-bottom: 10px;
}

.lp-intro__comparison {
  margin-bottom: 10px;
}

.lp-intro__caption {
  font-size: 1.2rem;
}

/* Accordion */
.lp-intro__accordion {
  margin-top: 20px;
}

.lp-accordion {
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  border-bottom: 1px solid #e0e0e0;
}

.lp-accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 15px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.lp-accordion__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
}

.lp-accordion__icon {
  width: 10px;
  height: 10px;
  position: relative;
}

.lp-accordion__icon::before,
.lp-accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--color-text);
  transition: 0.3s;
}

.lp-accordion__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.lp-accordion__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.lp-accordion.is-open .lp-accordion__icon::after {
  opacity: 0;
}

.lp-accordion__body {
  height: 0;
  /* padding: 15px; */
  background: var(--color-white);
}

.lp-accordion__body-inner {
  padding: 15px;
}

.lp-accordion.is-open .lp-accordion__body {
  display: block;
}

.lp-accordion__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-accordion__item {
  display: flex;
  gap: 8px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.lp-accordion__item dt {
  font-weight: 600;
  flex-shrink: 0;
}

.lp-accordion__content {
  font-size: 1.2rem;
  line-height: 1.8;
}

.lp-accordion__content p {
  margin-bottom: 10px;
}

.lp-accordion__content p:last-child {
  margin-bottom: 0;
}

.lp-accordion__subtitle {
  margin-top: 20px;
  text-decoration: underline;
}

.lp-accordion__notes {
  padding-left: 1.2em;
}

.lp-accordion__notes li {
  list-style: disc;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

.lp-accordion.is-open .lp-accordion__icon::after {
  opacity: 0;
}

.lp-accordion__notes li::before {
  color: red;
}

.lp-accordion__notes li strong {
  color: red;
  text-decoration: underline;
}

/* Intro CTA */
.lp-intro__cta {
  text-align: center;
}

.lp-intro__cta-inner {
  margin-bottom: 15px;
}

.lp-intro__cta-inner img {
  width: 400px;
}

.lp-intro__cta-inner small {
  display: block;
  font-size: 11px;
  margin-top: 10px;
  text-align: left;
  line-height: 1.5;
}

/* CTA Buttons */
.lp-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  transition: 0.3s;
}

.lp-cta__btn {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  flex: 1;
  padding: 12px 10px;
  height: 80px;
  background: var(--color-white);
  border-radius: 15px;
  border: none;
  /* borderは擬似要素で */
}

/* グラデーションボーダー */
.lp-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f8f8f8 1%, #cecece 22%, #f8f8f8 49%, #cecece 74%, #f8f8f8 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  border-radius: 15px;
}

.lp-cta__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 1;
  pointer-events: none;
}

.lp-cta__btn:hover {
  opacity: 1;
}

.lp-cta__btn:hover::after {
  animation: flash 0.75s;
}

@keyframes flash {
  0% {
    left: -60%;
  }

  100% {
    left: 120%;
  }
}

.lp-cta__btn img {
  position: relative;
  z-index: 0;
  width: auto;
}

.lp-intro__movie {
  margin-top: 30px;
}

.lp-intro__movie iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

/* ========== VOICE ========== */
.lp-voice {
  padding: 80px 0 0;
  width: 100%;
  overflow-x: hidden;
}

.lp-voice__inner {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}

.lp-voice__movie {
  position: absolute;
  height: 780px;
  top: -50%;
  left: 50%;
  aspect-ratio: 9 / 16;
  transform: translateX(-50%);
  z-index: -1;
}

.lp-voice__movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-voice__title {
  position: relative;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 295px;
  padding: 0 var(--padding-sp);
}

.lp-voice__title img {
  width: 100%;
  max-width: 100%;
}

.lp-voice__slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0 var(--padding-sp);
  background: linear-gradient(180deg, rgba(202, 233, 228, 0) 0%, rgba(202, 233, 228, 0.5) 5%, rgba(202, 233, 228, 0.5) 95%, rgba(202, 233, 228, 0) 100%);
}

.lp-voice__notice {
  font-size: 1.1rem;
  padding: 0 24px;
  color: #797979;
}

/* ========== VOICE SLIDER (Marquee) ========== */
.lp-voice__slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 0;
  overflow: hidden;
}

.lp-voice__row {
  width: 100%;
  overflow: hidden;
}

.lp-voice__track {
  display: flex;
  width: fit-content;
  animation: marquee var(--duration, 30s) linear infinite;
}

.lp-voice__track img {
  display: block;
  height: 80px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.lp-voice__row:nth-child(1) .lp-voice__track {
  animation-delay: 0s;
}

.lp-voice__row:nth-child(2) .lp-voice__track {
  animation-delay: -5s;
  /* 5秒分先の位置から開始 */
}

.lp-voice__row:nth-child(3) .lp-voice__track {
  animation-delay: -3s;
  /* 10秒分先の位置から開始 */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== CTA Section ========== */
.lp-cta {
  padding: 30px var(--padding-sp);
  background: url("../images/img-cta-bg-sp.png") no-repeat top center/cover;
}

.lp-cta__inner {
  max-width: 500px;
  margin: 0 auto;
}

.lp-cta__img {
  margin-top: 40%;
  margin-bottom: 15px;
}

/* ========== WORRY ========== */
.lp-worry {
  position: relative;
  z-index: 1;
  padding: 45px var(--padding-sp) 100px;
  background: url("../images/img-worry-bg-sp.png") no-repeat center bottom/cover;
  width: 100vw;
  overflow-x: hidden;
}

.lp-worry__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 20px;
}

.lp-worry__title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}

.lp-worry__list {}

.lp-worry__item {
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}

.lp-worry__img {
  width: 100%;
  flex-shrink: 0;
  margin-left: -45px;
}

.lp-worry__text {
  font-size: 1.9rem;
  line-height: 1.6;
  flex: 1;
}

.lp-worry__text strong {
  font-size: 30px;
}

.lp-worry__item:nth-of-type(2) .lp-worry__text {
  text-align: right;
}

.lp-worry__item:nth-of-type(2) .lp-worry__img {
  margin-right: -45px;
  margin-left: auto;
}

/* ========== FEATURE ========== */
.lp-feature {
  position: relative;
  background: linear-gradient(90deg, #cae9e4 0%, #fff 10%, #fff 90%, #cae9e4 100%);
  padding-top: 70px;
  margin-top: -70px;
  width: 100vw;
  overflow-x: hidden;
}

.lp-feature__inner {
  padding: 0 var(--padding-sp) 45px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lp-feature__heading {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 15px;
}

.lp-feature__title {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 600;
}

.lp-feature__title strong {
  font-size: 3.5rem;
}

.lp-feature__change {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.lp-feature__change::before {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  height: 400px;
  width: 100vw;
  background: url("../images/img-feature-bg.png") center/ cover no-repeat;
}

.lp-feature__change-before,
.lp-feature__change-after {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
}

.lp-feature__change-arrow {
  width: 65px;
}

.lp-feature__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: relative;
  padding-top: 60px;
}

.lp-feature__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 5px);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, #ffffff 50%, #cae9e4 70%, #cae9e4 100%);
  border-radius: 50%;
  padding: 12px 8px;
  text-align: center;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.lp-feature__name {
  color: var(--color-primary);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}

.lp-feature__name .lp-text--secondary {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ========== POINT ========== */
.lp-point {
  padding: 45px var(--padding-sp) 30px;
}

.lp-point--last {
  padding-bottom: 80px;
}

.lp-point__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.lp-point__heading {
  text-align: center;
  margin-bottom: 20px;
}

.lp-point__title {
  position: relative;
  color: var(--color-primary);
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  padding-bottom: 20px;
}

.lp-point__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%, var(--color-secondary) 100%);
}

.lp-point__title strong {
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  margin-top: 5px;
}

.lp-point__wrapper {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.lp-point__wrapper:last-child {
  margin-bottom: 0;
}

.lp-point__img {
  position: relative;
  text-align: center;
  margin-left: -24px;
  margin-right: -24px;
}

.lp-point__badge {
  position: absolute;
  max-width: 160px;
  top: -20px;
  right: 10px;
}

.lp-point__badge--02 {
  max-width: 210px;
  right: -10px;
}

.lp-point__content {
  flex: 1;
}

.lp-point__text {
  font-size: 1.5rem;
  line-height: 1.9;
  margin-bottom: 10px;
}

.lp-point__notice {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 1.1rem;
  text-align: left;
  color: var(--color-gray);
  line-height: 1.5;
}

.lp-point__notice--first {
  padding-left: 24px;
  margin-top: 5px;
}

.lp-point__img-detail {
  margin-top: 15px;
}

/* Reviews */
.lp-point__reviews {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.lp-point__reviews--wrapper {
  margin-top: 0;
}

.lp-review {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--color-white);
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #a5a5a5;
}

.lp-point--alt .lp-review {
  background: var(--color-white);
}

.lp-review__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.lp-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.lp-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-review__age {
  font-size: 1.4rem;
  font-weight: 600;
}

.lp-review__rating {
  margin-left: 10px;
}

.lp-review__rating img {
  width: 65px;
}

.lp-review__text {
  font-size: 1.4rem;
  line-height: 1.7;
}

/* ========== DEVELOPMENT ========== */
.lp-development {
  width: 100%;
  overflow-x: hidden;
  padding: 45px var(--padding-sp) 0;
  background: linear-gradient(90deg, #cae9e4 0%, #fff 10%, #fff 90%, #cae9e4 100%);
}

.lp-development__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.lp-development__heading {
  text-align: center;
  margin-bottom: 40px;
}

.lp-development__lead {
  font-size: 1.8rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.lp-development__title {
  font-size: 3.5rem;
  line-height: 1.4;
  font-weight: 600;
}

.lp-development__block {
  margin-bottom: 50px;
}

.lp-development__block:last-of-type {
  margin-bottom: 0;
}

.lp-development__subtitle {
  color: var(--color-primary);
  font-weight: 600;
}

.lp-development__subtitle,
.lp-brand__subtitle {
  font-size: 2.8rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.lp-development__text,
.lp-brand__text,
.lp-company__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 15px;
}

.lp-development__text:last-child {
  margin-bottom: 0;
}

.lp-development__img {
  margin-bottom: 12px;
}

.lp-development__img:last-child {
  margin-bottom: 0;
}

.lp-development__box {
  background: #DAFFFD;
  border-radius: 20px;
  padding: 20px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 25px;
}

.lp-development__box>img {
  max-width: 165px;
  margin-bottom: 12px;
  border-radius: 6px;
}

.lp-development__box-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.lp-development__box-text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.lp-development__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-development__img {
  position: relative;
}

.lp-development__img-product {
  margin-left: -30px;
  margin-bottom: 30px;
}

.lp-development__img-badge {
  position: absolute;
  bottom: 0px;
  left: 30px;
  width: calc(100% - 30px);
}

.lp-text--title {
  font-size: 2.4rem;
  font-weight: 600;
}

/* ========== DEVELOPMENT SLIDER ========== */
.lp-development__slider {
  margin-top: 30px;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 295px;
  overflow: hidden;
}

.lp-development__track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: fit-content;
  height: 100%;
  animation: marquee-left 60s linear infinite;
}

.lp-development__track img {
  display: block;
  height: 295px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.lp-development__text--top,
.lp-development__track--under {
  position: absolute;
  left: 0;
  display: flex;
  width: fit-content;
  animation: marquee-right 150s linear infinite;
  z-index: 1;
}

.lp-development__text--top img,
.lp-development__track--under img {
  display: block;
  height: 27px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.lp-development__text--top {
  top: 0;
}

.lp-development__track--under {
  bottom: 0;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ========== PC ========== */
@media screen and (min-width: 768px) {
  .lp-development__slider {
    height: 395px;
    margin-top: 100px;
  }

  .lp-development__track img {
    height: 395px;
  }

  .lp-development__text--top img,
  .lp-development__track--under img {
    height: 37px;
  }
}

/* ========== BRAND ========== */
.lp-brand {
  padding: 45px var(--padding-sp);
  background: var(--color-bg);
}

.lp-brand__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.lp-brand__heading {
  text-align: center;
  margin-bottom: 25px;
}

.lp-brand__title {
  font-size: 2.8rem;
  line-height: 1.5;
}

.lp-brand__title span {
  position: relative;
  display: block;
  margin-top: 6px;
}

.lp-brand__title small {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.lp-brand__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-brand__img {
  text-align: center;
}

.lp-brand__instagram {
  display: inline-block;
  margin-top: 10px;
}

.lp-brand__instagram img {
  width: 220px;
}

.lp-brand__subtitle,
.lp-company__subtitle {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ========== COMPANY ========== */
.lp-company {
  padding: 0 var(--padding-sp) 50px;
  background: var(--color-bg);
}

.lp-company__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.lp-company__heading {
  text-align: center;
  margin-bottom: 25px;
}


.lp-company__logo {
  max-width: 220px;
  margin: 20px auto;
}

.lp-company__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.lp-company__wrapper:last-child {
  margin-bottom: 0;
}

.lp-company__wrapper>.lp-company__img img {
  border-radius: 8px;
}

.lp-company__content .lp-company__img {
  max-width: 140px;
  margin: 10px auto;
}

/* ========== FAQ (JS Accordion対応) ========== */
.lp-faq {
  padding: 45px var(--padding-sp);
  background: var(--color-white);
}

.lp-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.lp-heading {
  text-align: center;
  margin-bottom: 25px;
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
}

.lp-faq__item {
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
}

.lp-faq__question {
  display: flex;
  gap: 10px;
  padding: 20px 15px;
  position: relative;
}

.lp-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 14px;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
  transition: 0.3s;
}

.lp-faq__question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 2px;
  height: 14px;
  background: #000;
  transform: translateY(-50%);
  transition: 0.3s;
}

.lp-faq__item--open .lp-faq__question::before {
  opacity: 0;
}

.lp-faq__answer {
  display: flex;
  gap: 10px;
  background: var(--color-white);
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.lp-faq__answer-inner {
  padding: 20px 15px;
  display: flex;
  gap: 10px;
}

.lp-faq__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 3rem;
  font-weight: 500;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.lp-faq__question .lp-faq__icon {
  color: var(--color-primary);
}

.lp-faq__answer .lp-faq__icon {
  color: var(--color-secondary);
}

.lp-faq__question-text,
.lp-faq__answer-text {
  line-height: 1.6;
  flex: 1;
  padding-top: 1px;
  padding-right: 25px;
}

.lp-faq__question-text {
  font-size: 1.5rem;
}

.lp-faq__answer-text {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ========== FOOTER ========== */
.lp-footer {
  background: #fff;
}

.lp-footer__cta {
  padding: 80px var(--padding-sp) 30px;
  background-image: url("../images/img-footer-cta-bg-sp.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.lp-footer__cta-title {
  margin-bottom: 18px;
}

.lp-footer__cta-title img {
  max-width: 300px;
  margin: 0 auto;
}

.lp-footer__cta .lp-cta__btns {
  max-width: 350px;
  margin: 0 auto;
}

.lp-footer__inner {
  padding: 50px 30px 20px;
}

.lp-footer__brand {
  margin-bottom: 20px;
  text-align: center;
}

.lp-footer__logo {
  margin-bottom: 10px;
}

.lp-footer__logo img {
  max-width: 250px;
  margin: 0 auto 20px;
}

.lp-footer__tagline {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.lp-footer__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.lp-footer__btn {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.2rem;
  padding: 10px 20px;
  border: 1px solid #adadad;
  border-radius: 50px;
  width: 100%;
  max-width: 250px;
}

.lp-footer__btn img {
  width: 16px;
  margin-right: 0;
}

.lp-footer__instagram {
  display: block;
  margin: 20px auto 0 0;
}

.lp-footer__instagram img {
  margin: 0;
}

.lp-footer__info {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.lp-footer__company {
  font-weight: 500;
  margin-bottom: 5px;
}

.lp-footer__address,
.lp-footer__tel,
.lp-footer__hours {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 3px;
  text-decoration: none;
  -webkit-text-decoration: none;
  pointer-events: none;
}

.lp-footer__copy {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1rem;
  color: #939393;
  padding: 12px var(--padding-sp);
  opacity: 0.8;
}

/* ========== TOP BUTTON ========== */
.lp-topbtn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.lp-topbtn.is-show {
  opacity: 1;
  visibility: visible;
}

.lp-topbtn img {
  width: 16px;
}

/* ========== FADE UP ANIMATION ========== */
.is-fadeup {
  opacity: 0;
  transform: translateY(30px);
}

.is-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-fadeup--absolute {
  opacity: 0;
}

.is-fadeup--absolute.is-visible {
  opacity: 1;
}

.lp-btntop {
  position: fixed;
  z-index: 50;
  right: 10px;
  bottom: 62px;
  width: 50px;
  height: 50px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  visibility: hidden;
}

.lp-btntop.is-fixed {
  visibility: visible;
  pointer-events: visible;
  opacity: 1;
}

/* ============================================================
   PC STYLES (min-width: 768px)
   ============================================================ */
@media screen and (min-width: 768px) {

  /* ========== UTILITY ========== */
  .sp {
    display: none !important;
  }

  .pc {
    display: block !important;
  }

  .lp-text--title {
    font-size: 4rem !important;
    margin-bottom: 70px;
  }

  .lp-text--center-pc {
    text-align: center !important;
  }

  .lp-mt0-pc {
    margin-top: 10px !important;
  }

  .lp-mb0-sp {
    margin-bottom: 0 !important;
  }

  /* ========== HEADER ========== */
  .lp-header {
    height: 70px;
  }

  .lp-header__inner {
    justify-content: space-between;
    padding: 0 25px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .lp-header__logo {
    width: 150px;
  }

  .lp-gnav__inner {
    width: 375px;
    margin-left: auto;
  }

  /* ========== MAIN ========== */

  /* ========== MAINVISUAL ========== */
  .lp-mainvisual {
    height: auto;
    aspect-ratio: 1266/695;
    background: url("../images/img-mainvisual-pc.jpg") no-repeat center center/cover;
  }

  .lp-mainvisual__logo {
    top: 0px;
    right: 0px;
    left: auto;
    width: 250px;
  }

  .lp-mainvisual__title {
    position: absolute;
    z-index: 80;
    width: 560px;
  }

  .lp-mainvisual__desc {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 55%;
    height: auto;
    z-index: 90;
  }

  .lp-mainvisual__product {
    position: absolute;
    right: 3%;
    top: 50%;
    width: 55%;
    transform: translateY(-50%);
  }

  .lp-mainvisual__slider {
    height: 70%;
  }

  /* ========== INTRO ========== */
  .lp-intro__inner {
    padding: 50px var(--padding-pc) 0px;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .lp-intro__bnr {
    margin: 0 auto 60px;
    max-width: 950px;
  }

  .lp-intro__wrapper {
    flex-direction: row-reverse;
    gap: 40px;
    align-items: flex-start;
  }

  .lp-intro__content {
    flex: 1;
    order: 1;
    padding-top: 100px;
  }

  .lp-intro__cta {
    width: 43%;
    flex-shrink: 0;
    order: 2;
    position: sticky;
    top: 90px;
  }

  .lp-intro__cta .icon-amazon {
    max-height: 60px;
  }

  .lp-intro__heading {
    text-align: left;
  }

  .lp-intro__title {
    font-size: 5.8rem;
  }

  .lp-intro__title .lp-text--secondary {
    font-size: 3.5rem;
  }

  .lp-intro__title .lp-text--primary {
    font-size: 7rem;
  }

  .lp-intro__note {
    text-align: left;
  }

  .lp-intro__subtitle {
    font-size: 2.4rem;
    text-align: left;
  }

  .lp-intro__text {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .lp-intro__comparison {
    margin-bottom: 40px;
    max-width: 470px;
  }

  .lp-intro__accordion {
    max-width: 450px;
    font-size: 16px;
  }

  .lp-intro__cta-inner img {
    max-width: 100%;
  }

  .lp-cta__btns {
    gap: 8px;
    width: 100%;
  }

  .lp-cta__btn {
    padding: 10px 25px;
    border-radius: 100px;
  }

  .lp-cta__btn::before {
    border-radius: 100px;
  }

  .lp-cta__btn img {
    max-height: 35px;
  }

  .lp-cta__btn img.icon-amazon {
    max-height: 60px;
  }

  .lp-intro__movie {
    margin-top: 40px;
    max-width: 1000px;
    margin: 100px auto 0;
  }

  /* ========== VOICE ========== */
  .lp-voice {
    padding: 100px 0 0;
    padding-bottom: 0;
  }

  .lp-voice__inner {
    padding-bottom: 0;
  }

  .lp-voice__title {
    max-width: 1180px;
    margin-bottom: 50px;
  }

  .lp-voice__title img {
    max-width: 1100px;
  }

  .lp-voice__movie {
    height: 1500px;
    top: -70%;
  }

  .lp-voice__slider {
    padding: 40px 0 25px;
    gap: 15px;
    margin: 0 auto 100px;
  }

  .lp-voice__track img {
    height: 100px;
  }

  .lp-voice__notice {
    text-align: right;
    margin-top: -10px;
    margin-right: 100px;
  }

  /* ========== CTA Section ========== */
  .lp-cta {
    padding: 45px var(--padding-pc);
    background: url("../images/img-cta-bg-pc.png") no-repeat center center/cover;
  }

  .lp-cta__outer {
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .lp-cta__inner {
    max-width: 850px;
    margin-left: auto;
    margin-right: 0;
  }

  .lp-cta__img {
    margin-top: 0;
    margin-bottom: 20px;
  }

  /* ========== WORRY ========== */
  .lp-worry {
    padding: 70px var(--padding-pc);
    background: url("../images/img-worry-bg-pc.png") no-repeat center bottom/cover;
  }

  .lp-worry__title {
    font-size: 5.3rem;
    margin-bottom: 40px;
  }

  .lp-worry__list {
    margin-bottom: 70px;
  }

  .lp-worry__item {
    flex: 1;
    flex-direction: row;
    align-items: center;
    padding: 25px 20px;
    gap: 30px;
  }

  .lp-worry__img {
    width: 100%;
    max-width: 60%;
    margin-bottom: 10px;
  }

  .lp-worry__text {
    font-size: 2.4rem;
  }

  .lp-worry__text strong {
    font-size: 4.2rem;
  }

  .lp-worry__item:nth-of-type(2) {
    flex-direction: row-reverse;
  }

  .lp-worry__item:nth-of-type(2) .lp-worry__text {
    text-align: left;
  }

  /* ========== FEATURE ========== */
  .lp-feature {
    padding: 100px 0 0;
  }

  .lp-feature__inner {
    padding: 0 var(--padding-pc);
  }

  .lp-feature__heading {
    padding-top: 25px;
    margin-bottom: 30px;
  }

  .lp-feature__title {
    font-size: 3.4rem;
    margin-bottom: 80px;
  }

  .lp-feature__title strong {
    font-size: 8.3rem;
  }

  .lp-feature__change {
    margin: 0 auto 150px;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .lp-feature__change::before {
    top: 20%;
    bottom: auto;
    height: 600px;
  }

  .lp-feature__change-after {
    width: 99.2%;
  }

  .lp-feature__change-arrow {
    position: absolute;
    z-index: 1;
    width: 90px;
    top: 49.8%;
    left: 50.5%;
    transform: translate(-50%, -50%);
  }

  .lp-feature__list {
    flex-wrap: nowrap;
    gap: 15px;
    padding-top: 0;
  }

  .lp-feature__item {
    width: auto;
    flex: 1;
    padding: 20px 12px;
  }

  .lp-feature__name {
    font-size: 2.1rem;
  }

  .lp-feature__name .lp-text--secondary {
    font-size: 1.6rem;
  }

  /* ========== POINT ========== */
  .lp-point {
    padding: 60px var(--padding-pc);
  }

  .lp-point__heading {
    margin-bottom: 70px;
  }

  .lp-point__title {
    font-size: 2.8rem;
  }

  .lp-point__title strong {
    font-size: 4.2rem;
  }

  .lp-point__wrapper {
    max-width: 1200px;
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .lp-point__wrapper--reverse {
    flex-direction: row-reverse;
  }

  .lp-point__img {
    width: calc(50% - 25px);
    flex-shrink: 0;
    margin: 0;
  }

  .lp-point__wrapper--reverse .lp-point__img {
    margin-right: calc((100% - 100vw) / 2);
    width: calc(50% - 25px + (100vw - 100%) / 2);
  }

  .lp-point__img>img {
    border-radius: 20px;
  }

  .lp-point__img-detail {
    max-width: 420px;
  }

  .lp-point__badge {
    left: -40px;
    top: -50px;
    right: auto;
    max-width: 210px;
  }

  .lp-point__badge.lp-point__badge--02 {
    right: 10px;
    left: auto;
    top: -60px;
    max-width: 320px;
  }

  .lp-point__text {
    font-size: 1.6rem;
  }

  .lp-point__notice {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .lp-point__notice--first {
    padding-left: 0;
  }

  .lp-point__reviews--wrapper.lp-point__reviews {
    flex-direction: row;
    gap: 15px;
  }

  .lp-point__reviews {
    flex-direction: column;
    gap: 15px;
  }

  .lp-review {
    flex: 1;
    padding: 18px;
  }

  .lp-review__avatar {
    width: 60px;
    height: 60px;
  }

  .lp-review__age {
    font-size: 1.4rem;
  }

  .lp-review__rating img {
    width: 100px;
  }

  .lp-review__text {
    font-size: 1.6rem;
  }

  /* ========== DEVELOPMENT ========== */
  .lp-development {
    padding: 80px var(--padding-pc) 0;
  }

  .lp-development__heading {
    margin-bottom: 45px;
  }

  .lp-development__lead {
    font-size: 2.4rem;
  }

  .lp-development__title {
    font-size: 5.3rem;
    margin-bottom: 100px;
  }

  .lp-development__block {
    margin-bottom: 100px;
  }

  .lp-development__subtitle {
    font-size: 4.2rem;
    text-align: left;
    margin-bottom: 30px;
  }

  .lp-development__text {
    font-size: 1.6rem;
  }

  .lp-development__wrapper {
    flex-direction: row;
    gap: 35px;
    align-items: flex-start;
  }

  .lp-development__content {
    flex: 1;
  }

  .lp-development__wrapper .lp-development__content .lp-development__img {
    display: none;
  }

  .lp-development__wrapper>.lp-development__img {
    display: block;
    width: 50%;
    flex-shrink: 0;
    padding-top: 20px;
    margin-bottom: 0;
  }

  .lp-development__content img {
    max-width: 440px;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .lp-development__content .lp-development__text {
    max-width: 470px;
  }

  .lp-development__img-main {
    margin-left: -40px;
    margin-right: -100px;
    max-width: calc(100% + 140px);
  }

  .lp-development__img-badge {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: calc(100% + 40px);
  }

  .lp-development__box {
    max-width: 730px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
  }

  .lp-development__box>img {
    max-width: 250px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .lp-development__box-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .lp-development__box-text {
    font-size: 1.6rem;
  }

  /* ========== BRAND ========== */
  .lp-brand {
    padding: 70px var(--padding-pc);
  }

  .lp-brand__heading {
    margin-bottom: 35px;
  }

  .lp-brand__title.lp-text--title {
    margin-bottom: 100px;
  }

  .lp-brand__title span {
    display: inline-block;
  }

  .lp-brand__title span small {
    position: absolute;
    border: -30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .lp-brand__wrapper {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  .lp-brand__img {
    width: 35%;
    flex-shrink: 0;
  }

  .lp-brand__content {
    flex: 1;
  }

  /* ========== COMPANY ========== */
  .lp-company {
    padding: 70px var(--padding-pc);
  }

  .lp-company__heading {
    margin-bottom: 40px;
  }

  .lp-company__title {
    font-size: 2.6rem;
  }

  .lp-company__wrapper {
    flex-direction: row;
    gap: 30px;
    padding: 30px;
    margin-bottom: 30px;
  }

  .lp-company__wrapper--alt {
    flex-direction: row-reverse;
  }

  .lp-company__wrapper>.lp-company__img {
    width: 48%;
  }

  .lp-company__content {
    flex: 1;
  }

  .lp-company__content .lp-company__img {
    max-width: 130px;
    margin: 10px 0;
  }

  .lp-company__logo {
    margin-left: 0;
    max-width: 330px;
    margin-top: -3px;
    margin-bottom: 40px;
  }

  .lp-company__subtitle,
  .lp-brand__subtitle {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }

  .lp-development__text,
  .lp-brand__text,
  .lp-company__text {
    font-size: 1.6rem;
    line-height: 1.9;
    margin-bottom: 30px;
  }

  /* ========== FAQ ========== */
  .lp-faq {
    padding: 60px var(--padding-pc);
  }

  .lp-heading {
    margin-bottom: 35px;
  }

  .lp-heading__title {
    font-size: 2.6rem;
  }

  .lp-faq__list {
    max-width: 1000px;
    margin: 0 auto;
  }

  .lp-faq__question .lp-faq__icon {
    margin-top: -10px;
  }

  .lp-faq__icon {
    width: 40px;
    height: 40px;
    font-size: 3.8rem;
  }

  .lp-faq__question-text,
  .lp-faq__answer-text {
    font-size: 1.6rem;
    padding-right: 30px;
  }

  /* ========== FOOTER ========== */
  .lp-footer__cta {
    padding: 45px var(--padding-pc);
    background-image: url("../images/img-footer-cta-bg-pc.png");
  }

  .lp-footer__cta-title img {
    max-width: 450px;
  }

  .lp-footer__cta .lp-cta__btns {
    max-width: 850px;
  }

  .lp-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    align-items: center;
    justify-content: space-between;
    padding: 45px var(--padding-pc);
    max-width: 1040px;
    margin: 0 auto;
  }

  .lp-footer__brand {
    text-align: left;
    margin-bottom: 0;
  }

  .lp-footer__logo img {
    margin: 0;
  }

  .lp-footer__btns {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .lp-footer__btn {
    margin-bottom: 0;
    width: auto;
  }

  .lp-footer__info {
    text-align: left;
    margin-bottom: 0;
  }

  .lp-footer__instagram {
    display: inline-block;
    margin: 0;
  }

  .lp-footer__company {
    margin-bottom: 15px;
  }

  .lp-btntop {
    right: 60px;
    bottom: 50px;
    width: 45px;
    height: 50px;
  }
}

/* ============================================================
   PC STYLES (min-width: 1024px)
   ============================================================ */
@media screen and (min-width: 1024px) {
  .lp-feature__name {
    font-size: 2.6rem;
  }

  .lp-feature__name .lp-text--secondary {
    font-size: 1.8rem;
  }
}