@charset "UTF-8";
/* CSS Document */
:root {
  --main-color: #ff5400;
  --secondary-color: #ff9400;
  --sub-color: #fffd31;
  --accent-color: #032a72;
  --accent-color-rgb: 3,42,114;
  --required-color: #ff2100;
  --disabled-color: #8b8b8b;
}

.inner {
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
.inner--large {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
}

.content-inner {
  padding: 40px 0 80px;
}

.hidden {
  display: none !important;
}

.sp {
  display: none !important;
}

.bold {
  font-weight: bold;
}

.small {
  font-size: 80%;
}

.big150 {
  font-size: 150%;
}

.ly-grid {
  display: grid;
}
.ly-grid--colmun2 {
  grid-template-columns: repeat(2, calc(50% - 8px));
  gap: 16px;
}
.ly-grid--colmun3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ly-grid--colmun4 {
  grid-template-columns: repeat(4, 1fr);
}
.ly-grid--gap40 {
  gap: 40px;
}
.ly-grid--gap40.ly-grid--colmun2 {
  grid-template-columns: repeat(2, calc(50% - 20px));
}

.ly-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ly-flex--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ly-flex--align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ly-grid {
  display: grid;
}
.ly-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.ly-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
.ly-grid--gap24 {
  gap: 24px;
}

.title-main {
  background-color: var(--main-color);
  padding: 24px 0;
}
.title-main__inner {
  border-top: solid 4px #fff;
  border-bottom: solid 4px #fff;
  padding: 24px 0;
  text-align: center;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}

.title-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#fd6e29), to(#ff4509));
  background: linear-gradient(#fd6e29, #ff4509);
  padding: 40px 0;
  text-align: center;
  font-size: 5rem;
  color: #fff;
  line-height: 1;
}
.title-gradient__accent {
  padding-top: 24px;
  font-weight: bold;
  color: var(--sub-color);
  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;
}
.title-gradient__accent img {
  height: 5rem;
  width: auto;
  margin-right: 8px;
}

.title-secondary {
  position: relative;
  padding: 80px 0;
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 60px;
}
.title-secondary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  border-left: 28px solid transparent;
  border-left: 56px solid transparent;
  border-right: 56px solid transparent;
  border-top: 18px solid var(--accent-color);
}

.title-sub {
  border-left: solid 4px var(--main-color);
  font-size: 3.2rem;
  margin-bottom: 24px;
  padding-left: 6px;
  line-height: 40px;
}

.button,
.wpcf7-form-control.wpcf7-submit {
  background-color: var(--accent-color);
  padding: 8px 16px;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  border-width: 0;
}
.button:hover,
.wpcf7-form-control.wpcf7-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 20%);
}
.button:disabled,
.wpcf7-form-control.wpcf7-submit:disabled {
  color: #ccc;
  background-color: var(--disabled-color);
  pointer-events: none;
}
.button-icon,
.wpcf7-form-control.wpcf7-submit-icon {
  background-color: transparent;
}
.button-icon:hover,
.wpcf7-form-control.wpcf7-submit-icon:hover {
  text-decoration: none;
}
.button.back_button,
.wpcf7-form-control.wpcf7-submit.back_button {
  background-color: color-mix(in srgb, var(--accent-color), black 40%);
}
.button.back_button:hover,
.wpcf7-form-control.wpcf7-submit.back_button:hover {
  background-color: var(--accent-color);
}

.list-check {
  list-style-type: none;
}
.list-check li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}
.list-check li:last-child {
  margin-bottom: 0;
}
.list-check li::before {
  font-family: "material symbols rounded";
  content: "\e834";
  color: var(--main-color);
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.list-check--blue li::before {
  font-family: "material symbols outlined";
  color: var(--accent-color);
}
.list-check.hp-fnt-accent li {
  padding-left: 1.2em;
  line-height: 1;
  margin-bottom: 0.8em;
}
.list-check.hp-fnt-accent li::before {
  font-size: inherit;
  font-weight: normal;
}

.list-arrow {
  list-style-type: none;
}
.list-arrow > * {
  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;
}
.list-arrow > *::after {
  font-family: "material symbols outlined";
  content: "\e5db";
}
.list-arrow > *.pc::after, .list-arrow > *:last-child::after {
  content: none;
}
.list-arrow--orange > *::after {
  color: var(--main-color);
}

.border-box {
  border: solid 1px #ccc;
  border-radius: 4px;
  padding: 16px;
}

.bodoni-moda {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: italic;
}

.table {
  font-size: 2rem;
}
.table th, .table td {
  padding: 16px;
}
.table__th {
  background-color: #4c5a75;
  color: #fff;
  font-weight: bold;
}
.table__caption {
  background-color: var(--accent-color);
  padding: 8px 16px;
  display: inline-block;
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-weight: bold;
}

.pc-table dl {
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
}
.pc-table dl:first-child dt {
  border-top: 2px solid var(--main-color);
}
.pc-table dl:first-child dd {
  border-top: 1px solid #e5e5e5;
}
.pc-table span {
  padding: 20px 32px;
  display: block;
}
.pc-table dt {
  float: left;
  width: 20%;
  margin: 0;
}
.pc-table dd {
  float: left;
  width: 80%;
  margin: 0;
}

.arrow--down {
  width: 50%;
  padding-top: 14%;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#fd6e29), to(#ff4509));
  background: linear-gradient(#fd6e29, #ff4509);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.arrow--down--white {
  background: #fff;
}

.marker {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--sub-color)));
  background: linear-gradient(transparent 60%, var(--sub-color) 60%);
  padding: 0 6px 6px;
  line-height: 1;
}

