/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}

ol {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

address {
  font-family: inherit;
  font-style: normal;
}

::marker {
  content: none;
}

input[type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 7.875rem;
}
@media (max-width: 750px) {
  html {
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 1280px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background-color: #ffffff;
}

.l-wrap {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin-inline: auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.15);
}

.l-bg {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.l-bg__img {
  position: absolute;
  top: 0;
  width: 1104px;
  height: 100vh;
  min-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}

.l-bg__img--left {
  left: 0;
}

.l-bg__img--right {
  right: 0;
}

body.is-nav-open {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  max-width: 750px;
  height: 7.875rem;
  background-color: #ffffff;
  z-index: 100;
}
@media screen and (min-width: 1280px) {
  .header {
    position: static;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  padding-left: 1.875rem;
  padding-right: 2.3125rem;
}

.header__logo {
  margin-right: auto;
}
.header__logo img {
  width: 9.5rem;
  height: auto;
}

.header__hamburger {
  position: fixed;
  top: 2.375rem;
  right: max(2.3125rem, 50vw - 750px / 2 + 2.3125rem);
  z-index: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.header__hamburger-bar {
  display: block;
  width: 4.25rem;
  height: 0.25rem;
  background-color: #333333;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.header__hamburger-bar:nth-child(2) {
  background-color: #06489f;
}

.header__hamburger.is-open .header__hamburger-bar {
  background-color: #ffffff;
}
.header__hamburger.is-open .header__hamburger-bar:nth-child(1) {
  -webkit-transform: translateY(1.25rem) rotate(45deg);
          transform: translateY(1.25rem) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open .header__hamburger-bar:nth-child(3) {
  -webkit-transform: translateY(-1.25rem) rotate(-45deg);
          transform: translateY(-1.25rem) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  right: max(0px, 50vw - 750px / 2);
  width: 41.3125rem;
  max-width: 100%;
  height: 100vh;
  background-color: #06489f;
  overflow-y: auto;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__inner {
  padding-top: 7.875rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 5rem;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.296875rem;
  list-style: none;
  margin: 0;
  padding-left: 3.25rem;
}

.drawer__item {
  margin: 0;
}

.drawer__link {
  display: block;
  font-size: 2.1875rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

.drawer__cta, .l-floating-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 13.3125rem;
  margin-inline: auto;
  width: 42.0625rem;
  max-width: 100%;
  min-height: 8.125rem;
  padding: 1.25rem 3.0625rem;
  background-color: #f1602b;
  border-radius: 4.0625rem;
  color: #ffffff;
  font-size: 2.48rem;
  font-weight: 600;
  text-decoration: none;
}
.drawer__cta::after, .l-floating-cta__btn::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.75rem;
  margin-left: 1.25rem;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.drawer__tel {
  margin-top: 4.8125rem;
}

.drawer__tel-label {
  font-size: 1.8125rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.drawer__tel-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.6875rem;
     -moz-column-gap: 0.6875rem;
          column-gap: 0.6875rem;
  margin-top: 1.1875rem;
  margin-inline: auto;
  width: 42.0625rem;
  max-width: 100%;
  min-height: 8.125rem;
  padding: 0.9375rem 3.1875rem;
  background-color: #20a3e9;
  border-radius: 4.0625rem;
  color: #ffffff;
  text-decoration: none;
}

.drawer__tel-icon {
  display: inline-block;
  width: 3.9375rem;
  height: 2.5625rem;
  background-color: currentColor;
  -webkit-mask: url("../assets/images/icon-mobile.webp") center/contain no-repeat;
  mask: url("../assets/images/icon-mobile.webp") center/contain no-repeat;
}

.drawer__tel-number {
  font-size: 3.375rem;
  font-weight: 500;
}

.drawer__tel-hours {
  width: 100%;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
}

.p-mv {
  position: relative;
  width: 100%;
  margin-top: 7.875rem;
  height: 47.6875rem;
}
@media screen and (min-width: 1280px) {
  .p-mv {
    margin-top: 0;
  }
}
.p-mv {
  background-image: url("../assets/images/fv-bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.p-mv__badge {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 3.9375rem;
  border: 1px solid #06489f;
  border-radius: 1.9375rem;
  background-color: #ffffff;
  color: #06489f;
  line-height: 1;
  white-space: nowrap;
}

.p-mv__badge-num {
  font-size: 2.6875rem;
  font-weight: 700;
  color: #1fa4e8;
}

.p-mv__badge-unit {
  font-size: 2.09375rem;
  font-weight: 700;
  color: #1fa4e8;
}

.p-mv__badge-over {
  font-size: 1.8125rem;
  font-weight: 500;
}

.p-mv__badge-text {
  font-size: 2.09375rem;
  font-weight: 600;
}

.p-mv__lead {
  font-size: 2.75rem;
  font-weight: 700;
  color: #06489f;
  margin-top: 1.125rem;
}

.p-mv__lead-marker {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(1.875rem, #fdf092), color-stop(1.875rem, transparent));
  background: linear-gradient(to top, #fdf092 1.875rem, transparent 1.875rem);
}

.p-mv__lead-particle {
  font-size: 2.5rem;
}

.p-mv__brand {
  font-size: 5.8125rem;
  font-weight: 700;
  color: #06489f;
  -webkit-text-stroke: 0.4875rem #ffffff;
  paint-order: stroke fill;
}

.p-mv__brand-ni {
  font-size: 4.625rem;
}

.p-mv__brand-suffix {
  font-size: 6.626875rem;
  font-weight: 700;
  color: #06489f;
  -webkit-text-stroke: 0.4875rem #ffffff;
  paint-order: stroke fill;
}

.p-mv__copy {
  padding-top: 1.875rem;
  padding-left: 3.9375rem;
}

.p-mv__note {
  position: absolute;
  left: 0.625rem;
  bottom: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333333;
}

.p-cta-top {
  padding-top: 5.875rem;
  padding-bottom: 5.875rem;
  background-color: #06489f;
  text-align: center;
}

.p-cta-top__headline {
  position: relative;
  display: inline-block;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.p-cta-top__headline::before, .p-cta-top__headline::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  height: 5.875rem;
  width: 0.125rem;
  background-color: #ffffff;
}
.p-cta-top__headline::before {
  left: 0.5rem;
  -webkit-transform: rotate(-31deg);
          transform: rotate(-31deg);
}
.p-cta-top__headline::after {
  right: 0.5rem;
  -webkit-transform: rotate(31deg);
          transform: rotate(31deg);
}

.p-cta-top__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-cta-top__badge {
  display: inline-block;
  padding: 0.375rem 0.5rem;
  white-space: nowrap;
  background-color: #ffffff;
  color: #06489f;
  font-size: 2.4375rem;
  font-weight: 600;
  line-height: 1.3846153846;
}

.p-cta-top__lead {
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 1.5428571429;
  color: #ffffff;
  white-space: nowrap;
}

.p-cta-top__desc {
  font-size: 1.875rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 1.125rem;
}

.p-cta-top__desc-em {
  font-size: 2.3125rem;
  font-weight: 600;
  color: #fffc72;
}

.p-cta-top__btn {
  margin-top: 1.125rem;
}

.p-cta-top__tel {
  margin-top: 3.125rem;
}

.p-worry {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../assets/images/worry-bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
}

.p-worry__title-sub {
  display: block;
  font-size: 2.8125rem;
  font-weight: 500;
}

.p-worry__title-main {
  display: block;
  font-size: 2.8125rem;
  font-weight: 500;
}

.p-worry__title-em {
  font-size: 3.4375rem;
  color: #fffc72;
}

.p-worry__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
  list-style: none;
  margin: 3.75rem auto 0;
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-worry__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.6428571429;
}

.p-worry__icon {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  object-fit: contain;
}

.p-reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.125rem;
  list-style: none;
  margin: 4.9375rem auto 0;
  padding: 0;
  width: 100%;
  max-width: calc(100% - 2.5rem);
}

.p-reason__item {
  position: relative;
  padding: 3.75rem 2.1875rem 2.1875rem;
  background-color: #e6f4ff;
  border: 0.25rem solid #06489f;
  border-radius: 1.25rem;
  text-align: center;
}

.p-reason__num {
  position: absolute;
  top: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6.9375rem;
  height: 6.9375rem;
  border-radius: 50%;
  background-color: #06489f;
  color: #ffffff;
  font-size: 3.4375rem;
  font-weight: 600;
  line-height: 1;
}

.p-reason__item-title {
  display: inline-block;
  padding: 0.625rem 0.875rem;
  border: 0.125rem solid #06489f;
  font-size: 2.8125rem;
  font-weight: 700;
  color: #06489f;
  background-color: #ffffff;
}

.p-reason__img {
  width: 100%;
  height: auto;
  margin-top: 1.875rem;
  border-radius: 0.5rem;
}

.p-reason__text {
  margin-top: 1.5rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
  text-align: left;
}

.p-reason__badge {
  margin-top: 1.25rem;
  padding: 0.875rem;
  background-color: #06489f;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.5rem;
}

.p-reason__item-title--split {
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  background-color: transparent;
}

.p-reason__item-title-sub {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  border: 0.125rem solid #06489f;
  font-size: 2.8125rem;
  font-weight: 700;
  color: #06489f;
  background-color: #ffffff;
}

.p-reason__item-title-main {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border: 0.125rem solid #06489f;
  font-size: 2.8125rem;
  font-weight: 700;
  color: #06489f;
  background-color: #ffffff;
}

.p-reason__item-title-s40 {
  font-size: 2.5rem;
}

.p-reason__item-title-s43 {
  font-size: 2.6875rem;
}

.p-before-after {
  position: relative;
  text-align: center;
}

.p-before-after__bg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -7.5rem;
  position: relative;
  z-index: 1;
}

.p-before-after__label {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5625;
  color: #f1602b;
  padding-bottom: 3px;
}

.p-before-after__deco {
  width: auto;
  height: 2.25rem;
}

.p-before-after__title {
  display: inline;
  margin-top: 0.625rem;
  padding: 0rem 0.625rem;
  font-size: 3.125rem;
  font-weight: 600;
  color: #06489f;
  line-height: 1.6;
  background-color: #ffffff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.p-before-after__title-particle {
  font-size: 3rem;
}

.p-before-after__title-deco {
  display: inline-block;
  width: auto;
  height: 2.5rem;
  vertical-align: top;
}

.p-before-after__img {
  position: relative;
  z-index: 2;
  display: block;
  margin: 1.75rem auto 0;
  width: calc(100% - 2.5rem);
  height: auto;
}

.p-before-after__arrow {
  display: block;
  margin: 0 auto;
  width: 12.5rem;
  height: auto;
  position: relative;
  z-index: 2;
}

.p-effect {
  position: relative;
  padding: 2.5rem 1.25rem 5rem;
  margin-top: -5.375rem;
  z-index: 3;
}

.p-effect__lead {
  font-size: 2.375rem;
  font-weight: 500;
  line-height: 1.3157894737;
  color: #333333;
  text-align: center;
}

.p-effect__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.p-effect__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 0.125rem 1.25rem 0.125rem 0.625rem;
  border: 0.1875rem solid #20a3e9;
  border-radius: 0.625rem;
  background-color: #ffffff;
}

.p-effect__icon {
  width: 6.4375rem;
  height: 6.8125rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-effect__text {
  font-size: 2.8125rem;
  font-weight: 500;
  color: #333333;
}

.p-effect__marker {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(1.0625rem, #fdf092), color-stop(1.0625rem, transparent));
  background: linear-gradient(to top, #fdf092 1.0625rem, transparent 1.0625rem);
}

.p-effect__em {
  color: #20a3e9;
  font-size: 3.75rem;
  font-weight: 500;
}

.p-effect__em-small {
  color: #20a3e9;
  font-size: 2.625rem;
  font-weight: 700;
}

.p-effect__em-percent {
  color: #20a3e9;
}

.p-effect__em-saving {
  color: #20a3e9;
  font-size: 3.125rem;
  font-weight: 500;
}

.p-effect__note {
  position: absolute;
  right: 1.25rem;
  bottom: 0.125rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #333333;
}

.p-point {
  padding: 4.5rem 3.4375rem 5rem;
  text-align: center;
  background: url(../assets/images/point-bg.webp) no-repeat center center/100% 100%;
}

.p-point__title-sub {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333333;
}

.p-point__title-main {
  display: inline-block;
  margin-top: 0.625rem;
  font-size: 3.3125rem;
  font-weight: 700;
  color: #333333;
}

.p-point__title-brand {
  color: #06489f;
}

.p-point__title-particle {
  font-size: 2.9375rem;
}

.p-point__title::after {
  content: "";
  display: block;
  width: 12.6875rem;
  height: 0.3125rem;
  margin: 1.8125rem auto 0;
  background-color: #06489f;
}

.p-point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
  margin: 3.625rem auto 0;
  padding: 0;
  list-style: none;
}

.p-point__item {
  text-align: left;
}

.p-point__label {
  display: inline-block;
  padding: 0 1.25rem;
  border: 0.125rem solid #20a3e9;
  border-radius: 0.375rem;
  background-color: #ffffff;
  color: #20a3e9;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.p-point__item-title {
  margin-top: 1.25rem;
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 1.4444444444;
  letter-spacing: 0.02em;
  color: #06489f;
}

.p-point__img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.8125rem;
}

.p-point__text {
  margin-top: 1.9375rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  text-align: justify;
}

.p-voice {
  background-color: #e6f4ff;
}

.p-voice {
  padding: 0rem 1.25rem 5.1875rem;
}

.p-voice__label {
  font-size: 5.75rem;
  font-weight: 600;
  line-height: 0.6;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.p-voice__title {
  margin-top: 1.4375rem;
  font-size: 3.1875rem;
  font-weight: 600;
  line-height: 1.4705882353;
  color: #20a3e9;
  text-align: center;
}

.p-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin: 3.625rem auto 0;
  width: 100%;
}

.p-voice__item {
  padding: 1.3125rem 2.1875rem 3.1875rem;
  background-color: #fff;
  border-radius: 1.25rem;
}

.p-voice__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-voice__avatar {
  width: 10.5625rem;
  height: 10.5625rem;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-voice__item-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.55;
  color: #20a3e9;
}

.p-voice__text {
  margin-top: 1.625rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  text-align: justify;
}

.p-voice__marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff3a0));
  background: linear-gradient(transparent 60%, #fff3a0 60%);
}

.p-flow {
  padding: 5rem 1.25rem 6.25rem;
  background-color: #fff;
}

.p-flow__title {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #06489f;
  text-align: center;
}
.p-flow__title::after {
  content: "";
  display: block;
  width: 12.6875rem;
  height: 0.3125rem;
  margin: 1.25rem auto 0;
  background-color: #06489f;
}

.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.75rem;
}

.p-flow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-flow__visual {
  position: relative;
  z-index: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14.5625rem;
  -webkit-transform: translateY(-3.125rem);
          transform: translateY(-3.125rem);
}

.p-flow__num {
  position: absolute;
  top: -1.625rem;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5.6875rem;
  height: 5.6875rem;
  border-radius: 50%;
  background-color: #06489f;
  color: #fff;
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: 1;
}

.p-flow__img {
  width: 14.5625rem;
  height: 14.5625rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-flow__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: -2.5rem;
  padding: 2.5rem 2.375rem 2rem 2.5rem;
  background-color: #e6f4ff;
  border-radius: 0.9375rem;
}

.p-flow__item-title {
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 1.4375;
  color: #06489f;
}

.p-flow__text {
  margin-top: 0.875rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  text-align: justify;
}

.p-clean-flow {
  padding: 5rem 1.25rem;
  background-color: #20a3e9;
  color: #fff;
}

.p-clean-flow__title {
  font-size: 3.375rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.p-clean-flow__time {
  margin-top: 2.5rem;
  padding: 2.125rem 2.25rem 2rem;
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.625rem;
}

.p-clean-flow__time-label {
  display: inline-block;
  padding: 0.6875rem 2.5rem;
  background-color: #20a3e9;
  border: 2px solid #20a3e9;
  border-radius: 1.625rem;
  color: #ffffff;
  font-size: 2.0625rem;
  font-weight: 500;
}

.p-clean-flow__time-text {
  margin-top: 1.3125rem;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
}

.p-clean-flow__time-note {
  margin-top: 1.3125rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4285714286;
  color: #333333;
}

.p-clean-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
  margin-top: 3.75rem;
}

.p-clean-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-clean-flow__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.875rem;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: #fff;
  margin-left: 2rem;
}

.p-clean-flow__num {
  font-family: "Oswald", sans-serif;
  font-size: 7.375rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.p-clean-flow__card {
  position: relative;
  margin-top: -0.375rem;
  background-color: #fff;
  color: #333333;
  border-radius: 0.9375rem;
  padding-bottom: 1.625rem;
}
.p-clean-flow__card::after {
  content: "";
  position: absolute;
  bottom: -2.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.3125rem;
  height: 4.5rem;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.p-clean-flow__img {
  width: 100%;
  height: auto;
}

.p-clean-flow__text {
  margin-top: 1.25rem;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.7142857143;
  color: #333333;
  text-align: justify;
  padding-inline: 2.1875rem;
}

.p-clean-flow__item--last .p-clean-flow__card {
  clip-path: none;
  padding-bottom: 1.75rem;
}

.p-clean-flow__option {
  margin-top: 5.25rem;
}

.p-clean-flow__option-label {
  display: inline-block;
  padding: 0.5rem 1.75rem;
  background-color: #fff8c3;
  border-radius: 1.5625rem;
  color: #20a3e9;
  font-size: 2.0625rem;
  font-weight: 500;
  margin-left: 2.25rem;
}

.p-clean-flow__option-title {
  font-size: 2.9375rem;
  font-weight: 600;
  line-height: 1.3829787234;
  letter-spacing: 0.02em;
  color: #fff;
  margin-left: 2.25rem;
}

.p-clean-flow__option-img {
  margin: 1.0625rem auto 1.25rem;
  width: 100%;
  border-radius: 0.9375rem;
}

.p-clean-flow__option-text {
  margin-top: 1.25rem;
  padding-block: 0.3125rem;
  width: 39.9375rem;
  margin-inline: auto;
  background-color: #fff;
  color: #333333;
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 1.8571428571;
  text-align: center;
}

.p-clean-flow__option-em {
  color: #f15a23;
  font-size: 2.5625rem;
  font-weight: 500;
  line-height: 1.5853658537;
}

.p-movie {
  margin-top: 6.3125rem;
  color: #ffffff;
}

.p-movie__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.75rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.525;
  text-align: center;
}
.p-movie__title::before, .p-movie__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 7.5625rem;
  background-color: #ffffff;
}
.p-movie__title::before {
  left: 3.625rem;
  -webkit-transform: translateY(-50%) rotate(-36deg);
          transform: translateY(-50%) rotate(-36deg);
}
.p-movie__title::after {
  right: 3.625rem;
  -webkit-transform: translateY(-50%) rotate(36deg);
          transform: translateY(-50%) rotate(36deg);
}

.p-movie__video {
  margin-top: 1.25rem;
}

.p-movie__player {
  width: 100%;
  height: auto;
  display: block;
}

.p-movie__notes {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: justify;
}
.p-movie__notes li {
  text-indent: -1em;
  padding-left: 1em;
}

.p-faq {
  padding: 0rem 1.25rem 5rem;
  background-color: #c7eafe;
  text-align: center;
}

.p-faq__label {
  font-size: 5.5625rem;
  font-weight: 500;
  line-height: 0.7;
  color: #daf1ff;
}

.p-faq__title {
  margin-top: 1.3rem;
  font-size: 2.8125rem;
  font-weight: 500;
  color: #06489f;
}

.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.3125rem;
}

.p-faq__item {
  background-color: #fff;
  border-radius: 0.9375rem;
  -webkit-box-shadow: 5px 5px 0 #a1d5e7;
          box-shadow: 5px 5px 0 #a1d5e7;
}

.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 4.375rem 1.5rem 1rem;
  position: relative;
  cursor: pointer;
  list-style: none;
  text-align: left;
  font-size: 1.875rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.7;
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
.p-faq__question::before, .p-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 2.5rem;
  height: 2px;
  background-color: #06489f;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.p-faq__question::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-faq__question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.p-faq__details[open] .p-faq__question::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

.p-faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.9375rem;
  height: 3.9375rem;
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.375rem;
}

