: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: #222;
  --LP-COLOR-WHITE: #fff;
  --LP-COLOR-DARKGRAY: #2b2b2b;
  --LP-COLOR-GRAY: #555;
  --LP-COLOR-LIGHTGRAY-PRIMARY: #f7f7f7;
  --LP-COLOR-LIGHTGRAY-SECONDARY: #ececec;
  --LP-COLOR-DARKRED: #a50026;
  --LP-COLOR-RED: #ae0025;
  --LP-COLOR-GREEN: #00606b;
  --LP-COLOR-MOSSGREEN: #38514b;
  --LP-FONT-FAMILY-DEFAULT: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  --LP-FONT-FAMILY-SERIF: source-han-serif-japanese, serif;
  --LP-FONT-WEIGHT-NORMAL: 400;
  --LP-FONT-WEIGHT-MEDIUM: 500;
  --LP-FONT-WEIGHT-BOLD: 700;
  --LP-MARGIN-BOTTOM-DEFAULT: 24px;
  --LP-MARGIN-BOTTOM-HALF-DEFAULT: 12px;
  --LP-HEADER-FONT: var(--LP-COLOR-DARKGRAY);
  --LP-MAIN-FONT: var(--LP-COLOR-BLACK);
  --LP-FOOTER-FONT: var(--LP-COLOR-GRAY);
}

.lp-layout-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--LP-COLOR-LIGHTGRAY-PRIMARY);
  color: var(--LP-COLOR-BLACK);
}
@media only screen and (max-width: 1023px) {
  .lp-layout-container {
    min-height: auto;
  }
}

.lp-layout-header {
  z-index: 10;
  grid-column: 1/-1;
  grid-row: 1/2;
  color: var(--LP-HEADER-FONT);
}
.lp-layout-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 80px;
  gap: 24px;
}
.lp-layout-header-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1919px) {
  .lp-layout-header-content {
    max-width: 1800px;
    margin-inline: auto;
    padding: 24px 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-content {
    justify-content: center;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 909px) {
  .lp-layout-header-content {
    padding: 18px 20px;
  }
}
.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: 120px;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-logo > a > img {
    width: 94px;
  }
}

.lp-layout-main {
  display: flex;
  z-index: 1;
  grid-column: 1/-1;
  grid-row: 1/-1;
  flex-direction: column;
  justify-content: center;
  padding: 93px 0px;
  color: var(--LP-MAIN-FONT);
}
@media only screen and (max-width: 1365px) {
  .lp-layout-main {
    grid-row: 2/3;
    padding: 0px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-main {
    padding: 66px 0px;
  }
}

.lp-layout-footer {
  z-index: 10;
  grid-column: 1/-1;
  grid-row: -1/-2;
  color: var(--LP-FOOTER-FONT);
}
.lp-layout-footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1800px;
  margin-inline: auto;
  padding: 16px 20px;
  gap: 12px 25px;
}
.lp-layout-footer-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-layout-footer-content {
    padding: 16px 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-content {
    flex-direction: column;
    max-width: none;
    padding: 24px 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-footer-content {
    padding: 8px 20px;
  }
}
.lp-layout-footer-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  gap: 12px 25px;
}
.lp-layout-footer-list > li {
  position: relative;
}
.lp-layout-footer-list > li > *:last-child {
  margin-bottom: 0 !important;
}
.lp-layout-footer-list > li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -13px;
  width: 1px;
  height: 100%;
  transform: translateY(-50%);
  background-color: currentColor;
}
.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-copyright {
  font-size: 1.2rem;
}
@media only screen and (max-width: 1365px) {
  .lp-layout-footer-copyright {
    text-align: center;
  }
}

