:root {
  font-size: 10px;
}

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

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

.theme-KJ {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
.theme-KJ body {
  min-width: 320px;
  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.5;
  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;
}

:root {
  --LP-COLOR-BLACK-PRIMARY: #333;
  --LP-COLOR-BLACK-SECONDARY: #2e3133;
  --LP-COLOR-WHITE: #fff;
  --LP-COLOR-GRAY: #a8a8a8;
  --LP-COLOR-SOFTGRAY: #d0d0d0;
  --LP-COLOR-LIGHTGRAY: #ececec;
  --LP-COLOR-RED: #d40432;
}

.lp-layout-container.of-outermost {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media only screen and (max-width: 1365px) {
  .lp-layout-container.of-outermost {
    display: block;
    height: auto;
    overflow: auto;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 589px) {
  .lp-layout-container.of-outermost {
    display: block;
    height: auto;
  }
}

.lp-layout-header {
  z-index: 10;
  border-bottom: 1px solid var(--LP-COLOR-SOFTGRAY);
  background-color: var(--LP-COLOR-WHITE);
  color: var(--LP-COLOR-BLACK-PRIMARY);
}
.lp-layout-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1680px;
  margin-inline: auto;
  padding: 18px 80px;
  gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-content {
    justify-content: center;
    padding: 16px 20px;
  }
}
.lp-layout-header-content > *:last-child {
  margin-bottom: 0;
}
.lp-layout-header-logo {
  flex-shrink: 0;
  margin-bottom: 0;
  line-height: 1;
}
.lp-layout-header-logo > a {
  display: inline-block;
}
.lp-layout-header-logo > a > img {
  width: 103px;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-logo > a > img {
    width: 91px;
  }
}

.lp-layout-main {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  background-color: var(--LP-COLOR-LIGHTGRAY);
  color: var(--LP-COLOR-BLACK-SECONDARY);
}
@media only screen and (max-width: 1023px) {
  .lp-layout-main {
    height: auto;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 589px) {
  .lp-layout-main {
    height: auto;
  }
}
.lp-layout-main > *:last-child {
  margin-bottom: 0;
}

.lp-layout-footer {
  z-index: 10;
  width: 100%;
  background-color: var(--LP-COLOR-LIGHTGRAY);
  color: var(--LP-COLOR-BLACK-PRIMARY);
}
.lp-layout-footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1680px;
  margin-inline: auto;
  padding: 16px 80px;
  gap: 12px 33px;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-content {
    flex-direction: column;
    max-width: none;
    padding: 20px 20px 24px;
  }
}
.lp-layout-footer-content > *:last-child {
  margin-bottom: 0;
}
.lp-layout-footer-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  gap: 12px 33px;
}
.lp-layout-footer-list > li {
  position: relative;
}
.lp-layout-footer-list > li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -16px;
  width: 1px;
  height: 100%;
  transform: translateY(-50%);
  background-color: var(--LP-COLOR-GRAY);
}
.lp-layout-footer-list > li > a {
  color: currentColor;
  text-decoration: none;
}
.lp-layout-footer-list > li > a:hover, .lp-layout-footer-list > li > a:active, .lp-layout-footer-list > li > a:focus {
  color: currentColor;
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-list > li:last-child::after {
    display: none;
  }
}
.lp-layout-footer-list > li > *:last-child {
  margin-bottom: 0;
}
.lp-layout-footer-copyright {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1365px) {
  .lp-layout-footer-copyright {
    text-align: center;
  }
}

