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

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
}

@media screen and (min-width: 1025px) and (max-width: 1940px) {
  html {
    /* 最小7px、最大10pxに制限 */
    font-size: clamp(7px, calc(100vw * 10 / 1940), 10px);
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: calc(100vw * 10 / 375);
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  background: #fff;
  color: #000;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

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

a {
  backface-visibility: hidden;
  transition: 0.2s ease-in;
  transition-property: opacity, color, border, background, transform, box-shadow;
  opacity: 1;
  line-height: inherit;
}

img {
  vertical-align: middle;
}

img,
input[type="image"] {
  border: 0;
  height: auto;
  max-width: 100%;
}

input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  font-size: inherit;
  letter-spacing: inherit;
  background: none;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover,
input[type="image"]:hover {
  opacity: 0.7;
}

main {
  overflow: hidden;
  position: relative;
}

.ft_e {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.evt {
  visibility: hidden;
}

.evt.done {
  visibility: visible;
}

.c_anchor {
  position: absolute;
  width: 100%;
  left: 0;
}

.c_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 4rem;
}

@media screen and (max-width: 1024px) {
  .c_ttl {
    font-size: 2rem;
  }
}

.c_ttl img {
  display: block;
  margin: 2.2rem auto 0;
}

@media screen and (max-width: 1024px) {
  .c_ttl img {
    margin: 1.2rem auto 0;
  }
}

.c_ttl b {
  font-size: 5.2rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .c_ttl b {
    font-size: 2.4rem;
  }
}

.c_ttl em {
  color: #f39200;
}

/*--------------------------------------------------------------
Utility
--------------------------------------------------------------*/
.u_wrap {
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .u_inner {
    max-width: calc(100% - 8rem);
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  .u_inner {
    margin: 0 2rem;
    padding-bottom: 50px;
  }
}

.u_switch_img {
  opacity: 1;
}

.u_relative {
  position: relative;
}

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

  .is_tel {
    pointer-events: none;
    cursor: default;
  }

  .is_tel:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .is_pc {
    display: none;
  }
}

/*--------------------------------------------------------------
Layout/PageBase
--------------------------------------------------------------*/
#header {
  height: 8rem;
  background: linear-gradient(180deg, #ffc12d 0%, #fb6938 100%);
  width: 100%;
  position: relative;
}

@media screen and (min-width: 1025px) {
  #header {
    background: linear-gradient(to right, #fc7140 0%, #ffc12d 100%);
  }
}

.h_logo {
  position: absolute;
  left: 12rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  .h_logo {
    left: 2rem;
  }
}

.h_logo img {
  height: 5rem;
}

.h_logo .logo-text {
  display: none;
}

@media screen and (max-width: 1024px) {
  #header {
    height: 8vh;
    width: 100%;
    background: transparent;
    padding: 0 0 1vh 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .h_logo {
    position: relative;
    top: 20px;
    left: auto;
    transform: none;
    text-align: center;
  }

  .h_logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffc12d 0%, #fb6938 100%);
    border-radius: 10rem;
    padding: 0.5vh 1.5vh;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-height: 4vh;
  }

  .h_logo img {
    display: none;
  }

  .h_logo .logo-text {
    display: inline;
    color: #fff;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: bold;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
}

.f_banner {
  background: url(../img/f_bnr_bg.svg?v=20251126) no-repeat center top/cover;
  position: relative;
  padding: 16rem 0 9rem;
}

@media screen and (max-width: 1024px) {
  .f_banner {
    text-align: center;
    background-image: url(../img/f_bnr_bg_sp.svg?v=20251126);
    background-size: 100%;
    background-position: center 20.6rem;
    padding: 3.9rem 0 5.9rem;
  }

  .f_banner figure img {
    width: 27.5rem;
    position: relative;
    left: 0.9rem;
  }
}

@media screen and (min-width: 1025px) {
  .f_banner .u_inner {
    width: 134rem;
    display: flex;
    justify-content: space-between;
  }

  .f_banner .box {
    width: 53rem;
  }

  .f_banner figure {
    width: 89.4rem;
    margin-right: -26rem;
  }

  .f_banner figure img {
    max-width: 89.4rem;
  }
}

.f_banner dl {
  margin-bottom: 2rem;
}

.f_banner dt {
  font-weight: bold;
  font-size: 4.8rem;
  letter-spacing: 0;
  margin-bottom: 0.85em;
}

.f_banner dt em {
  position: relative;
}

.f_banner dt em:before,
.f_banner dt em:after {
  content: "";
  position: absolute;
  background: url(../img/ico_quote_left01.svg?v=20251126) no-repeat center top/contain;
  width: 3.2rem;
  aspect-ratio: 42 / 31;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 1024px) {

  .f_banner dt em:before,
  .f_banner dt em:after {
    width: 1.6rem;
  }
}

.f_banner dt em:before {
  left: -0.39em;
}

.f_banner dt em:after {
  background-image: url(../img/ico_quote_right01.svg?v=20251126);
  right: -0.2em;
}

@media screen and (max-width: 1024px) {
  .f_banner dt {
    font-size: 2.4rem;
    margin-bottom: 1.1em;
  }
}

.f_banner dd {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  display: inline-block;
  text-align: center;
}

.f_banner dd em {
  background: linear-gradient(transparent 70%, #ffd78d 70%);
}

.f_banner .logo {
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 2.4rem;
  letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
  .f_banner .logo {
    text-align: center;
    font-size: 2.4rem;
  }
}

.f_banner .logo img {
  width: 6.5rem;
  margin-right: 0.18em;
  /* 追加 */
  border-radius: 1.3rem;
  box-shadow: 1px 1px 25px rgb(0 0 0 / 15%);
}

@media screen and (max-width: 1024px) {
  .f_banner .logo img {
    margin-right: 0.32em;
  }
}

.f_banner .app {
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .f_banner .app {
    margin-bottom: 3.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .f_banner .app {
    width: 60rem;
    display: inline-block;
  }
}

.f_banner .app p {
  font-size: 1.8rem;
  position: relative;
  padding: 0 0.5em;
  margin-bottom: 2.6rem;
}

@media screen and (max-width: 1024px) {
  .f_banner .app p {
    margin-bottom: 1.4rem;
    font-size: 1.6rem;
  }
}

.f_banner .app p:before,
.f_banner .app p:after {
  content: "";
  height: 2.3rem;
  border-left: solid 2px #121212;
  position: absolute;
  bottom: 0;
  margin-left: 0.75em;
}

.f_banner .app p:before {
  transform: rotate(-30deg);
  margin-left: -0.775em;
}

.f_banner .app p:after {
  transform: rotate(30deg);
}

.f_banner .app ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

@media screen and (max-width: 1024px) {
  .f_banner .app ul {
    gap: 1.5rem;
  }
}

.f_banner .app li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-shrink: 0;
}

.f_banner .app li img {
  height: 5.6rem;
  width: auto;
  flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
  .f_banner .app li img {
    height: 4rem;
    width: auto;
    flex-shrink: 0;
  }
}

.f_banner .app li .qr {
  height: 13.6rem;
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .f_banner .app li .qr {
    display: none;
  }
}

.f_banner .app li .qr+img {
  display: block;
}

#footer {
  background: #333841;
  padding: 8rem 12rem 9rem;
}

@media screen and (max-width: 1024px) {
  #footer {
    padding: 4rem 0.5rem 5.6rem;
  }
}

.f_logo {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  margin-left: 3rem;
}

@media screen and (max-width: 1024px) {
  .f_logo {
    margin-left: 2.5rem;
    width: 27.9rem;
    margin: 0 auto;
  }
}

.f_logo img {
  width: 9.4rem;
  margin-right: 1rem;
}

@media screen and (max-width: 1024px) {
  .f_logo img {
    margin-right: 3.3rem;
  }
}

.f_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: solid 1px #646b7a;
  padding-top: 5.2rem;
  margin-top: 5rem;
}

