@charset "UTF-8";

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans JP Regular"), local("NotoSansJP-Regular"), url("../fonts/jp400.woff2") format("woff2"), url("../fonts/jp400.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Noto Sans JP Medium"), local("NotoSansJP-Medium"), url("../fonts/jp500.woff2") format("woff2"), url("../fonts/jp500.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Noto Sans JP Bold"), local("NotoSansJP-Bold"), url("../fonts/jp700.woff2") format("woff2"), url("../fonts/jp700.woff") format("woff");
}

@font-face {
  font-family: "DIN Alternate Bold";
  font-style: normal;
  font-weight: normal;
  src: local("DIN Alternate Bold"), url("../fonts/DINAlternate-Bold.woff") format("woff");
}

:root {
  --jp-common: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", Meiryo,
    sans-serif;
  --en-ttl: "DIN Alternate Bold", sans-serif;
  --main_ttl: min(4rem, calc(2rem + 2.2vw));
  --sub_ttl: min(3rem, calc(1.6rem + 1.7vw));
  --ll_tx: min(2rem, calc(1.5rem + 1.4vw));
  --l_tx: min(1.8rem, calc(1.2rem + 1vw));
  --common_tx: min(1.6rem, calc(1.2rem + 1vw));
  --m_tx: min(1.4rem, calc(1rem + 0.8vw));
  --s_tx: min(1.2rem, calc(1rem + 0.5vw));
  --ss_tx: 1rem;
  --black: #323232;
  --white: #fff;
  --primary: #0a1852;
  --secondary: #db4711;
  --gray: #cecece;
  --bg-blue: #eff5f8;
  --link: #ff9600;
}

@media (min-width: 769px) {
  :root {
    --main_ttl: 4.5rem;
    --sub_ttl: 3rem;
    --ll_tx: 2rem;
    --l_tx: 1.8rem;
    --common_tx: 1.6rem;
    --m_tx: 1.4rem;
    --s_tx: 1.2rem;
    --ss_tx: 1rem;
  }
}

/***
    The new CSS reset - version 1.7.2 (last updated 23.6.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, [type=checkbox]):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

html {
  width: 100vw;
  font-size: 62.5%;
}

body {
  width: 100vw;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", sans-serif;
  font-weight: 400;
  font-size: var(--common_tx);
  color: var(--black);
  overscroll-behavior: none;
}

blockquote,
dd,
dl,
figcaption,
h1,
h2,
h3,
h4,
h5,
ul,
ol,
li,
p {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5em;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
  line-height: 0;
}

pre {
  white-space: pre;
}

button {
  cursor: pointer;
}

strong {
  font-weight: bold;
}

s {
  text-decoration: line-through;
}

em {
  font-style: italic;
}

/* ------------------
 * 1. MODULE
 ------------------ */
.m-sec {
  display: block;
  width: 100%;
  padding: 9rem 5%;
}

@media (max-width: 768px) {
  .m-sec {
    padding: 6rem 5%;
  }
}

.m-cont {
  width: 105rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .m-cont {
    width: 100%;
  }
}

.m-cont__ttl {
  margin-bottom: 8rem;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}

.m-cont__ttl--single {
  font-size: var(--main_ttl);
}

@media (max-width: 768px) {
  .m-cont__ttl--single {
    font-size: 7vw;
    margin-bottom: 4rem;
  }
}

.m-cont__ttl--double {
  font-size: 5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .m-cont__ttl--double {
    font-size: min(5rem, 2.5rem + 2.5vw);
    margin-bottom: 5rem;
  }
}

.m-cont__ttl--double small {
  font-size: var(--sub_ttl);
}

.m-main-bg {
  background: center/cover no-repeat url(../img/bg-img-sp.png);
}

@media (min-width: 769px) {
  .m-main-bg {
    background: center/cover no-repeat url(../img/bg-img.png);
  }
}

.m-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
}

.m-arrow::after {
  z-index: 98;
  display: block;
  position: absolute;
  border-radius: 50%;
  content: "";
}

.m-arrow::before {
  z-index: 99;
  rotate: 45deg;
  display: block;
  position: absolute;
  border-top: 0.2rem solid var(--white);
  border-right: 0.2rem solid var(--white);
  content: "";
}

.m-btn {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
  width: min(36.6rem, 100%);
  padding: 1.5em 1em;
  border-radius: 100vmax;
  font-size: var(--l_tx);
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 768px) {
  .m-btn {
    font-size: var(--common_tx);
  }
}

.m-btn::after {
  top: auto;
  right: 1.5em;
  width: 1.8em;
  height: 1.8em;
}

.m-btn::before {
  top: auto;
  right: 2.2em;
  width: 0.5em;
  height: 0.5em;
}

.m-btn--leading {
  color: var(--white);
  background-color: var(--secondary);
}

.m-btn--leading::after {
  background-color: #c43400;
}

@media (any-hover: hover) {
  .m-btn--leading:hover {
    background-color: #00c2ba;
  }

  .m-btn--leading:hover::after {
    background-color: #009d96;
  }
}

.m-btn--page {
  border: 0.1rem solid var(--primary);
  color: var(--primary);
  background-color: var(--white);
}

.m-btn--page::after {
  background-color: #767e9f;
}