.check-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.check-circle::before {
  font-family: "material symbols rounded";
  content: "\e2e6";
  color: var(--main-color);
  margin-right: 4px;
}

.dot-text {
  position: relative;
}
.dot-text::before {
  content: "●";
  font-size: 20%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.bg-white {
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
}
.bg-white__title {
  text-align: center;
  font-weight: bold;
  font-size: 6rem;
}
.bg-white__title--orange {
  color: var(--main-color);
}
.bg-white__detail {
  font-size: 2.4rem;
  text-align: center;
}
.bg-white__detail .list-arrow {
  margin-bottom: 60px;
}

#header {
  background-color: transparent;
}

.home #header,
.wp-singular #header {
  background: url(../images/mv_bg.png) no-repeat center top;
  background-size: cover;
}

#logo a {
  color: #fff;
  font-weight: bold;
}
#logo a:hover {
  text-decoration: none;
}

#header-fnav-area #header-fnav-btn a {
  background-color: #fff;
  color: var(--main-color);
}
#header-fnav-area #header-fnav-btn a .fa-angle-down::before {
  background-color: var(--main-color);
}

.header-info {
  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;
  margin-top: 8px;
}

.link-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  line-height: 1;
}
.link-btn:hover {
  text-decoration: none;
}
.link-btn__tel {
  color: var(--sub-color) !important;
  font-size: 2.6rem;
}
.link-btn__tel::before {
  width: 15px;
  height: 24px;
  background: url("../images/icon_tel.png") no-repeat left center;
}
.link-btn__form {
  color: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fd6e29), to(#ff4509));
  background: linear-gradient(#fd6e29, #ff4509);
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}
.link-btn__form::before {
  width: 22px;
  height: 20px;
  background: url("../images/icon_mail.png") no-repeat left center;
}
.link-btn__form--large {
  font-size: 4rem;
  padding: 16px;
}
.link-btn__form--large::before {
  width: 50px;
  height: 40px;
  margin-right: 8px;
}
.link-btn::before {
  content: "";
  background-size: contain;
  margin-right: 4px;
}

/* 吹き出し */
.baloon {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  padding: 16px;
  border-radius: 8px;
  background-color: #ffefe6;
  line-height: 1.5;
}

.baloon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #ffefe6 transparent transparent;
  translate: -100% -50%;
}

/* 正円＋ナンバーのコンテンツ */
.circle-content__container {
  position: relative;
}
.circle-content__number {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  color: #fff;
  width: 9rem;
  height: 9rem;
  text-align: center;
  padding-top: 1rem;
  padding-right: 8px;
  border-radius: 50%;
  background-color: #fc6e2a;
  border: solid 6px #fff;
}
.circle-content__number--blue {
  background-color: var(--accent-color);
}
.circle-content__content {
  font-size: 2.4rem;
  text-align: center;
  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: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
}
.circle-content--orange .circle-content__content {
  background-color: var(--main-color);
  color: #fff;
}
.circle-content--orange .circle-content__number {
  background-color: #fff;
  border-color: var(--main-color);
  color: var(--main-color);
}

#footer {
  border-color: var(--main-color);
}

.footer-01,
.footer-02 {
  background-color: var(--accent-color);
}

/* MV */
.mv {
  background: url("../images/mv_bg.png") no-repeat center top;
  background-size: cover;
  margin-top: -92px;
  padding-top: 132px;
  padding-bottom: 80px;
}
.mv__catch {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 40px;
}

/* ジム利用者が求めるもの */
.promise {
  gap: 4px 4px;
}
.promise__detail {
  position: relative;
}
.promise__text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 16px 0;
  background-color: rgba(3, 42, 114, 0.7);
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  width: 100%;
}

