:root {
  --LP_FONT_FAMILY_PRIMARY: heisei-mincho-std, serif;
  --LP_COLOR_WHITE: #fff;
  --LP_COLOR_BLACK: #000;
  --LP_COLOR_LIGHTBLACK: #333;
  --LP_COLOR_RED: #f50439;
  --LP_COLOR_GRAY: #131313;
  --LP_COLOR_LIGHTGRAY: #969a9b;
  --LP_FONT_WEIGHT_BOLD: 700;
  --LP_FONT_WEIGHT_MEDIUM: 500;
  --LP_FONT_WEIGHT_REGULAR: 400;
  --LP_LINE_HEIGHT_PRIMARY: 1.8;
  --LP_LINE_HEIGHT_SECONDARY: 1.35;
  --LP_LINE_HEIGHT_TERTIARY: 1.45;
  --LP_LINE_HEIGHT_QUATERNARY: 1.4;
  --LP_LINE_HEIGHT_QUINARY: 1.5;
  --LP_LINE_HEIGHT_SENARY: 1;
  --LP_FOOTER_COLOR: #a8a8a8;
}

:root {
  font-size: 62.5%;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 360px;
  background: #fff;
  color: #333;
  font-family: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.3;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}

main {
  display: block;
}

p {
  margin-bottom: 16px;
}

ul,
ol {
  list-style: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: underline;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

em {
  font-style: normal;
  font-weight: bold;
}

dfn,
cite {
  font-style: normal;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 100%;
}

i {
  font-style: italic;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
}

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

button,
input,
optgroup,
select,
textarea {
  border-radius: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  border: 0;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: none;
}

legend {
  display: table;
  max-width: 100%;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

video {
  display: block;
  max-width: 100%;
}

.lp-layout-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}
@media screen and (max-width: 969px) {
  .lp-layout-container {
    min-height: auto;
  }
}

.lp-layout-footer {
  background-color: var(--LP_COLOR_BLACK);
  color: var(--LP_COLOR_LIGHTGRAY);
}
.lp-layout-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1920px;
  margin-inline: auto;
  padding: 1.6rem 4rem;
  gap: 1.2rem 3.3rem;
}
.lp-layout-footer-content > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 969px) {
  .lp-layout-footer-content {
    padding: 1.3rem 2rem 1.9rem;
    gap: 1.5rem 3.3rem;
  }
}
.lp-layout-footer-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.4rem;
  gap: 1rem 3.3rem;
}
.lp-layout-footer-list > *:last-child {
  margin-bottom: 0 !important;
}
.lp-layout-footer-list li {
  position: relative;
}
.lp-layout-footer-list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -1.7rem;
  width: 0.1rem;
  height: 100%;
  transform: translateY(-50%);
  background-color: var(--LP_FOOTER_COLOR);
}
@media screen and (max-width: 969px) {
  .lp-layout-footer-list li:last-child::before {
    content: none;
  }
}
.lp-layout-footer-list a {
  color: var(--LP_COLOR_LIGHTGRAY);
  text-decoration: none;
}
.lp-layout-footer-copyright {
  font-size: 1.4rem;
}
@media screen and (max-width: 969px) {
  .lp-layout-footer-copyright {
    width: 100%;
    line-height: var(--LP_LINE_HEIGHT_QUATERNARY);
    text-align: center;
  }
}

.lp-layout-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin-inline: auto;
  padding: 1rem min(4rem + (1vw - 0.97rem) * (18.9473684211), 22rem) 0.6rem;
  gap: 2.4rem;
}
.lp-layout-header-content > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 969px) {
  .lp-layout-header-content {
    justify-content: center;
    padding: 1.6rem 8rem 1.5rem;
  }
}
.lp-layout-header-logo {
  margin-bottom: 0.3rem;
}
.lp-layout-header-logo > a {
  display: block;
  line-height: var(--LP_LINE_HEIGHT_SENARY);
}
.lp-layout-header-logo img {
  min-width: 11.4rem;
}
@media screen and (max-width: 969px) {
  .lp-layout-header-logo img {
    min-width: 9.2rem;
  }
}
.lp-layout-header-utilityGroup > *:last-child {
  margin-bottom: 0 !important;
}
.lp-layout-header-utilityGroup li > *:last-child {
  margin-bottom: 0 !important;
}