@media (any-hover: hover) {
  .m-btn--page:hover {
    background-color: var(--primary);
    color: var(--white);
  }
}

footer {
  margin-bottom: 10rem;
}

.m-grid-2col,
.m-grid-sp2col,
.m-grid-2col-sp1col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

@media (max-width: 768px) {
  .m-grid-2col-sp1col {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .m-grid-sp2col {
    display: block;
  }
}

.m-grid-3col,
.m-grid-3col-sp1col,
.m-grid-3col-sp2col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

@media (max-width: 768px) {
  .m-grid-3col-sp2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .m-grid-3col-sp1col {
    grid-template-columns: 1fr;
  }
}

.m-aside-main-grid {
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 5rem;
}

@media (max-width: 768px) {
  .m-aside-main-grid {
    display: block;
  }
}

.m-post-side-grid {
  display: grid;
  grid-template-columns: 1fr 30rem;
  gap: 5rem;
}

@media (max-width: 768px) {
  .m-post-side-grid {
    display: block;
  }
}

.m-grid-4col,
.m-grid-4col-sp3col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

@media (max-width: 768px) {
  .m-grid-4col-sp3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.m-ttl {
  z-index: 2;
  position: relative;
  font-size: var(--ll_tx);
  font-weight: 900;
  text-align: center;
}

.m-ttl::after {
  display: block;
  width: 4em;
  aspect-ratio: 75/8;
  margin: -1rem auto 0;
}

.m-ttl:not(:last-child) {
  margin-bottom: 2rem;
}

.m-ttl--white {
  color: var(--white);
}

.m-ttl--white::after {
  content: url(../img/common-ttl-decoration-white.svg);
}

.m-ttl--dark::after {
  content: url(../img/common-ttl-decoration-dark.svg);
}

#js-readmore-error {
  text-align: center;
  margin: 4rem auto 0;
}

main {
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
  body {
    width: calc(105rem + 5%);
  }
}

@media screen and (min-width: 1050px) {
  body {
    overflow-x: hidden;
  }
}

.l-header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem max(2vw, 1.5rem);
  width: 100vw;
}

.l-header__logo-link {
  display: block;
  height: 2em;
}

.l-header__logo-img {
  height: 100%;
  aspect-ratio: 73/13;
  object-fit: contain;
}

.l-kv {
  display: block;
}

@media (min-width: 769px) {
  .l-kv {
    height: 70rem;
  }
}

.l-kv__cont {
  position: relative;
}

@media (min-width: 769px) {
  .l-kv__cont {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .l-kv__cont {
    overflow: visible;
  }
}

.l-kv__article {
  width: 50%;
  color: var(--white);
}

@media (max-width: 768px) {
  .l-kv__article {
    width: 100%;
    margin-bottom: 5rem;
    margin-top: 4rem;
  }
}

.l-kv__ttl {
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 2rem;
}

.l-kv__ttl strong {
  font-size: 120%;
}

@media (max-width: 768px) {
  .l-kv__ttl {
    font-size: min(6rem, 1.8rem + 4.2vw);
  }

  .l-kv__ttl strong {
    font-size: 110%;
  }
}

.l-kv__tx {
  margin-bottom: 2rem;
  font-size: min(1rem + 1vw, 1.8rem);
  font-weight: 700;
  line-height: 2;
}

@media (min-width: 769px) {
  .l-kv__case-cont {
    overflow-x: hidden;
    position: absolute;
    top: auto;
    left: 55%;
    width: 100vw;
    height: 39rem;
  }
}

@media (max-width: 768px) {
  .l-kv__case-cont {
    position: relative;
    width: 180vw;
    margin-left: calc(-40vw - 5%);
  }
}

@media (min-width: 769px) {
  .l-kv__cases {
    width: 48rem;
  }
}

@media (min-width: 769px) {
  .l-kv .swiper-slide {
    width: 42rem;
  }
}

.l-kv .swiper-pagination {
  display: flex;
  align-items: flex-end;
  left: 5rem !important;
  bottom: 0;
}

@media (max-width: 768px) {
  .l-kv .swiper-pagination {
    justify-content: center;
    left: 0 !important;
    bottom: -3.5rem !important;
  }
}

.l-kv .swiper-pagination-bullet {
  margin: 0 1rem 0 0 !important;
  opacity: 0.3;
  background-color: #fff;
}

.l-kv .swiper-pagination-bullet-active {
  opacity: 1;
}

.l-kv .swiper-button-next,
.l-kv .swiper-button-prev {
  opacity: 1 !important;
  top: auto;
  bottom: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 100vmax;
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.l-kv .swiper-button-next:after,
.l-kv .swiper-button-prev:after {
  font-size: 1rem;
}

@media (max-width: 768px) {

  .l-kv .swiper-button-next,
  .l-kv .swiper-button-prev {
    bottom: -4.5rem !important;
  }
}

.l-kv .swiper-button-prev {
  left: 0;
}

@media (max-width: 768px) {
  .l-kv .swiper-button-prev {
    left: calc(90vw - 8rem);
  }
}

.l-kv .swiper-button-next {
  left: 13rem;
}

@media (max-width: 768px) {
  .l-kv .swiper-button-next {
    left: calc(90vw + 4rem);
  }
}

.l-kv__btn-cont {
  margin-top: 8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .l-kv__btn {
    margin-inline: auto;
  }
}

.l-trouble {
  position: relative;
}
.l-trouble__ttl.time-limited{
  position: relative;
}
.l-trouble__ttl.time-limited:after {
    content: "＼本LPを見た人限定／";
    position: absolute;
    font-size: 2rem;
    rotate: 13deg;
    top: -40px;
    right: 18%;
}

.l-trouble__list {
  gap: 5rem;
}

@media (max-width: 768px) {
  .l-trouble__list {
    gap: 3rem;
  }
}

.l-trouble__item {
  border: 0.2rem solid var(--primary);
  border-radius: 2rem;
  background-color: var(--white);
}

.l-trouble__item-ttl {
  position: relative;
  padding: 1em 1em 1em 9rem;
  border-top-left-radius: 1.6rem;
  border-top-right-radius: 1.6rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--primary);
}

.l-trouble__item-ttl strong {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
}

.l-trouble__item-ttl::before {
  position: absolute;
  top: -1em;
  left: 1em;
  width: 6.5rem;
  height: 6.5rem;
  content: "";
}

.l-trouble__detail-list {
  padding: 2.6rem;
  font-weight: 700;
}

.l-trouble__detail {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-size: var(--m_tx);
  width: 100%;
}

.l-trouble__detail::before {
  display: block;
  margin-top: -0.4em;
  margin-right: 1rem;
  width: 3.1rem;
  height: 3.1rem;
  background: center/contain no-repeat url(../img/icon-check.svg);
  content: "";
}

.l-trouble__detail:not(:last-child) {
  margin-bottom: 3rem;
}

.l-trouble::after {
  z-index: 99;
  position: absolute;
  bottom: -6.9rem;
  left: calc(50% - 17rem);
  display: block;
  width: 34rem;
  height: 7rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--bg-blue);
  content: "";
}