/* こんなお悩み弊社が解決してみせます */
.problem {
  padding-top: 80px;
}
.problem__title {
  font-weight: bold;
  font-size: 5rem;
  color: var(--main-color);
  text-align: center;
  background: url("../images/problem_bg.png") no-repeat left bottom #fff;
  background-size: cover;
  min-height: 18.72vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.problem__detail {
  background: -webkit-gradient(linear, left top, left bottom, from(#fd6e29), to(#ff4509));
  background: linear-gradient(#fd6e29, #ff4509);
  padding: 40px 0 0;
}
.problem__support {
  background-color: #ff4509;
  padding: 80px 0;
}

/* 施設ご利用のお客様からこんな声が上がってませんか？ */
.worries {
  background: -webkit-gradient(linear, left top, left bottom, from(#1f4fa9), to(#032a72));
  background: linear-gradient(#1f4fa9, #032a72);
  padding: 120px 0 80px;
}
.worries__main-title {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
}
.worries__main-text {
  font-size: 3rem;
  background: url("../images/worries-main-bg.png") no-repeat left 16px bottom 0px #fff;
  background-size: auto 90%;
  border-radius: 16px;
  padding: 80px 8px;
  text-align: center;
  margin-bottom: 40px;
}
.worries__main-text .list-check {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 60px;
}

.worries-list {
  background: url("../images/worries-list-bg.png") no-repeat right 16px bottom 0px color-mix(in srgb, var(--accent-color), white 92%);
  background-size: auto 90%;
  padding: 24px 8px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.worries-list__etc {
  margin-left: 3em;
}

.resolve {
  background-color: #fff;
}
.resolve__header {
  margin-bottom: 80px;
}
.resolve__header-item {
  background-color: var(--main-color);
  border-radius: 16px;
  text-align: center;
  padding: 16px 4px;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.support-detail {
  background: url("../images/worries-main-bg.png") left bottom no-repeat;
  background-size: auto 90%;
  padding-left: 120px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 2.4rem;
}
.support-detail__container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 80px auto;
}
.support-detail__resolve {
  margin-left: 20px;
  padding-top: 24px;
  font-size: 150%;
  font-weight: bold;
}

/* 月額料金 */
.price-monthly {
  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;
  background-color: var(--main-color);
  border-radius: 8px;
  padding: 24px;
}
.price-monthly__head {
  color: #fff;
  line-height: 1;
  padding-bottom: 24px;
}
.price-monthly__title {
  font-weight: bold;
  font-size: 5rem;
  letter-spacing: -0.1em;
  padding-top: 12px;
}
.price-monthly__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  line-height: 1.8;
}
.price-monthly__detail-target {
  background-color: var(--accent-color);
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
  padding: 16px 8px;
}
.price-monthly__detail-point {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 24px auto;
}
.price-monthly__info {
  background-color: color-mix(in srgb, var(--main-color), white 90%);
  border-radius: 8px;
  padding: 16px;
}
.price-monthly__main {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
}
.price-monthly__number {
  font-size: 150%;
  color: var(--main-color);
}

.price-option {
  position: relative;
  margin-top: 108px;
  margin-bottom: 40px;
}
.price-option::before {
  font-family: "material symbols outlined";
  content: "\e145";
  font-size: 6rem;
  line-height: 1;
  color: var(--main-color);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-100% - 24px));
          transform: translate(-50%, calc(-100% - 24px));
}
.price-option__detail {
  border-radius: 4px;
  background: url("../images/price-option__detail-bg") no-repeat right top #fff;
  background-size: contain;
}

/* 弊社が選ばれる３つの理由​ */
.reason {
  font-size: 2rem;
  line-height: 1.6;
  padding: 80px 0;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 480px auto;
  border-top: solid 4px var(--main-color);
  position: relative;
}
.reason::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, transparent 400px, #fff 470px);
}
.reason .inner {
  position: relative;
  z-index: 1;
}
.reason p {
  text-shadow: 0px 0px 1px #fff, 0px 0px 2px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff, 0px 0px 5px #fff, 0px 0px 6px #fff;
}
.reason__title {
  font-size: 3.2rem;
  margin: 24px 0;
}
.reason__title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--sub-color)));
  background: linear-gradient(transparent 60%, var(--sub-color) 60%);
  padding: 0 6px 6px;
}
.reason__title--secondary {
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 8px;
}
.reason__point {
  border: solid 1px #ccc;
  border-radius: 8px;
  padding: 16px;
  list-style-type: none;
  display: inline-block;
}
.reason__heading {
  font-family: "Bodoni Moda", serif;
  font-size: 4rem;
  color: var(--main-color);
  line-height: 1;
  font-style: italic;
  letter-spacing: 1px;
  border-bottom: solid 1px;
  display: inline-block;
}
.reason__head {
  border: solid 1px #ccc;
  border-radius: 8px;
  padding: 8px;
  display: grid;
  grid-template-rows: 41px 1fr;
  margin-bottom: 24px;
}
.reason__excerpt {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  font-size: 2rem;
}

#reason-01 {
  background-image: url("../images/promise-03_pc.png");
}
#reason-02 {
  background-image: url("../images/reason-02.png");
}
#reason-03 {
  background-image: url("../images/promise-01_pc.png");
  background-size: contain;
}

/* 導入までの流れ */
.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 314px));
  gap: 16px 48px;
  position: relative;
}
.flow__container {
  background-color: color-mix(in srgb, var(--main-color), white 90%);
  padding: 80px 0;
}
.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;
  position: relative;
  padding: 31px 16px 16px;
  border-top: solid 1px var(--main-color);
  background-color: #fff;
}
.flow__list::before {
  content: url("../images/flow_icon-01.png");
  text-align: center;
  padding-bottom: 16px;
}
.flow__list:nth-child(2)::before {
  content: url("../images/flow_icon-02.png");
}
.flow__list:nth-child(3)::before {
  content: url("../images/flow_icon-03.png");
}
.flow__list:nth-child(4)::before {
  content: url("../images/flow_icon-04.png");
}
.flow__list::after {
  font-family: "material symbols outlined";
  content: "\e5df";
  color: var(--main-color);
  font-size: 3.2rem;
  position: absolute;
  right: -4px;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}
.flow__list:last-child::after {
  content: none;
}
.flow__title {
  text-align: center;
  font-weight: bold;
  color: var(--main-color);
  font-size: 2.4rem;
}
.flow__detail {
  padding-top: 16px;
}
.flow__number {
  position: absolute;
  top: 0;
  left: -2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-right: 8px;
  width: 90px;
  height: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  background: url("../images/flow_number.png") no-repeat left top;
}