.p-faq__icon--q {
  background-color: #06489f;
  color: #fff;
}

.p-faq__icon--a {
  background-color: #fff;
  border: 2px solid #06489f;
  color: #06489f;
}

.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  padding: 1.375rem 2.3125rem 1.375rem 1rem;
  text-align: left;
  border-top: 1px solid #c7eafe;
}

.p-faq__a-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
}

.p-price {
  padding-block: 5rem 0rem;
}

.p-price__title {
  padding-block: 0 3.75rem;
  font-size: 3.125rem;
  font-weight: 500;
  color: #06489f;
  text-align: center;
}

.p-price__category-title {
  height: 10.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #06489f;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.p-price__category-sub {
  font-size: inherit;
}

.p-price__block {
  margin: 1.875rem 1.25rem 0rem;
  border: 1px solid #333333;
  border-radius: 0.9375rem;
  overflow: hidden;
}

.p-price__block-head {
  padding: 1.875rem 3.1875rem;
  overflow: hidden;
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #e6f4ff;
}

.p-price__block-head--ceiling {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8.75rem;
}

.p-price__block-title {
  color: #06489f;
  font-size: 2.1875rem;
  font-weight: 500;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.125rem;
          flex: 0 0 16.125rem;
}

.p-price__block-img {
  width: 8.75rem;
  height: auto;
}