@media (max-width: 768px) {
  .l-trouble::after {
    bottom: -4.9rem;
    left: calc(50% - 10rem);
    width: 20rem;
    height: 5rem;
  }
}

.l-leading-block {
  padding-top: 12rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

@media (max-width: 768px) {
  .l-leading-block {
    padding-top: 8rem;
  }
}

.l-leading-block__line1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  font-size: var(--sub_ttl);
}

.l-leading-block__logo {
  object-fit: cover;
  height: 1.3em;
  width: fit-content;
  margin-right: 1rem;
  margin-bottom: -0.2em;
}

.l-leading-block__line2 {
  margin-bottom: 2rem;
  font-size: 5rem;
}

@media (max-width: 768px) {
  .l-leading-block__line2 {
    font-size: 6.5vw;
    margin-bottom: 1rem;
  }
}

.l-leading-block__line2 strong {
  color: #e8703a;
}

.l-leading-block__line3 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .l-leading-block__line3 {
    font-size: 3.5vw;
  }
}

.l-leading-block__line4 {
  margin-bottom: 5rem;
  font-size: var(--main_ttl);
}

@media (max-width: 768px) {
  .l-leading-block__line4 {
    margin-bottom: 3rem;
  }
}

.l-leading-block__btn {
  margin: 0 auto;
}

.l-reason {
  counter-reset: reason;
}

@media (min-width: 769px) {
  .l-reason__item {
    display: grid;
    grid-template-columns: 37rem 1fr;
    gap: 5rem;
  }
}

.l-reason__item:not(:last-child) {
  margin-bottom: 7rem;
}

@media (max-width: 768px) {
  .l-reason__item:not(:last-child) {
    margin-bottom: 5rem;
  }
}