/* FAQ */
.faq {
  background-color: color-mix(in srgb, var(--main-color), white 90%);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 32px;
}
.faq__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.faq__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 16px;
  border-radius: 0 16px 0 16px;
}
.faq__q::before, .faq__a::before {
  font-family: "Bodoni Moda", serif;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  line-height: 3rem;
  text-align: center;
  margin-right: 8px;
  margin-top: -2px;
}
.faq__q::before {
  content: "Q";
  background-color: var(--secondary-color);
}
.faq__a::before {
  content: "A";
  background-color: var(--accent-color);
}

#footer .faq {
  background-color: transparent;
}

/* 作業風景 */
.post-images {
  display: none;
}

.cleaning-scenes {
  width: 1200px;
}
.cleaning-scenes__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.cleaning-scenes__header .button {
  width: 160px;
  margin-top: 16px;
}
.cleaning-scenes__descriptions {
  display: grid;
  justify-items: start;
  grid-template-rows: calc(2.4rem + 6px + 8px) 1fr 63px;
  margin-left: 16px;
}
.cleaning-scenes__title {
  font-size: 2.4rem;
  line-height: 1;
  display: inline-block;
  border-bottom: solid 4px var(--main-color);
  margin-bottom: 8px;
  padding: 0 4px 2px;
}
.cleaning-scenes__image {
  width: 260px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.modal__content {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  width: min(80%, 880px);
  padding: 40px;
}
.modal__close-btn {
  position: absolute;
  top: 8px;
  right: 4px;
  color: #ccc;
  z-index: 1;
}

/* スライド */
.slider .swiper-button-prev,
.slider .swiper-button-next {
  color: var(--secondary-color);
}
.slider-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
}
.slider-thumbnail {
  height: 84px;
  margin-top: 8px;
}
.slider-thumbnail .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 12.5%;
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.slider-thumbnail .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-slide {
  text-align: center;
  position: relative;
}

/* 問い合わせフォーム */
.Form-Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.Form-Item-Label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  margin-bottom: 4px;
}
.Form-Item-Label-Required {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background-color: var(--required-color);
  border-radius: 2px;
  padding: 2px 4px 3px;
  margin-right: 4px;
}

/* ポップアプ */
.popup {
  position: fixed;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: solid 3px;
  border-radius: 16px;
  padding: 16px;
  background-color: #fff;
}
.popup__title {
  color: #23368d;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.popup__text {
  font-size: 1.4rem;
}
.popup__text > p {
  margin-bottom: 4px;
}
.popup__text > p:last-child {
  margin-bottom: 0;
}
.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #535252;
  background-color: transparent;
  padding: 0;
}

.float-banner {
  position: fixed;
  bottom: 16px;
  left: 0;
  background-color: rgba(var(--accent-color-rgb), 0.6);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 0 8px 8px 0;
  padding: 8px;
  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;
  z-index: 2;
}
.float-banner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  line-height: 1;
}
.float-banner a:hover {
  text-decoration: none;
}
.float-banner a::before {
  content: "";
  background-size: contain;
  margin-right: 4px;
}

.pagetop:hover {
  text-decoration: none;
}
.pagetop span {
  line-height: 50px;
}