.f_com {
  color: #f7f7f7;
}

.f_com img {
  width: 1.5rem;
  margin-left: 0.5em;
}

.f_copy {
  color: #7a7a81;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 4rem;
  text-align: center;
}

.f_company,
.f_contact {
  color: #fff;
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

@media screen and (max-width: 1024px) {

  .f_company,
  .f_contact {
    padding: 2rem;
    margin-top: 3rem;
  }
}

.f_company h3,
.f_contact h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #fff;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1024px) {

  .f_company h3,
  .f_contact h3 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
}

.f_company dl {
  display: block;
}

.f_company dt {
  font-weight: bold;
  font-size: 2rem;
  color: #f5b800;
  margin-bottom: 1rem;
}

.f_company dd {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}

.f_company dd:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .f_company dt {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .f_company dd {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
  }
}

.f_contact p {
  font-size: 2rem;
  line-height: 1.8;
}

.f_contact a {
  color: #f5b800;
  font-weight: bold;
  text-decoration: underline;
}

.f_contact a:hover {
  opacity: 0.8;
}

.f_contact img {
  width: 1.5rem;
  margin-left: 0.5em;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .f_contact p {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
Project
--------------------------------------------------------------*/
.lp_main {
  position: relative;
  z-index: 2;
  color: #121212;
  overflow: visible;
}

.lp_main .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(253, 243, 232, 0.6) 40%,
    rgba(253, 243, 232, 0.4) 100%
  );
  z-index: 2;
}

@media screen and (min-width: 1025px) {
  .lp_main {
    background: url(../img/fv-brand.png) repeat-x center top/cover;
  }
}

.lp_main::after {
  content: '';
  position: absolute;
  top: -15rem;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 150% 150% at 0% 0%, rgba(255, 180, 120, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 150% 150% at 100% 0%, rgba(255, 200, 150, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 150% 150% at 0% 100%, rgba(255, 160, 100, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 150% 150% at 100% 100%, rgba(255, 190, 140, 0.15) 0%, transparent 60%),
    rgba(255, 200, 150, 0.08);
  pointer-events: none;
  z-index: 1;
}

.lp_main .u_inner {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  .lp_main {
    padding-top: 10vh;
    padding-bottom: 2vh;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff 8vh, transparent 8vh) 0 0 / 100% 100% no-repeat;
  }

  /* 背景画像用の疑似要素（フェードインで欠けを隠す） */
  .lp_main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../img/fv-brand.png) 0 6.7vh / auto 65% repeat-x;
    background-position: var(--bg-x, 0) calc(10vh + 7rem);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .lp_main.bg-ready::before {
    opacity: 1;
  }

  .lp_main .u_inner {
    height: calc(100vh - 12vh - 2vh - 5vh);
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 5vw;
  }

  .lp_main .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1.5vh;
  }
}

.lp_main dl {
  margin-bottom: 5.2rem;
}

@media screen and (max-width: 1024px) {
  .lp_main dl {
    margin-bottom: 0;
    order: 1;
    text-align: center;
    flex-shrink: 0;
    padding-top: 1vh;
  }
}

.lp_main dt {
  font-weight: bold;
  font-size: 8rem;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 0.2em;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .lp_main dt {
    font-size: clamp(2.8rem, 5vh, 4.5rem);
    margin-bottom: 0.2em;
    line-height: 1.2;
  }
}

.lp_main dt small {
  display: block;
  font-size: 6rem;
  letter-spacing: 0.03em;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .lp_main dt small {
    font-size: clamp(2rem, 4vh, 3.5rem);
    margin-bottom: 0.2em;
  }
}

.lp_main dt em {
  position: relative;
  margin: 0 0.1em;
  text-align: center;
}

.lp_main dt em:before,
.lp_main dt em:after {
  content: "";
  position: absolute;
  background: url(../img/ico_quote_left01.svg?v=20251126) no-repeat center top/contain;
  width: 4.2rem;
  aspect-ratio: 42 / 31;
  top: 0.35em;
  z-index: -1;
}

@media screen and (max-width: 1024px) {

  .lp_main dt em:before,
  .lp_main dt em:after {
    width: 1.6rem;
    top: 0.2em;
  }
}

.lp_main dt em:before {
  left: -0.22em;
}

.lp_main dt em:after {
  background-image: url(../img/ico_quote_right01.svg?v=20251126);
  right: -0.4em;
}

@media screen and (max-width: 1024px) {
  .lp_main dt em:after {
    right: -0.2em;
  }
}

.lp_main dd {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .lp_main dd {
    font-size: clamp(1.2rem, 2vh, 1.8rem);
    margin-left: 0;
    margin-top: 1vh;
  }

  .lp_main dd span:first-child {
    display: none;
  }
}

.lp_main dd span {
  display: block;
}


.lp_main .app {
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  .lp_main .app {
    display: inline-block;
  }
}

.lp_main .app p {
  font-weight: bold;
  font-size: 3.6rem;
  letter-spacing: 0;
  margin-bottom: 0.9em;
}

@media screen and (max-width: 1024px) {
  .lp_main .app p {
    font-size: clamp(1.2rem, 2vh, 1.8rem);
    margin-bottom: 0.5em;
  }
}

.lp_main .app p i {
  display: block;
  font-size: 2.4rem;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .lp_main .app p i {
    font-size: clamp(0.9rem, 1.5vh, 1.2rem);
    margin-bottom: 0.2em;
  }
}

.lp_main .app p i:before,
.lp_main .app p i:after {
  content: "";
  height: 2.3rem;
  border-left: solid 2px #121212;
  position: absolute;
  bottom: 0;
  margin-left: 0.75em;
}

.lp_main .app p i:before {
  transform: rotate(-30deg);
  margin-left: -0.775em;
}

.lp_main .app p i:after {
  transform: rotate(30deg);
}