.p-price__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.8125rem 1.9375rem 2.0625rem;
  font-size: 2.1875rem;
  font-weight: 500;
  color: #333333;
}
.p-price__row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19.5rem;
          flex: 0 0 19.5rem;
}
.p-price__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-price__row-sub {
  font-size: 1.75rem;
  line-height: 1.7;
}

.p-price__row--highlight {
  background-color: #fffcd8;
}

.p-price__badge {
  position: absolute;
  top: -5.625rem;
  right: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: #f15a23;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-price__badge::before {
  content: "";
  position: absolute;
  left: -0.1875rem;
  bottom: 0.625rem;
  width: 1.6875rem;
  height: 2.625rem;
  background-color: #f15a23;
  -webkit-transform: rotate(-122.44deg);
          transform: rotate(-122.44deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.p-price__badge-num {
  font-size: 1.875rem;
}

.p-price__badge-line {
  white-space: nowrap;
}

.p-price__option {
  margin: 1.875rem 1.25rem 0;
  border: 1px solid #333333;
  border-radius: 0.9375rem;
}

.p-price__option-title {
  padding: 2.5rem 3.125rem 2.625rem;
  display: block;
  background-color: #e6f4ff;
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
  color: #20a3e9;
  font-size: 2.1875rem;
  font-weight: 500;
}

.p-price__option-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.4375rem 2.5625rem 1.9375rem;
  font-size: 2.1875rem;
  font-weight: 500;
  color: #333333;
}
.p-price__option-row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22.8125rem;
          flex: 0 0 22.8125rem;
}
.p-price__option-row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-price__notes {
  margin: 1.875rem 1.25rem 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 3.125rem;
}