.l-reason__item-ttl {
  counter-increment: reason;
  font-size: var(--sub_ttl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.l-reason__item-ttl::before {
  display: block;
  line-height: 1.2;
  font-family: "DIN Alternate Bold", sans-serif;
  font-size: var(--ll_tx);
  color: var(--secondary);
  content: "Reason 0" counter(reason);
}

@media (max-width: 768px) {
  .l-reason__item-ttl::before {
    margin-bottom: 1rem;
  }
}

.l-reason__item-tx {
  line-height: 3.4rem;
}

.l-reason__img {
  width: 100%;
}

@media (max-width: 768px) {
  .l-reason__img {
    margin-bottom: 2rem;
  }
}

.l-achivement__list {
  gap: 3rem;
  margin-bottom: 10rem;
}

.l-achivement__img {
  transition: opacity 0.2s ease-out;
  margin-bottom: 1rem;
}

.l-achivement__item-cont {
  display: block;
}

@media (any-hover: hover) {
  .l-achivement__item-cont:hover .l-achivement__img {
    opacity: 0.7;
  }

  .l-achivement__item-cont:hover .l-achivement__item-link::after {
    border: 0.1rem solid var(--primary);
    background-color: var(--white);
  }

  .l-achivement__item-cont:hover .l-achivement__item-link::before {
    border-color: var(--primary);
  }
}

.l-achivement__item-ttl {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: var(--ll_tx);
}

.l-achivement__item-tx {
  font-size: var(--m_tx);
  line-height: 2;
}

.l-achivement__item-link {
  width: fit-content;
  margin: 2rem 0 0 auto;
  padding-right: 3.6em;
  font-size: var(--s_tx);
  font-weight: 700;
}

.l-achivement__item-link::before {
  transition: all 0.2s ease-out;
  top: auto;
  right: 1.2em;
  width: 0.5em;
  height: 0.5em;
  border-width: 0.1rem 0.1rem 0 0;
}

.l-achivement__item-link::after {
  transition: all 0.2s ease-out;
  top: auto;
  right: 0;
  width: 3.1rem;
  height: 3.1rem;
  background-color: var(--primary);
}

.l-achivement__btn {
  margin: 0 auto;
}

.l-compare__ttl {
  margin-bottom: 4rem;
}

.l-compare__tx {
  text-align: center;
  margin-bottom: 5rem;
}

.l-compare__table-cont {
  position: relative;
  overflow-x: auto;
  margin-bottom: 1rem;
  overscroll-behavior: none;
}

.l-compare__table {
  position: relative;
  font-size: var(--ll_tx);
}

@media (max-width: 768px) {
  .l-compare__table {
    position: relative;
    font-size: 4vw;
  }
}

.l-compare__table tr {
  display: grid;
  grid-template-columns: repeat(2, 24rem) repeat(3, 19rem);
}

@media (max-width: 768px) {
  .l-compare__table tr {
    grid-template-columns: repeat(2, 30vw) repeat(3, 30vw);
  }
}

.l-compare__table th,
.l-compare__table td {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  font-weight: 700;
}

.l-compare__table .th-first {
  position: sticky;
  top: 0;
  left: 0;
  color: var(--white);
  height: 100%;
}

.l-compare__table .th-wp,
.l-compare__table .td-wp {
  position: sticky;
  top: 0;
  left: 24rem;
  background-color: var(--white);
}

@media (max-width: 768px) {

  .l-compare__table .th-wp,
  .l-compare__table .td-wp {
    left: 26vw;
    width: 30vw;
  }
}

.l-compare__table thead tr {
  align-items: end;
}

.l-compare__table thead p {
  width: 100%;
  padding: 0.5rem;
  font-size: min(2.2rem, 1.3rem + 1vw);
  color: var(--white);
  background-color: #8b98ce;
}

.l-compare__table thead th {
  background-color: var(--white);
}

.l-compare__table thead .th-wp p {
  background-color: #00c2ba;
}

@media (max-width: 768px) {
  .l-compare__table thead .th-wp p {
    font-size: min(2.2rem, 1.3rem);
  }
}

.l-compare__table thead .th-b p {
  background-color: #7c89bf;
}

.l-compare__table tbody th,
.l-compare__table tbody td {
  padding: 1em 1em;
}

@media (max-width: 768px) {

  .l-compare__table tbody th,
  .l-compare__table tbody td {
    padding: .9em 1em;
  }
}

.l-compare__table tbody th {
  font-size: min(2.2rem, 1.2rem + 1vw);
  background-color: var(--primary);
}

@media (max-width: 768px) {
  .l-compare__table tbody th {
    font-size: min(2.2rem, 1.4rem);
    background-color: var(--primary);
  }
}

.l-compare__table tbody tr {
  border-bottom: 0.1rem solid #c1c1c1;
}

.l-compare__table tbody small {
  display: block;
  width: 100%;
  font-size: var(--s_tx);
  font-weight: 400;
}

.l-compare__table tbody .td-wp {
  border-right: 0.5rem solid #00c2ba;
  border-left: 0.5rem solid #00c2ba;
}

.l-compare__table tbody .td-wp small {
  margin-top: 1rem;
  color: #f72656;
}

.l-compare__table tbody .td-wp .zero {
  color: #f72656;
}

.l-compare__table tbody .td-wp .zero strong {
  font-size: 150%;
}

.l-compare__table tbody tr:last-of-type .td-wp {
  border-bottom: 0.5rem solid #00c2ba;
}

.l-compare__table .icon-circle::before {
  display: block;
  margin: 0 auto;
  width: 1.3em;
  height: 1.3em;
  background: center/contain no-repeat url(../img/icon-circle.svg);
  content: "";
}

.l-compare__table .icon-triangle::before {
  display: block;
  margin: 0 auto;
  width: 1.3em;
  height: 1.3em;
  background: center/contain no-repeat url(../img/icon-triangle.svg);
  content: "";
}

.l-compare__table .icon-cross::before {
  display: block;
  margin: 0 auto;
  width: 1.3em;
  height: 1.3em;
  background: center/contain no-repeat url(../img/icon-cross.svg);
  content: "";
}

.l-compare .scroll-hint-icon {
  top: 15%;
}

.l-maintenance__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 3rem;
}

.l-maintenance__item--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .l-maintenance__item {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

.l-maintenance__item:not(:last-of-type) {
  margin-bottom: 5rem;
}

@media (min-width: 769px) {
  .l-maintenance__item:not(:last-of-type) {
    margin-bottom: 10rem;
  }
}

.l-maintenance__imgbox,
.l-maintenance__article {
  width: 100%;
}

@media (min-width: 769px) {

  .l-maintenance__imgbox,
  .l-maintenance__article {
    width: calc(50% - 1.5rem);
  }
}

.l-maintenance__imgbox {
  display: grid;
  place-items: center;
}

.l-maintenance__item-ttl {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: var(--sub_ttl);
  line-height: 1.3;
}

.l-maintenance__item-tx {
  line-height: 3.4rem;
}

.l-service__des-list {
  border: 0.1rem solid var(--gray);
  border-bottom: 0;
}

.l-service__des-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 1em;
  border-bottom: 0.1rem solid var(--gray);
  color: var(--white);
  background-color: var(--primary);
}

@media (max-width: 768px) {
  .l-service__des-item {
    padding: 1rem 1em;
  }
}

.l-service__des-item span {
  display: block;
  width: calc(100% - 6rem);
  padding-top: 0.5em;
  font-size: var(--ll_tx);
  font-weight: 700;
}

@media (max-width: 768px) {
  .l-service__des-item span {
    width: calc(100% - 4.5rem);
    padding-top: 0.3em;
  }
}

.l-service__des-item::before {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  content: "";
}

@media (max-width: 768px) {
  .l-service__des-item::before {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.l-service__des-detail {
  border-bottom: 0.1rem solid var(--gray);
}

.l-service__content-item:not(:last-child) {
  display: grid;
  grid-template-columns: 1.5em calc(100% - 1.5em);
  gap: 0 1em;
  padding: 1rem 1.5rem;
  font-size: var(--m_tx);
  font-weight: 700;
}

.l-service__content-item:not(:last-child)::before {
  display: block;
  margin-top: 0.1em;
  width: 1.3em;
  height: 1.3em;
  background: center/contain no-repeat url(../img/icon-check-small.svg);
  content: "";
}

.l-service__content-item:not(:first-child):not(:last-child) {
  border-top: 0.1rem solid var(--gray);
}

.l-service__content-detail {
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.1s ease;
  opacity: 0;
  visibility: hidden;
  height: 0;
  max-height: 0;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  border-top: 0.1rem solid var(--gray);
  font-size: var(--s_tx);
}

@media (max-width: 768px) {
  .l-service__content-detail {
    line-height: 2;
  }
}

.l-service__content-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0.3rem 1.5rem;
  border-top: 0.1rem solid var(--gray);
  font-size: var(--s_tx);
  font-weight: 700;
  color: var(--primary);
  background-color: #f7f8fd;
}

.l-service__content-btn::before {
  margin-right: 1rem;
  content: "詳細を見る";
}

.l-service__content-btn::after {
  rotate: 45deg;
  display: block;
  width: 0.6em;
  height: 0.6em;
  margin-top: -0.1em;
  border-bottom: 0.2rem solid var(--primary);
  border-right: 0.2rem solid var(--primary);
  content: "";
}

.l-service__content-item--open .l-service__content-btn::before {
  content: "閉じる";
}

.l-service__content-item--open .l-service__content-btn::after {
  margin-top: 0.4em;
  rotate: -135deg;
}

.l-service__content-item--open .l-service__content-detail {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-height: 15em;
}

.l-service__price-list {
  display: grid;
  grid-template-columns: 19.6rem calc(100% - 19.6rem);
}

@media (max-width: 768px) {
  .l-service__price-list {
    grid-template-columns: 14rem calc(100% - 14rem);
  }
}

.l-service__price-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: var(--m_tx);
  color: var(--white);
  background-color: #70799d;
}

.l-service__price-item:not(:last-of-type) {
  border-bottom: 0.1rem solid var(--gray);
}

@media (max-width: 768px) {
  .l-service__price-item {
    font-size: var(--common_tx);
  }
}

.l-service__price-detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: var(--m_tx);
  padding: 1rem 1.5rem;
}