.lp_main .app p small {
  font-size: 2.6rem;
  margin: 0 -0.02em 0 -0.25em;
}

@media screen and (max-width: 1024px) {
  .lp_main .app p small {
    font-size: 1.6rem;
    margin: 0;
  }
}

.lp_main .app p em {
  font-size: 2.2rem;
  display: inline-block;
  color: #fff;
  width: 9.4rem;
  line-height: 5rem;
  background: linear-gradient(180deg, #ffc12d 0%, #fb6938 100%);
  border-radius: 3em;
  vertical-align: 0.2em;
  margin-right: 0.3em;
}

@media screen and (max-width: 1024px) {
  .lp_main .app p em {
    font-size: 1.1rem;
    line-height: 2rem;
    width: 5.3rem;
    background: linear-gradient(180deg, #ffc12d 0%, #fb6938 100%);
  }
}

.lp_main .app ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

@media screen and (min-width: 1025px) {
  .lp_main .app ul {
    width: 60rem;
    margin: 0 auto;
  }
}

.lp_main .app li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-shrink: 0;
}

.lp_main .app li img {
  height: 5.6rem;
  width: auto;
  flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
  .lp_main .app li img {
    height: clamp(3.5rem, 5.5vh, 4.4rem);
    width: auto;
    flex-shrink: 0;
  }
}

.lp_main .app li .qr {
  height: 13.6rem;
  margin-bottom: 1.6rem;
}

.lp_main .app li .qr+img {
  display: block;
}

/* PC/SP共通 - アイコン+テキストレイアウト */
.lp_main .app .app-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lp_main .app .app-text>img {
  height: 6rem;
  width: auto;
}

.lp_main .app .app-text-lines {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lp_main .app .app-text-lines p {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
  text-align: left;
  text-shadow:
    0 0 2px #fff,
    0 0 2px #fff,
    0 0 2px #fff,
    0 0 3px #fff,
    0 0 3px #fff,
    0 0 4px #fff;
}

@media screen and (max-width: 1024px) {
  .lp_main .app {
    order: 3;
    margin-top: 0;
    padding-bottom: 1vh;
    flex-shrink: 0;
    position: relative;
    top: -4vh;
  }

  .lp_main .app .app-text {
    gap: 1.5vw;
    margin-bottom: 1.5vh;
  }

  .lp_main .app .app-text>img {
    height: 5vh;
  }

  .lp_main .app .app-text-lines {
    gap: 0.3vh;
  }

  .lp_main .app .app-text-lines p {
    font-size: clamp(1.2rem, 2vh, 1.6rem);
    text-shadow:
      0 0 2px #fff,
      0 0 2px #fff,
      0 0 2px #fff,
      0 0 3px #fff,
      0 0 3px #fff,
      0 0 4px #fff;
  }

  .lp_main .app ul {
    gap: 2vh;
  }

  .lp_main .app li .qr {
    display: none;
  }

  .lp_main dd span.waku {
    display: none;
  }
}

.lp_main .smp {
  /* SP用のベーススタイル - PC版は別途上書き */
}

@media screen and (max-width: 1024px) {
  .lp_main .smp {
    position: relative;
    margin: 0;
    width: auto;
    height: 100%;
    max-height: 45vh;
    top: auto;
    right: auto;
  }

  .lp_main .img img.smp {
    width: auto;
    height: 100%;
    max-height: 46vh;
    object-fit: contain;
  }
}

.lp_main .img {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .lp_main .img {
    margin-bottom: 0;
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    max-height: 50vh;
    min-height: 0;
    overflow: hidden;
    position: relative;
    top: -2vh;
  }
}

.lp_main .img p {
  width: 23.3rem;
  position: absolute;
  margin-top: -2.5rem;
}

@media screen and (max-width: 1024px) {
  .lp_main .img p {
    display: none;
  }
}

.lp_main .img p img {
  width: 100%;
}

.lp_main .mv {
  width: 83.9rem;
  background: #ffffff;
  box-shadow: 0.4rem 0.4rem 7.5rem 3.2rem rgba(223, 223, 223, 0.48);
  border-radius: 5.6rem;
  overflow: hidden;
  max-width: 100%;
}

.lp_main .mv video {
  display: block;
  width: 100%;
  aspect-ratio: 786 / 442;
}

@media screen and (max-width: 1024px) {
  .lp_main .mv {
    border-radius: 3rem;
    display: none;
  }
}

/* PCサイズ対応 - 基準: 1440x900 (13インチMacBook Air) */
@media screen and (min-width: 1025px) {
  .lp_main {
    margin-top: 0;
    margin-bottom: 5.5vh;
    padding-bottom: 8vh;
    min-height: calc(100vh - 5.5vh);
    height: calc(100vh - 5.5vh);
    background-size: auto 100%;
    background-position: left top;
    background-repeat: repeat-x;
  }

  .lp_main .u_inner {
    width: 90%;
    max-width: min(158rem, 1400px);
    /* 中間サイズでの最大幅を制限 */
    position: relative;
    height: 100%;
    margin: 0 auto;
  }

  .lp_main .box {
    display: grid;
    grid-template-columns: minmax(280px, 40%) 1fr;
    /* 左列の最小幅を保証 */
    column-gap: clamp(1rem, 3vw, 4rem);
    /* 列間の余白を可変に */
    align-items: end;
    position: relative;
    z-index: 2;
    height: 90%;
    row-gap: 0;
  }

  .lp_main .img {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    position: relative;
    height: 100%;
    margin-top: 5vh;
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
  }

  .lp_main .img img.smp {
    height: 100%;
    width: auto;
    max-width: 100%;
    min-height: max(60rem, 450px);
    /* remとpxの大きい方を採用 */
    object-fit: contain;
    object-position: bottom;
  }

  .lp_main dl {
    grid-column: 2;
    align-self: end;
    margin-bottom: -9rem;
  }

  .lp_main .app {
    grid-column: 2;
    align-self: end;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .lp_main .app p {
    font-size: clamp(2.4rem, 3.75vw, 5.4rem);
    margin-bottom: 1.35em;
  }

  .lp_main .app p i {
    font-size: clamp(1.6rem, 2.5vw, 3.6rem);
  }

  .lp_main .app p small {
    font-size: clamp(1.8rem, 2.7vw, 3.9rem);
  }

  .lp_main .app p em {
    font-size: clamp(1.5rem, 2.3vw, 3.3rem);
    width: clamp(7rem, 9.8vw, 14.1rem);
    line-height: clamp(3.5rem, 5.2vw, 7.5rem);
  }

  .lp_main .app ul {
    width: clamp(350px, 62.5vw, min(90rem, 720px));
  }

  .lp_main .app li {
    gap: clamp(2rem, 3.1vw, 4.5rem);
  }

  .lp_main .app li img {
    height: clamp(35px, 5.8vw, 70px);
    /* pxで最小値を保証 */
  }

  .lp_main .app li .qr {
    height: clamp(10rem, 14.2vw, 20.4rem);
    margin-bottom: clamp(1.2rem, 1.7vw, 2.4rem);
  }

  .lp_main .app .app-text>img {
    height: 9rem;
  }

  .lp_main .app .app-text-lines p {
    font-size: 3.6rem;
  }
}

.lp_lead {
  position: relative;
  z-index: 1;
  padding: 3.3rem 0 0;
  color: #121212;
}

@media screen and (max-width: 1024px) {
  .lp_lead {
    padding: 6.9rem 0 0;
  }
}

.lp_lead:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 123rem;
  background: linear-gradient(360deg, #ffe0c4 13.94%, #ffffff 100%);
  bottom: 0;
  z-index: -1;
  clip-path: polygon(100% 0,
      100% calc(100% - 17rem),
      50% 100%,
      0 calc(100% - 17rem),
      0 0);
}

@media screen and (max-width: 1024px) {
  .lp_lead:before {
    clip-path: polygon(100% 0,
        100% calc(100% - 4.5rem),
        50% 100%,
        0 calc(100% - 4.5rem),
        0 0);
    height: 78.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .lp_lead .c_ttl {
    font-size: 2.4rem;
  }

  .lp_lead .c_ttl b {
    font-size: 2.8rem;
  }
}

.lp_lead .c_ttl.a {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead .c_ttl.a {
    margin-bottom: 1.2rem;
  }
}

.lp_lead .c_ttl.a img {
  width: 83.4rem;
  margin-top: 1rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead .c_ttl.a img {
    width: 31rem;
  }
}

.lp_lead .c_ttl.b {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead .c_ttl.b {
    margin-bottom: 2rem;
  }
}

.lp_lead .c_ttl.b img {
  width: 69.2rem;
  margin-top: 1.3rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead .c_ttl.b img {
    margin-top: 1rem;
    width: 25.2rem;
  }
}

.lp_lead .img {
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .lp_lead .img {
    display: none;
  }
}

.lp_lead .img.a {
  width: 38rem;
  top: 11.2rem;
  left: calc(50% - 88rem);
}

.lp_lead .img.b {
  top: 10.6rem;
  width: 42.1rem;
  right: calc(50% - 93.8rem);
}

.lp_lead dl {
  max-width: 81.6rem;
  margin: 0 auto 6rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead dl {
    margin: 0 auto 4.8rem;
  }
}

.lp_lead dt {
  text-align: center;
  color: #f39200;
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.4rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead dt {
    font-size: 2rem;
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
  }
}

.lp_lead dd {
  background: #fff;
  border-radius: 2.4rem;
  box-shadow: 4px 4px 48px 16px #f1ebe5;
  padding: 5.8rem 8rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead dd {
    padding: 1.3rem 2.6rem 2rem;
  }
}

.lp_lead dd ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead dd ul {
    gap: 2.2rem;
  }
}

.lp_lead dd li {
  background: url(../img/ico_check01.svg?v=20251126) no-repeat left center/4rem;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-left: 5.6rem;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .lp_lead dd li {
    position: relative;
    font-size: 2rem;
    background-size: 2.5rem;
    padding-left: 3.6rem;
    line-height: 1.7;
  }

  .lp_lead dd li:nth-child(1) img {
    width: 5.5rem;
    right: -1.3rem;
  }

  .lp_lead dd li:nth-child(2) img {
    width: 5.2rem;
    right: -1.4rem;
  }

  .lp_lead dd li:nth-child(3) img {
    width: 5.8rem;
    margin-top: 0.3em;
    right: -1.1rem;
  }

  .lp_lead dd li:nth-child(4) img {
    width: 6.3rem;
    right: -1.2rem;
  }

  .lp_lead dd li:nth-child(5) img {
    width: 6.82rem;
    right: -1.7rem;
  }
}

.lp_lead dd li small {
  color: #7a7a81;
  font-size: 2rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead dd li small {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .lp_lead dd li img {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .lp_lead dd li img {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
  }
}

.lp_lead .box {
  position: relative;
  max-width: 145.3rem;
  margin: 0 auto;
  padding-top: 3.5rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead .box {
    padding-top: 0;
  }
}

.lp_lead .box figure {
  text-align: center;
  height: 62.5rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead .box figure {
    margin-top: 2.6rem;
    height: 24.5rem;
  }
}

.lp_lead .box figure img {
  width: 87rem;
  position: relative;
  left: -0.5rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead .box figure img {
    width: 27.1rem;
  }
}

.lp_lead .box li {
  position: relative;
  background: #3b3b3b;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-weight: bold;
  border-radius: 1.6rem 1.6rem 0 1.6rem;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1024px) {
  .lp_lead .box li {
    font-size: 2rem;
    height: 8rem;
    margin-bottom: 1.6rem;
    border-radius: 1.6rem 1.6rem 1.6rem 0;
    margin-left: 1rem;
  }
}

.lp_lead .box li small {
  display: block;
  font-size: 2.4rem;
}

@media screen and (max-width: 1024px) {
  .lp_lead .box li small {
    font-size: 1.4rem;
    margin-bottom: 0.2em;
  }
}

.lp_lead .box li:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: inherit;
  left: -1rem;
  top: 1rem;
  background: #5a431a;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .lp_lead .box li:before {
    top: 0.7rem;
  }
}

@media screen and (min-width: 1025px) {
  .lp_lead .box li {
    width: 49.3rem;
    height: 16.5rem;
    position: absolute;
    top: 0;
  }

  .lp_lead .box li:nth-child(2) {
    width: 42.1rem;
    left: 6.8rem;
    top: 22rem;
  }

  .lp_lead .box li:nth-child(3) {
    width: 56.5rem;
    right: 0;
    top: 15.5rem;
    border-radius: 1.6rem 1.6rem 1.6rem 0;
  }

  .lp_lead .box li:nth-child(3):before {
    left: 1rem;
  }
}

.lp_about {
  text-align: center;
  background: url(../img/app_bg.png?v=20251126) no-repeat center bottom/cover;
  padding: 27rem 0 0;
  margin: -17rem 0 2rem;
  position: relative;
  height: 130rem;
}

@media screen and (max-width: 1024px) {
  .lp_about {
    padding: 11.9rem 0 0;
    margin: -4.5rem 0 2.2rem;
  }
}

.lp_about:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  background: #f7f5f0;
  height: 25rem;
  bottom: -2rem;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .lp_about:before {
    bottom: -5.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lp_about {
    background-image: url(../img/app_bg_sp.png?v=20251126);
    height: 67.3rem;
    height: auto;
  }
}

.lp_about .head {
  max-width: 80.7rem;
  margin: 0 auto 15rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .lp_about .head {
    margin: 0 auto 1.5rem;
  }
}

.lp_about .head p {
  text-align: right;
  margin-top: 0.7em;
}

@media screen and (max-width: 1024px) {
  .lp_about .head p {
    text-align: center;
    font-size: 1.2rem;
  }
}

.lp_about .ttl {
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1.53;
}

@media screen and (max-width: 1024px) {
  .lp_about .ttl {
    font-size: 2.4rem;
    line-height: 1.25;
  }
}

.lp_about .ttl em {
  font-size: 5.2rem;
}

@media screen and (max-width: 1024px) {
  .lp_about .ttl em {
    font-size: 2.8rem;
  }

  .lp_about .ttl em.b {
    display: block;
    margin-top: 0.26em;
  }

  .lp_about .ttl em.b span {
    font-size: 2.4rem;
  }
}

.lp_about .ttl sup {
  font-size: 0.4em;
  vertical-align: top;
  margin-right: 0.5em;
}

@media screen and (max-width: 1024px) {
  .lp_about .ttl sup {
    font-size: 0.6em;
  }
}

.lp_about .ttl2 {
  font-weight: bold;
  font-size: 5.2rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .lp_about .ttl2 {
    font-size: 2.4rem;
  }
}

.lp_about .box {
  padding-bottom: 40rem;
  position: relative;
  z-index: 0;
}

.lp_about .box:before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 100rem;
  height: 49rem;
  background: url(../img/app_ttl_bg.png?v=20251126) no-repeat center 3.1rem/100%;
  z-index: -1;
  top: -19.8rem;
}

@media screen and (max-width: 1024px) {
  .lp_about .box:before {
    background-image: url(../img/app_ttl_bg_sp.png?v=20251126);
    width: 100%;
    top: -3.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .lp_about .box {
    margin: 0 -2rem;
    padding: 7.4rem 0 6rem;
  }
}

.lp_about ul {
  display: flex;
  justify-content: center;
  gap: 11.5rem;
  margin-top: 6.7rem;
}

@media screen and (max-width: 1024px) {
  .lp_about ul {
    gap: 2.1rem;
    margin-top: 2.8rem;
  }
}

.lp_about li {
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffc12d 0%, #fb6938 100%);
  box-shadow: -0.1rem 0.8rem 1.6rem rgba(0, 0, 0, 0.25);
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .lp_about li {
    font-size: 1.4rem;
    width: 9rem;
    height: 9rem;
    line-height: 1.7;
  }
}

.lp_about li+li:before {
  content: "";
  position: absolute;
  background: url(../img/ico_cross.svg?v=20251126) no-repeat 50% / contain;
  height: 100%;
  top: 0;
  width: 6.2rem;
  left: -9rem;
}

@media screen and (max-width: 1024px) {
  .lp_about li+li:before {
    width: 1.2rem;
    left: -1.65rem;
  }
}

.lp_about li small {
  display: block;
  font-size: 2.8rem;
  letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
  .lp_about li small {
    font-size: 1.2rem;
    margin-bottom: -0.2em;
  }
}

#fixed_target {
  position: absolute;
  width: 100%;
  height: 9.2rem;
  margin-top: -13.2rem;
}

@media screen and (max-width: 1024px) {
  #fixed_target {
    height: 5.1rem;
    margin-top: -6rem;
  }
}

.fixed_footer {
  height: 9.2rem;
  background: linear-gradient(180deg,
      rgba(255, 193, 45, 0.9) 0%,
      rgba(252, 116, 55, 0.9) 61.54%,
      rgba(251, 105, 56, 0.9) 100%);
  position: absolute;
  z-index: 65;
  width: 100%;
  margin-top: -13.2rem;
}

@media screen and (max-width: 1024px) {
  .fixed_footer {
    height: 5.1rem;
    background: linear-gradient(180deg, #ffc12d 0%, #fb6938 100%);
    margin-top: -6rem;
  }
}

.fixed_footer.fixed {
  position: fixed;
  bottom: 0;
  margin: 0;
}

.fixed_footer.fixed.abs {
  position: absolute;
}

.fixed_footer,
.fixed_footer dl,
.fixed_footer dt,
.fixed_footer dd {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed_footer dl {
  gap: 8.2rem;
}

@media screen and (max-width: 1024px) {
  .fixed_footer dl {
    gap: 2rem;
  }
}

.fixed_footer dt {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0;
  font-weight: 900;
  gap: 4.1rem;
}

.fixed_footer dt span {
  background: url(../img/arrow_right01.svg?v=20251126) no-repeat right center/5.1rem;
  padding-right: 5rem;
}

@media screen and (max-width: 1024px) {
  .fixed_footer dt span {
    display: none;
  }
}

.fixed_footer dt img {
  height: 6rem;
}

@media screen and (max-width: 1024px) {
  .fixed_footer dt img {
    height: 4.1rem;
  }
}

.fixed_footer dd {
  gap: 2.7rem;
}

@media screen and (max-width: 1024px) {
  .fixed_footer dd {
    gap: 2rem;
  }
}

.fixed_footer dd img {
  height: 5.6rem;
}

@media screen and (max-width: 1024px) {
  .fixed_footer dd img {
    height: 4rem;
  }
}

.fixed_footer dd .qr {
  height: 6.7rem;
}

@media screen and (max-width: 1024px) {
  .fixed_footer dd .qr {
    display: none;
  }
}

.scroll_wrap {
  position: relative;
}

.scroll_nav {
  position: absolute;
  top: 1.7rem;
  left: 0;
  z-index: 10;
  filter: drop-shadow(0.5rem 0.7rem 2rem rgba(0, 0, 0, 0.14));
  transform: translateZ(0);
}

@media screen and (max-width: 1024px) {
  .scroll_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.6rem;
    top: 1.7rem;
  }
}

.scroll_nav.fixed {
  position: fixed;
}

.scroll_nav.fixed.abs {
  position: absolute;
  top: auto;
  bottom: calc(100vh - 20.7rem);
}

@media screen and (max-width: 1024px) {
  .scroll_nav.fixed.abs {
    bottom: calc(100vh - (4rem + 1.7rem));
  }
}

@media screen and (min-width: 1025px) {
  .scroll_nav li+li {
    margin-top: 1rem;
  }
}

.scroll_nav a {
  background: #ffd2a8;
  border-radius: 0 1rem 1rem 0;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 5rem;
  text-align: right;
  color: #000;
  padding-right: 4.2rem;
  width: 23.4rem;
  transition-property: opacity;
}

@media screen and (max-width: 1024px) {
  .scroll_nav a {
    width: 9.2rem;
    font-size: 1.256rem;
    line-height: 3rem;
    padding: 0;
    border-radius: 0.9rem;
    text-align: center;
    border: solid 1px #f39200;
    background: #fff;
    font-weight: 400;
  }
}

.scroll_nav a.active {
  background: #000;
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  width: 29rem;
  background: linear-gradient(180deg, #ffc12d 0%, #fb6938 100%);
  line-height: 7.7rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .scroll_nav a.active {
    width: 11.2rem;
    font-size: 1.715rem;
    padding: 0;
    line-height: 4rem;
  }
}

@media screen and (min-width: 1025px) {
  .lp_sec .u_inner {
    width: 148rem;
    padding-left: 12rem;
  }
}

.lp_sec .ttl {
  font-weight: bold;
  font-size: 4rem;
  line-height: 1.6;
  margin-bottom: 1.4em;
}

@media screen and (max-width: 1024px) {
  .lp_sec .ttl {
    font-size: 2.4rem;
    white-space: nowrap;
    margin-bottom: 0.8em;
  }

  .lp_sec .ttl small {
    font-size: 2rem;
  }
}

.lp_sec .ttl em {
  background: linear-gradient(transparent 80%, #ffd78d 80%);
}

.lp_sec p {
  line-height: 2;
  margin-top: 1.2em;
}

@media screen and (max-width: 1024px) {
  .lp_sec p {
    line-height: 1.8;
  }
}

.lp_sec .check {
  background: url(../img/ico_check01.svg?v=20251126) no-repeat left center/4rem;
  font-weight: bold;
  font-size: 2rem;
  padding-left: 5.6rem;
  margin-top: 5.7rem;
}

@media screen and (max-width: 1024px) {
  .lp_sec .check {
    font-size: 1.8rem;
    background-size: 2.5rem;
    padding-left: 1.9em;
    line-height: 1.8;
    margin-top: 2.9rem;
  }
}

.lp_sec .check+.check {
  margin-top: 1.6rem;
}

.lp_sec .head {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .lp_sec .head {
    flex-direction: column;
    gap: 2.9rem;
  }
}

@media screen and (min-width: 1025px) {
  .lp_sec .head {
    justify-content: space-between;
    align-items: flex-start;
  }

  .lp_sec .head figure {
    width: 66.8rem;
  }

  .lp_sec .head .desc {
    width: 64rem;
  }
}

.lp_sec .head figure {
  border-radius: 3.2rem;
  overflow: hidden;
  box-shadow: 0.5rem 1rem 3rem rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 1025px) {
  .lp_sec .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1024px) {
  .lp_sec .row.a {
    margin-top: 6rem;
    flex-direction: row-reverse;
  }

  .lp_sec .row.a figure {
    text-align: center;
    margin-top: 2.8rem;
  }

  .lp_sec .row.a figure img {
    width: 25.3rem;
  }

  .lp_sec .row.b {
    margin-top: 6.5rem;
  }

  .lp_sec .row.b figure {
    text-align: center;
    margin-top: 1.8rem;
  }

  .lp_sec .row.b figure img {
    width: 17.55rem;
    position: relative;
    left: 0.5rem;
  }

  .lp_sec .row.c {
    margin-top: 6rem;
    flex-direction: row-reverse;
  }

  .lp_sec .row.c figure {
    text-align: center;
    margin-top: 2rem;
  }

  .lp_sec .row.c figure img {
    width: 17.55rem;
    position: relative;
    left: 0.5rem;
  }

  .lp_sec .row.c .enter {
    margin-top: 1.2em;
  }

  .lp_sec .row.c .enter p {
    display: inline;
  }
}

@media screen and (min-width: 1025px) {
  .lp_sec .row.a {
    margin-top: 11.5rem;
    flex-direction: row-reverse;
  }

  .lp_sec .row.a .desc {
    width: 65.2rem;
  }

  .lp_sec .row.a figure {
    width: 69.3rem;
    position: relative;
    left: -11rem;
  }

  .lp_sec .row.b {
    margin-top: 22rem;
    padding-left: 4.5rem;
  }

  .lp_sec .row.b .desc {
    width: 66.7rem;
  }

  .lp_sec .row.b figure {
    width: 37.3rem;
    position: relative;
    left: -13.5rem;
  }

  .lp_sec .row.c {
    margin-top: 7.5rem;
    padding-left: 4.5rem;
    flex-direction: row-reverse;
  }

  .lp_sec .row.c .desc {
    width: 59rem;
  }

  .lp_sec .row.c figure {
    width: 37.3rem;
    position: relative;
    left: 15.8rem;
  }
}

.lp_eval {
  background: #f7f5f0;
  padding: 19.5rem 0 19rem;
}

@media screen and (max-width: 1024px) {
  .lp_eval {
    padding: 8.8rem 0 5.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .lp_eval .c_ttl {
    text-align: left;
  }
}

.lp_eval .c_ttl img {
  width: 48.4rem;
}

@media screen and (min-width: 1025px) {
  .lp_eval .c_ttl img {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lp_eval .c_ttl img {
    width: 25.6rem;
    margin-top: 1rem;
  }
}

.lp_manage {
  padding: 17.3rem 0 19rem;
}

@media screen and (min-width: 1025px) {
  .lp_manage {
    background: url(../img/asset_bg.svg?v=20251126) no-repeat center top/cover;
  }
}

@media screen and (max-width: 1024px) {
  .lp_manage {
    padding: 7rem 0 5.3rem;
  }

  .lp_manage .check {
    margin-top: 0.8rem;
  }

  .lp_manage .row figure {
    position: relative;
  }

  .lp_manage .row figure:before {
    content: "";
    position: absolute;
    left: 50%;
    translate: -50% 0;
    background: url(../img/asset_bg_sp.svg?v=20251126) no-repeat center top/100%;
    width: 37.9rem;
    height: 37.4rem;
    top: 0;
  }
}

@media screen and (min-width: 1025px) {
  .lp_manage .c_ttl {
    text-align: left;
  }
}

.lp_manage .c_ttl img {
  width: 56.8rem;
}

@media screen and (min-width: 1025px) {
  .lp_manage .c_ttl img {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lp_manage .c_ttl img {
    width: 28.5rem;
    margin-top: 0.8rem;
  }
}

.lp_purchase {
  padding: 9rem 0 14.5rem;
  background: linear-gradient(180deg, #ffe1c7 0%, #f7f5f0 59.62%);
}

@media screen and (max-width: 1024px) {
  .lp_purchase {
    padding: 7rem 0 5.4rem;
  }

  .lp_purchase p:not(.check) br {
    display: none;
  }

  .lp_purchase .check {
    margin-top: 1.2rem;
    font-size: 2rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 1024px) {
  .lp_purchase .c_ttl {
    margin-bottom: -0.3rem;
  }
}

.lp_purchase .c_ttl img {
  width: 67rem;
}

@media screen and (max-width: 1024px) {
  .lp_purchase .c_ttl img {
    width: 25.2rem;
  }
}

.lp_purchase .sub {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 1024px) {
  .lp_purchase .sub {
    font-size: 1.4rem;
    margin: 0 0 0.2em;
  }
}

.lp_purchase .sub em {
  font-size: 4rem;
  line-height: 1.7;
}

@media screen and (max-width: 1024px) {
  .lp_purchase .sub em {
    font-size: 2rem;
  }
}

.lp_purchase .sub i {
  letter-spacing: 0.08em;
  position: relative;
}

.lp_purchase .sub i:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #f39200;
  left: 0.12em;
}

@media screen and (max-width: 1024px) {
  .lp_purchase .sub i:before {
    width: 0.4rem;
    height: 0.4rem;
    left: 0.26em;
  }
}

.lp_purchase .ttl2 {
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 4.8rem;
}

@media screen and (max-width: 1024px) {
  .lp_purchase .ttl2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: -0.3rem;
  }
}

.lp_purchase .ttl2 b {
  display: block;
  font-weight: 600;
  color: #f39200;
  line-height: 1;
  font-size: 4rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35em;
}

@media screen and (max-width: 1024px) {
  .lp_purchase .ttl2 b {
    margin-bottom: 0.22em;
  }
}

.lp_purchase .ttl2 em {
  font-size: 5.2rem;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .lp_purchase .ttl2 em {
    font-size: 2.4rem;
  }
}

.lp_purchase .ttl2 i {
  letter-spacing: 0.05em;
  position: relative;
}

.lp_purchase .ttl2 i:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #f39200;
  left: 0.37em;
}

@media screen and (max-width: 1024px) {
  .lp_purchase .ttl2 i:before {
    width: 0.4rem;
    height: 0.4rem;
  }
}

.lp_purchase li {
  border-radius: 3.2rem;
  background: #fff;
  margin-top: 6rem;
  padding: 5.5rem 7.5rem 5rem;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .lp_purchase li {
    border-radius: 3rem;
    margin-top: 3rem;
    padding: 3.6rem 2.3rem 3.5rem;
  }

  .lp_purchase li:nth-child(1) figure {
    margin: 2.7rem -2.3rem 0;
  }

  .lp_purchase li:nth-child(1) figure img {
    width: 100%;
  }

  .lp_purchase li+li figure {
    margin-top: 3rem;
  }

  .lp_purchase li+li figure img {
    width: 100%;
  }

  .lp_purchase li:nth-child(3) .check {
    white-space: nowrap;
  }
}

@media screen and (min-width: 1025px) {
  .lp_purchase li {
    box-shadow: 0.5rem 1rem 3rem rgba(0, 0, 0, 0.25);
  }

  .lp_purchase li+li figure {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 36.8rem;
    right: 7.2rem;
  }
}

.lp_comp {
  padding: 13.5rem 0 17rem;
}

@media screen and (max-width: 1024px) {
  .lp_comp {
    padding: 4.1rem 0 6rem;
  }
}

@media screen and (min-width: 1025px) {
  .lp_comp .u_inner {
    width: 144rem;
  }
}

.lp_comp .c_ttl img {
  width: 51.8rem;
}

@media screen and (max-width: 1024px) {
  .lp_comp .c_ttl img {
    width: 26rem;
  }
}

.lp_comp .table {
  display: flex;
  align-items: flex-end;
  margin-top: 6.8rem;
  filter: drop-shadow(0.5rem 1rem 3rem rgba(0, 0, 0, 0.3));
  transform: translateZ(0);
}

@media screen and (max-width: 1024px) {
  .lp_comp .table {
    margin-top: 2.4rem;
  }
}

.lp_comp p {
  height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2.5;
}

.lp_comp p+p {
  border-top: solid 2px #bdbdbd;
}

@media screen and (max-width: 1024px) {
  .lp_comp p {
    font-size: 1.2rem;
    line-height: 1.7;
    padding: 0 0.1em;
    height: 13.1rem;
  }
}

.lp_comp .head {
  width: 14%;
  background: #f0efec;
  border-radius: 1.6rem 0 0 1.6rem;
  border: solid 1px #bdbdbd;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .lp_comp .head {
    width: 15%;
  }
}

.lp_comp dl {
  width: 28%;
}

@media screen and (max-width: 1024px) {
  .lp_comp dl {
    width: 25%;
  }
}

.lp_comp dl.hm {
  width: 31%;
}

@media screen and (max-width: 1024px) {
  .lp_comp dl.hm {
    width: 34%;
  }
}

.lp_comp dl.hm dt {
  background: #f39200;
  height: 14.4rem;
  border: none;
}

@media screen and (max-width: 1024px) {
  .lp_comp dl.hm dt {
    height: 7rem;
  }
}

.lp_comp dl.hm dt img {
  width: 8.9rem;
}

@media screen and (max-width: 1024px) {
  .lp_comp dl.hm dt img {
    width: 4rem;
  }
}

.lp_comp dl.hm dd {
  border: solid 5px #f39200;
  border-top: none;
  color: #f39200;
  border-radius: 0 0 1.6rem 0;
}

.lp_comp dl.hm dd p {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .lp_comp dl.hm dd p {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

.lp_comp dl.hm dd p+p {
  border-color: #f39200;
}

.lp_comp dl.hm dd p:last-child {
  height: 17.6rem;
}

@media screen and (max-width: 1024px) {
  .lp_comp dl.hm dd p:last-child {
    height: 12.8rem;
  }
}

.lp_comp dt {
  font-size: 2rem;
  font-weight: bold;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffd2a8;
  border-radius: 1.6rem 1.6rem 0 0;
  border: solid 1px #bdbdbd;
}

@media screen and (max-width: 1024px) {
  .lp_comp dt {
    font-size: 1.2rem;
    height: 6rem;
  }
}

.lp_comp dd {
  background: #fff;
  border: solid 1px #bdbdbd;
  border-top: none;
}

@media screen and (max-width: 1024px) {
  .lp_comp dd p {
    font-size: 1.1rem;
    line-height: 2.2;
  }
}

.lp_comp dd p+p {
  border-color: #d9d9d9;
}

.lp_usage {
  padding: 4.1rem 0 6rem;
  background: linear-gradient(180deg, #ffe1c7 0%, #f7f5f0 50.96%);
}

@media screen and (min-width: 1025px) {
  .lp_usage {
    padding: 14rem 0 18rem;
  }

  .lp_usage .u_inner {
    width: 131rem;
  }
}

.lp_usage .c_ttl img {
  width: 39.5rem;
}

@media screen and (max-width: 1024px) {
  .lp_usage .c_ttl img {
    width: 21.4rem;
  }
}

.lp_usage ul {
  display: flex;
  gap: 7.8rem;
  margin-top: 3.2rem;
}

@media screen and (max-width: 1024px) {
  .lp_usage ul {
    flex-direction: column;
    margin-top: 2rem;
    gap: 8.5rem;
  }
}

@media screen and (min-width: 1025px) {
  .lp_usage li {
    width: 30%;
  }
}

.lp_usage li img {
  display: block;
  margin: 0 auto -7rem;
  width: 24.9rem;
}

@media screen and (max-width: 1024px) {
  .lp_usage li img {
    width: 17.5rem;
    margin: 0 auto -2rem;
  }
}

.lp_usage li+li {
  position: relative;
}

.lp_usage li+li:before {
  content: "";
  position: absolute;
  background: url(../img/usage_arrow.svg?v=20251126) no-repeat 50% / contain;
  width: 5.9rem;
  height: 4.9rem;
  bottom: 13rem;
  left: -7rem;
}

@media screen and (max-width: 1024px) {
  .lp_usage li+li:before {
    background-image: url(../img/usage_arrow_sp.svg?v=20251126);
    width: 100%;
    height: 5.1rem;
    left: 0;
    top: -6.7rem;
    bottom: auto;
  }
}

.lp_usage dl {
  border-radius: 1.6rem;
  background: #fff;
  padding: 3.1rem 2rem 3.3rem;
  box-shadow: 0.5rem 1rem 3rem rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 1025px) {
  .lp_usage dl {
    padding: 10.45rem 5rem 6.7rem;
    height: 32.5rem;
  }
}

.lp_usage dt {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 0.9em;
}

@media screen and (max-width: 1024px) {
  .lp_usage dt {
    font-size: 2rem;
    margin-bottom: 0.2em;
  }
}

.lp_usage dt i {
  color: #f39200;
  font-size: 4rem;
  letter-spacing: 0.08em;
  margin-right: 0.6em;
}

@media screen and (max-width: 1024px) {
  .lp_usage dt i {
    font-size: 2.4rem;
  }
}

.lp_usage dd {
  letter-spacing: 0;
  font-size: 1.8rem;
  line-height: 1.77;
}

@media screen and (max-width: 1024px) {
  .lp_usage dd {
    text-align: center;
    font-size: 1.6rem;
  }
}

.lp_start {
  padding: 13.5rem 0 12rem;
}

@media screen and (max-width: 1024px) {
  .lp_start {
    padding: 4.1rem 0 6rem;
  }

  .lp_start .pager {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    position: absolute;
    width: 100%;
    bottom: 5.9rem;
  }

  .lp_start .swiper-pagination-bullet {
    background: #d9d9d9;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
  }

  .lp_start .swiper-pagination-bullet-active {
    background: #707070;
  }
}

.lp_start .c_ttl img {
  width: 72.8rem;
}

@media screen and (max-width: 1024px) {
  .lp_start .c_ttl img {
    width: 26rem;
  }
}

.lp_start .swiper-wrapper {
  padding: 4.5rem 0 9.6rem;
}

@media screen and (max-width: 1024px) {
  .lp_start .swiper-wrapper {
    padding: 3.2rem 0 6.5rem;
  }
}

.lp_start li {
  width: 44rem;
  margin: 0 1.5rem;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0.5rem 1rem 3rem rgba(0, 0, 0, 0.25);
  padding: 4rem;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .lp_start li {
    width: 33.5rem;
    padding: 4rem 2rem;
  }
}

.lp_start .btn {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.lp_start .btn img {
  width: 6.1rem;
  cursor: pointer;
  transition: opacity 0.2s ease-in;
}

.lp_start .btn img:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .lp_start .btn img {
    width: 4rem;
  }
}

.lp_start .head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .lp_start .head {
    margin-bottom: 1.7rem;
  }
}

.lp_start .head figure {
  width: 10.5rem;
}

.lp_start .head figure img {
  width: 100%;
}

.lp_start .head p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #7a7a81;
}

@media screen and (max-width: 1024px) {
  .lp_start .head p {
    font-size: 1.6rem;
  }
}

.lp_start .head small {
  display: block;
  font-size: 1.4rem;
  margin-top: 1.3em;
  font-weight: 400;
}

.lp_start dt {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  font-weight: bold;
  line-height: 1.7;
  color: #f39200;
  margin-bottom: 0.6em;
}

@media screen and (max-width: 1024px) {
  .lp_start dt {
    font-size: 2rem;
    margin-bottom: 0.81em;
  }
}

.lp_start dd {
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .lp_start dd {
    font-size: 1.4rem;
  }
}

.lp_faq {
  padding: 4.1rem 0 6rem;
  background: radial-gradient(50% 50% at 50% 50%,
      #ffffff 0%,
      #ffffff 73.08%,
      #fff9f3 87.98%,
      rgba(255, 242, 230, 0.7) 96.63%,
      rgba(255, 237, 221, 0.7) 100%);
}

@media screen and (min-width: 1025px) {
  .lp_faq {
    padding: 8.2rem 0 16rem;
  }

  .lp_faq .u_inner {
    width: 92rem;
  }
}

@media screen and (max-width: 1024px) {
  .lp_faq .c_ttl {
    margin-bottom: -1.1rem;
  }
}

.lp_faq .c_ttl img {
  width: 29.7rem;
}

@media screen and (max-width: 1024px) {
  .lp_faq .c_ttl img {
    width: 17.2rem;
  }
}

.lp_faq dl {
  border-bottom: solid 1px #dfdfe0;
}

@media screen and (max-width: 1024px) {
  .lp_faq dl:last-child {
    border: none;
  }
}

.lp_faq dt,
.lp_faq dd {
  position: relative;
  padding: 4rem 11.3rem;
}

@media screen and (max-width: 1024px) {

  .lp_faq dt,
  .lp_faq dd {
    padding: 2.9rem 4.5rem 2.8rem 6.3rem;
  }
}

.lp_faq dt:before,
.lp_faq dd:before {
  content: "Q";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  color: #fff;
  background: #f39200;
  border-radius: 50%;
  width: 5.7rem;
  height: 5.7rem;
  padding-top: 0.2em;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 1024px) {

  .lp_faq dt:before,
  .lp_faq dd:before {
    left: 1.5rem;
    width: 4rem;
    height: 4rem;
    padding-top: 0;
    line-height: 1.4;
  }
}

.lp_faq dt {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  position: relative;
  cursor: pointer;
  background: url(../img/faq_plus.svg?v=20251126) no-repeat right center/6.8rem;
}

@media screen and (max-width: 1024px) {
  .lp_faq dt {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    background-size: 3rem;
    background-image: url(../img/faq_plus_sp.svg?v=20251126);
  }
}

.lp_faq dt.open {
  background-image: url(../img/faq_minus.svg?v=20251126);
}

@media screen and (max-width: 1024px) {
  .lp_faq dt.open {
    background-image: url(../img/faq_minus_sp.svg?v=20251126);
  }
}

.lp_faq dt.open+dd {
  display: block;
}

.lp_faq dd {
  line-height: 2;
  margin-top: -5.8rem;
  display: none;
}

@media screen and (max-width: 1024px) {
  .lp_faq dd {
    margin-top: -3.6rem;
    font-size: 1.4rem;
    padding-bottom: 3rem;
  }
}

.lp_faq dd:before {
  content: "A";
  background: #000;
  padding-top: 0.1em;
}

/*# sourceMappingURL=style.css.map */