@media screen and (max-width: 991px) {
  /* tablet */
  /* tablet end */
}
@media screen and (max-width: 767px) {
  /* phone */
  .pc {
    display: none !important;
  }
  .sp {
    display: inline-block !important;
  }
  .sp-block {
    display: block !important;
  }
  .ly-sp-grid--colmun2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ly-sp--triangle {
    display: grid;
  }
  .ly-sp--triangle:not(.ly-grid--gap24) {
    gap: 16px 0;
  }
  .ly-sp--triangle.ly-grid--gap24 {
    padding-right: 24px;
  }
  .ly-sp--triangle.ly-grid--colmun3 {
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
  }
  .ly-sp--triangle.ly-grid--colmun3 .ly-grid--colmun3__item {
    grid-column: auto;
  }
  .ly-sp--triangle.ly-grid--colmun3 .ly-grid--colmun3__item:first-child {
    width: calc(50% - 12px);
    grid-column: 1/-1;
    justify-self: center;
  }
  .title-secondary {
    padding: 24px 0;
    font-size: 7.1428571429vw;
    font-weight: normal;
    margin-bottom: auto;
  }
  .title-gradient {
    font-size: 2.4rem;
    padding: 24px 0;
  }
  .title-gradient__accent {
    padding-top: 16px;
    line-height: 1.5;
  }
  .title-gradient__accent img {
    height: 3rem;
  }
  .table {
    font-size: inherit;
  }
  .table th, .table td {
    padding: 8px;
  }
  .table__caption {
    padding: 4px 8px;
  }
  .pc-table dt, .pc-table dd {
    float: none;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .pc-table .span {
    padding: 0;
  }
  .pc-table dt {
    font-weight: bold;
    padding: 8px 12px 0;
  }
  .pc-table dd {
    border-top: none !important;
    padding: 4px 12px 8px;
  }
  .list-check li {
    padding-left: 21px;
  }
  .list-check li::before {
    font-size: 1.8rem;
  }
  .check-circle {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .bg-white {
    padding: 8px;
  }
  .bg-white__title {
    font-size: 2.4rem;
  }
  .bg-white__detail {
    font-size: 2.2rem;
  }
  .link-btn__form--large {
    font-size: 2.4rem;
    padding: 8px;
  }
  #header::after {
    content: none;
  }
  #header .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .wrap::after {
    content: none;
  }
  #header-right {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .circle-content__number {
    font-size: 5rem;
    width: 7rem;
    height: 7rem;
    padding-top: 5px;
    border-width: 4px;
  }
  .circle-content__content {
    line-height: 1.1;
    font-size: 2rem;
  }
  .mv {
    padding-bottom: 40px;
  }
  .mv__catch {
    gap: 16px;
  }
  .promise__text {
    font-size: 2rem;
  }
  .problem {
    padding-top: 40px;
  }
  .problem__title {
    font-size: 2.4rem;
    line-height: 1.5;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-size: contain;
    padding-bottom: 30px;
  }
  .problem__support {
    padding: 40px 0;
  }
  .worries-list {
    background-size: auto 60%;
  }
  .worries__main-title {
    font-size: 3.4rem;
  }
  .worries__main-text {
    font-size: calc((100vw - 48px) / 16);
    background-size: auto 70%;
    margin-bottom: 0;
  }
  .worries__main-text p {
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .worries__main-text span {
    line-height: 1.5;
  }
  .worries .list-check {
    font-size: 120%;
  }
  .resolve__header {
    width: 96%;
    margin-bottom: 40px;
  }
  .resolve__header-item {
    font-size: 2.4rem;
    border-radius: 8px;
  }
  .resolve .problem {
    margin-top: 40px;
  }
  .support-detail {
    background: url("../images/worries-main-bg.png") left top no-repeat;
    background-size: 80px auto;
    padding-left: 80px;
    font-size: 1.6rem;
  }
  .support-detail__container {
    margin: 40px 0;
  }
  .support-detail__resolve {
    margin-left: -80px;
    text-align: center;
  }
  .support-detail .baloon {
    min-height: 104px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .price-monthly {
    padding: 16px;
  }
  .price-monthly__title {
    font-size: 2.8rem;
  }
  .price-monthly__main {
    font-size: 3rem;
  }
  .price-option__title {
    font-size: 4rem;
  }
  .price-option__detail-option {
    text-shadow: 0px 0px 1px #fff, 0px 0px 2px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff, 0px 0px 5px #fff, 0px 0px 6px #fff;
  }
  .reason {
    background-position: left top;
    background-size: cover;
    color: #fff;
    border-bottom: none;
  }
  .reason::before {
    background: rgba(0, 0, 0, 0.7);
  }
  .reason .reason__heading {
    text-shadow: 1px 1px #000;
  }
  .reason__title {
    text-shadow: 2px 2px #333;
  }
  .reason__point {
    display: block;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
  }
  .reason p {
    text-shadow: none;
  }
  #reason-03 {
    background-size: cover;
  }
  .cleaning-scenes {
    width: 100%;
  }
  .cleaning-scenes__header {
    display: block;
    margin-bottom: 40px;
  }
  .cleaning-scenes__descriptions {
    margin-left: 0;
    display: block;
  }
  .cleaning-scenes__image {
    margin-top: 16px;
  }
  .flow {
    display: block;
  }
  .flow__list {
    margin-bottom: 24px;
  }
  .flow__list:last-child {
    margin-bottom: 0;
  }
  .flow__list::after {
    content: none;
  }
  .flow__container {
    padding: 24px 16px;
  }
  .modal__content {
    width: 96%;
    padding: 24px;
  }
  .modal__close-btn {
    top: 0px;
    right: -4px;
  }
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    display: none;
  }
  .slider-thumbnail {
    height: 27px;
  }
  .Form-Item {
    display: block;
  }
  /* phone end */
}
@media screen and (min-width: 992px) {
  /* pc only */
  .table-wrap {
    margin-bottom: 0;
  }
  .table-wrap::after {
    display: none;
  }
  /* pc only end */
}
.hp-m0 {
  margin: 0px !important;
}
.hp-mt0 {
  margin-top: 0px !important;
}
.hp-mb0 {
  margin-bottom: 0px !important;
}
.hp-ml0 {
  margin-left: 0px !important;
}
.hp-mr0 {
  margin-right: 0px !important;
}

.hp-p0 {
  padding: 0px !important;
}
.hp-pt0 {
  padding-top: 0px !important;
}
.hp-pb0 {
  padding-bottom: 0px !important;
}
.hp-pl0 {
  padding-left: 0px !important;
}
.hp-pr0 {
  padding-right: 0px !important;
}

.hp-m4 {
  margin: 4px !important;
}
.hp-mt4 {
  margin-top: 4px !important;
}
.hp-mb4 {
  margin-bottom: 4px !important;
}
.hp-ml4 {
  margin-left: 4px !important;
}
.hp-mr4 {
  margin-right: 4px !important;
}

.hp-p4 {
  padding: 4px !important;
}
.hp-pt4 {
  padding-top: 4px !important;
}
.hp-pb4 {
  padding-bottom: 4px !important;
}
.hp-pl4 {
  padding-left: 4px !important;
}
.hp-pr4 {
  padding-right: 4px !important;
}