.lp-layout-main {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  background-color: var(--LP_COLOR_BLACK);
}
.lp-layout-main > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 969px) {
  .lp-layout-main {
    display: block;
  }
}

.lp-jumbotron {
  margin-inline: auto;
}
.lp-jumbotron-content {
  display: flex;
  align-items: flex-start;
  max-width: 157.9rem;
  padding: 4rem;
  gap: min(3.2rem + (1vw - 1.365rem) * (3.1531531532), 4.95rem);
}
@media screen and (max-width: 1365px) {
  .lp-jumbotron-content {
    align-items: center;
  }
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-content {
    flex-direction: column;
    padding: 3.2rem 2rem 4.6rem;
    gap: 3.2rem;
  }
}
.lp-jumbotron-body {
  display: grid;
  grid-column-gap: min(2rem + (1vw - 0.969rem) * (4.8895899054), 6.65rem);
  grid-template-columns: minmax(auto, 16.8rem) minmax(0, 48rem);
  flex: 1;
  padding-top: 2.3rem;
  padding-left: min(0rem + (1vw - 0.969rem) * (1.5772870662), 1.5rem);
  text-align: center;
}
.lp-jumbotron-body > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1365px) {
  .lp-jumbotron-body {
    grid-template-columns: clamp(10.4rem, 12.3vw, 16.8rem) minmax(0, 48rem);
    padding-top: 0;
  }
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-body {
    grid-column-gap: 0;
    grid-template-columns: 1fr;
    padding-left: 0;
    place-items: center;
  }
}
.lp-jumbotron-image {
  max-width: min(43.5rem + (1vw - 0.969rem) * (29.9684542587), 72rem);
}
.lp-jumbotron-image > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-image {
    width: 100%;
    max-width: 48rem;
  }
}
.lp-jumbotron-title {
  position: relative;
  grid-column: 2/3;
  grid-row: 1;
  align-self: end;
  margin-bottom: 2.6rem;
  padding-top: 0.2rem;
  font-family: var(--LP_FONT_FAMILY_PRIMARY);
  font-size: min(2.8rem + (1vw - 0.36rem) * (0.2564102564), 5.6rem);
  font-weight: var(--LP_FONT_WEIGHT_BOLD);
  letter-spacing: -0.032rem;
  line-height: var(--LP_LINE_HEIGHT_PRIMARY);
  place-content: end;
}
@media screen and (max-width: 1365px) {
  .lp-jumbotron-title {
    margin-bottom: min(3rem + (1vw - 0.969rem) * (1.5151515152), 3.6rem);
    padding-top: 2.2rem;
  }
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-title {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: max(2.8rem + (1vw - 0.36rem) * (0.328407225), 2.8rem);
    padding-top: 0;
    line-height: var(--LP_LINE_HEIGHT_QUATERNARY);
  }
}
@media screen and (max-width: 360px) {
  .lp-jumbotron-title {
    font-size: 2.8rem;
  }
}
.lp-jumbotron-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1rem;
  width: 100%;
  max-width: 48rem;
  height: 0.1rem;
  background-color: var(--LP_COLOR_WHITE);
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-title::after {
    left: 50%;
    width: calc(100vw - 4rem);
    transform: translateX(-50%);
  }
}
.lp-jumbotron-title > .of-shadow {
  text-shadow: 1px 2px 3px rgba(255, 255, 255, 0.4);
}
.lp-jumbotron-titleGroup {
  display: grid;
  grid-column: 1/3;
  grid-column-gap: min(2rem + (1vw - 0.969rem) * (4.8895899054), 6.65rem);
  grid-template-columns: minmax(auto, 16.8rem) minmax(0, 48rem);
  margin-bottom: 2.2rem;
  color: var(--LP_COLOR_WHITE);
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
}
.lp-jumbotron-titleGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1365px) {
  .lp-jumbotron-titleGroup {
    grid-template-columns: clamp(10.4rem, 12.3vw, 16.8rem) minmax(0, 48rem);
    margin-bottom: min(2.6rem + (1vw - 0.969rem) * (-1.0101010101), 2.6rem);
  }
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-titleGroup {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-bottom: 2.4rem;
  }
}
@media not screen and (max-width: 969px) {
  .lp-jumbotron-titleGroup > .lp-jumbotron-subtitle {
    margin-bottom: 0 !important;
  }
}
.lp-jumbotron-subtitle {
  display: inline-block;
  grid-column: 1;
  grid-row: 1/3;
  max-width: 16.8rem;
  margin-bottom: 2.4rem;
  color: var(--LP_COLOR_RED);
  font-family: var(--LP_FONT_FAMILY_PRIMARY);
  font-size: min(6.4rem + (1vw - 0.36rem) * (6.6666666667), 16.8rem);
  font-weight: var(--LP_FONT_WEIGHT_BOLD);
  letter-spacing: 3.2rem;
  line-height: var(--LP_LINE_HEIGHT_SENARY);
  text-align: center;
  text-shadow: 2px 3px 6px rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-subtitle {
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
    margin-bottom: 1.1rem;
    letter-spacing: normal;
  }
}
.lp-jumbotron-series {
  display: inline-block;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-bottom: 4rem;
  padding-block: 3.2rem;
  font-size: min(1.6rem + (1vw - 0.36rem) * (0.2564102564), 2rem);
  font-weight: var(--LP_FONT_WEIGHT_REGULAR);
  letter-spacing: -0.02rem;
  line-height: var(--LP_LINE_HEIGHT_SECONDARY);
}
@media screen and (max-width: 1365px) {
  .lp-jumbotron-series {
    padding-block: min(0rem + (1vw - 0.969rem) * (4.5454545455), 1.8rem) 3.2rem;
  }
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-series {
    grid-column: auto;
    grid-row: auto;
    padding-block: 0;
  }
}