.l-intro-bg {
  background-image: url("../assets/images/intro-bg.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

.p-reason {
  padding-top: 5.625rem;
  text-align: center;
}

.p-reason__title-sub {
  display: block;
  font-size: 3.4375rem;
  font-weight: 600;
  color: #333333;
}

.p-reason__title-brand {
  color: #06489f;
}

.p-reason__title-particle {
  font-size: 2.875rem;
}

.p-reason__title-main {
  display: inline-block;
  padding: 0.3125rem 1.375rem 0.3125rem 0.875rem;
  background-color: #06489f;
  font-size: 3.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.3125rem;
}

.p-reason__title-num {
  font-size: 4.5rem;
  font-weight: 600;
  color: #fffc72;
}

.p-reason__title-tsu {
  color: #fffc72;
}

.p-intro {
  color: #06489f;
}

.p-intro__title {
  padding-left: 2.375rem;
}

.p-intro__title-sub {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 0.875rem 0;
  font-size: 2.8125rem;
  font-weight: 600;
  color: #06489f;
  width: 100%;
  z-index: 0;
}

.p-intro__title-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/intro-title-sub-bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, #000), color-stop(85%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, #000), color-stop(85%, #000), to(transparent));
  mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  z-index: -1;
}

.p-intro__title-particle {
  font-size: 2.1875rem;
  color: #333;
}

.p-intro__title-ec {
  color: #333;
}

.p-intro__title-main {
  display: inline-block;
  text-align: left;
  margin-top: 0.625rem;
  font-size: 4.25rem;
  line-height: 1.3970588235;
  font-weight: 700;
}

.p-intro__title-line {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.p-intro__title-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.375rem;
  height: 1.75rem;
  background-image: url("../assets/images/underline-yellow.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  z-index: -1;
}

.p-intro__title-particle2 {
  font-size: 3.6875rem;
}

.p-intro__band {
  position: relative;
  z-index: 2;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 14.3125rem;
  background-color: #06489f;
  border-radius: 3.75rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.125rem 4.25rem 1.125rem 3.0625rem;
  text-align: center;
}

.p-intro__band-particle {
  font-size: 1.75rem;
}

.p-intro__band-em {
  margin-top: 0.625rem;
  font-size: 2.5625rem;
  font-weight: 600;
  color: #fffc72;
}

.p-intro__band-em-particle {
  font-size: 2.0625rem;
}

.p-intro__before-after {
  position: relative;
  z-index: 1;
  margin-top: -2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 2.5rem);
  margin-inline: auto;
  height: auto;
  background-color: #ffffff;
  border: 0.25rem solid #06489f;
  border-radius: 0.9375rem;
  padding: 3.5rem 1.1875rem 2.125rem;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 0 #06489f;
          box-shadow: 0.3125rem 0.3125rem 0 0 #06489f;
}

.l-side-nav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .l-side-nav {
    display: block;
    position: fixed;
    top: 130px;
    left: clamp(5px, 5px + (100vw - 1280px) * 195 / 640, 200px);
    z-index: 50;
  }
}
@media screen and (min-width: 1920px) {
  .l-side-nav {
    left: calc(50% - 760px);
  }
}