.hp-m8 {
  margin: 8px !important;
}
.hp-mt8 {
  margin-top: 8px !important;
}
.hp-mb8 {
  margin-bottom: 8px !important;
}
.hp-ml8 {
  margin-left: 8px !important;
}
.hp-mr8 {
  margin-right: 8px !important;
}

.hp-p8 {
  padding: 8px !important;
}
.hp-pt8 {
  padding-top: 8px !important;
}
.hp-pb8 {
  padding-bottom: 8px !important;
}
.hp-pl8 {
  padding-left: 8px !important;
}
.hp-pr8 {
  padding-right: 8px !important;
}

.hp-m12 {
  margin: 12px !important;
}
.hp-mt12 {
  margin-top: 12px !important;
}
.hp-mb12 {
  margin-bottom: 12px !important;
}
.hp-ml12 {
  margin-left: 12px !important;
}
.hp-mr12 {
  margin-right: 12px !important;
}

.hp-p12 {
  padding: 12px !important;
}
.hp-pt12 {
  padding-top: 12px !important;
}
.hp-pb12 {
  padding-bottom: 12px !important;
}
.hp-pl12 {
  padding-left: 12px !important;
}
.hp-pr12 {
  padding-right: 12px !important;
}

.hp-m16 {
  margin: 16px !important;
}
.hp-mt16 {
  margin-top: 16px !important;
}
.hp-mb16 {
  margin-bottom: 16px !important;
}
.hp-ml16 {
  margin-left: 16px !important;
}
.hp-mr16 {
  margin-right: 16px !important;
}

.hp-p16 {
  padding: 16px !important;
}
.hp-pt16 {
  padding-top: 16px !important;
}
.hp-pb16 {
  padding-bottom: 16px !important;
}
.hp-pl16 {
  padding-left: 16px !important;
}
.hp-pr16 {
  padding-right: 16px !important;
}

.hp-m20 {
  margin: 20px !important;
}
.hp-mt20 {
  margin-top: 20px !important;
}
.hp-mb20 {
  margin-bottom: 20px !important;
}
.hp-ml20 {
  margin-left: 20px !important;
}
.hp-mr20 {
  margin-right: 20px !important;
}

.hp-p20 {
  padding: 20px !important;
}
.hp-pt20 {
  padding-top: 20px !important;
}
.hp-pb20 {
  padding-bottom: 20px !important;
}
.hp-pl20 {
  padding-left: 20px !important;
}
.hp-pr20 {
  padding-right: 20px !important;
}

.hp-m24 {
  margin: 24px !important;
}
.hp-mt24 {
  margin-top: 24px !important;
}
.hp-mb24 {
  margin-bottom: 24px !important;
}
.hp-ml24 {
  margin-left: 24px !important;
}
.hp-mr24 {
  margin-right: 24px !important;
}

.hp-p24 {
  padding: 24px !important;
}
.hp-pt24 {
  padding-top: 24px !important;
}
.hp-pb24 {
  padding-bottom: 24px !important;
}
.hp-pl24 {
  padding-left: 24px !important;
}
.hp-pr24 {
  padding-right: 24px !important;
}

.hp-m28 {
  margin: 28px !important;
}
.hp-mt28 {
  margin-top: 28px !important;
}
.hp-mb28 {
  margin-bottom: 28px !important;
}
.hp-ml28 {
  margin-left: 28px !important;
}
.hp-mr28 {
  margin-right: 28px !important;
}

.hp-p28 {
  padding: 28px !important;
}
.hp-pt28 {
  padding-top: 28px !important;
}
.hp-pb28 {
  padding-bottom: 28px !important;
}
.hp-pl28 {
  padding-left: 28px !important;
}
.hp-pr28 {
  padding-right: 28px !important;
}

.hp-m32 {
  margin: 32px !important;
}
.hp-mt32 {
  margin-top: 32px !important;
}
.hp-mb32 {
  margin-bottom: 32px !important;
}
.hp-ml32 {
  margin-left: 32px !important;
}
.hp-mr32 {
  margin-right: 32px !important;
}

.hp-p32 {
  padding: 32px !important;
}
.hp-pt32 {
  padding-top: 32px !important;
}
.hp-pb32 {
  padding-bottom: 32px !important;
}
.hp-pl32 {
  padding-left: 32px !important;
}
.hp-pr32 {
  padding-right: 32px !important;
}

.hp-m36 {
  margin: 36px !important;
}
.hp-mt36 {
  margin-top: 36px !important;
}
.hp-mb36 {
  margin-bottom: 36px !important;
}
.hp-ml36 {
  margin-left: 36px !important;
}
.hp-mr36 {
  margin-right: 36px !important;
}

.hp-p36 {
  padding: 36px !important;
}
.hp-pt36 {
  padding-top: 36px !important;
}
.hp-pb36 {
  padding-bottom: 36px !important;
}
.hp-pl36 {
  padding-left: 36px !important;
}
.hp-pr36 {
  padding-right: 36px !important;
}

.hp-m40 {
  margin: 40px !important;
}
.hp-mt40 {
  margin-top: 40px !important;
}
.hp-mb40 {
  margin-bottom: 40px !important;
}
.hp-ml40 {
  margin-left: 40px !important;
}
.hp-mr40 {
  margin-right: 40px !important;
}

