@charset "UTF-8";

:root {
  --color-primary: #00608C;
  --color-bg: rgba(214, 242, 246, 0.5);
  --color-bg-faq: #F6F6EE;
  --color-marker: #FCA2D1;
  --color-pink: #E52689;

}

/* resetcss */
*,
*::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 {
  /* overflow: auto; */
  visibility: visible;
}

body {
  position: relative;
  display: block;
  /* overflow: hidden; */
  width: 100%;
  min-width: 100%;
  margin: 0 auto;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  color: #282828;
  text-align: justify;
  text-justify: inter-ideograph;
}

body.is-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary);
  font-weight: 700;
}

p {
  line-height: 1.7;
}

small {
  font-size: 0.7em;
}

li {
  line-height: 1.8;
}

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

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

/* LP */
.pc {
  display: none;
}

.lg {
  display: none;
}

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

.txt--primary {
  color: var(--color-primary);
}

.txt--marker {
  background: linear-gradient(transparent 60%, var(--color-marker) 60%);
}

.txt--small {
  font-size: 12px;
}

.lp-header,
.lp-main,
.lp-footer {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.lp-header {
  position: sticky;
  z-index: 100;
  width: 100%;
  height: 75px;
  transition: opacity, box-shadow 0.7s ease;
  background: #fff;
  top: 0;
  left: 0;
}

.lp-header.is-fixed {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  height: 100%;
  margin: 0 auto;
  z-index: 100;
}

.lp-header.js-active {
  opacity: 1;
}

.lp-header__logo {
  position: relative;
  max-width: 40px;
  width: 100%;
  z-index: 100;
}

.lp-gnav {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  height: calc(100% - 70px);
  transition: 0.3s ease-in-out;
  width: 100%;
  position: fixed;
  top: 70px;
  left: 0;
}

.lp-gnav.is-open {
  visibility: visible;
  transition: 0.5s ease-in-out;
  opacity: 1;
  z-index: 100;
  background: #fff;
  pointer-events: visible;
  overflow-y: scroll;
}

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

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

.lp-gnav__list {
  font-size: 16px;
  padding: 20px 20px 20px;
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
}

.lp-gnav__item {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid var(--color-primary);
}

.lp-gnav__link {
  display: block;
  text-align-last: left;
  color: var(--color-primary);
  padding-right: 40px;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.3s ease;
}

.lp-gnav__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background: url('../images/icon-arrow-sp-nav.svg') no-repeat center center/contain;
}

.lp-gnav__link:hover {
  color: #58b7e0;
  opacity: 1;
}

.lp-gnav__cta {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.lp-gnav__cta:hover {
  color: #fff;
}

.lp-gnav__logo {
  max-width: 200px;
  margin-top: auto;
  margin-bottom: 40px;
}

.lp-gnav-toggle {
  display: block;
  position: absolute;
  width: 70px;
  height: 20px;
  top: 10px;
  right: 15px;
  cursor: pointer;
  z-index: 100;
}

.lp-gnav-toggle__item {
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 700;
  right: 20px;
  width: 100px;
}

.lp-gnav-toggle__item::before {
  content: '';
  position: absolute;
  background: url("../images/icon-kakeru-half.svg") no-repeat center center/contain;
  top: 3px;
  right: 5px;
  width: 15px;
  height: 20px;
}

.lp-gnav-toggle__item::after {
  display: none;
  content: '';
  position: absolute;
  background: url("../images/icon-kakeru.svg") no-repeat center center/contain;
  top: 3px;
  right: 0px;
  width: 20px;
  height: 20px;
}

.lp-gnav-toggle.is-open .lp-gnav-toggle__item::before {
  display: none;
}

.lp-gnav-toggle.is-open .lp-gnav-toggle__item::after {
  display: block;
}

.lp-main {
  overflow-x: hidden;
  padding-top: 20px;
}

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

.lp-mainvisual__container {
  padding-right: 5vw;
}

.lp-mainvisual__outer {
  position: relative;
  width: 100%;
  aspect-ratio: 707/876;
  background-origin: content-box;
  background-image: url('../images/img-mainvisual-sp.png');
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
}

.lp-mainvisual__title {
  padding-top: 47vw;
  margin-right: -5vw;
}

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

.lp-mainvisual__notice {
  padding: 20px;
  font-size: 12px;
}

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

.lp-mainvisual__slider {
  display: flex;
  width: 800%;
  padding-bottom: 10px;
  animation: roop 30s linear infinite;
}


.lp-mainvisual__slider img {
  width: 50%;
  flex-shrink: 0;
}

@keyframes roop {
  from   { transform: translateX(0);      }
  to     { transform: translateX(-50%);   }
}

.lp-about {
  position: relative;
  background: url('../images/img-bg-grad-sp.png') no-repeat bottom right/cover;
  border-top: 1px solid var(--color-primary);
  padding: 30px 0;
}

.lp-about::before {
  content: '';
  position: absolute;
  top: 18%;
  left: -28%;
  width: 200px;
  height: 300px;
  background: url('../images/img-about-l.png') no-repeat center center/contain;
  z-index: -1;
}

.lp-about::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -25%;
  width: 200px;
  height: 245px;
  background: url('../images/img-about-r.png') no-repeat center center/contain;
  z-index: -1;
}

