:root {
  font-size: 62.5%;
  --color-white: #fff;
  --color-text: #333;
  --color-dark: #222;
  --color-green-dark: #00a23f;
  --color-bg-gray: #f7f6f8;
  --color-blue-gradient-start: #9dd0fc;
  --color-blue-pale: #d5e3f3;
  --color-bg-cream: #f7f6ed;
  --color-blue: #036eb8;
  --color-blue-dark: #02375c;
  --color-gray-gradient-end: #efeff2;
  --color-red: #c43958;
  --color-blue-light: #87ccea;
  --color-card-bg: #f8ffff;
  --color-blue-accent: #1a92c9;
  --color-gray-border: #676767;
  --color-green: #00a896;
  --color-blue-soft: #d5effa;
  --color-gray-light: #efefef;
  --color-green-pale: #e8fad5;
  --color-gray-dark: #5d6164;
}

* {
  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-color: var(--color-white);
  color: var(--color-text);
  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;
}

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;
  appearance: button;
  border: 0;
  background-color: transparent;
  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;
  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%;
}

.only-sp {
  display: none;
}

@media (max-width: 1024px) {
  .only-sp {
    display: block;
  }
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(/img/products/rk/208054002/208054002_bg_01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-bg-gray);
}

@media (max-width: 768px) {
  .main {
    background-image: url("/img/products/rk/208054002/208054002_bg_01_sp.png");
  }
}

/* header */
.header {
  background-color: var(--color-white);
}

.header__inner {
  max-width: 1300px;
  padding: 12px 10px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  width: 133px;
}

.tel-container {
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.tel-number-container {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.tel-number-icon {
  width: 36px;
  height: 20px;
}

.tel-number-icon .of-icon-color-primary {
  fill: var(--color-green-dark);
}

.tel-number {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}

.tel-note {
  font-size: 1.2rem;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .header__inner {
    justify-content: center;
  }

  .logo-container img {
    width: 110px;
  }

  .header__tel {
    display: none;
  }
}

/* footer */
.footer {
  background-color: var(--color-dark);
}

.footer__inner {
  max-width: 1232px;
  padding: 20px;
  margin-inline: auto;
}

.footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer__link li {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  color: var(--color-white);
  font-size: 1.3rem;
  line-height: 1em;
}

.footer__link li a {
  color: var(--color-white);
  font-size: 1.4rem;
  text-decoration: none;
}

.footer__link li a:hover {
  text-decoration: underline;
}

.footer__link li::after {
  display: block;
  width: 1px;
  height: 16px;
  background-color: var(--color-white);
  content: "";
}

.footer__link li:last-child::after {
  display: none;
}

.footer__copy {
  text-align: center;
}

/* jumbotron */
.jumbotron__inner {
  max-width: 1260px;
  padding: 40px 10px 56px;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .jumbotron__inner {
    max-width: 600px;
    padding: 60px 16px 60px;
  }
}

.jumbotron__content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

@media (max-width: 1024px) {
  .jumbotron__content {
    gap: 32px;
    align-items: center;
  }
}

.jumbotron__title {
  font-size: clamp(88px, 24.000px + 6.25vw, 114px);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .jumbotron__title {
    font-size: 4.8rem;
  }
}

.jumbotron__description-title-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .jumbotron__description-title-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.jumbotron__body {
  display: flex;
  position: relative;
}

.jumbotron__image {
  position: absolute;
  top: -30px;
  right: 0;
  flex-shrink: 0;
  width: clamp(680px, -113.971px + 77.536vw, 894px);
}

@media (max-width: 1024px) {
  .jumbotron__image {
    position: relative;
    inset: 0;
    width: 100%;
  }
}

.jumbotron__video {
  position: absolute;
  min-width: clamp(390px, -50.000px + 42.969vw, 500px);
  min-height: 300px;
  top: 6.2%;
  left: 16.5%;
}

@media (max-width: 1024px) {
  .jumbotron__video {
    min-height: auto;
    top: 6%;
    min-width: 55.9%;
    left: 16.4%;
  }
}

.jumbotron__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 1024px) {
  .jumbotron__row {
    gap: 32px;
  }
}

.jumbotron__description {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, -24.522px + 4.348vw, 32px);
}

.jumbotron__description-title {
  color: var(--color-text);
  font-size: clamp(40px, 2.899px + 3.623vw, 50px);
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 1024px) {
  .jumbotron__description-title {
    font-size: 2.4rem;
  }
}

.jumbotron__description-title--large {
  font-size: clamp(160px, 44.986px + 11.232vw, 191px);
}

@media (max-width: 1024px) {
  .jumbotron__description-title--large {
    font-size: 5.6rem;
  }
}

.jumbotron__description-text {
  font-size: clamp(16px, 1.159px + 1.449vw, 20px);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1024px) {
  .jumbotron__description-text {
    text-align: center;
  }
}

/* button */
.button__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

@media (max-width: 1024px) {
  .button__container {
    width: 100%;
    justify-content: center;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: linear-gradient(91deg, var(--color-white) -0.1%, var(--color-gray-gradient-end) 99.9%);
  box-shadow: 3px 3px 20px 0 rgba(36, 65, 93, 0.30), -3px -3px 10px 0 var(--color-white);
  padding: 16px clamp(12px, -68.000px + 7.813vw, 32px);
  color: var(--color-red);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 368px;
  transition: box-shadow 0.3s ease;
}

@media (max-width: 1024px) {
  .button {
    min-width: 100%;
  }
}

@media (hover: hover) {
  .button:hover {
    box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
  }
}