.l-side-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.25rem;
}

.l-side-nav__link {
  display: inline-block;
  color: #06489f;
  font-size: clamp(20px, 20px + (100vw - 1280px) * 10 / 640, 30px);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0.25rem;
  border-bottom: 0.125rem solid transparent;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.l-side-nav__link:hover {
  color: #333333;
  border-bottom-color: #20a3e9;
}

.l-side-cta {
  display: none;
}
@media screen and (min-width: 1280px) {
  .l-side-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    position: fixed;
    bottom: 2.5rem;
    left: clamp(1030px, 1030px + (100vw - 1280px) * 345 / 640, 1375px);
  }
}
@media screen and (min-width: 1920px) {
  .l-side-cta {
    left: calc(50% + 415px);
    z-index: 50;
  }
}

.l-side-cta__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(240px, 240px + (100vw - 1280px) * 275 / 600, 515px);
  height: clamp(65px, 65px + (100vw - 1280px) * 75 / 600, 140px);
  background-color: #f1602b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6.25rem;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.l-side-cta__btn::after {
  content: "";
  position: absolute;
  right: clamp(14px, 14px + (100vw - 1280px) * 16 / 600, 30px);
  top: 50%;
  width: 0;
  height: 0;
  border-left: clamp(12px, 12px + (100vw - 1280px) * 14 / 600, 26px) solid #ffffff;
  border-top: clamp(10px, 10px + (100vw - 1280px) * 12 / 600, 22px) solid transparent;
  border-bottom: clamp(10px, 10px + (100vw - 1280px) * 12 / 600, 22px) solid transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-side-cta__btn-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}