.lp-about__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-about__title {
  background: rgba(255,255,255,0.9);
  box-shadow: 4px 4px 0px rgba(0, 96, 140, 0.3);
  font-size: 20px;
  margin: 0 30px 20px -20px;
  padding: 15px;
}

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

.lp-about__text {
  opacity: 0;
  display: inline-block;
  position: relative;
  padding: 20px;
  background: rgba(255,255,255,0.9);
  color: var(--color-primary);
  box-shadow: 4px 4px 0px rgba(0, 96, 140, 0.3);
  font-size: 16px;
  margin-bottom: 20px;
  z-index: 1;
}

.lp-about__text::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 5px;
  width: 12px;
  height: 18px;
  background: url('../images/icon-fukidashi-top.svg') no-repeat center center/contain;
  z-index: 0;
}

.lp-intro {
  padding: 30px 0 40px;
}

.lp-intro__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-cta__title {
  background: #fff;
}

.lp-cta__heading {
  position: relative;
  text-align: center;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  padding: 20px 10px;
  margin-bottom: 20px;
}

.lp-cta__heading::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
  width: 20px;
  height: 30px;
  background: url('../images/icon-fukidashi-bottom.svg') no-repeat center center/contain;
}

.lp-cta__heading-pink {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-pink);
  margin-bottom: 5px;
}

.lp-cta__heading img {
  width: 50px;
  padding: 0 10px;
  margin: 0;
}

.lp-cta__heading span:last-of-type {
  display: block;
  text-indent: 20px;
}

.lp-intro__img {
  max-width: 300px;
  margin: 0 auto 10px;
}

.btn--cart {
  position: relative;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 16px;
}

.btn--cart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 30px;
  height: 25px;
  transform: translateY(-50%);
  background: url('../images/icon-cart-white.svg') no-repeat center center/contain;
}

.lp-problem {
  padding: 50px 0px 0px;
}

.lp-problem__voice {
  transform: translateY(-50%);
  margin-bottom: -30px;
}

.lp-problem__title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.lp-problem__panel {
  position: relative;
  background: url('../images/img-bg-grad-sp.png') no-repeat center center/cover;
  padding: 0px 10px 30px;
  border-radius: 10px;
  margin: 0 20px 60px;
}

.icon-title-l,
.icon-title-r {
  padding: 0px 15px;
  display: inline-block;
  width: 20px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.icon-title-l {
  background: url('../images/icon-title-l.svg') no-repeat center center/contain;
}

.icon-title-r {
  background: url('../images/icon-title-r.svg') no-repeat center center/contain;
}

.lp-problem__img {
  max-width: 220px;
  margin-bottom: 30px;
}

.lp-problem__caution {
  background: #fff;
  padding: 20px;
  border-radius: 40px;
  text-align: center;
}

.lp-problem__caution-text {
  position: relative;
  font-size: 20px;
  padding-bottom: 25px;
  margin-bottom: 5px;
}

.lp-problem__caution-text::before,
.lp-problem__caution-text::after {
  position: absolute;
  content: '';
  position: absolute;
  background: var(--color-primary);
  width: 8px;
  height: 20px;
  bottom: 0;
  transform: translateX(-50%);
}

.lp-problem__caution-text::before {
  left: calc(50% - 10px);
}

.lp-problem__caution-text::after {
  right: calc(50% - 10px);
}

.lp-problem__caution-storng {
  display: inline-block;
  position: relative;
  font-size: 23px;
  font-weight: 700;
}

.lp-problem__caution-storng span {
  display: block;
  position: relative;
  padding-bottom: 8px;
}

.lp-problem__caution-storng span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  width: calc(100% + 20px);
  background: url('../images/border-wave.svg') no-repeat center center/contain;
}