@media (max-width: 768px) {
  .l-service__price-detail {
    padding: 2rem 1.5rem;
  }
}

.l-service__price-detail:not(:last-of-type) {
  border-bottom: 0.1rem solid var(--gray);
}

.l-service__price-detail .fee {
  font-weight: 700;
  font-size: var(--ll_tx);
  color: #e03721;
}

.l-service__price-detail .fee small {
  font-size: 70%;
}

.l-service__price-detail .att_txt {
  margin-top: 0.5rem;
  display: block;
  font-size: var(--ss_tx);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .l-service__des-list {
    margin-bottom: 2em;
  }

  .l-service__price-detail .att_txt {
    font-size: var(--s_tx);
  }
}

@media (min-width: 769px) {
  .l-service__des-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  .l-service__des-item {
    width: 39rem;
  }

  .l-service__des-detail {
    width: calc(100% - 39rem);
  }
}

.l-available__list {
  gap: 1rem 1.5rem;
}

.l-available__list img {
  width: 100%;
}

.l-available p {
  margin: 5rem auto;
  text-align: center;
}

.l-available__btn {
  margin: 0 auto;
}

.l-flow__steps-cont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: 50rem;
  position: relative;
  margin-bottom: 8rem;
}

.l-flow__steps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  counter-reset: setp;
}

.l-flow__line {
  transition: opacity 0.5s 0.5s ease-in-out;
  opacity: 0;
  z-index: -1;
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  width: 3.8rem;
  height: 100%;
  background-color: #9ea4be;
  content: "";
}

.l-flow__steps-cont:has(.js-show) .l-flow__line {
  opacity: 1;
}