.lp-jumbotron-content {
  max-width: 1708px;
  margin-inline: auto;
  padding: 0 58px;
}
.lp-jumbotron-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-content {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-content {
    padding: 16px max(20px, 2rem + (1vw - 0.36rem) * (27.1084337349)) 48px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-jumbotron-content {
    padding: 16px 40px 80px;
  }
}
.lp-jumbotron-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lp-jumbotron-inner > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-inner {
    gap: 20px;
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-inner {
    flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.lp-jumbotron-body {
  flex: 1;
  max-width: 764px;
}
.lp-jumbotron-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-body {
    max-width: calc(63.8rem + (1vw - 1.366rem) * (55.7522123894));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-body {
    max-width: none;
  }
}
.lp-jumbotron-titleGroup {
  margin-bottom: 48px;
  font-family: var(--LP-FONT-FAMILY-SERIF);
  text-align: center;
}
.lp-jumbotron-titleGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: max(32px, 3.2rem + (1vh - 0.625rem) * (5.6140350877));
  }
}
.lp-jumbotron-title {
  display: block;
  margin-bottom: 48px;
  font-size: 6.4rem;
  line-height: 1.3;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-title {
    font-size: calc(5.2rem + (1vw - 1.366rem) * (5.3097345133));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-title {
    margin-bottom: 24px;
    font-size: calc(3.9rem + (1vw - 1.024rem) * (3.8011695906));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-title {
    font-size: max(2.8rem, 2.8rem + (1vw - 0.36rem) * (1.656626506));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-title {
    --font-from-height: calc(3.9rem + (1vh - 0.625rem) * (8.7719298246));
    --font-from-width: calc(5.2rem + (1vw - 1.366rem) * (5.3097345133));
    margin-bottom: max(32px, 3.2rem + (1vh - 0.625rem) * (5.6140350877));
    font-size: max(5.2rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-subtitleGroup {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  max-width: fit-content;
  margin-bottom: 48px;
  margin-inline: auto;
  gap: 8px;
}
.lp-jumbotron-subtitleGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-subtitleGroup {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-subtitleGroup {
    margin-bottom: max(32px, 3.2rem + (1vh - 0.625rem) * (5.6140350877));
  }
}
.lp-jumbotron-subtitleGroup > * {
  margin-bottom: 0 !important;
}
.lp-jumbotron-subtitle {
  display: block;
  margin-bottom: 4px;
  font-size: 3rem;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-subtitle {
    font-size: calc(2rem + (1vw - 1.024rem) * (1.7605633803));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-subtitle {
    font-size: max(1.8rem, 1.8rem + (1vw - 0.36rem) * (0.3012048193));
  }
}
.lp-jumbotron-seriesGroup {
  display: block;
  margin-bottom: 8px;
  font-size: 2.6rem;
  font-weight: var(--LP-FONT-WEIGHT-MEDIUM);
  line-height: 1.4;
}
.lp-jumbotron-seriesGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-seriesGroup {
    font-size: calc(1.6rem + (1vw - 1.024rem) * (1.7605633803));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-seriesGroup {
    font-size: max(1.4rem, 1.4rem + (1vw - 0.36rem) * (0.3012048193));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-seriesGroup {
    --font-from-height: calc(2.2rem + (1vh - 0.625rem) * (1.4035087719));
    --font-from-width: calc(1.6rem + (1vw - 1.024rem) * (1.7605633803));
    font-size: max(2.2rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-series {
  display: inline-block;
}
.lp-jumbotron-image {
  max-width: clamp(704px, 70.4rem + (1vw - 1.592rem) * (35.3658536585), 820px);
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-image {
    max-width: calc(60.4rem + (1vw - 1.366rem) * (44.2477876106));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-image {
    max-width: calc(47.2rem + (1vw - 1.024rem) * (36.8421052632));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-image {
    max-width: none;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-image {
    --maxWidth-from-height: calc(57.4rem + (1vh - 0.625rem) * (86.3157894737));
    --maxWidth-from-width: calc(60.4rem + (1vw - 1.366rem) * (44.2477876106));
    max-width: max(574px, min(var(--maxWidth-from-height), var(--maxWidth-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-jumbotron-image {
    max-width: min(60.4rem + (1vw - 1.366rem) * (44.2477876106), 70.4rem + (1vw - 1.592rem) * (35.3658536585), 820px);
  }
}

.lp-label {
  display: block;
  margin-bottom: var(--LP-MARGIN-BOTTOM-HALF-DEFAULT);
  color: var(--LP-COLOR-RED);
  font-family: var(--LP-FONT-FAMILY-DEFAULT);
  font-size: 2rem;
}
@media only screen and (max-width: 1365px) {
  .lp-label {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-label {
    font-size: max(1.6rem, 1.6rem + (1vh - 0.625rem) * (1.4035087719));
  }
}
.lp-label-outer {
  display: block;
}
.lp-label-outer > *:last-child {
  margin-bottom: 0 !important;
}
.lp-label.of-primary {
  max-width: 200px;
  padding: 6px 16px;
  border-radius: 4px;
  background-image: linear-gradient(114deg, #1ee2e9 0%, #00606b 24%, #003636 100%);
  color: var(--LP-COLOR-WHITE);
  font-weight: var(--LP-FONT-WEIGHT-MEDIUM);
}
@media only screen and (max-width: 1365px) {
  .lp-label.of-primary {
    padding: 3px 12px;
    border-radius: 2px;
    background-image: linear-gradient(124deg, #1ee2e9 0%, #00606b 24%, #003636 100%);
  }
}
@media only screen and (max-width: 1023px) {
  .lp-label.of-primary {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-label.of-primary {
    padding: 3px 12px;
    border-radius: 2px;
    font-size: max(1.6rem, 1.6rem + (1vh - 0.625rem) * (1.4035087719));
  }
}

.lp-textPhone {
  display: block;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
}
a.lp-textPhone-body,
a:hover.lp-textPhone-body {
  color: currentColor;
  text-decoration: none;
  cursor: default;
}

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

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

.lp-button {
  display: inline-block;
  position: relative;
  min-width: 300px;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
  padding: 16px 44px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--LP-COLOR-WHITE);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.09);
  color: var(--LP-COLOR-DARKRED);
  font-size: 1.6rem;
  font-weight: var(--LP-FONT-WEIGHT-MEDIUM);
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .lp-button {
    min-width: 280px;
    padding: 12px 44px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-button {
    min-width: 280px;
    padding: 12px 44px;
  }
}
.lp-button:hover, .lp-button:active, .lp-button:focus {
  background-color: var(--LP-COLOR-LIGHTGRAY-SECONDARY);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.102);
}
.lp-button.of-primary {
  color: var(--LP-COLOR-MOSSGREEN);
}
.lp-button.of-price::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg) translate(-50%, -50%);
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-bottom: transparent;
  border-left: transparent;
}
.lp-button-body > *:last-child {
  margin-bottom: 0 !important;
}
.lp-button-icon {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 3.6rem;
  transform: translateY(-50%);
  fill: currentColor;
}

.lp-utility-line-break {
  display: block;
}
.lp-utility-textAlign-center {
  text-align: center;
}
.lp-utility-textAlign-left {
  text-align: left;
}
.lp-utility-fontColor-primary {
  color: var(--LP-COLOR-GREEN);
}
.lp-utility-fontSize-small {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1365px) {
  .lp-utility-fontSize-small {
    font-size: 1.2rem;
  }
}
.lp-utility-fontWeight-normal {
  font-weight: var(--LP-FONT-WEIGHT-NORMAL);
}
.lp-utility-justifyContent-start {
  justify-content: start;
}

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

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

@media only screen and (min-width: 1024px) {
  .lp-smallScreen-hidden {
    display: none;
  }
  .lp-smallScreen-line-break {
    display: block;
  }
}

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

.lp-smallHeightScreen-inline {
  display: block;
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-smallHeightScreen-inline {
    display: inline-block;
  }
}