.lp-problem__subtitle {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.lp-check__motion-01 {
  max-width: 250px;
  margin: 0 auto;
}

.lp-check__motion-01 img {
  padding-left: 14%;
}

.lp-check__dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.lp-check__dot-01 {
  display: block;
  background: #8ab7cb;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.lp-check__dot-02 {
  display: block;
  background: #4485a5;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.lp-check__dot-03 {
  display: block;
  background: var(--color-primary);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.lp-check__motion-02 {
  max-width: 400px;
  margin: 0 auto 40px;
}

.lp-check__motion-02 img {
  margin: -13% -20px 0 ;
  max-width: calc(100% + 40px);
}

.lp-problem__subtitle-02 {
  text-align: center;
  font-size: 23px;
  margin-bottom: 60px;
}

.lp-solution {
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 20px;
}

.lp-solution__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.lp-solution__item {
  text-align: center;
  width: 100%;
  background: #fff;
  border-radius: 100px;
  padding: 30px 40px;
  font-size: 20px;
}

.lp-solution__img {
  position: relative;
  width: 60px;
  margin-top: -15px;
  margin-bottom: -15px;
}

.lp-rakuraku {
  padding: 60px 0 0;
}

.lp-rakuraku__bg {
  position: relative;
  z-index: 1;
}


.lp-rakuraku__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  border: none;
}

.lp-rakuraku__title::after {
  display: none;
}

.lp-rakuraku__title.lp-cta__heading {
  padding-left: 0;
  padding-right: 0;
  margin-left: -30px;
  margin-right: -30px;
}

.lp-kakeru__logo {
  width: 75px;
  margin: 0 auto 20px;
}

.lp-rakuraku__logo-vision {
  margin: 0 -15px;
  max-width: calc(100% + 30px);
}

.lp-rakuraku__panel {
  position: relative;
  background: url('../images/img-bg-grad-sp.png') no-repeat center center/cover;
  padding: 0 20px 100px;
  border-bottom: 2px solid var(--color-primary);
}

.lp-rakuraku__img {
  position: relative;
  z-index: 2;
  max-width: 215px;
  margin-top: -50px;
  margin-bottom: 0px;
}

.lp-point {
  padding: 0px 20px 60px;
}

.lp-point__title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -100px;
  margin-bottom: 50px;
}

.lp-point__title-main {
  display: inline-block;
  color: #fff;
  background: var(--color-primary);
  padding: 10px 20px;
  border-radius: 50px;
}

.lp-point__title-eng {
  color: var(--color-pink);
  font-family: 'Corinthia', cursive;
  transform: rotate(-10deg) translateY(30px);
  font-size: 50px;
}

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

.lp-point__index {
  max-width: 70px;
  margin-bottom: 30px;
}

.lp-point__subtitle {
  text-align: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.lp-point__subtitle ruby {
  ruby-position: over;
  font-size: 1em;
}

.lp-point__subtitle rt {
  font-size: 0.5em;
  letter-spacing: -1rem;
  line-height: 1;
}

.lp-point__text {
  font-size: 16px;
  margin-bottom: 20px;
}

.lp-point-01__list {
  position: relative;
  margin-bottom: 30px;
}

.lp-point-01__item-list {
  max-width: 250px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.lp-point-01__item {
  text-align: center;
  width: calc(50% - 5px);
  background: #fffdc2;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 20px;
  padding: 5px 10px;
}

.lp-point-01__object {
  position: absolute;
  bottom: -40px;
  right: -35px;
  width: 80px;
  z-index: -1;
}

.lp-point-01__container-title {
  max-width: 295px;
  margin: 0 auto 20px;
}

.lp-point-01__slider {
  margin: 0 -20px 20px;
}

.lp-point-01__slider .swiper-slide {
  width: 70vw;
}

.lp-point-02__img {
  margin-bottom: 20px;
  max-width: 400px;
  width: 100%;
}

.lp-point-02__badge {
  max-width: 400px;
  width: 100%;
}

.lp-point-voice {
   padding: 60px 0;
}

.lp-point-voice__title {
  position: relative;
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  padding: 0 25px;
}

.lp-point-voice__title .icon-title-l {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.lp-point-voice__title .icon-title-r{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.lp-point-voice__subtitle {
  text-align: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 30px;
}

.lp-point-voice__item {
  margin-bottom: 25px;
}

.lp-thumbnail {
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lp-thumbnail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  background: url('../images/icon-play.png') no-repeat center center/cover;
}

.lp-thumbnail:hover::before {
  transform: translate(-50%, -50%) scale(1.3);
}

.lp-point-voice__index {
  font-size: 20px;
  margin-bottom: 5px;
}

.lp-point-voice__text {
  font-size: 14px;
}

.lp-point-dsm {
  padding: 35px 20px 40px;
  background: var(--color-bg);
  border-radius: 10px;
  margin: 0 -20px;
  width: calc(100% + 40px);
}

.lp-point-dsm__heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}

.lp-point-dsm__heading img{
  width: 40px;
  margin: 0;
  padding-top: 8px;
}

.lp-point-dsm__title {
  font-size: 24px;
}

.lp-point-dsm__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 30px;
}

.lp-point-dsm__item {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 50px 20px 20px;
}

.lp-point-dsm__index {
  position: absolute;
  display: inline-block;
  width: 46px;
  height: 58px;
  background: var(--color-pink);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  top: -5px;
}

.lp-point-dsm__index::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: calc(100% + 2px);
  border-left: 23px solid transparent;
  border-right: 23px solid transparent;
  border-bottom: none;
  border-bottom: 14px solid #fff;
}

.lp-point-dsm__subtitle {
  position: relative;
  font-size: 24px;
  padding-bottom: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.lp-point-dsm__subtitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: url(../images/border-arrow.svg) no-repeat center center/contain;
}

.lp-point-dsm__text{
  margin-bottom: 10px;
}

.lp-point-dsm__notice {
  display: block;
}

.lp-point__subtitle img {
  display: inline-block;
  width: 30px;
  margin-bottom: -5px;
  margin-right: 10px;
  vertical-align: baseline;
}

.lp-point__notice {
  display: block;
  margin-bottom: 20px;
}

.lp-point-howto {
  padding: 40px 0 0;
}

.lp-point-howto__title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.lp-point-howto__img {
  max-width: 275px;
  margin-bottom: 20px;
}

.lp-point-howto__panel {
  position: relative;
  background: var(--color-bg);
  padding: 20px;
  border-radius: 10px;
}

.lp-point-howto__panel-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.lp-point-howto__panel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-point-howto__panel-subtitle {
  font-size: 14px;
  margin-bottom: 5px;
}

.lp-point-howto__list {
  position: relative;
  padding-left: 40px;
}

.lp-point-howto__list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lp-point-howto__list.good::before,
.lp-point-howto__list.no-good::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: url('../images/icon-good.svg') no-repeat center center/contain;
}

