@charset "utf-8";
/* -----------------------------------------------------------------------------

　   RESET

--------------------------------------------------------------------------------------------- */
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, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* -----------------------------------------------------------------------------

　   BASE

--------------------------------------------------------------------------------------------- */
:root {
  --inner: 89rem;
  --color-navy: #1a2258;
  --color-navy-dark: #0e1538;
  --color-red: #c8102e;
  --color-gold: #b8960c;
  --color-text: #23272e;
  --color-text-sub: #555d6e;
  --color-text-muted: #8b92a0;
  --color-border: #dfe2e8;
  --color-border-light: #ebeef3;
  --color-bg: #faf9f6;
  --color-bg-blue: #f5f7fb;
  --color-white: #fff;
  --black: #23272e;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: var(--black);
  height: 100%;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  font-feature-settings: "palt";
}
/* SPデザインは幅750（2倍）のため、767px以下の数値はデザインpx÷2＝rem（html 62.5%）で指定 */
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
}
main {
  display: block;
  position: relative;
}

a {
  outline: none;
  color: var(--black);
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow: hidden;
}
section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.large_container {
  max-width: 124.6rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 60px 0;
  }
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* -----------------------------------------------------------------------------

　   COMMON — FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* -----------------------------------------------------------------------------

　   COMMON — TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

/* -----------------------------------------------------------------------------

　   LP BASE

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

.lp a:hover {
  opacity: 1;
}

/* -----------------------------------------------------------------------------

　   SCROLL FADE-IN

--------------------------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .lp.lp-scroll-anim .lp-fade-in {
    opacity: 0;
    transform: translateY(2rem);
    transition:
      opacity 0.65s ease,
      transform 0.65s ease;
    transition-delay: var(--fade-delay, 0ms);
    will-change: opacity, transform;
  }

  .lp.lp-scroll-anim .lp-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-fade-in {
    opacity: 1;
    transform: none;
  }
}

@media only screen and (max-width: 767px) {
  body.open {
    overflow: hidden;
  }

  .lp .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

}


/* -----------------------------------------------------------------------------

　   HEADING & BUTTON & SECTION

--------------------------------------------------------------------------------------------- */
.lp-heading {
  text-align: center;
}

.lp-heading__title {
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.lp-heading__title--light {
  color: var(--color-white);
}

.lp-heading__title em {
  font-style: normal;
  color: var(--color-red);
}

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

.lp-heading__lead--light {
  color: rgba(255, 255, 255, 0.85);
}

.lp-heading__divider {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-navy);
  opacity: 0.15;
}