.lp-jumbotron {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 128px;
  background-color: var(--LP-COLOR-LIGHTGRAY);
  color: var(--LP-COLOR-BLACK-SECONDARY);
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron {
    margin-bottom: 56px;
  }
}
.lp-jumbotron-content {
  display: flex;
  max-width: 1680px;
  margin-inline: auto;
  padding: 80px;
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-content {
    flex-direction: column-reverse;
    align-items: center;
    padding: 24px 20px 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 799px) {
  .lp-jumbotron-content {
    padding: 40px 80px;
  }
}
.lp-jumbotron-content > *:last-child {
  margin-bottom: 0;
}
.lp-jumbotron-body {
  flex: 1;
}
.lp-jumbotron-body > *:last-child {
  margin-bottom: 0;
}
.lp-jumbotron-image {
  width: 740px;
  margin-left: 40px;
}
@media only screen and (max-width: 1559px) {
  .lp-jumbotron-image {
    width: calc(48rem + (1vw - 1.024rem) * (48.5074626866));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-image {
    width: calc(32rem + (1vw - 0.36rem) * (24.0963855422));
    margin-left: 0;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 799px) {
  .lp-jumbotron-image {
    width: max(520px, 52rem + (1vh - 0.59rem) * (23.8095238095));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 589px) {
  .lp-jumbotron-image {
    width: 520px;
  }
}
.lp-jumbotron-title {
  display: block;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1559px) {
  .lp-jumbotron-title {
    width: calc(48rem + (1vw - 1.024rem) * (26.1194029851));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-title {
    width: calc(32rem + (1vw - 0.36rem) * (24.0963855422));
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 799px) {
  .lp-jumbotron-title {
    width: max(520px, 52rem + (1vh - 0.59rem) * (23.8095238095));
    margin-bottom: max(16px, 1.6rem + (1vh - 0.59rem) * (3.8095238095));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 589px) {
  .lp-jumbotron-title {
    width: 520px;
    margin-bottom: 16px;
  }
}
.lp-jumbotron-titleGroup {
  margin-bottom: 48px;
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 799px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: max(16px, 1.6rem + (1vh - 0.59rem) * (3.8095238095));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 589px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: 16px;
  }
}
.lp-jumbotron-titleGroup > *:last-child {
  margin-bottom: 0;
}
.lp-jumbotron-series {
  display: block;
  margin-bottom: 16px;
  color: var(--LP-COLOR-BLACK-PRIMARY);
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.45;
}
@media only screen and (max-width: 1559px) {
  .lp-jumbotron-series {
    font-size: calc(1.6rem + (1vw - 0.36rem) * (0.6666666667));
  }
}

.lp-button {
  display: inline-block;
  min-width: 364px;
  padding: 18px 20px;
  transition: box-shadow 0.5s;
  border-radius: 40px;
  background-color: var(--LP-COLOR-LIGHTGRAY);
  box-shadow: -6px -6px 6px rgba(255, 255, 255, 0.4), 6px 6px 6px rgba(92, 226, 150, 0.4), inset -2px -2px 2px transparent, inset 2px 2px 2px transparent;
  color: var(--LP-COLOR-RED);
  font-size: 2rem;
  line-height: 1.5;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .lp-button {
    min-width: 320px;
    padding: 12px 20px;
    font-size: 1.6rem;
  }
}
.lp-button:hover, .lp-button:active, .lp-button:focus {
  box-shadow: -6px -6px 6px transparent, 6px 6px 6px transparent, inset -2px -2px 2px rgba(255, 255, 255, 0.4), inset 2px 2px 2px rgba(92, 226, 150, 0.4);
}
.lp-button-text {
  display: block;
  text-align: center;
}

.lp-listButton {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
  gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .lp-listButton {
    gap: 16px;
  }
}
.lp-listButton > li > *:last-child {
  margin-bottom: 0;
}

.lp-textPhone {
  display: block;
  margin-bottom: 40px;
}
a.lp-textPhone-body,
a:hover.lp-textPhone-body {
  color: currentColor;
  text-decoration: none;
  cursor: default;
}

.lp-textPhone-body {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 1023px) {
  .lp-textPhone-body {
    flex-direction: column;
    gap: 0;
  }
}
.lp-textPhone-body > *:last-child {
  margin-bottom: 0;
}
.lp-textPhone-numberGroup {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-textPhone-number {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.45;
}
.lp-textPhone-note {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.41;
}
.lp-textPhone-icon {
  width: 36px;
  min-width: 36px;
  height: 20px;
  min-height: 20px;
}
.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;
}

.lp-utility-line-break {
  display: block;
}
.lp-utility-textAlign-center {
  text-align: center;
}
.lp-utility-justifyContent-center {
  justify-content: center;
}

@media only screen and (min-width: 1366px) {
  .lp-extraLargeScreen-hidden {
    display: none !important;
  }
  .lp-extraLargeScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .lp-largeScreen-hidden {
    display: none !important;
  }
  .lp-largeScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .lp-smallScreen-hidden {
    display: none !important;
  }
  .lp-smallScreen-line-break {
    display: block;
  }
  .lp-smallScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .lp-extraSmallScreen-textAlign-center {
    text-align: center;
  }
  .lp-extraSmallScreen-line-break {
    display: block;
  }
  .lp-extraSmallScreen-inline {
    display: inline-block;
  }
  .lp-extraSmallScreen-hidden {
    display: none !important;
  }
}