.lp-point-howto__list.no-good::before {
  background: url('../images/icon-no-good.svg') no-repeat center center/contain;
}

.lp-cta {
  padding: 0px 20px 40px;
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  background: url('../images/img-bg-grad-sp.png') no-repeat center center/cover;
}

.lp-cta .lp-cta__title {
  margin-top: -30px;
}

.lp-cta__img {
  max-width: 200px;
  margin: 0 auto 20px;
}

.lp-cta__status {
  border: 1px solid var(--color-primary);
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  color: var(--color-primary);
  border-radius: 5px;
}

.lp-cta__price {
  font-size: 18px;
  font-weight: 700;
}

.lp-cta__price strong {
  font-size: 45px;
}

.lp-cta__btn {
  border: 1px solid var(--color-primary);
  margin-bottom: 20px;
  color: var(--color-primary);
  background: #fff;
  transition: all 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}

.lp-cta__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url('../images/icon-cart.svg') no-repeat center center/contain;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lp-cta__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url('../images/icon-cart-white.svg') no-repeat center center/contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lp-cta__btn:hover {
  background: var(--color-primary);
  color: #fff;
  opacity: 1;
}

.lp-cta__btn:hover::before {
  opacity: 0;
}

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

.lp-voice {
  padding: 40px 20px 80px;
}

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

.lp-heading__eng {
  font-family: 'Corinthia', cursive;
  font-size: 35px;
  color: var(--color-pink);
  line-height: 1;
}

.lp-heading__title {
  font-size: 24px;
}

.lp-voice__wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 0 10px 10px;
  margin-bottom: 10px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

.lp-voice__item {
  flex: 0 0 90%;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
}

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

.lp-voice__name {
  margin-top: auto;
}

.lp-voice__notice  {
  padding-left: 10px;
}

.lp-vision {
  padding: 0 10px 60px;
}

.lp-vision__panel {
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 10px;
}

.lp-vision__desc {
  font-size: 16px;
  margin-bottom: 30px;
}

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

.lp-vision__subtitle {
  font-size: 20px;
  margin-bottom: 5px;
}

.lp-vision__text {
  font-size: 14px;
  margin-bottom: 10px;
}

.lp-vision__name {
  display: block;
  line-height: 1.5;
}

.lp-faq {
  background: #F7F3EC;
  padding: 40px 20px 30px;
}

.lp-faq__item {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 20px 0 0;
  overflow: hidden;
}

.lp-faq__item.lp-faq__item--open {
  padding-bottom: 20px;
}

.lp-faq__question {
  display: flex;
  padding: 0px 40px 0px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
}

.lp-faq__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.lp-faq__question::after {
  content: '+';
  font-size: 20px;
  color: var(--color-primary);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lp-faq__answer {
  display: flex;
  padding: 0px 40px 0px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 0;
  margin-top: 20px;
  transition: height 300ms ease;
}

.lp-faq__item--open .lp-faq__question::after {
  content: '−';
}

.lp-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 100;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-modal.is-active {
   opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lp-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.lp-modal__close::before,
.lp-modal__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
  transform-origin: center;
}

.lp-modal__close::before {
  transform: translateY(-50%) rotate(45deg);
}

.lp-modal__close::after {
  transform: translateY(-50%) rotate(-45deg);
}

.lp-modal__inner {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9.1;
  border: 5px solid #fff;
}

.lp-modal__movie {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0!important;
}

.lp-modal__movie iframe{
  width: 100%;
  max-width: 100%;
}


.lp-footer {
  width: 100%;
  background: url('../images/img-footer-bg-sp.jpg') no-repeat center center/cover;
}

.lp-footer__inner {
  padding: 150px 10px;
  max-width: 335px;
  margin: 0 auto;
}

.lp-footer__panel {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid var(--color-primary);
  padding: 20px;
}

.lp-footer__title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.lp-footer__title span{
  font-size: 18px;
}

.lp-footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 20px;
}