.l-flow__step {
  transition: opacity 0.5s 1s ease-in-out;
  opacity: 0;
  counter-increment: step;
  width: 100%;
  padding: 1.5rem;
  border: 0.3rem solid var(--primary);
  border-radius: 1.6rem;
  background-color: var(--white);
}

.l-flow__step:not(:last-of-type) {
  margin-bottom: 4rem;
}

@media (min-width: 769px) {
  .l-flow__step {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 2rem 3rem;
  }
}

.l-flow__step-ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-size: min(2.4rem, 1.6rem + 1.5vw);
  font-weight: 700;
}

@media (max-width: 768px) {
  .l-flow__step {
    padding: 1.4em 1.8em;
  }

  .l-flow__step-ttl {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 769px) {
  .l-flow__step-ttl {
    border-right: 0.1rem solid var(--gray);
    width: 40rem;
  }
}

.l-flow__step-ttl::before {
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  margin-right: 1.5rem;
  border-radius: 50%;
  font-size: 2.8rem;
  font-family: "DIN Alternate Bold", sans-serif;
  color: var(--white);
  background-color: var(--primary);
  content: "0" counter(step);
}

@media (max-width: 768px) {
  .l-flow__step-ttl::before {
    width: 5rem;
    height: 5rem;
  }
}

.l-flow__step-detail {
  line-height: 2.7rem;
}

@media (min-width: 769px) {
  .l-flow__step-detail {
    width: calc(100% - 40rem);
    padding: 0 0 0 2rem;
  }
}

.l-flow__btn {
  margin: 0 auto;
}

.l-voice__list {
  gap: 4rem 4.5rem;
  margin-bottom: 5rem;
}

.l-voice__btn {
  padding: 1em;
  margin: 0 auto;
}

.l-voice__btn::before {
  rotate: 135deg;
  top: 1.45em;
  right: 2.15em;
}

#sec08 .qa_select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
  border-bottom: 0.2rem solid var(--primary);
}

#sec08 .qa_select .qa_tab {
  width: calc(55% - 0.3rem);
}

#sec08 .qa_select .qa_tab span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 3.3em;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  font-weight: 700;
  font-size: var(--ll_tx);
  line-height: 1.4;
  color: var(--white);
  text-align: center;
  background-color: #cfd2e0;
}

#sec08 .qa_select .qa_tab span strong {
  display: contents;
  font-size: 120%;
}

@media (max-width: 768px) {
  #sec08 .qa_select .qa_tab span {
    font-size: var(--common_tx);
    height: 5.5em;
    font-size: 80%;
  }

  #sec08 .qa_select .qa_tab span strong {
    font-size: 140%;
  }
}

#sec08 .qa_select .qa_tab:not(.qa_open) {
  width: calc(45% - 0.5rem);
  cursor: pointer;
}

#sec08 .qa_select .qa_tab.qa_open span {
  height: 8rem;
  background-color: var(--primary);
}

#sec08 .qa_select .qa_tab.qa_open span strong {
  font-size: 140%;
}

@media (max-width: 768px) {
  #sec08 .qa_select .qa_tab.qa_open span strong {
    font-size: 150%;
  }
}


#sec08 .qa_list dl {
  display: none;
}

#sec08 .qa_list dl.qa_open {
  display: block;
}

#sec08 .qa_list .qa_single {
  display: block;
  padding: 2rem 2rem 0;
  border: 0.2rem solid var(--gray);
  border-radius: 1rem;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  #sec08 .qa_list .qa_single {
    padding: 1.5rem 1.5rem 0;
  }
}

#sec08 .qa_list .qa_single+.qa_single {
  margin-top: 3rem;
}

#sec08 .qa_list .qa_single dt,
#sec08 .qa_list .qa_single dd {
  display: flex;
  justify-content: space-between;
}

#sec08 .qa_list .qa_single dt:before,
#sec08 .qa_list .qa_single dd .ans .ans_head:before {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-family: var(--en-ttl);
  font-size: var(--ll_tx);
  color: var(--white);
}

#sec08 .qa_list .qa_single dt {
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  #sec08 .qa_list .qa_single dt {
    padding-bottom: 1.5rem;
  }
}

#sec08 .qa_list .qa_single dt .que {
  display: block;
  width: calc(100% - 6rem - 4.5rem);
  padding-top: 0.4em;
  font-size: var(--l_tx);
  font-weight: 700;
  line-height: 1.5;
  word-break: break-all;
}

@media (max-width: 768px) {
  #sec08 .qa_list .qa_single dt .que {
    width: calc(100% - 5rem - 4.5rem);
  }
}

#sec08 .qa_list .qa_single dt:before {
  background-color: var(--primary);
  content: "Q";
}

#sec08 .qa_list .qa_single dd .ans .ans_head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  font-size: var(--l_tx);
  font-weight: 700;
  line-height: 1.6;
}

#sec08 .qa_list .qa_single dd .ans .ans_head:before {
  margin-top: -0.3em;
  background-color: #209987;
  content: "A";
}

#sec08 .qa_list .qa_single dd .ans .ans_head span {
  width: calc(100% - 6rem);
}

@media (max-width: 768px) {
  #sec08 .qa_list .qa_single dd .ans .ans_head span {
    width: calc(100% - 5rem);
  }
}