.hp-p40 {
  padding: 40px !important;
}
.hp-pt40 {
  padding-top: 40px !important;
}
.hp-pb40 {
  padding-bottom: 40px !important;
}
.hp-pl40 {
  padding-left: 40px !important;
}
.hp-pr40 {
  padding-right: 40px !important;
}

.hp-mt5 {
  margin-top: 5px !important;
}
.hp-mt10 {
  margin-top: 10px !important;
}
.hp-mt80 {
  margin-top: 80px;
}
.hp-mb60 {
  margin-bottom: 60px !important;
}
.hp-mb80 {
  margin-bottom: 80px !important;
}
.hp-ml2 {
  margin-left: 2px !important;
}
.hp-mlauto {
  margin-left: auto !important;
}
.hp-mr2 {
  margin-right: 2px !important;
}
.hp-mr10 {
  margin-right: 10px !important;
}

.hp-p80 {
  padding: 80px !important;
}
.hp-pt14 {
  padding-top: 14px !important;
}
.hp-pt80 {
  padding-top: 80px !important;
}

.hp-fnt10 {
  font-size: 1rem !important;
}
.hp-fnt11 {
  font-size: 1.1rem !important;
}
.hp-fnt12 {
  font-size: 1.2rem !important;
}
.hp-fnt14 {
  font-size: 1.4rem !important;
}
.hp-fnt16 {
  font-size: 1.6rem !important;
}
.hp-fnt18 {
  font-size: 1.8rem !important;
}
.hp-fnt20 {
  font-size: 2rem !important;
}
.hp-fnt24 {
  font-size: 2.4rem !important;
}
.hp-fnt30 {
  font-size: 3rem !important;
}
.hp-fnt40 {
  font-size: 4rem !important;
}
.hp-fnt-accent {
  font-size: 150%;
}
.hp-fnt-orange {
  color: var(--main-color) !important;
}

.hp-bold {
  font-weight: bold !important;
}

.hp-center {
  text-align: center !important;
}