.lp-footer__item-title {
  width: 100px;
}

.lp-footer__item-text {
  width: calc(100% - 110px);
}

.lp-footer__note {
  text-align: center;
  font-size: 18px;
}

.lp-footer__copy {
  width: 100%;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 20px 10px 0;
}

.brand-section {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  .lp-header {
    height: 110px;
  }

  .lp-header__inner {
    justify-content: center;
    padding: 0 25px;
    max-width: 1350px;
  }

  .lp-header__logo {
    max-width: 65px;
  }

  .lp-gnav {
    display: block;
    z-index: 0;
    pointer-events: visible;
    visibility: visible;
    position: static;
    opacity: 1;
    height: 100%;
  }

  .lp-gnav__inner {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 0 auto;
    height: auto;
  }

  .lp-gnav__list {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding: 20px 0 25px 20px;
    font-size: 13px;
    max-width: none;
  }

  .lp-gnav__item {
    border-bottom: none;
  }

  .lp-gnav__link {
    padding: 0;
  }

  .lp-gnav__link::after {
    display: none;
  }

  .lp-gnav__item:last-of-type {
    padding-right: 0;
  }

  .lp-gnav__cta.btn--cart {
    display: none;
  }

  .lp-gnav__cta.btn--cart::before {
    background: url('../images/icon-cart-header-white.svg') no-repeat center center/contain;
  }

  .lp-gnav-toggle {
     display: none;
  }

  .lp-mainvisual__container {
    padding-right: 0;
  }

  .lp-mainvisual__outer {
    aspect-ratio: 2863/1246;
    background: url('../images/img-mainvisual-pc.png') no-repeat center center/cover;
  }

  .lp-mainvisual__inner {
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
  }

  .lp-mainvisual__title {
    padding-top: 120px;
    margin-right: 0vw;
    width: 50%;
  }

  .lp-mainvisual__notice {
    padding: 0 20px;
    max-width: 1200px;
    margin: 8px auto 0;
  }

  .lp-mainvisual__slider {
    width: 400%;
    padding: 30px 0;
    animation: roop 50s linear infinite;
  }

  .lp-mainvisual__slider img {
    width: 25%;
    flex-shrink: 0;
  }

  .lp-abouts {
    position: relative;
    background: url('../images/img-bg-grad-pc.png') no-repeat bottom right/cover;
    border-top: 1px solid var(--color-primary);
    padding: 100px 0;
  }

  .lp-about::before {
    top: auto;
    bottom: 25px;
    left: calc(50vw - 650px);
    width: 270px;
    height: 410px;
  }

  .lp-about::after {
    top: 28%;
    right: calc(50vw - 780px);
    width: 320px;
    height: 390px;
  }

  .lp-about__inner {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .lp-about__title {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    box-shadow: 4px 4px 0px rgba(0, 96, 140, 0.3);
    font-size: 24px;
    margin: 0 0 -40px;
    padding: 20px 25px;
    position: relative;
  }

  .lp-about__img {
    max-width: 860px;
    margin-bottom: 20px;
  }

  .lp-about__text {
    position: absolute;
    padding: 20px 50px;
    color: var(--color-primary);
    font-size: 19px;
    margin-bottom: 0px;
  }

  .lp-about__text::before {
    top: auto;
    right: auto;
    left: 0px;
    bottom: -20px;
    width: 30px;
    height: 40px;
  }

  .lp-about__text:first-of-type {
    bottom: 200px;
    right: 90px;
  }

  .lp-about__text:last-of-type {
    bottom: 50px;
    right: -20px;
  }

  .lp-intro {
    padding: 60px 0 100px;
  }

  .lp-intro__inner {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .lp-cta__heading {
    border: 3px solid var(--color-primary);
    border-radius: 10px;
    padding: 20px 10px;
    margin-bottom: 60px;
    font-size: 28px;
  }

  .lp-cta__heading::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: calc(50% - 20px);
    width: 20px;
    height: 30px;
    background: url('../images/icon-fukidashi-top.svg') no-repeat center center/contain;
  }

  .lp-cta__heading-pink {
    margin-bottom: 5px;
    letter-spacing: 0.2rem;
    font-size: 40px;
  }

  .lp-cta__heading img {
    width: 80px;
    padding: 0 20px;
    margin: 0 0 -2px;
  }

  .lp-intro__img {
    max-width: 230px;
    margin: 0 auto 10px;
  }

  .lp-intro__bg {
    position: absolute;
    top: 80px;
    width: 100%;
    height: 100%;
  }

  @keyframes spin-reverse {
    from   { transform: translateX(-100%) rotate(0deg); }
    to     { transform: translateX(-100%) rotate(-360deg); }
  }

  @keyframes spin {
    from   { transform: translateX(100%) rotate(0deg); }
    to     { transform: translateX(100%) rotate(360deg); }
  }

  .lp-intro__bg-l {
    left: -80px;
    transform: translateX(-100%);
    animation: spin-reverse 20s linear infinite;
  }

  .lp-intro__bg-r {
    right: -80px;
    transform: translateX(100%);
    animation: spin 20s linear infinite;
  }


  .btn--cart {
    padding: 15px 20px;
    font-size: 18px;
    max-width: 360px;
    margin: 0 auto;
  }

  .btn--cart::before {
    left: 20px;
    width: 30px;
    height: 25px;
  }

  .lp-problem {
    padding: 50px 0px 0px;
  }

  .lp-problem__voice {
    transform: translateY(-50%);
    margin: 0 auto -30px;
    width: 380px;
  }

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

  .lp-problem__title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .lp-problem__panel {
    position: relative;
    background: url('../images/img-bg-grad-pc.png') no-repeat center center/cover;
    padding: 0px 10px 100px;
    margin: 0 auto 100px;
    max-width: 1100px;
  }

  .icon-title-l,
  .icon-title-r {
    padding: 0px 20px;
    display: inline-block;
    width: 25px;
    height: 40px;
  }

  .icon-title-l {
    background: url('../images/icon-title-l.svg') no-repeat center center/contain;
  }

  .icon-title-r {
    background: url('../images/icon-title-r.svg') no-repeat center center/contain;
  }

  .lp-problem__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
  }

  .lp-problem__img-l,
  .lp-problem__img-r {
    width: 20%;
  }

  .lp-problem__img-r {
    margin-top: 50px;
  }

  .lp-problem__img {
    flex-shrink: 0;
    max-width: 350px;
  }

  .lp-problem__caution {
    padding: 30px 20px;
    max-width: 660px;
    margin: 0 auto;
    box-shadow: 4px 4px 0px rgba(0, 96, 140, 0.3);
  }

  .lp-problem__caution-text {
    padding-bottom: 30px;
    margin-bottom: 5px;
  }

  .lp-problem__caution-text::before,
  .lp-problem__caution-text::after {
    width: 8px;
    height: 22px;
  }

  .lp-problem__caution-text::before {
    left: calc(50% - 12px);
  }

  .lp-problem__caution-text::after {
    right: calc(50% - 12px);
  }

  .lp-problem__caution-storng::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 13px;
    width: calc(100% + 20px);
    background: url('../images/border-wave.svg') no-repeat center center/cover;
  }

  .lp-problem__caution-storng span {
    display: inline;
    padding-bottom: 0px;
  }

  .lp-problem__caution-storng span::after {
    display: none;
  }

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

  .lp-check__motion {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 50px;
  }

  .lp-check__motion-01 {
    max-width: 205px;
    flex-shrink: 0;
    margin: 0;
  }

  .lp-check__motion-01 img {
    padding-left: 0;
  }

  .lp-check__dot {
    flex-direction: row;
    gap: 10px;
    padding: 0px 0 0 10px;
    margin-right: -10px;
  }

  .lp-check__dot-01 {
    width: 20px;
    height: 20px;
  }

  .lp-check__dot-02 {
    width: 35px;
    height: 35px;
  }

  .lp-check__dot-03 {
    width: 50px;
    height: 50px;
  }

  .lp-check__motion-02 {
    max-width: 415px;
    margin: 0;
  }

  .lp-check__motion-02 img {
    margin: 0;
    max-width: 100%;
  }

  .lp-problem__subtitle-02 {
    margin-bottom: 50px;
  }

  .lp-solution {
    padding: 50px 20px;
    background: var(--color-bg);
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
  }

  .lp-solution__wrapper {
    align-items: stretch;
    flex-direction: row;
    margin-bottom: 30px;
    max-width: 680px;
    margin: 0 auto 15px;
  }

  .lp-solution__item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    background: #fff;
    border-radius: 100px;
    padding: 20px 40px;
    font-size: 20px;
  }

  .lp-solution__img {
    margin: 0 -15px;
  }

  .lp-solution__notice {
    width: 320px;
    margin: 0 auto;
  }

  .lp-rakuraku {
    padding: 60px 0 0;
  }

  .lp-rakuraku__bg {
    min-height: 340px;
  }

  .lp-rakuraku__title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .lp-kakeru__logo {
    position: relative;
    width: 240px;
    margin: 0 auto -300px;
    z-index: 2;
  }

  .lp-rakuraku__logo-vision {
    margin: 0 -15px;
    max-width: calc(100% + 30px);
  }

  .lp-rakuraku__panel {
    position: relative;
    background: url('../images/img-bg-grad-sp.png') no-repeat center center/cover;
    padding: 0 20px 100px;
    border-bottom: 2px solid var(--color-primary);
  }

  .lp-rakuraku__img {
    position: relative;
    max-width: 250px;
    margin-top: -50px;
    margin-bottom: 30px;
    z-index: 2;
  }

  .lp-rakuraku__img-l {
    position: absolute;
    top: 80px;
    left: calc(50% - 450px);
    width: 215px;
    height: 281px;
  }

  .lp-rakuraku__img-r {
    position: absolute;
    top: 180px;
    right: calc(50% - 450px);
    width: 198px;
    height: 232px;
  }

  .lp-rakuraku__title {
    border: none;
  }

  .lp-rakuraku__title::after {
    display: none;
  }

  .lp-rakuraku__title.lp-cta__heading {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .lp-point {
    padding: 0px 20px 120px;
  }

  .lp-point__title {
    margin-top: -130px;
    margin-bottom: 80px;
  }

  .lp-point__title-main {
    font-size: 28px;
    padding: 20px 40px;
  }

  .lp-point__title-eng {
    transform: rotate(-10deg) translateY(35px) translateX(-10px);
    font-size: 58px;
  }

  .lp-point__section {
    margin-bottom: 130px;
  }

  .lp-point__index {
    max-width: 70px;
    margin-bottom: 30px;
  }

  .lp-point-01__wrapper {
    display: flex;
    max-width: 1200px;
    gap: 30px;
    margin: 0 auto 130px;
  }

  .lp-point__heading {
    width: 45%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .lp-point__content {
    width: 55%;
  }

  .lp-point__subtitle {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .lp-point__subtitle ruby {
    ruby-position: over;
    font-size: 1em;
  }

  .lp-point__subtitle rt {
    font-size: 0.5em;
    letter-spacing: -1rem;
    line-height: 1;
  }

  .lp-point__text {
    max-width: 440px;
    font-size: 16px;
    margin:0 auto 20px;
  }

  .lp-point-01__text {
    width: 360px;
    margin-left: 0;
    padding-top: 100px;
  }

  .lp-point-01__list {
    margin-bottom: 0;
  }

  .lp-point-01__item-list {
    max-width: 475px;
    margin: 0;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }

  .lp-point-01__item {
    width: calc(25% - 5px);
    font-size: 15px;
    padding: 5px 10px;
  }

  .lp-point-01__object {
    bottom: -90px;
    right: 10px;
    width: 180px;
  }

  .lp-point-01__container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
  }

  .lp-point-01__container-title {
    width: 295px;
    flex-shrink: 0;
    margin: 0 auto;
  }

  .lp-point-01__container-content {
    flex: 0 0 auto;
    width: calc(100% + ((100vw - 1200px) / 2));
  }

  .lp-point-01__slider {
    margin: 0 0 20px;
  }

  .lp-point-01__slider .swiper-slide {
    max-width: 300px;
  }

  .lp-point-02__wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 30px;
    gap: 30px;
  }

  .lp-point-02__img {
    max-width: 440px;
    width: 100%;
    margin-bottom: 10px;
  }

  .lp-point-02__badge {
    max-width: 350px;
    width: 100%;
  }

  .lp-point-voice {
    padding: 60px 0 80px;
  }

  .lp-point-voice__title {
    max-width: 610px;
    font-size: 27px;
    margin: 0 auto 30px;
  }

  .lp-point-voice__wrapper {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
  }

  .lp-point-voice__item {
    margin-bottom: 20px;
  }

  .lp-point-voice__notice {
    width: 655px;
    margin: 0 auto;
  }

  .lp-point-dsm {
    padding: 40px 30px;
    background: var(--color-bg);
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
  }

  .lp-point-dsm__heading {
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
  }

  .lp-point-dsm__heading img{
    width: 60px;
    margin: 0;
  }

  .lp-point-dsm__title {
    font-size: 28px;
    margin-top: 5px;
  }

  .lp-point-dsm__wrapper {
    max-width: none;
    margin: 0;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
  }

  .lp-point-dsm__item {
    position: relative;
    width: calc(100% / 3);
    background: #fff;
    border-radius: 10px;
    padding: 50px 20px 20px;
  }

  .lp-point-dsm__subtitle {
    font-size: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .lp-point-03 {
    margin-bottom: 60px;
  }

  .lp-point-03__wrapper {
    display: flex;
    max-width: 1200px;
    gap: 30px;
    margin: 0 auto 50px;
  }

  .lp-point-03 .lp-point__text,
  .lp-point-03 .lp-point__notice {
    width: 340px;
    margin: 0 auto 10px;
  }

  .lp-point__notice {
    margin-bottom: 0px;
  }

  .lp-point-howto {
    padding: 40px 0 0;
    max-width: 810px;
    margin: 0 auto;
  }

  .lp-point-howto__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .lp-point-howto__img {
    max-width: 100%;
    padding-left: 13.5%;
    margin-bottom: 80px;
  }

  .lp-point-howto__panel {
    margin: 0 auto 10px;
    padding: 50px 20px;
  }

  .lp-point-howto__panel::before {
    content: '';
    position: absolute;
    top: calc(0% - 70px);
    left: calc(50% - 88px);
    width: 176px;
    height: 108px;
    background: url('../images/img-food.png') no-repeat center center/contain;
  }

  .lp-point-howto__panel-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .lp-point-howto__panel-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 680px;
    margin: 0 auto;
    gap: 40px;
  }

  .lp-point-howto__panel-item {
    max-width: 250px;
  }

  .lp-point-howto__panel-subtitle {
    margin-bottom: 10px;
  }

  .lp-point-howto__notice {
    display: block;
    text-align: center;
  }

  .lp-cta {
    padding: 0px 20px 100px;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    background: url('../images/img-bg-grad-sp.png') no-repeat center center/cover;
  }

  .lp-cta .lp-cta__title {
    margin: -100px auto 60px;
    max-width: 560px;
  }

  .lp-cta__inner {
    display: flex;
    justify-content: space-between;
    max-width: 780px;
    gap: 20px;
    margin: 0 auto;
  }

  .lp-cta__img {
    max-width: 250px;
    margin: 0;
  }

  .lp-cta__content {
    max-width: 43%;
    flex-shrink: 1;
  }

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

  .lp-cta__btn {
    margin-bottom: 30px;
  }

  .lp-cta__btn::before,
  .lp-cta__btn::after {
    left: 20px;
    width: 30px;
    height: 25px;
  }

  .lp-cta__text {
    font-size: 14px;
  }

  .lp-voice {
    padding: 120px 20px 150px;
  }

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

  .lp-heading__eng {
    font-size: 40px;
  }

  .lp-heading__title {
    font-size: 35px;
  }

  .lp-voice__wrapper {
    display: flex;
    gap: 10px;
    width: 810px;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto 20px;
    overflow-x: hidden;
  }

  .lp-voice__item {
    padding: 20px 15px;
    border-radius: 10px;
    min-width: auto;
    flex: 0 0 calc(100% / 3 - 5px);
  }

  .lp-voice__notice  {
    display: block;
    padding-left: 0px;
    text-align: center;
    font-size: 13px;
  }

  .lp-vision {
    padding: 0 10px 60px;
    margin-bottom: 100px;
  }

  .lp-vision__panel {
    padding: 60px 20px 100px;
    background: var(--color-bg);
    border-radius: 10px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .lp-vision__desc {
    max-width: 800px;
    margin: 0 auto 70px;
  }

  .lp-vision__wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    max-width: 850px;
    margin: 0 auto;
    gap: 30px;
  }

  .lp-vision__item {
    width: 50%;
    max-width: 330px;
  }

  .lp-vision__subtitle {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .lp-vision__text {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .lp-vision__name {
    display: block;
    line-height: 1.5;
  }

  .lp-faq {
    padding: 120px 20px 120px;
  }

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

  .lp-faq__item {
    border-radius: 15px;
    margin-bottom: 16px;
    padding: 30px 0 0;
    overflow: hidden;
  }

  .lp-faq__item.lp-faq__item--open {
    padding-bottom: 30px;
  }

  .lp-faq__question {
    display: flex;
    padding: 0px 40px 0px 30px;
    cursor: pointer;
    position: relative;
    font-weight: 700;
  }

  .lp-faq__question .lp-faq__text{
    font-size: 14px;
  }

  .lp-faq__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .lp-faq__question::after {
    content: '+';
    font-size: 20px;
    position: absolute;
    right: 16px;
    top: calc(50% - 5px);
    transform: translateY(-50%);
  }

  .lp-faq__answer {
    display: flex;
    padding: 0px 40px 0px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 0;
    margin-top: 25px;
    transition: height 300ms ease;
  }

  .lp-faq__item--open .lp-faq__question::after {
    content: '−';
  }

  .lp-footer {
    background: url('../images/img-footer-bg-pc.jpg') no-repeat center center/cover;
  }

  .lp-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 100px 40px;
    max-width: 570px;
    margin: 0 auto;
  }

  .lp-footer__panel {
    width: 100%;
    padding: 30px 20px;
  }

  .lp-footer__list {
    max-width: 270px;
    margin: 0 auto 30px;
  }
}

@media screen and (min-width: 1024px) {
  .lg {
    display: block;
  }

  .lp-gnav__cta.btn--cart {
    display: flex;
    margin: 0 0 0 30px;
    flex-shrink: 0;
    text-align: center;
    width: 170px;
    padding: 15px 30px 15px 60px;
  }

  .lp-gnav__list {
    font-size: 14px;
  }

  .lp-point__subtitle {
    font-size: 32px;
  }

  .lp-point-dsm {
    padding: 50px 45px;
  }

  .lp-point-dsm__wrapper {
    gap: 25px;
  }

  .lp-point-dsm__subtitle {
    font-size: 24px;
    margin-left: 0;
    margin-right: 0;
  }
}