.lp-heading__divider--light {
  background-color: var(--color-white);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-btn--primary {
  background-color: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 0.4rem 0.8rem rgba(200, 16, 46, 0.18);
}

.lp-btn--outline,
.lp-btn--outline-light {
  background-color: var(--color-white);
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.lp-btn--ghost-light {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy);
}

.lp-btn--block {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.lp-btn__sub {
  display: block;
  font-weight: 400;
  opacity: 0.8;
}

.lp-section--bg {
  background-color: var(--color-bg);
}

.lp-section--bg-blue {
  background-color: var(--color-bg-blue);
}

.lp-section--navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.lp-section--slant-top {
  position: relative;
}

.lp-section--slant-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  transform: translateY(-99%);
  z-index: 1;
}

.lp-section--slant-top-white::before,
.lp-section--navy.lp-section--slant-top::before {
  background-color: var(--color-white);
}

@media only screen and (max-width: 767px) {
  .lp-heading {
    margin-bottom: 1rem;
  }

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

  .lp-heading__lead {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .lp-heading__divider {
    width: 3.6rem;
    height: 0.2rem;
    margin-top: 1rem;
  }

  .lp-btn {
    min-height: 4rem;
    padding: 0.4rem 1rem;
    border-radius: 0.45rem;
    font-size: 1.2rem;
    width: 18rem;
  }

  .lp-btn--block {
    max-width: 100%;
  }

  .lp-btn__sub {
    margin-top: 0.2rem;
    font-size: 1.2rem;
  }

  .lp-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lp-section--slant-top {
    margin-top: -1.5rem;
    padding-top: 3rem;
  }

  .lp-section--slant-top::before {
    height: 1.5rem;
  }

  .lp-section--navy.lp-section--slant-top {
    margin-top: -1.5rem;
    padding-top: 3rem;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-heading {
    margin-bottom: 1.2rem;
  }

  .lp-heading__title {
    font-size: 3.4rem;
    line-height: 1.35;
  }

  .lp-heading__lead {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .lp-heading__divider {
    width: 3.6rem;
    height: 0.2rem;
    margin-top: 1.6rem;
  }

  .lp-btn {
    min-height: 6rem;
    padding: 0.8rem 2.4rem;
    border-radius: 0.6rem;
    font-size: 1.6rem;
    cursor: pointer;
  }

  .lp-btn--block {
    max-width: 30rem;
  }

  .lp-btn__sub {
    margin-top: 0.4rem;
    font-size: 1.2rem;
  }

  .lp-btn--primary:hover {
    opacity: 0.85;
  }

  .lp-btn--outline:hover,
  .lp-btn--outline-light:hover,
  .lp-btn--ghost-light:hover {
    background-color: var(--color-bg-blue);
  }

  .lp-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lp-section--slant-top {
    margin-top: -4rem;
    padding-top: 9rem;
  }

  .lp-section--slant-top::before {
    height: 4rem;
  }

}


/* -----------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
.lp-header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
}

.lp-header__inner {
  display: flex;
  align-items: center;
}

.lp-header__logo {
  display: block;
}

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

@media only screen and (max-width: 767px) {
  .lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
  }

  .lp .lp-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lp-header__logo {
    grid-column: 2;
    justify-self: center;
    width: 16.5rem;
    max-width: 100%;
    margin: 0;
  }

  .lp-menu-btn {
    grid-column: 3;
    justify-self: end;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-header__inner {
    justify-content: center;
    min-height: 6.4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lp-header__logo {
    width: 23.8rem;
  }

}


/* -----------------------------------------------------------------------------

　   GNAV / MENU

--------------------------------------------------------------------------------------------- */
.lp-gnav {
  background-color: var(--color-navy);
}

.lp-gnav__list {
  display: flex;
  list-style: none;
}

.lp-gnav__link {
  display: block;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.lp-menu-btn,
.lp-overlay {
  display: none;
}

@media only screen and (max-width: 767px) {
  .lp-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .lp-menu-btn__bar {
    display: block;
    width: 1.95rem;
    height: 0.25rem;
    background-color: #d9d9d9;
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }

  .lp-menu-btn.active .lp-menu-btn__bar:nth-child(2) {
    opacity: 0;
  }

  .lp-menu-btn.active .lp-menu-btn__bar:nth-child(1) {
    transform: translateY(0.6rem) rotate(45deg);
  }

  .lp-menu-btn.active .lp-menu-btn__bar:nth-child(3) {
    transform: translateY(-0.6rem) rotate(-45deg);
  }

  .lp-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0s linear 0.25s;
  }

  .lp-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.25s ease,
      visibility 0s linear 0s;
  }

  .lp-gnav {
    position: fixed;
    top: 4rem;
    right: 0;
    bottom: 0;
    z-index: 95;
    width: 30rem;
    max-width: calc(100% - 1rem);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }

  .lp-gnav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.25s ease,
      visibility 0s linear 0s;
  }

  .lp-gnav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .lp-gnav__link {
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

}

@media print, screen and (min-width: 768px) {
  html {
    scroll-padding-top: 5rem;
  }

  .lp-menu-btn,
  .lp-overlay {
    display: none !important;
  }

  .lp-gnav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.12);
  }

  .lp-gnav__list {
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 0.2rem 0;
  }
  .lp-gnav__list li {
    flex: 1;
  }

  .lp-gnav__link {
    padding: 1.4rem 1rem;
    font-size: 1.2rem;
    text-align: center;
  }

  .lp-gnav__link:hover {
    color: var(--color-white);
  }

}


/* -----------------------------------------------------------------------------

　   HERO

--------------------------------------------------------------------------------------------- */
.lp-hero {
  overflow: hidden;
  background: #0f1539;
}

.lp-hero__img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.lp-hero__img img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .lp-hero__img {
    width: 1920px;
    max-width: 100%;
  }
  .lp-hero__img img {
    max-width: 1400px;
    width: 1400px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 1040px) {
  .lp-hero__img img {
    max-width: 1920px;
    width: 1920px;
  }
}
@media print, screen and (min-width: 1920px) {
  .lp-hero__img {
    width: 100%;
  }
  .lp-hero__img img {
    max-width: 100%;
    width: 100%;
  }
}


/* -----------------------------------------------------------------------------

　   CTA

--------------------------------------------------------------------------------------------- */
.lp-cta {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.lp-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.lp-cta__actions .lp-btn {
  width: 100%;
}

.lp-cta__tel {
  font-weight: 900;
  line-height: 1;
}
.lp-cta__tel a {
  line-height: 1;
  color: var(--color-navy);
}

.lp-cta__note {
  color: var(--color-text-muted);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lp-cta {
    padding: 2rem 0 1.6rem;
  }

  .lp-cta__inner {
    gap: 1.2rem;
  }

  .lp-cta__actions {
    gap: 1.2rem;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .lp-cta__actions .lp-btn {
    display: flex;
    flex: none;
    /* width: 100%;
    max-width: 100%; */
    min-height: 5rem;
    padding: 1.2rem;
    border-radius: 1rem;
    font-size: 1.3rem;
  }

  .lp-cta__actions .lp-btn--primary {
    width: 56%;
    box-shadow: 0 0.2rem 0.5rem rgba(200, 16, 46, 0.22);
  }

  .lp-cta__actions .lp-btn--outline {
    box-shadow: none;
    width: 40%;
  }

  .lp-cta__tel {
    font-size: 3rem;
  }

  .lp-cta__note {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
  .lp-cta__actions .lp-btn--primary {
  }


}

@media print, screen and (min-width: 768px) {
  .lp-cta {
    padding: 4.4rem 0;
  }

  .lp-cta__inner {
  }

  .lp-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 48rem;
  }

  .lp-cta__actions .lp-btn {
    width: auto;
    flex: 0 0 auto;
  }

  .lp-cta__actions .lp-btn--primary {
    width: 27rem;
  }

  .lp-cta__actions .lp-btn--outline {
    width: 18.5rem;
  }

  .lp-cta__tel {
    font-size: 2.6rem;
    margin-top: 2rem;
    margin-bottom: .8rem;
  }

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

}


/* -----------------------------------------------------------------------------

　   WORRY

--------------------------------------------------------------------------------------------- */
.lp-worry__grid {
  display: grid;
}

.lp-worry-card {
  overflow: hidden;
  background-color: var(--color-white);
  border: solid var(--color-border-light);
}

.lp-worry-card__img img {
  width: 100%;
  object-fit: cover;
}

.lp-worry-card__body {
  text-align: center;
}

.lp-worry-card__title {
  font-weight: 700;
  color: var(--color-text);
}

.lp-worry-card__text {
  color: var(--color-text-muted);
}

.lp-worry__closing {
  font-weight: 700;
  text-align: center;
  color: var(--color-red);
}

@media only screen and (max-width: 767px) {
  #worry {
    padding-top: 3rem;
  }

  #worry .lp-heading {
    margin-bottom: 1.2rem;
  }

  .lp-worry__grid {
    gap: 1.2rem;
    margin-top: 1.2rem;
  }

  .lp-worry-card {
    border-width: 0.2rem;
  }

  .lp-worry-card__img img {
    aspect-ratio: 279 / 115;
  }

  .lp-worry-card__body {
    padding: 1.2rem 1rem 1.5rem;
  }

  .lp-worry-card__title {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .lp-worry-card__text {
    margin-top: 0.6rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .lp-worry__closing {
    margin-top: 2rem;
    font-size: 3rem;
    line-height: 1.35;
  }
}

@media print, screen and (min-width: 768px) {
  .lp-worry__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 4.6rem;
    margin-top: 3rem;
  }

  .lp-worry-card {
    border-width: 2px;
  }

  .lp-worry-card__img img {
    aspect-ratio: 279 / 115;
  }

  .lp-worry-card__body {
    padding: 1.6rem 2rem 2rem;
  }

  .lp-worry-card__title {
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .lp-worry-card__text {
    margin-top: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .lp-worry__closing {
    margin-top: 4rem;
    font-size: 3.5rem;
    line-height: 1.5;
  }

}


/* -----------------------------------------------------------------------------

　   SOLUTION

--------------------------------------------------------------------------------------------- */

.lp-solution {
  position: relative;
  overflow: hidden;
}

.lp-solution__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-solution__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

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

.lp-solution__point {
  background-color: var(--color-white);
  border: solid var(--color-navy);
  text-align: center;
  position: relative;
}

.lp-solution__point-label {
  display: inline-block;
  background-color: var(--color-gold);
  font-weight: 700;
  color: var(--color-white);
  position: absolute;
}

.lp-solution__point-text {
  font-weight: 700;
  color: var(--color-navy);
}

.lp-solution__point-text em {
  font-style: normal;
  font-weight: 900;
  color: var(--color-red);
}

.lp-step {
  position: relative;
}

.lp-step::before {
  content: "";
  position: absolute;
  width: 1px;
  border-left: 1px dashed var(--color-navy);
}

.lp-step:last-child::before {
  display: none;
}

.lp-step__num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-blue);
  border: solid var(--color-navy);
  border-radius: 50%;
  font-weight: 900;
  color: var(--color-navy);
}

.lp-step__title {
  font-weight: 700;
  color: var(--color-navy);
}

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

.lp-solution__staff {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.lp-solution__cta .lp-btn {
  flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .lp-solution {
    background: url(../img/bg_arrow_sp.png) no-repeat top left / 100%,url(../img/solution-bg.jpg) no-repeat top center / 200% var(--color-bg-blue);
    padding-top: 20vw;
  }
  /* .lp-solution.lp-section--slant-top {
    margin-top: -1.5rem;
    padding-top: 3rem;
  } */

  .lp-solution__point {
    margin-top: 3.5rem;
    padding: 2.5rem 1rem 2.5rem;
    border-width: 0.2rem;
    border-radius: 0.8rem;
  }

  .lp-solution__point-label {
    top: -1.4rem;
    padding: 0.4rem 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    left: 50%;
    transform: translateX(-50%);
  }

  .lp-solution__point-text {
    font-size: 2.6rem;
    line-height: 1.45;
  }

  .lp-solution__point-text em {
    display: block;
    margin: 0.2rem 0;
    font-size: 3.7rem;
  }

  .lp-solution__steps {
    margin-top: 3rem;
    max-width: 100%;
  }

  .lp-step {
    padding-left: 6rem;
    padding-bottom: 1.5rem;
  }
  .lp-step:last-child {
    width: 70%;
  }

  .lp-step::before {
    left: 2.1rem;
    top: 4.5rem;
    bottom: 0;
  }

  .lp-step__num {
    width: 4.2rem;
    height: 4.2rem;
    border-width: 0.2rem;
    font-size: 1.5rem;
  }

  .lp-step__title {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .lp-step__text {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .lp-solution__visual {
    /* margin-top: 1rem;
    text-align: right; */
    position: absolute;
    bottom: -11.5rem;
    right: -4rem;
  }

  .lp-solution__staff {
    width: 20rem;
  }

  .lp-solution__cta {
    margin-top: 1.2rem;
  }

  .lp-solution__cta .lp-btn {
    width: 100%;
    max-width: 100%;
    min-height: 7rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
  }

  .lp-solution__cta .lp-btn__sub {
    font-size: 1.1rem;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-solution {
    background: url(../img/bg_arrow.png) no-repeat top left / 100%,url(../img/solution-bg.jpg) no-repeat center center / cover var(--color-bg-blue);
    padding-top: 10vw;
  }
  .lp-solution__point {
    padding: 2rem 1rem;
    border-width: 2px;
    border-radius: 0.8rem;
    max-width: 70rem;
    margin: 4rem auto 6rem;
  }

  .lp-solution__point-label {
    top: -1.2rem;
    padding: 0.4rem 1.2rem;
    border-radius: 0.2rem;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    left: 3rem;
  }

  .lp-solution__point-text {
    font-size: 2rem;
    line-height: 1.5;
  }
  .lp-solution__point-text em {
    font-size: 2.5rem;
  }

  .lp-solution__layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem 10rem;
    align-items: start;
  }

  .lp-solution__steps {
    margin-top: 3rem;
    max-width: 69rem;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-step {
    padding-left: 6.6rem;
    padding-bottom: 2.4rem;
  }

  .lp-step::before {
    left: 2rem;
    top: 4.8rem;
    bottom: 0;
  }

  .lp-step__num {
    width: 4.2rem;
    height: 4.2rem;
    border-width: 2px;
    font-size: 1.5rem;
  }

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

  .lp-step__text {
    margin-top: 0.6rem;
    font-size: 1.4rem;
    line-height: 1.7;
    max-width: 52rem;
  }

  .lp-solution__visual {
    /* margin-top: 0;
    text-align: center;
    grid-row: 1 / 3;
    grid-column: 2; */
    position: absolute;
    bottom: -12rem;
    right: -2rem;
  }

  .lp-solution__staff {
    max-width: 24.3rem;
  }

  .lp-solution__cta {
    margin-top: 2.4rem;
    grid-column: 1 / -1;
    margin-right: 10rem;
  }

  .lp-solution__cta .lp-btn {
    min-height: 9.2rem;
    padding: 1.6rem 2rem;
    width: 45rem;
    font-size: 2.5rem;
  }

}


/* -----------------------------------------------------------------------------

　   CAUSE

--------------------------------------------------------------------------------------------- */
.lp-cause__grid {
  display: grid;
}

.lp-cause-card {
  display: grid;
  align-items: center;
  background-color: var(--color-white);
  border: solid var(--color-border);
}

.lp-cause-card--accent {
  border-color: var(--color-red);
}

.lp-cause-card__icon {
  border-radius: 50%;
  overflow: hidden;
}

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

.lp-cause-card__title {
  font-weight: 700;
  color: var(--color-navy);
}

.lp-cause-card__text {
  color: var(--color-text-sub);
}

.lp-cause__warn-title {
  font-weight: 700;
  text-align: center;
  color: var(--color-red);
}

.lp-cause__warn-text {
  font-weight: 700;
  text-align: center;
  color: var(--color-navy);
}

@media only screen and (max-width: 767px) {
  .lp-cause__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 3rem;
  }

  .lp-cause-card {
    grid-template-columns: 11rem 1fr;
    gap: 1.2rem;
    align-items: center;
    min-height: 0;
    padding: 1.2rem 1.6rem 1.2rem 1.2rem;
    border-width: 1px;
    border-radius: 0.6rem;
    text-align: left;
  }

  .lp-cause-card > div {
    min-width: 0;
  }

  .lp-cause-card__icon {
    flex-shrink: 0;
    width: 11rem;
    height: 11rem;
    margin: 0;
  }

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

  .lp-cause-card__title {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .lp-cause-card__text {
    margin-top: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .lp-cause__warn-title {
    margin-top: 1.6rem;
    font-size: 1.7rem;
  }

  .lp-cause__warn-text {
    margin-top: 0.5rem;
    font-size: 2.1rem;
    line-height: 1.35;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-cause__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 4.6rem;
    margin-top: 6rem;
  }

  .lp-cause-card {
    grid-template-columns: 13.9rem 1fr;
    gap: 1.6rem;
    padding: 1.4rem 1.6rem;
    border-width: 1px;
    border-radius: 0.8rem;
  }

  .lp-cause-card__icon {
    width: 13.9rem;
  }

  .lp-cause-card__title {
    font-size: 1.9rem;
  }

  .lp-cause-card__text {
    margin-top: 0.6rem;
    font-size: 1.3rem;
    line-height: 1.65;
  }

  .lp-cause__warn-title {
    margin-top: 4rem;
    font-size: 2.8rem;
  }

  .lp-cause__warn-text {
    font-size: 3.5rem;
    line-height: 1.5;
  }

}


/* -----------------------------------------------------------------------------

　   BROLOCK

--------------------------------------------------------------------------------------------- */
#brolock {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
}
.lp-brolock__intro {
  display: grid;
}

.lp-brolock__title {
  font-weight: 900;
  color: var(--color-white);
}

.lp-brolock__title span {
  display: block;
}

.lp-brolock__lead {
  color: var(--color-white);
}

.lp-brolock__product {
  margin-left: auto;
  margin-right: auto;
}

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

.lp-brolock__features {
  display: grid;
}

.lp-feature-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.lp-feature-card__num {
  position: absolute;
  font-weight: 900;
  line-height: 1;
  color: var(--color-navy);
  opacity: 0.05;
}

.lp-feature-card__title {
  font-weight: 700;
  color: var(--color-navy);
}

.lp-feature-card__text {
  color: var(--color-text-sub);
}

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

@media only screen and (max-width: 767px) {
  #brolock {
    background-image: url(../img/bg_arrow_sp.png);
    padding-top: 20vw;
  }
  .lp-brolock__intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .lp-brolock__title {
    font-size: 3.2rem;
    line-height: 1.2;
  }

  .lp-brolock__title span {
    font-size: 4.7rem;
    line-height: 1.1;
  }

  .lp-brolock__lead {
    font-size: 1.3rem;
    line-height: 1.45;
    margin-top: 1rem;
  }

  .lp-brolock__product {
    width: 25.5rem;
    margin-right: 0;
    margin-top: -9rem;
  }

  .lp-brolock__features {
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .lp-feature-card {
    padding: 2rem;
    border-radius: 0.6rem;
  }

  .lp-feature-card__num {
    top: 0.5rem;
    right: 0.8rem;
    font-size: 2.8rem;
  }

  .lp-feature-card__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .lp-feature-card__text {
    margin-top: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.45;
  }

  .lp-brolock__more {
    margin-top: 3rem;
  }

  .lp-brolock__more .lp-btn {
    width: 100%;
    width: 22rem;
    min-height: 4rem;
    font-size: 1.2rem;
  }

}

@media print, screen and (min-width: 768px) {
  #brolock {
    background-image: url(../img/bg_arrow.png);
    padding-top: 10vw;
  }
  .lp-brolock__intro {
    grid-template-columns: 1fr auto;
    gap: 2.4rem;
    margin-top: 2.4rem;
    align-items: center;
  }

  .lp-brolock__title {
    font-size: 4.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .lp-brolock__title span {
    font-size: 7rem;
    line-height: 1.1;
  }

  .lp-brolock__lead {
    font-size: 2rem;
    line-height: 1.6;
  }

  .lp-brolock__product {
    width: 34.3rem;
  }

  .lp-brolock__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    margin-top: 3rem;
  }

  .lp-feature-card {
    padding: 2rem 2.4rem 2.4rem;
    border-radius: 0.8rem;
  }

  .lp-feature-card__num {
    top: 1rem;
    right: 1.6rem;
    font-size: 3.6rem;
  }

  .lp-feature-card__title {
    font-size: 2.5rem;
  }

  .lp-feature-card__text {
    margin-top: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .lp-brolock__more {
    margin-top: 3rem;
  }

}


/* -----------------------------------------------------------------------------

　   PLAN

--------------------------------------------------------------------------------------------- */
.lp-plan__table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.lp-plan-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
}

.lp-plan-table th,
.lp-plan-table td {
  border: 1px solid var(--color-border-light);
  text-align: center;
  vertical-align: middle;
  color: var(--color-text);
}

.lp-plan-table thead th {
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-white);
  background-color: var(--color-navy);
}

.lp-plan-table thead th:first-child {
  background-color: var(--color-navy);
}

.lp-plan-table thead th.is-recommend {
  position: relative;
  background-color: var(--color-red);
  border-color: var(--color-red);
}

.lp-plan-table thead th.is-recommend::before {
  content: "おすすめ！";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  padding: 0.4rem 1.2rem;
  border-radius: 0.2rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.lp-plan-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--color-navy);
  background-color: var(--color-white);
}

.lp-plan-table tbody tr:nth-child(even) th {
  background-color: var(--color-bg-blue);
}

.lp-plan-table tbody tr:nth-child(even) td {
  background-color: var(--color-bg-blue);
}

.lp-plan-table tbody tr:nth-child(odd) td {
  background-color: var(--color-white);
}

.lp-plan-table thead th.is-recommend,
.lp-plan-table tbody td.is-highlight {
  border-left: 2px solid var(--color-red);
  border-right: 2px solid var(--color-red);
}

.lp-plan-table thead th.is-recommend {
  border-top: 2px solid var(--color-red);
}

.lp-plan-table tbody tr:last-child td.is-highlight {
  border-bottom: 2px solid var(--color-red);
}

.lp-plan-table tbody td.is-highlight {
  font-weight: 700;
  color: var(--color-text);
}

.lp-plan-table tbody tr:nth-child(even) td.is-highlight {
  background-color: var(--color-bg-blue);
}

.lp-plan-table tbody tr:nth-child(odd) td.is-highlight {
  background-color: var(--color-white);
}

.lp-plan-table .lp-plan-table__note {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.lp-plan__zero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
}

.lp-plan__zero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
}

.lp-plan__zero-price > p {
  margin: 0;
}

.lp-plan__zero-price > p:last-child {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  line-height: 1;
}

.lp-plan__zero-label {
  color: var(--color-text-muted);
  line-height: 1.4;
  position: relative;
}

.lp-plan__zero-num {
  font-weight: 900;
  line-height: .6;
  color: var(--color-red);
}

.lp-plan__zero-unit {
  font-weight: 700;
  color: var(--color-navy);
}

.lp-plan__zero-list {
  margin: 0;
  padding: 0;
  color: var(--color-navy);
  list-style: none;
}

.lp-plan__zero-list li {
  position: relative;
}

.lp-plan__zero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  background-color: rgba(200, 16, 46, 0.22);
  border-radius: 50%;
}

.lp-plan__zero-list strong {
  font-weight: 700;
  color: var(--color-navy);
}


@media only screen and (max-width: 767px) {
  .lp-plan__table-wrap {
    margin-top: 3rem;
    margin-left: -3rem;
    margin-right: -3rem;
    padding: 1.2rem 3rem 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .lp-plan-table {
    width: max-content;
    width: 100%;
    min-width: 40rem;
    overflow: visible;
  }

  .lp-plan-table thead th.is-recommend::before {
    transform: translateX(-50%);
    top: -1.2rem;
  }

  .lp-plan-table th,
  .lp-plan-table td {
    padding: 0.7rem 0.6rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .lp-plan-table thead th,
  .lp-plan-table tbody th {
    white-space: nowrap;
  }

  .lp-plan-table tbody td {
    white-space: normal;
  }

  .lp-plan-table thead th:not(:first-child),
  .lp-plan-table tbody td {
    min-width: 8.4rem;
  }

  .lp-plan-table thead th.is-recommend {
    padding-top: 1.4rem;
    min-width: 9.6rem;
  }

  .lp-plan-table thead th.is-recommend::before {
    padding: 0.25rem 0.6rem;
    font-size: 1rem;
  }

  .lp-plan-table .lp-plan-table__note {
    white-space: normal;
    display: block;
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .lp-plan-table tbody td.is-highlight .lp-plan-table__note {
    white-space: normal;
  }

  .lp-plan__zero {
    margin-top: 3rem;
    border-radius: 1rem;
    border-width: 1px;
  }

  .lp-plan__zero-price {
    border-right: none;
    border-bottom: 1.5rem solid var(--color-border-light);
    padding: 1.5rem 0;
    margin: 0;
    flex-direction: row;
  }

  .lp-plan__zero-list {
    padding: 1.5rem 2rem;
  }

  .lp-plan__zero-label {
    font-size: 1.9rem;
    font-weight: 700;
  }

  .lp-plan__zero-num {
    font-size: 19rem;
    line-height: .7;
  }

  .lp-plan__zero-unit {
    font-size: 3.8rem;
    margin-left: -.3em;
  }

  .lp-plan__zero-list {
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: left;
  }

  .lp-plan__zero-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .lp-plan__zero-list li::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.9rem;
    height: 0.9rem;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-plan__table-wrap {
    margin-top: 3rem;
    padding-top: 1.6rem;
  }

  .lp-plan-table {
    width: 100%;
    min-width: 0;
    border-radius: 0.4rem;
    overflow: visible;
  }

  .lp-plan-table thead th:first-child {
    width: 18%;
    border-top-left-radius: 0.4rem;
  }

  .lp-plan-table thead th.is-recommend {
    width: 28%;
    padding-top: 2.8rem;
    padding-bottom: 1.4rem;
    border-top-right-radius: 0.4rem;
  }

  .lp-plan-table thead th.is-recommend::before {
    top: 0;
    padding: 0.5rem 1.4rem;
    font-size: 1.1rem;
  }

  .lp-plan-table th,
  .lp-plan-table td {
    padding: 1.4rem 1.2rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .lp-plan-table tbody th {
    padding-left: 2rem;
    padding-right: 1.6rem;
    font-size: 1.4rem;
  }

  .lp-plan-table tbody tr:last-child th {
    border-bottom-left-radius: 0.4rem;
  }

  .lp-plan-table tbody tr:last-child td.is-highlight {
    border-bottom-right-radius: 0.4rem;
  }

  .lp-plan-table thead th.is-recommend,
  .lp-plan-table tbody td.is-highlight {
    border-left-width: 3px;
    border-right-width: 3px;
  }

  .lp-plan-table thead th.is-recommend {
    border-top-width: 3px;
  }

  .lp-plan-table tbody tr:last-child td.is-highlight {
    border-bottom-width: 3px;
  }

  .lp-plan-table tbody tr:nth-child(3) td,
  .lp-plan-table tbody tr:nth-child(4) td:not(.is-highlight) {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .lp-plan-table tbody tr:nth-child(4) td:nth-child(2),
  .lp-plan-table tbody tr:nth-child(4) td:nth-child(3) {
    color: var(--color-text-muted);
  }

  .lp-plan__zero {
    flex-direction: row;
    margin-top: 3rem;
    padding: 0 4rem;
    border-radius: 0.8rem;
    align-items: stretch;
  }

  .lp-plan__zero-price {
    flex: 1;
    flex-direction: row;
    align-items: baseline;
    align-self: stretch;
    justify-content: center;
    gap: 2rem;
    text-align: left;
    border-right: 3rem solid var(--color-border-light);
    border-bottom: none;
    padding: 3.2rem 3rem 3.2rem 0;
    margin: 0;
    box-sizing: border-box;
  }

  .lp-plan__zero-list {
    flex: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.2rem 0 3.2rem 3rem;
    box-sizing: border-box;
    font-size: 1.4rem;
    line-height: 1.75;
    text-align: left;
  }

  .lp-plan__zero-label {
    font-size: 1.5rem;
    white-space: nowrap;
    top: -5rem;
  }

  .lp-plan__zero-num {
    font-size: 15rem;
  }

  .lp-plan__zero-unit {
    font-size: 3rem;
    line-height: 1;
  }

  .lp-plan__zero-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .lp-plan__zero-list li:last-child {
    margin-bottom: 0;
  }

  .lp-plan__zero-list li::before {
    width: 1rem;
    height: 1rem;
  }

}


/* -----------------------------------------------------------------------------

　   REASON

--------------------------------------------------------------------------------------------- */
.lp-reason-list {
  display: flex;
  flex-direction: column;
}

.lp-reason-item {
  display: grid;
  align-items: center;
}

.lp-reason-item__img img {
  width: 100%;
  object-fit: cover;
}

.lp-reason-item__head {
  position: relative;
}

.lp-reason-item__num {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.lp-reason-item__num::after {
  content: "";
  position: absolute;
  background-color: var(--color-navy);
  transform: rotate(-45deg);
  transform-origin: left center;
}

.lp-reason-item__title {
  font-weight: 700;
  color: var(--color-navy);
}

.lp-reason-item__text {
  color: var(--color-text-sub);
}

.lp-reason-item__text strong {
  font-weight: 700;
  color: var(--color-text);
}

@media only screen and (max-width: 767px) {
  #reason .lp-heading__title em {
    font-size: 3.2rem;
  }
  .lp-reason-list {
    gap: 3rem;
    margin-top: 3rem;
  }

  .lp-reason-item,
  .lp-reason-item--reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.5rem;
  }

  .lp-reason-item__img {
    /* margin-bottom: 1rem; */
  }

  .lp-reason-item__img img {
    /* height: 18rem; */
    aspect-ratio: 16 / 9;
  }

  .lp-reason-item__head {
    padding-left: 7rem;
    min-height: 4rem;
  }

  .lp-reason-item__num {
    font-size: 2.95rem;
  }

  .lp-reason-item__num::after {
    width: 7rem;
    top: 5.5rem;
    height: .15rem;
    left: 2rem;
  }

  .lp-reason-item__title {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-top: 1.2rem;
  }

  .lp-reason-item__text {
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.75;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-reason-list {
    gap: 4.5rem;
    margin-top: 5.5rem;
  }

  .lp-reason-item {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .lp-reason-item--reverse .lp-reason-item__img {
    order: 2;
  }

  .lp-reason-item--reverse .lp-reason-item__body {
    order: 1;
  }

  .lp-reason-item__img img {
    aspect-ratio: 430 / 245;
  }

  .lp-reason-item__head {
    padding-left: 9rem;
    min-height: 8.5rem;
  }

  .lp-reason-item__num {
    font-size: 4rem;
  }

  .lp-reason-item__num::after {
    left: 1rem;
    top: 8rem;
    width: 10rem;
    height: .2rem;
  }

  .lp-reason-item__title {
    font-size: 1.8rem;
    line-height: 1.6;
    padding-top: 3rem;
  }

  .lp-reason-item__text {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.85;
  }

}


/* -----------------------------------------------------------------------------

　   SERVICE

--------------------------------------------------------------------------------------------- */
.lp-service__grid {
  display: grid;
}

.lp-service-card {
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}

.lp-service-card__icon {
  margin-left: auto;
  margin-right: auto;
}

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

.lp-service-card__title {
  font-weight: 700;
  color: var(--color-navy);
}

.lp-service-card__text {
  color: var(--color-text-sub);
}

@media only screen and (max-width: 767px) {
  .lp-service__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 20rem;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-service-card {
    padding: 1.5rem 1rem;
    border-radius: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 18rem;
    width: 100%;
  }

  .lp-service-card__icon {
    width: 4.5rem;
    margin-bottom: 1.2rem;
  }

  .lp-service-card__title {
    font-size: 1.5rem;
  }

  .lp-service-card__text {
    margin-top: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-service__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.8rem;
    margin-top: 6rem;
  }

  .lp-service-card {
    padding: 2.4rem 2rem 2rem;
    border-radius: 0.8rem;
  }

  .lp-service-card__icon {
    width: 6rem;
    margin-bottom: 1.2rem;
  }

  .lp-service-card__title {
    font-size: 2rem;
  }

  .lp-service-card__text {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.6;
  }

}


/* -----------------------------------------------------------------------------

　   CASE

--------------------------------------------------------------------------------------------- */
.lp-case-list {
  display: flex;
  flex-direction: column;
}

.lp-case-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
}

.lp-case-card__body {
  min-width: 0;
}

.lp-case-card__detail {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}

.lp-case-card__img img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.lp-case-card__title {
  font-weight: 700;
  color: var(--color-navy);
}

.lp-case-card__text {
  color: var(--color-text-sub);
}

.lp-case-card__tags {
  display: flex;
  flex-wrap: wrap;
}

.lp-case-card__tag {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: 0.4rem;
}

@media only screen and (max-width: 767px) {
  #case .lp-heading {
    margin-bottom: 2rem;
  }
  .lp #case .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lp-case-list {
    gap: 2rem;
    margin-top: 0;
  }

  .lp-case-card {
    display: grid;
    grid-template-columns: 14.8rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.2rem;
    row-gap: 1.5rem;
    padding: 2rem;
    border-radius: 0.8rem;
    align-items: start;
  }

  .lp-case-card__body {
    display: contents;
  }

  .lp-case-card__title {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .lp-case-card__img {
    grid-row: 2;
    grid-column: 1;
    align-self: start;
  }

  .lp-case-card__img img {
    aspect-ratio: 16 / 12;
    border-radius: 0.4rem;
    border: 1px solid var(--color-border-light);
  }

  .lp-case-card__detail {
    grid-row: 2;
    grid-column: 2;
    align-self: start;
    gap: 0.4rem;
  }

  .lp-case-card__text {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  .lp-case-card__tags {
    gap: 0.4rem;
    margin-top: 0;
  }

  .lp-case-card__tag {
    padding: 0.4rem;
    font-size: 0.8rem;
    line-height: 1.3;
    border-radius: 0.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp-case-list {
    gap: 2rem;
    margin-top: 4rem;
  }

  .lp-case-card {
    display: grid;
    grid-template-columns: 14.8rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 2rem;
    row-gap: 0.8rem;
    padding: 3rem;
    border-radius: 0.8rem;
    align-items: start;
  }

  .lp-case-card__body {
    display: contents;
  }

  .lp-case-card__title {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .lp-case-card__img {
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: start;
  }

  .lp-case-card__img img {
    aspect-ratio: 148 / 140;
    border-radius: 0.4rem;
    border: 1px solid var(--color-border-light);
  }

  .lp-case-card__detail {
    grid-row: 2;
    grid-column: 2;
    align-self: start;
  }

  .lp-case-card__text {
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.75;
  }

  .lp-case-card__tags {
    gap: 0.8rem;
    margin-top: 0;
  }

  .lp-case-card__tag {
    padding: 0.4rem 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
    border-radius: 0.2rem;
  }

}


/* -----------------------------------------------------------------------------

　   FLOW

--------------------------------------------------------------------------------------------- */
.lp-flow__steps {
  display: grid;
}

.lp-flow-step {
  text-align: center;
}

.lp-flow-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-white);
  border: solid var(--color-navy);
  border-radius: 50%;
  font-weight: 700;
  color: var(--color-navy);
}

.lp-flow-step__title {
  font-weight: 700;
  color: var(--color-navy);
}

.lp-flow-step__text {
  color: var(--color-text-sub);
}

@media only screen and (max-width: 767px) {
  .lp-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
    margin-top: 3rem;
  }

  .lp-flow-step {
    position: relative;
    padding: 0 0.25rem;
  }

  .lp-flow-step__num {
    width: 4rem;
    height: 4rem;
    border-width: 0.15rem;
    font-size: 1.4rem;
  }

  .lp-flow-step__title {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }

  .lp-flow-step__text {
    margin-top: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .lp-flow-step:nth-child(1)::after,
  .lp-flow-step:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 1.75rem;
    right: -0.9rem;
    width: 0;
    height: 0;
    border-top: 0.6rem solid transparent;
    border-bottom: 0.6rem solid transparent;
    border-left: 0.8rem solid var(--color-navy);
    opacity: 0.35;
  }

  .lp-flow-step:nth-child(2)::after,
  .lp-flow-step:nth-child(4)::after {
    display: none;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-flow__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 6rem;
  }

  .lp-flow-step {
    position: relative;
  }

  .lp-flow-step__num {
    width: 4.8rem;
    height: 4.8rem;
    border-width: .2rem;
    font-size: 1.6rem;
  }

  .lp-flow-step__title {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }

  .lp-flow-step__text {
    font-size: 1.2rem;
    line-height: 1.65;
    max-width: 18rem;
    margin: 0.8rem auto 0;
  }

  .lp-flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.4rem;
    right: -1.2rem;
    width: 0;
    height: 0;
    border-top: 1.2rem solid transparent;
    border-bottom: 1.2rem solid transparent;
    border-left: 1.2rem solid var(--color-navy);
    opacity: 0.3;
  }

}


/* -----------------------------------------------------------------------------

　   THANKS

--------------------------------------------------------------------------------------------- */
body.lp.lp--thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.lp.lp--thanks #main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.lp.lp--thanks #main > .lp-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.lp-thanks__tel {
  margin-top: 2.4rem;
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}

.lp-thanks__tel a {
  color: var(--color-navy);
}

.lp-thanks__note {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
}

.lp-thanks__back {
  margin-top: 3.2rem;
  text-align: center;
}

.lp-thanks__back .lp-btn {
  min-width: 24rem;
}

@media print, screen and (min-width: 768px) {
  .lp-thanks__tel {
    margin-top: 3.2rem;
    font-size: 2.6rem;
  }

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


/* -----------------------------------------------------------------------------

　   CONTACT

--------------------------------------------------------------------------------------------- */
.lp-contact__tel-box {
  display: grid;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
}

.lp-contact__phone,
.lp-contact__mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lp-contact__tel-label,
.lp-contact__tel-time {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.lp-contact__tel-num {
  margin: 0;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.4;
}

.lp-contact__tel-num a {
  color: inherit;
}

.lp-contact__form {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}

.lp-form-row--half {
  display: grid;
}

.lp-form-label {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--color-navy);
}

.lp-form-label__badge {
  font-weight: 700;
  color: var(--color-red);
  background-color: #fff3f3;
}

.lp-form-input,
.lp-form-textarea {
  width: 100%;
  font-family: inherit;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}

.lp-form-textarea {
  resize: vertical;
}

.lp-form-submit {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lp-contact__tel-box {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 3rem;
    /* padding: 2rem 0; */
    border-radius: 0.8rem;
    align-items: stretch;
  }

  .lp-contact__phone,
  .lp-contact__mail {
    /* gap: 0.6rem; */
    padding: 1rem;
  }

  .lp-contact__phone {
    border-right: .7rem solid var(--color-border-light);
  }

  /* .lp-contact__phone + .lp-contact__mail {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  } */

  .lp-contact__tel-label {
    font-size: 1rem;
  }

  .lp-contact__tel-num {
    font-size: 1.8rem;
    letter-spacing: 0;
  }

  .lp-contact__mail .lp-contact__tel-num {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .lp-contact__tel-time {
    font-size: 1rem;
  }

  .lp-contact__form {
    margin-top: 1.2rem;
    padding: 2rem;
    border-radius: 0.5rem;
  }

  .lp-form-row {
    margin-bottom: 1rem;
  }

  .lp-form-row--half {
    gap: 1rem;
  }

  .lp-form-label {
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
  }

  .lp-form-label__badge {
    padding: 0.1rem 0.3rem;
    font-size: 1rem;
    border-radius: 0.1rem;
  }

  .lp-form-input,
  .lp-form-textarea {
    padding: 0.5rem 0.6rem;
    font-size: 1.2rem;
    border-radius: 0.2rem;
  }

  .lp-form-textarea {
    min-height: 10rem;
  }

  .lp-form-submit {
    margin-top: 2rem;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-contact__tel-box {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 4rem;
    padding: 3.2rem 0;
    border-radius: 0.8rem;
    align-items: stretch;
  }

  .lp-contact__phone,
  .lp-contact__mail {
    gap: 0.8rem;
    padding: 0 2.4rem;
  }

  .lp-contact__phone {
    border-right: 1px solid var(--color-border-light);
  }

  .lp-contact__tel-label {
    font-size: 1.2rem;
  }

  .lp-contact__tel-num {
    font-size: 2.6rem;
    letter-spacing: 0.02em;
  }

  .lp-contact__mail .lp-contact__tel-num {
    font-size: 2.2rem;
    line-height: 1.45;
    max-width: none;
  }

  .lp-contact__tel-time {
    font-size: 1.2rem;
  }

  .lp-contact__form {
    margin-top: 3.6rem;
    padding: 4rem;
    border-radius: 1rem;
  }

  .lp-form-row {
    margin-bottom: 2rem;
  }

  .lp-form-row--half {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .lp-form-label {
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
  }

  .lp-form-label__badge {
    padding: 0.2rem 0.6rem;
    font-size: 1rem;
    border-radius: 0.2rem;
  }

  .lp-form-input,
  .lp-form-textarea {
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
    border-radius: 0.4rem;
  }

  .lp-form-textarea {
    min-height: 12rem;
  }

  .lp-form-submit {
    margin-top: 2.4rem;
  }

}


/* -----------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
.lp-footer {
  background-color: var(--color-navy-dark);
  text-align: center;
}

.lp-footer__copy {
  color: rgba(255, 255, 255, 0.45);
}

@media only screen and (max-width: 767px) {
  .lp-footer {
    padding: 1.4rem 0;
  }

  .lp-footer__copy {
    font-size: 1rem;
  }

}

@media print, screen and (min-width: 768px) {
  .lp-footer {
    padding: 2.8rem 0;
  }

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

}