#sec08 .qa_list .qa_single dt .arrow_qa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: inherit;
  background: center/1.5rem 0.9rem no-repeat url(../img/arrow_qa.png);
  rotate: 0deg;
  transition: 0.3s;
}

#sec08 .qa_list .qa_single.opened dt .arrow_qa {
  rotate: 180deg;
  transition: 0.3s;
}

#sec08 .qa_list .qa_single:not(.opened) dd {
  display: none;
}

#sec08 .qa_list .qa_single dd {
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #ecf6f5;
}

#sec08 .qa_list .qa_single dd .ans {
  display: block;
  width: 100%;
  word-break: break-all;
}

#sec08 .qa_list .qa_single dd .ans .ans_detail {
  font-size: var(--m_tx);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.l-contact__main {
  width: 95%;
  margin: 0 auto;
  padding: 4rem 5rem;
  background-color: var(--white);
}

@media (max-width: 768px) {
  .l-contact__main {
    padding: 1.5rem 2rem;
  }
}

#sec09 .tellBBox {
  width: 100%;
  margin-bottom: 4rem;
  text-align: center;
  line-height: 2;
}

#sec09 .tellBBox a {
  font-size: 160%;
  font-weight: 700;
}

table.formcell {
  width: 100%;
  margin-bottom: 3.6rem;
  background: var(--white);
  border-top: 1px solid var(--gray);
}

table.formcell tr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  border-bottom: 1px solid var(--gray);
}

@media (max-width: 768px) {
  table.formcell tr {
    padding: 2rem 0;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  table.formcell th {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 769px) {
  table.formcell th {
    padding: 2.4rem 1.7rem;
    width: 30rem;
  }
}

table.formcell th label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

@media (min-width: 769px) {
  table.formcell td {
    padding: 2rem 1.5rem 2rem 2.5rem;
    width: calc(100% - 30rem);
  }
}

span.required {
  color: #ffffff;
  background: #ed171c;
  padding: 0.3rem 1.8rem 0.4rem;
  border-radius: 100vmax;
  font-size: var(--s_tx);
}

@media (max-width: 768px) {
  span.required {
    margin-left: 1em;
  }
}

table.formcell td textarea {
  width: 100%;
  height: 10em;
  padding: 0.5em 1em;
  border-radius: 0.5rem;
  border-width: thin;
  background-color: #f4f4f4;
  resize: vertical;
}

::placeholder {
  color: #c4c4c4;
}

table.formcell tr.cancel th {
  vertical-align: top;
}

table.formcell td .mwform-radio-field {
  display: block;
  width: fit-content;
  cursor: pointer;
}

table.formcell td input:not([type=radio]) {
  width: 100%;
  padding: 0.5em 1em;
  border-radius: 0.5rem;
  background-color: #f4f4f4;
}

#sec09 .btn {
  position: relative;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
  width: min(36.6rem, 100%);
  margin: 0 auto;
  padding: 1.5em 1em;
  border-radius: 100vmax;
  font-size: var(--l_tx);
  font-weight: 700;
  color: var(--white);
  background-color: var(--secondary);
  cursor: pointer;
}

@media (max-width: 768px) {
  #sec09 .btn {
    font-size: var(--common_tx);
  }
}

@media (any-hover: hover) {
  #sec09 .btn:hover {
    background-color: #00c2ba;
  }

  #sec09 .btn:hover::after {
    background-color: #009d96;
  }
}

#sec09 .btn::after {
  z-index: 98;
  display: block;
  position: absolute;
  top: auto;
  right: 1.5em;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  background-color: #c43400;
  content: "";
}

#sec09 .btn::before {
  z-index: 99;
  rotate: 45deg;
  display: block;
  position: absolute;
  top: auto;
  right: 2.2em;
  width: 0.5em;
  height: 0.5em;
  border-top: 0.2rem solid var(--white);
  border-right: 0.2rem solid var(--white);
  content: "";
}

.l-follow-btn {
  display: grid;
  place-items: center;
  z-index: 9999999;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  padding: 1rem;
  background-color: rgba(10, 24, 82, 0.8);
}

 .l-follow-btn {
  opacity: 0; /* 初期状態は透明 */
  pointer-events: none; /* クリックできない状態 */
  transition: opacity 0.5s ease; /* フェードイン・フェードアウトのアニメーション */
}

.l-follow-btn.show {
  opacity: 1; /* 表示されるときは完全に見える */
  pointer-events: auto; /* クリック可能 */
}

.l-follow-btn__btn {
  width: min(100%, 50rem);
  margin: 0 auto;
  padding: 0.8em 1em;
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  .l-follow-btn__btn {
    padding: 0.8em 1em 0.8em 0em;
    font-size: 1.8rem;
  }
}

.l-follow-btn__btn::before {
  right: 2.05em;
  width: 0.8rem;
  height: 0.8rem;
}

.l-follow-btn__btn::after {
  right: 1.5em;
  width: 3rem;
  height: 3rem;
}

.l-follow-btn__free {
  display: inline-block;
  margin-right: 1em;
  padding: 0.1em 2rem;
  border-radius: 100vmax;
  color: var(--secondary);
  background-color: var(--white);
}

.js-show {
  opacity: 1;
}