@media screen and (max-width: 767px) {
  .hp-sp-m0 {
    margin: 0px !important;
  }
  .hp-sp-mt0 {
    margin-top: 0px !important;
  }
  .hp-sp-mb0 {
    margin-bottom: 0px !important;
  }
  .hp-sp-ml0 {
    margin-left: 0px !important;
  }
  .hp-sp-mr0 {
    margin-right: 0px !important;
  }
  .hp-sp-p0 {
    padding: 0px !important;
  }
  .hp-sp-pt0 {
    padding-top: 0px !important;
  }
  .hp-sp-pb0 {
    padding-bottom: 0px !important;
  }
  .hp-sp-pl0 {
    padding-left: 0px !important;
  }
  .hp-sp-pr0 {
    padding-right: 0px !important;
  }
  .hp-sp-m4 {
    margin: 4px !important;
  }
  .hp-sp-mt4 {
    margin-top: 4px !important;
  }
  .hp-sp-mb4 {
    margin-bottom: 4px !important;
  }
  .hp-sp-ml4 {
    margin-left: 4px !important;
  }
  .hp-sp-mr4 {
    margin-right: 4px !important;
  }
  .hp-sp-p4 {
    padding: 4px !important;
  }
  .hp-sp-pt4 {
    padding-top: 4px !important;
  }
  .hp-sp-pb4 {
    padding-bottom: 4px !important;
  }
  .hp-sp-pl4 {
    padding-left: 4px !important;
  }
  .hp-sp-pr4 {
    padding-right: 4px !important;
  }
  .hp-sp-m8 {
    margin: 8px !important;
  }
  .hp-sp-mt8 {
    margin-top: 8px !important;
  }
  .hp-sp-mb8 {
    margin-bottom: 8px !important;
  }
  .hp-sp-ml8 {
    margin-left: 8px !important;
  }
  .hp-sp-mr8 {
    margin-right: 8px !important;
  }
  .hp-sp-p8 {
    padding: 8px !important;
  }
  .hp-sp-pt8 {
    padding-top: 8px !important;
  }
  .hp-sp-pb8 {
    padding-bottom: 8px !important;
  }
  .hp-sp-pl8 {
    padding-left: 8px !important;
  }
  .hp-sp-pr8 {
    padding-right: 8px !important;
  }
  .hp-sp-m12 {
    margin: 12px !important;
  }
  .hp-sp-mt12 {
    margin-top: 12px !important;
  }
  .hp-sp-mb12 {
    margin-bottom: 12px !important;
  }
  .hp-sp-ml12 {
    margin-left: 12px !important;
  }
  .hp-sp-mr12 {
    margin-right: 12px !important;
  }
  .hp-sp-p12 {
    padding: 12px !important;
  }
  .hp-sp-pt12 {
    padding-top: 12px !important;
  }
  .hp-sp-pb12 {
    padding-bottom: 12px !important;
  }
  .hp-sp-pl12 {
    padding-left: 12px !important;
  }
  .hp-sp-pr12 {
    padding-right: 12px !important;
  }
  .hp-sp-m16 {
    margin: 16px !important;
  }
  .hp-sp-mt16 {
    margin-top: 16px !important;
  }
  .hp-sp-mb16 {
    margin-bottom: 16px !important;
  }
  .hp-sp-ml16 {
    margin-left: 16px !important;
  }
  .hp-sp-mr16 {
    margin-right: 16px !important;
  }
  .hp-sp-p16 {
    padding: 16px !important;
  }
  .hp-sp-pt16 {
    padding-top: 16px !important;
  }
  .hp-sp-pb16 {
    padding-bottom: 16px !important;
  }
  .hp-sp-pl16 {
    padding-left: 16px !important;
  }
  .hp-sp-pr16 {
    padding-right: 16px !important;
  }
  .hp-sp-m20 {
    margin: 20px !important;
  }
  .hp-sp-mt20 {
    margin-top: 20px !important;
  }
  .hp-sp-mb20 {
    margin-bottom: 20px !important;
  }
  .hp-sp-ml20 {
    margin-left: 20px !important;
  }
  .hp-sp-mr20 {
    margin-right: 20px !important;
  }
  .hp-sp-p20 {
    padding: 20px !important;
  }
  .hp-sp-pt20 {
    padding-top: 20px !important;
  }
  .hp-sp-pb20 {
    padding-bottom: 20px !important;
  }
  .hp-sp-pl20 {
    padding-left: 20px !important;
  }
  .hp-sp-pr20 {
    padding-right: 20px !important;
  }
  .hp-sp-m24 {
    margin: 24px !important;
  }
  .hp-sp-mt24 {
    margin-top: 24px !important;
  }
  .hp-sp-mb24 {
    margin-bottom: 24px !important;
  }
  .hp-sp-ml24 {
    margin-left: 24px !important;
  }
  .hp-sp-mr24 {
    margin-right: 24px !important;
  }
  .hp-sp-p24 {
    padding: 24px !important;
  }
  .hp-sp-pt24 {
    padding-top: 24px !important;
  }
  .hp-sp-pb24 {
    padding-bottom: 24px !important;
  }
  .hp-sp-pl24 {
    padding-left: 24px !important;
  }
  .hp-sp-pr24 {
    padding-right: 24px !important;
  }
  .hp-sp-m28 {
    margin: 28px !important;
  }
  .hp-sp-mt28 {
    margin-top: 28px !important;
  }
  .hp-sp-mb28 {
    margin-bottom: 28px !important;
  }
  .hp-sp-ml28 {
    margin-left: 28px !important;
  }
  .hp-sp-mr28 {
    margin-right: 28px !important;
  }
  .hp-sp-p28 {
    padding: 28px !important;
  }
  .hp-sp-pt28 {
    padding-top: 28px !important;
  }
  .hp-sp-pb28 {
    padding-bottom: 28px !important;
  }
  .hp-sp-pl28 {
    padding-left: 28px !important;
  }
  .hp-sp-pr28 {
    padding-right: 28px !important;
  }
  .hp-sp-m32 {
    margin: 32px !important;
  }
  .hp-sp-mt32 {
    margin-top: 32px !important;
  }
  .hp-sp-mb32 {
    margin-bottom: 32px !important;
  }
  .hp-sp-ml32 {
    margin-left: 32px !important;
  }
  .hp-sp-mr32 {
    margin-right: 32px !important;
  }
  .hp-sp-p32 {
    padding: 32px !important;
  }
  .hp-sp-pt32 {
    padding-top: 32px !important;
  }
  .hp-sp-pb32 {
    padding-bottom: 32px !important;
  }
  .hp-sp-pl32 {
    padding-left: 32px !important;
  }
  .hp-sp-pr32 {
    padding-right: 32px !important;
  }
  .hp-sp-m36 {
    margin: 36px !important;
  }
  .hp-sp-mt36 {
    margin-top: 36px !important;
  }
  .hp-sp-mb36 {
    margin-bottom: 36px !important;
  }
  .hp-sp-ml36 {
    margin-left: 36px !important;
  }
  .hp-sp-mr36 {
    margin-right: 36px !important;
  }
  .hp-sp-p36 {
    padding: 36px !important;
  }
  .hp-sp-pt36 {
    padding-top: 36px !important;
  }
  .hp-sp-pb36 {
    padding-bottom: 36px !important;
  }
  .hp-sp-pl36 {
    padding-left: 36px !important;
  }
  .hp-sp-pr36 {
    padding-right: 36px !important;
  }
  .hp-sp-m40 {
    margin: 40px !important;
  }
  .hp-sp-mt40 {
    margin-top: 40px !important;
  }
  .hp-sp-mb40 {
    margin-bottom: 40px !important;
  }
  .hp-sp-ml40 {
    margin-left: 40px !important;
  }
  .hp-sp-mr40 {
    margin-right: 40px !important;
  }
  .hp-sp-p40 {
    padding: 40px !important;
  }
  .hp-sp-pt40 {
    padding-top: 40px !important;
  }
  .hp-sp-pb40 {
    padding-bottom: 40px !important;
  }
  .hp-sp-pl40 {
    padding-left: 40px !important;
  }
  .hp-sp-pr40 {
    padding-right: 40px !important;
  }
  .hp-sp-fnt18 {
    font-size: 1.8rem !important;
  }
  .hp-sp-left {
    text-align: left !important;
  }
}/*# sourceMappingURL=style.css.map */