.lp-buttonConversion.of-download .lp-buttonConversion-body::before {
  background: url("../../../../img/landing_page/common/icon_btn_dl.png") no-repeat center center !important;
}

.lp-buttonConversion.of-anchor .lp-buttonConversion-body::before {
  background: url("../../../../img/landing_page/common/icon_btn_anc_03.png") no-repeat center center !important;
}

.lp-button {
  display: inline-block;
  max-width: 41.9rem;
  padding: min(1.2rem + (1vw - 0.969rem) * (1.261829653), 2.4rem) min(3.8rem + (1vw - 0.969rem) * (1.7875920084), 5.5rem);
  transition: box-shadow 0.5s;
  border-radius: 4rem;
  background-color: var(--LP_COLOR_BLACK);
  box-shadow: 0.6rem 0.6rem 1.6rem rgba(255, 255, 255, 0.4);
  color: var(--LP_COLOR_RED);
  font-size: min(1.6rem + (1vw - 1.365rem) * (0.7207207207), 2.4rem);
  line-height: var(--LP_LINE_HEIGHT_QUINARY);
  text-decoration: none;
}
@media screen and (max-width: 969px) {
  .lp-button {
    min-width: 32rem;
    max-width: 100%;
    padding: 1.4rem 3.6rem 1.2rem;
    font-size: 1.6rem;
  }
}
.lp-button:hover, .lp-button:active, .lp-button:focus {
  background-color: var(--LP_COLOR_GRAY);
  box-shadow: 0.3rem 0.3rem 0.6rem rgba(255, 255, 255, 0.4);
}
.lp-button-text {
  display: block;
  color: var(--LP_COLOR_RED);
  font-size: min(1.6rem + (1vw - 0.36rem) * (0.2564102564), 2rem);
  font-weight: var(--LP_FONT_WEIGHT_BOLD);
  text-align: center;
}