/* ------------------
 * 3. COSMETIC
 ------------------ */
.c-bgc--primary {
  background-color: var(--primary);
}

.c-bgc--gray {
  background-color: #f2f3f4;
}

.c-bgc--blue {
  background-color: var(--bg-blue);
}

.f-c-white {
  color: var(--white);
}

.f-c-secondary {
  color: var(--secondary);
}

.c-fc--link {
  color: var(--link);
}

.c-lock-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  overflow-y: scroll;
}

.c-service-01:before {
  background: center/contain no-repeat url(../img/icon-service01.svg);
}

.c-service-02:before {
  background: center/contain no-repeat url(../img/icon-service02.svg);
}

.c-service-03:before {
  background: center/contain no-repeat url(../img/icon-service03.svg);
}

.c-service-04:before {
  background: center/contain no-repeat url(../img/icon-service04.svg);
}

.c-service-05:before {
  background: center/contain no-repeat url(../img/icon-service05.svg);
}

.c-service-06:before {
  background: center/contain no-repeat url(../img/icon-service06.svg);
}

.c-service-07:before {
  background: center/contain no-repeat url(../img/icon-service07.svg);
}

.c-service-08:before {
  background: center/contain no-repeat url(../img/icon-service08.svg);
}

.c-service-09:before {
  background: center/contain no-repeat url(../img/icon-service09.svg);
}

.c-service-10:before {
  background: center/contain no-repeat url(../img/icon-service10.svg);
}

/* ------------------
 * 0. UTILITY
 ------------------ */
@media (min-width: 769px) {
  .u-pc-none {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .u-sp-none {
    display: none !important;
  }
}

.u-tac {
  text-align: center;
}

.u-tal {
  text-align: left;
}

.u-tar {
  text-align: right;
}

.u-center {
  margin: 0 auto;
}

.u-right {
  margin: 0 0 0 auto;
}

.u-left {
  margin: 0 auto 0 0;
}

.u-fw-b {
  font-weight: bold;
}

.u-fz-s {
  font-size: var(--s_tx);
}

.u-fz-common {
  font-size: var(--common_tx);
}

.u-fz-m {
  font-size: var(--m_tx);
}

.u-fz-l {
  font-size: var(--l_tx);
}

.u-fz-ll {
  font-size: var(--ll_tx);
}

.u-fw300 {
  font-weight: 300;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw600 {
  font-weight: 600;
}

.u-fw700 {
  font-weight: 700;
}

.u-fw900 {
  font-weight: 900;
}

.u-mt0 {
  margin-top: 0;
}

.u-mt10 {
  margin-top: 1rem;
}

.u-mt20 {
  margin-top: 2rem;
}

.u-mt30 {
  margin-top: 3rem;
}

.u-mt40 {
  margin-top: 4rem;
}

.u-mt50 {
  margin-top: 5rem;
}

.u-mt60 {
  margin-top: 6rem;
}

.u-mt70 {
  margin-top: 7rem;
}

.u-mt80 {
  margin-top: 8rem;
}

.u-mt90 {
  margin-top: 9rem;
}

.u-mt100 {
  margin-top: 10rem;
}

.u-mb0 {
  margin-bottom: 0;
}

.u-mb10 {
  margin-bottom: 1rem;
}

.u-mb20 {
  margin-bottom: 2rem;
}

.u-mb30 {
  margin-bottom: 3rem;
}

.u-mb40 {
  margin-bottom: 4rem;
}

.u-mb50 {
  margin-bottom: 5rem;
}

.u-mb60 {
  margin-bottom: 6rem;
}

.u-mb70 {
  margin-bottom: 7rem;
}

.u-mb80 {
  margin-bottom: 8rem;
}

.u-mb90 {
  margin-bottom: 9rem;
}

.u-mb100 {
  margin-bottom: 10rem;
}

.u-lh12 {
  line-height: 1.2;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh18 {
  line-height: 1.8;
}

.u-lh20 {
  line-height: 2;
}

.u-udline {
  text-decoration: underline;
}

.u-pt10 {
  padding-top: 1rem;
}

.u-pt15 {
  padding-top: 1.5rem;
}

.u-pt20 {
  padding-top: 2rem;
}

.u-pt30 {
  padding-top: 3rem;
}

.u-pt40 {
  padding-top: 4rem;
}

.u-pb10 {
  padding-bottom: 1rem;
}

.u-pb15 {
  padding-bottom: 1.5rem;
}

.u-pb20 {
  padding-bottom: 2rem;
}

.u-pb30 {
  padding-bottom: 3rem;
}

.u-pb40 {
  padding-bottom: 4rem;
}

.u-pl10 {
  padding-left: 1rem;
}

.u-pr10 {
  padding-right: 1rem;
}

.u-pl15 {
  padding-left: 1.5rem;
}

.u-pr15 {
  padding-right: 1.5rem;
}

.u-pl20 {
  padding-left: 2rem;
}

.u-pr20 {
  padding-right: 2rem;
}

.u-p20 {
  padding: 2rem;
}

.u-none {
  display: none;
}

.u-hidden {
  visibility: hidden;
}

.u-central {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-pointer {
  cursor: pointer;
}

/*# sourceMappingURL=renwealstyle2024.css.map */