.l-side-cta__btn-main {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: clamp(19px, 19px + (100vw - 1280px) * 21 / 600, 40px);
  font-weight: 700;
}

.l-side-cta__btn-badge {
  display: inline-block;
  background-color: #ffffff;
  color: #f1602b;
  font-size: clamp(19px, 19px + (100vw - 1280px) * 21 / 600, 40px);
  font-weight: 700;
  padding: 0.125rem 0.625rem;
  border-radius: 0.25rem;
}

.l-side-cta__btn-sub {
  font-size: clamp(13px, 13px + (100vw - 1280px) * 15 / 600, 28px);
  font-weight: 500;
}

.l-side-cta__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  width: clamp(240px, 240px + (100vw - 1280px) * 275 / 600, 515px);
  height: clamp(65px, 65px + (100vw - 1280px) * 75 / 600, 140px);
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #20a3e9;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6.25rem;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.l-side-cta__tel-num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 22px + (100vw - 1280px) * 25 / 600, 47px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.l-side-cta__tel-icon {
  display: inline-block;
  width: clamp(25px, 25px + (100vw - 1280px) * 28 / 600, 53px);
  aspect-ratio: 63/41;
  background-color: currentColor;
  -webkit-mask: url("../assets/images/icon-mobile.webp") center/contain no-repeat;
  mask: url("../assets/images/icon-mobile.webp") center/contain no-repeat;
}