.lp-listButton {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
  justify-self: center;
  gap: 2.4rem 1.6rem;
}
.lp-listButton > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 969px) {
  .lp-listButton {
    margin-top: 0;
    margin-bottom: max(4rem + (1vw - 0.36rem) * (5.9113300493), 4rem);
    gap: 1.2rem;
  }
}
.lp-listButton > li > *:last-child {
  margin-bottom: 0 !important;
}

.lp-jumbotron-body > .lp-listButton {
  grid-column: 2/3;
  grid-row: 3;
}
@media screen and (max-width: 1365px) {
  .lp-jumbotron-body > .lp-listButton {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 969px) {
  .lp-jumbotron-body > .lp-listButton {
    grid-column: auto;
    grid-row: auto;
  }
}

.lp-textPhone {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
}
.lp-textPhone > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 969px) {
  .lp-textPhone {
    padding-bottom: 2.4rem;
  }
}
.lp-textPhone-body {
  display: flex;
  flex-direction: column;
}
.lp-textPhone-body > *:last-child {
  margin-bottom: 0 !important;
}
.lp-textPhone-number {
  max-width: 32rem;
  margin-right: -2rem;
  font-size: 2.4rem;
  font-weight: var(--LP_FONT_WEIGHT_BOLD);
  letter-spacing: 0;
  line-height: var(--LP_LINE_HEIGHT_SENARY);
}
.lp-textPhone-numberGroup {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.4rem;
  margin-left: 0.1rem;
}
.lp-textPhone-numberGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 969px) {
  .lp-textPhone-numberGroup {
    margin-bottom: 0.3rem;
    margin-left: 0.9rem;
    color: var(--LP_COLOR_WHITE);
  }
}
.lp-textPhone-note {
  display: block;
  margin-right: 0.1rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  line-height: var(--LP_LINE_HEIGHT_PRIMARY);
}
@media screen and (max-width: 969px) {
  .lp-textPhone-note {
    color: var(--LP_COLOR_WHITE);
  }
}
.lp-textPhone-icon {
  width: 3.6rem;
  min-width: 3.6rem;
  height: 2rem;
  min-height: 2rem;
  margin-top: 0.2rem;
  margin-inline: 0.1rem 0.6rem;
}
.lp-textPhone-icon .of-iconColor-primary {
  fill: #00a23f;
}
.lp-textPhone-icon .of-iconColor-secondary {
  fill: #fe8800;
}
.lp-textPhone-icon .of-iconColor-tertiary {
  fill: #0086b1;
}
.lp-textPhone-icon .of-iconColor-quaternary {
  fill: #838079;
}
.lp-textPhone-icon .of-iconColor-quinary {
  fill: #1e1c1c;
}
@media screen and (max-width: 969px) {
  .lp-textPhone-icon {
    min-width: 4rem;
    min-height: 2.2rem;
    margin-inline: 0.1rem 0.8rem;
  }
}

a.lp-textPhone-body,
a:hover.lp-textPhone-body {
  opacity: 1;
  color: var(--LP_COLOR_LIGHTBLACK);
  text-decoration: none;
  cursor: default;
}

.lp-utility-line-break {
  display: block;
}
.lp-utility-textAlign-center {
  text-align: center;
}
.lp-utility-justifyContent-center {
  justify-content: center;
}
.lp-utility-color-primary {
  color: var(--LP_COLOR_RED);
}

@media screen and (max-width: 1365px) {
  .lp-extraLargeScreen-line-break {
    display: block;
  }
}
@media not screen and (max-width: 969px) {
  .lp-largeScreen-hide {
    display: none;
  }
  .lp-largeScreen-writingMode-vertical {
    writing-mode: vertical-rl;
  }
  .lp-largeScreen-letterSpacing-0 {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 969px) {
  .lp-smallScreen-hide {
    display: none;
  }
}