.l-side-cta__tel-hours {
  font-size: clamp(10px, 10px + (100vw - 1280px) * 12 / 600, 22px);
}

@media screen and (min-width: 1280px) {
  .header__hamburger,
  .drawer {
    display: none;
  }
}
.drawer__cta, .l-floating-cta__btn,
.p-cta-top__btn,
.l-side-cta__btn {
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  border: 0.0625rem solid #f1602b;
}

.drawer__cta:hover, .l-floating-cta__btn:hover,
.p-cta-top__btn:hover,
.l-side-cta__btn:hover {
  background-color: #ffffff;
  color: #f1602b;
}

.l-side-cta__btn:hover .l-side-cta__btn-badge {
  background-color: #f1602b;
  color: #ffffff;
}

.l-side-cta__btn:hover::after {
  border-left-color: #f1602b;
}

.drawer__cta::after, .l-floating-cta__btn::after {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.drawer__cta:hover::after, .l-floating-cta__btn:hover::after {
  background-color: #f1602b;
}

.drawer__tel-button,
.l-side-cta__tel {
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  border: 0.0625rem solid #20a3e9;
}

.drawer__tel-button:hover,
.l-side-cta__tel:hover {
  background-color: #ffffff;
  color: #20a3e9;
}

.l-footer-bottom {
  background-color: #fff;
  padding: 5rem 1.25rem 1.875rem;
}

.l-footer-bottom__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  margin-bottom: 7.5rem;
}

.l-footer-bottom__link {
  font-size: 1.625rem;
  color: #333333;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.l-footer-bottom__link:hover {
  color: #06489f;
}

.l-footer-bottom__logo {
  margin-bottom: 1.25rem;
}
.l-footer-bottom__logo img {
  width: 12.5rem;
  height: auto;
}

.l-footer-bottom__copy {
  font-size: 1.25rem;
  color: #666;
}

.l-floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem 1.25rem 1.75rem;
  background-color: #e6f4ff;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.l-floating-cta.is-hidden {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.l-floating-cta__btn {
  margin-top: 0;
  width: 100%;
  max-width: 42.0625rem;
}

@media (min-width: 1280px) {
  .l-floating-cta {
    display: none;
  }
}