@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Shippori+Antique&display=swap");
@import url("lib/ress.min.css");
@import url("lib/remodal.css");
@import url("lib/remodal-default-theme.css");
@import url("lib/slick.css");
@import url("lib/simplebar.min.css");
:root {
  /* base・neutral（Figma ベース・ニュートラル） */
  --white: #FFFFFF;
  --black: #221815;
  --black-rgb: 0, 0, 0;
  --gray: #565656;
  --gray-dark: #3E3A39;
  --light-gray: #F7F8F8;
  /* brand・accent（Figma ブランド・アクセント） */
  --light-blue: #0094AC;
  --light-blue-rgb: 0, 148, 172;
  --cyan-light: #32B2C7;
  --cyan-pale: #A8DBE3;
  --cyan-lighter: #BFE4EA;
  --teal: #73989E;
  --blue: #418FDE;
  --red: #EA5539;
  --red-dark: #E60012;
  --green: #33AD37;
  --green-alt: #45B035;
  --yellow: #FCF758;
  --orange: #F99123;
  /* font (Figma 使用フォントをベースに定義) */
  /* main Japanese (Zen Maru Gothic) */
  --font-1: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  /* Latin accent (Poppins) */
  --font-2: "Poppins", "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  /* decorative Japanese (Shippori Antique など) */
  --font-3: "Shippori Antique", "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  /* transition */
  --hover-transition: .2s ease;
}

html {
  font-size: 0.7320644217vw;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  color: var(--gray);
  font-size: max(10px, 1.6rem);
  font-family: var(--font-1);
  font-weight: 500;
  line-height: 1.5;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}

* {
  position: relative;
  z-index: 1;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: color var(--hover-transition), background-color var(--hover-transition), opacity var(--hover-transition);
}
a:hover {
  opacity: 0.6;
}

button:hover {
  opacity: 0.8;
}

p + p {
  padding-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  p + p {
    padding-top: 1.5rem;
  }
}

li {
  list-style-type: none;
}

img,
svg {
  vertical-align: middle;
  image-rendering: auto;
  width: 100%;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
}

:focus-visible {
  outline: 2px solid var(--gray) !important;
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* components */
.c-inner {
  margin: 0 auto;
  width: 112rem;
}
@media screen and (max-width: 767px) {
  .c-inner {
    width: 34.2rem;
  }
}

.c-ttl-1 {
  text-align: center;
}
.c-ttl-1 .en {
  color: var(--cyan-light);
  font-size: 7.6rem;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-ttl-1 .en {
    font-size: 6rem;
    margin: 0 0 0.5rem;
  }
}
.c-ttl-1 .ja {
  color: var(--gray);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.7333333333;
}
@media screen and (max-width: 767px) {
  .c-ttl-1 .ja {
    font-size: 2.4rem;
  }
}

.c-marker {
  --marker-pos: 78%;
  background: linear-gradient(transparent var(--marker-pos), var(--yellow) var(--marker-pos));
  width: fit-content;
}

.c-roundbox {
  background: white;
  border-radius: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-roundbox {
    border-radius: 2.4rem;
  }
}

.c-anchor {
  transform: translateY(-12rem);
}
@media screen and (max-width: 767px) {
  .c-anchor {
    transform: translateY(-8rem);
  }
}

.u-overflow-hidden {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .s\:u-overflow-hidden {
    overflow: hidden;
  }
}
.u-absolute {
  position: absolute;
}

.u-static {
  position: static;
}

.u-relative {
  position: relative;
}

.u-fixed {
  position: fixed;
}

@media screen and (max-width: 767px) {
  .s\:u-absolute {
    position: absolute;
  }
  .s\:u-static {
    position: static;
  }
  .s\:u-relative {
    position: relative;
  }
}
.u-bg-black {
  background-color: var(--black) !important;
}
.u-bg-white {
  background-color: var(--white) !important;
}
.u-bg-red {
  background-color: var(--red) !important;
}

.u-font-white {
  color: var(--white) !important;
}
.u-font-black {
  color: var(--black) !important;
}
.u-font-gray {
  color: var(--gray) !important;
}
.u-font-gray-dark {
  color: var(--gray-dark) !important;
}
.u-font-light-gray {
  color: var(--light-gray) !important;
}
.u-font-light-blue {
  color: var(--light-blue) !important;
}
.u-font-cyan-light {
  color: var(--cyan-light) !important;
}
.u-font-cyan-pale {
  color: var(--cyan-pale) !important;
}
.u-font-cyan-lighter {
  color: var(--cyan-lighter) !important;
}
.u-font-teal {
  color: var(--teal) !important;
}
.u-font-blue {
  color: var(--blue) !important;
}
.u-font-red {
  color: var(--red) !important;
}
.u-font-red-dark {
  color: var(--red-dark) !important;
}
.u-font-green {
  color: var(--green) !important;
}
.u-font-green-alt {
  color: var(--green-alt) !important;
}
.u-font-yellow {
  color: var(--yellow) !important;
}
.u-font-orange {
  color: var(--orange) !important;
}

.u-cursor-default {
  cursor: default;
}
.u-cursor-pointer {
  cursor: pointer;
}

.u-noevent {
  pointer-events: none;
}

.u-flex {
  display: flex;
}
.u-flex-space-between {
  justify-content: space-between !important;
}
.u-flex-reverse {
  flex-direction: row-reverse !important;
}
.u-flex-column-reverse {
  flex-direction: column-reverse !important;
}
.u-flex-center {
  justify-content: center !important;
}
.u-flex-middle {
  align-items: center !important;
}
.u-flex-right {
  justify-content: end !important;
}
.u-flex-left {
  justify-content: start !important;
}
.u-flex-start {
  align-items: start !important;
}
.u-flex-end {
  align-items: end !important;
}
.u-flex-wrap {
  flex-wrap: wrap !important;
}
.u-flex-unset {
  flex: unset !important;
}
.u-flex-1 {
  flex: 1 !important;
}
.u-flex-column {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .s\:u-flex {
    display: flex !important;
  }
  .s\:u-flex-space-between {
    justify-content: space-between !important;
  }
  .s\:u-flex-reverse {
    flex-direction: row-reverse !important;
  }
  .s\:u-flex-column-reverse {
    flex-direction: column-reverse !important;
  }
  .s\:u-flex-center {
    justify-content: center !important;
  }
  .s\:u-flex-middle {
    align-items: center !important;
  }
  .s\:u-flex-right {
    justify-content: end !important;
  }
  .s\:u-flex-left {
    justify-content: start !important;
  }
  .s\:u-flex-start {
    align-items: start !important;
  }
  .s\:u-flex-end {
    align-items: end !important;
  }
  .s\:u-flex-wrap {
    flex-wrap: wrap !important;
  }
  .s\:u-flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .s\:u-flex-unset {
    flex: unset !important;
  }
  .s\:u-flex-1 {
    flex: 1 !important;
  }
  .s\:u-flex-column {
    display: flex;
    flex-direction: column;
  }
  .s\:u-flex-order-1 {
    order: 1;
  }
  .s\:u-flex-order-2 {
    order: 2;
  }
  .s\:u-flex-order-3 {
    order: 3;
  }
}
.u-order-1 {
  order: 1;
}
.u-order-2 {
  order: 2;
}
.u-order-3 {
  order: 3;
}
.u-order-4 {
  order: 4;
}

.u-gap-0 {
  gap: 0rem !important;
}

.u-gap-5 {
  gap: 0.5rem !important;
}

.u-gap-10 {
  gap: 1rem !important;
}

.u-gap-15 {
  gap: 1.5rem !important;
}

.u-gap-20 {
  gap: 2rem !important;
}

.u-gap-25 {
  gap: 2.5rem !important;
}

.u-gap-30 {
  gap: 3rem !important;
}

.u-gap-35 {
  gap: 3.5rem !important;
}

.u-gap-40 {
  gap: 4rem !important;
}

.u-gap-45 {
  gap: 4.5rem !important;
}

.u-gap-50 {
  gap: 5rem !important;
}

.u-gap-55 {
  gap: 5.5rem !important;
}

.u-gap-60 {
  gap: 6rem !important;
}

.u-gap-65 {
  gap: 6.5rem !important;
}

.u-gap-70 {
  gap: 7rem !important;
}

.u-gap-75 {
  gap: 7.5rem !important;
}

.u-gap-80 {
  gap: 8rem !important;
}

@media screen and (max-width: 767px) {
  .s\:u-gap-0 {
    gap: 0rem !important;
  }
  .s\:u-gap-5 {
    gap: 0.5rem !important;
  }
  .s\:u-gap-10 {
    gap: 1rem !important;
  }
  .s\:u-gap-15 {
    gap: 1.5rem !important;
  }
  .s\:u-gap-20 {
    gap: 2rem !important;
  }
  .s\:u-gap-25 {
    gap: 2.5rem !important;
  }
  .s\:u-gap-30 {
    gap: 3rem !important;
  }
  .s\:u-gap-35 {
    gap: 3.5rem !important;
  }
  .s\:u-gap-40 {
    gap: 4rem !important;
  }
  .s\:u-gap-45 {
    gap: 4.5rem !important;
  }
  .s\:u-gap-50 {
    gap: 5rem !important;
  }
}
.u-grid {
  display: grid;
}

.u-align-center {
  text-align: center;
}
.u-align-right {
  text-align: right;
}
.u-align-left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .s\:u-align-center {
    text-align: center;
  }
  .s\:u-align-right {
    text-align: right;
  }
  .s\:u-align-left {
    text-align: left;
  }
}
.u-lh-10 {
  line-height: 1;
}
.u-lh-12 {
  line-height: 1.2;
}
.u-lh-14 {
  line-height: 1.4;
}
.u-lh-17 {
  line-height: 1.7;
}
.u-lh-20 {
  line-height: 2;
}
.u-lh-25 {
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .s\:u-lh-10 {
    line-height: 1;
  }
  .s\:u-lh-13 {
    line-height: 1.3;
  }
  .s\:u-lh-14 {
    line-height: 1.4;
  }
  .s\:u-lh-17 {
    line-height: 1.7;
  }
  .s\:u-lh-18 {
    line-height: 1.8;
  }
  .s\:u-lh-20 {
    line-height: 2;
  }
  .s\:u-lh-22 {
    line-height: 2.2;
  }
}
.u-ls-0 {
  letter-spacing: 0 !important;
}
.u-ls-5 {
  letter-spacing: 0.05rem !important;
}
.u-ls-10 {
  letter-spacing: 0.1rem !important;
}
.u-ls-15 {
  letter-spacing: 0.15rem !important;
}
.u-ls-20 {
  letter-spacing: 0.2rem !important;
}
.u-ls-25 {
  letter-spacing: 0.25rem !important;
}

@media screen and (max-width: 767px) {
  .s\:u-ls-0 {
    letter-spacing: 0 !important;
  }
  .s\:u-ls-10 {
    letter-spacing: 0.1rem !important;
  }
  .s\:u-ls-15 {
    letter-spacing: 0.15rem !important;
  }
  .s\:u-ls-20 {
    letter-spacing: 0.2rem !important;
  }
}
.u-font-0 {
  font-size: 0;
}
.u-font-10 {
  font-size: 1rem;
}
.u-font-12 {
  font-size: 1.2rem;
}
.u-font-14 {
  font-size: 1.4rem;
}
.u-font-16 {
  font-size: 1.6rem;
}
.u-font-18 {
  font-size: 1.8rem;
}
.u-font-20 {
  font-size: 2rem;
}
.u-font-black {
  color: var(--black);
}
.u-font-red {
  color: var(--red) !important;
}
.u-font-blue {
  color: var(--blue) !important;
}
.u-font-white {
  color: var(--white) !important;
}
.u-font-green {
  color: var(--green) !important;
}
.u-font-orange {
  color: var(--orange) !important;
}
.u-font-normal {
  font-weight: 400 !important;
}
.u-font-medium {
  font-weight: 500 !important;
}
.u-font-semibold {
  font-weight: 600 !important;
}
.u-font-bold {
  font-weight: 700 !important;
}
.u-font-super-bold {
  font-weight: 900 !important;
}
.u-font-underline {
  text-decoration: underline;
}
.u-font-family-1 {
  font-family: var(--font-1) !important;
}
.u-font-family-2 {
  font-family: var(--font-2) !important;
}
.u-font-family-3 {
  font-family: var(--font-3) !important;
}

@media screen and (max-width: 767px) {
  .s\:u-font-10 {
    font-size: 1rem;
  }
  .s\:u-font-12 {
    font-size: 1.2rem;
  }
  .s\:u-font-14 {
    font-size: 1.4rem;
  }
  .s\:u-font-16 {
    font-size: 1.6rem;
  }
  .s\:u-font-20 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .u-only-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

.u-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .s\:u-hidden {
    display: none;
  }
}

.u-left-half {
  left: 50%;
}

.u-bottom-0 {
  bottom: 0rem !important;
}

.u-bottom-5 {
  bottom: 0.5rem !important;
}

.u-bottom-10 {
  bottom: 1rem !important;
}

.u-bottom-15 {
  bottom: 1.5rem !important;
}

.u-bottom-20 {
  bottom: 2rem !important;
}

.u-bottom-25 {
  bottom: 2.5rem !important;
}

.u-bottom-30 {
  bottom: 3rem !important;
}

.u-bottom-35 {
  bottom: 3.5rem !important;
}

.u-bottom-40 {
  bottom: 4rem !important;
}

.u-bottom-45 {
  bottom: 4.5rem !important;
}

.u-bottom-50 {
  bottom: 5rem !important;
}

.u-bottom-55 {
  bottom: 5.5rem !important;
}

.u-bottom-60 {
  bottom: 6rem !important;
}

.u-bottom-65 {
  bottom: 6.5rem !important;
}

.u-bottom-70 {
  bottom: 7rem !important;
}

.u-bottom-75 {
  bottom: 7.5rem !important;
}

.u-bottom-80 {
  bottom: 8rem !important;
}

.u-bottom-85 {
  bottom: 8.5rem !important;
}

.u-bottom-90 {
  bottom: 9rem !important;
}

.u-bottom-95 {
  bottom: 9.5rem !important;
}

.u-bottom-100 {
  bottom: 10rem !important;
}

.u-bottom-105 {
  bottom: 10.5rem !important;
}

.u-bottom-110 {
  bottom: 11rem !important;
}

.u-bottom-115 {
  bottom: 11.5rem !important;
}

.u-bottom-120 {
  bottom: 12rem !important;
}

.u-bottom-125 {
  bottom: 12.5rem !important;
}

.u-bottom-130 {
  bottom: 13rem !important;
}

.u-bottom-135 {
  bottom: 13.5rem !important;
}

.u-bottom-140 {
  bottom: 14rem !important;
}

.u-bottom-145 {
  bottom: 14.5rem !important;
}

.u-bottom-150 {
  bottom: 15rem !important;
}

.u-bottom-155 {
  bottom: 15.5rem !important;
}

.u-bottom-160 {
  bottom: 16rem !important;
}

.u-bottom-165 {
  bottom: 16.5rem !important;
}

.u-bottom-170 {
  bottom: 17rem !important;
}

.u-bottom-175 {
  bottom: 17.5rem !important;
}

.u-bottom-180 {
  bottom: 18rem !important;
}

.u-bottom-185 {
  bottom: 18.5rem !important;
}

.u-bottom-190 {
  bottom: 19rem !important;
}

.u-bottom-195 {
  bottom: 19.5rem !important;
}

.u-bottom-200 {
  bottom: 20rem !important;
}

.u-bottom-205 {
  bottom: 20.5rem !important;
}

.u-bottom-210 {
  bottom: 21rem !important;
}

.u-bottom-215 {
  bottom: 21.5rem !important;
}

.u-bottom-220 {
  bottom: 22rem !important;
}

.u-bottom-225 {
  bottom: 22.5rem !important;
}

.u-bottom-230 {
  bottom: 23rem !important;
}

.u-bottom-235 {
  bottom: 23.5rem !important;
}

.u-bottom-240 {
  bottom: 24rem !important;
}

.u-bottom-245 {
  bottom: 24.5rem !important;
}

.u-bottom-250 {
  bottom: 25rem !important;
}

.u-top-0 {
  top: 0rem !important;
}

.u-top-5 {
  top: 0.5rem !important;
}

.u-top-10 {
  top: 1rem !important;
}

.u-top-15 {
  top: 1.5rem !important;
}

.u-top-20 {
  top: 2rem !important;
}

.u-top-25 {
  top: 2.5rem !important;
}

.u-top-30 {
  top: 3rem !important;
}

.u-top-35 {
  top: 3.5rem !important;
}

.u-top-40 {
  top: 4rem !important;
}

.u-top-45 {
  top: 4.5rem !important;
}

.u-top-50 {
  top: 5rem !important;
}

.u-top-55 {
  top: 5.5rem !important;
}

.u-top-60 {
  top: 6rem !important;
}

.u-top-65 {
  top: 6.5rem !important;
}

.u-top-70 {
  top: 7rem !important;
}

.u-top-75 {
  top: 7.5rem !important;
}

.u-top-80 {
  top: 8rem !important;
}

.u-top-85 {
  top: 8.5rem !important;
}

.u-top-90 {
  top: 9rem !important;
}

.u-top-95 {
  top: 9.5rem !important;
}

.u-top-100 {
  top: 10rem !important;
}

.u-top-105 {
  top: 10.5rem !important;
}

.u-top-110 {
  top: 11rem !important;
}

.u-top-115 {
  top: 11.5rem !important;
}

.u-top-120 {
  top: 12rem !important;
}

.u-top-125 {
  top: 12.5rem !important;
}

.u-top-130 {
  top: 13rem !important;
}

.u-top-135 {
  top: 13.5rem !important;
}

.u-top-140 {
  top: 14rem !important;
}

.u-left-0 {
  left: 0rem !important;
}

.u-left-5 {
  left: 0.5rem !important;
}

.u-left-10 {
  left: 1rem !important;
}

.u-left-15 {
  left: 1.5rem !important;
}

.u-left-20 {
  left: 2rem !important;
}

.u-left-25 {
  left: 2.5rem !important;
}

.u-left-30 {
  left: 3rem !important;
}

.u-left-35 {
  left: 3.5rem !important;
}

.u-left-40 {
  left: 4rem !important;
}

.u-left-45 {
  left: 4.5rem !important;
}

.u-left-50 {
  left: 5rem !important;
}

.u-left-55 {
  left: 5.5rem !important;
}

.u-left-60 {
  left: 6rem !important;
}

.u-left-65 {
  left: 6.5rem !important;
}

.u-left-70 {
  left: 7rem !important;
}

.u-left-75 {
  left: 7.5rem !important;
}

.u-left-80 {
  left: 8rem !important;
}

.u-left-85 {
  left: 8.5rem !important;
}

.u-left-90 {
  left: 9rem !important;
}

.u-left-95 {
  left: 9.5rem !important;
}

.u-left-100 {
  left: 10rem !important;
}

.u-left-105 {
  left: 10.5rem !important;
}

.u-left-110 {
  left: 11rem !important;
}

.u-left-115 {
  left: 11.5rem !important;
}

.u-left-120 {
  left: 12rem !important;
}

.u-left-125 {
  left: 12.5rem !important;
}

.u-left-130 {
  left: 13rem !important;
}

.u-left-135 {
  left: 13.5rem !important;
}

.u-left-140 {
  left: 14rem !important;
}

.u-right-0 {
  right: 0rem !important;
}

.u-right-5 {
  right: 0.5rem !important;
}

.u-right-10 {
  right: 1rem !important;
}

.u-right-15 {
  right: 1.5rem !important;
}

.u-right-20 {
  right: 2rem !important;
}

.u-right-25 {
  right: 2.5rem !important;
}

.u-right-30 {
  right: 3rem !important;
}

.u-right-35 {
  right: 3.5rem !important;
}

.u-right-40 {
  right: 4rem !important;
}

.u-right-45 {
  right: 4.5rem !important;
}

.u-right-50 {
  right: 5rem !important;
}

.u-right-55 {
  right: 5.5rem !important;
}

.u-right-60 {
  right: 6rem !important;
}

.u-right-65 {
  right: 6.5rem !important;
}

.u-right-70 {
  right: 7rem !important;
}

.u-right-75 {
  right: 7.5rem !important;
}

.u-right-80 {
  right: 8rem !important;
}

.u-right-85 {
  right: 8.5rem !important;
}

.u-right-90 {
  right: 9rem !important;
}

.u-right-95 {
  right: 9.5rem !important;
}

.u-right-100 {
  right: 10rem !important;
}

.u-right-105 {
  right: 10.5rem !important;
}

.u-right-110 {
  right: 11rem !important;
}

.u-right-115 {
  right: 11.5rem !important;
}

.u-right-120 {
  right: 12rem !important;
}

.u-right-125 {
  right: 12.5rem !important;
}

.u-right-130 {
  right: 13rem !important;
}

.u-right-135 {
  right: 13.5rem !important;
}

.u-right-140 {
  right: 14rem !important;
}

@media screen and (max-width: 767px) {
  .s\:u-bottom-0 {
    bottom: 0rem !important;
  }
  .s\:u-bottom-5 {
    bottom: 0.5rem !important;
  }
  .s\:u-bottom-10 {
    bottom: 1rem !important;
  }
  .s\:u-bottom-15 {
    bottom: 1.5rem !important;
  }
  .s\:u-bottom-20 {
    bottom: 2rem !important;
  }
  .s\:u-bottom-25 {
    bottom: 2.5rem !important;
  }
  .s\:u-bottom-30 {
    bottom: 3rem !important;
  }
  .s\:u-bottom-35 {
    bottom: 3.5rem !important;
  }
  .s\:u-bottom-40 {
    bottom: 4rem !important;
  }
  .s\:u-bottom-45 {
    bottom: 4.5rem !important;
  }
  .s\:u-bottom-50 {
    bottom: 5rem !important;
  }
  .s\:u-bottom-55 {
    bottom: 5.5rem !important;
  }
  .s\:u-bottom-60 {
    bottom: 6rem !important;
  }
  .s\:u-bottom-65 {
    bottom: 6.5rem !important;
  }
  .s\:u-bottom-70 {
    bottom: 7rem !important;
  }
  .s\:u-bottom-75 {
    bottom: 7.5rem !important;
  }
  .s\:u-bottom-80 {
    bottom: 8rem !important;
  }
  .s\:u-bottom-85 {
    bottom: 8.5rem !important;
  }
  .s\:u-bottom-90 {
    bottom: 9rem !important;
  }
  .s\:u-bottom-95 {
    bottom: 9.5rem !important;
  }
  .s\:u-bottom-100 {
    bottom: 10rem !important;
  }
  .s\:u-top-0 {
    top: 0rem !important;
  }
  .s\:u-top-5 {
    top: 0.5rem !important;
  }
  .s\:u-top-10 {
    top: 1rem !important;
  }
  .s\:u-top-15 {
    top: 1.5rem !important;
  }
  .s\:u-top-20 {
    top: 2rem !important;
  }
  .s\:u-top-25 {
    top: 2.5rem !important;
  }
  .s\:u-top-30 {
    top: 3rem !important;
  }
  .s\:u-top-35 {
    top: 3.5rem !important;
  }
  .s\:u-top-40 {
    top: 4rem !important;
  }
  .s\:u-top-45 {
    top: 4.5rem !important;
  }
  .s\:u-top-50 {
    top: 5rem !important;
  }
  .s\:u-top-55 {
    top: 5.5rem !important;
  }
  .s\:u-top-60 {
    top: 6rem !important;
  }
  .s\:u-top-65 {
    top: 6.5rem !important;
  }
  .s\:u-top-70 {
    top: 7rem !important;
  }
  .s\:u-top-75 {
    top: 7.5rem !important;
  }
  .s\:u-top-80 {
    top: 8rem !important;
  }
  .s\:u-top-85 {
    top: 8.5rem !important;
  }
  .s\:u-top-90 {
    top: 9rem !important;
  }
  .s\:u-top-95 {
    top: 9.5rem !important;
  }
  .s\:u-top-100 {
    top: 10rem !important;
  }
  .s\:u-left-0 {
    left: 0rem !important;
  }
  .s\:u-left-5 {
    left: 0.5rem !important;
  }
  .s\:u-left-10 {
    left: 1rem !important;
  }
  .s\:u-left-15 {
    left: 1.5rem !important;
  }
  .s\:u-left-20 {
    left: 2rem !important;
  }
  .s\:u-left-25 {
    left: 2.5rem !important;
  }
  .s\:u-left-30 {
    left: 3rem !important;
  }
  .s\:u-left-35 {
    left: 3.5rem !important;
  }
  .s\:u-left-40 {
    left: 4rem !important;
  }
  .s\:u-left-45 {
    left: 4.5rem !important;
  }
  .s\:u-left-50 {
    left: 5rem !important;
  }
  .s\:u-left-55 {
    left: 5.5rem !important;
  }
  .s\:u-left-60 {
    left: 6rem !important;
  }
  .s\:u-left-65 {
    left: 6.5rem !important;
  }
  .s\:u-left-70 {
    left: 7rem !important;
  }
  .s\:u-left-75 {
    left: 7.5rem !important;
  }
  .s\:u-left-80 {
    left: 8rem !important;
  }
  .s\:u-left-85 {
    left: 8.5rem !important;
  }
  .s\:u-left-90 {
    left: 9rem !important;
  }
  .s\:u-left-95 {
    left: 9.5rem !important;
  }
  .s\:u-left-100 {
    left: 10rem !important;
  }
  .s\:u-right-0 {
    right: 0rem !important;
  }
  .s\:u-right-5 {
    right: 0.5rem !important;
  }
  .s\:u-right-10 {
    right: 1rem !important;
  }
  .s\:u-right-15 {
    right: 1.5rem !important;
  }
  .s\:u-right-20 {
    right: 2rem !important;
  }
  .s\:u-right-25 {
    right: 2.5rem !important;
  }
  .s\:u-right-30 {
    right: 3rem !important;
  }
  .s\:u-right-35 {
    right: 3.5rem !important;
  }
  .s\:u-right-40 {
    right: 4rem !important;
  }
  .s\:u-right-45 {
    right: 4.5rem !important;
  }
  .s\:u-right-50 {
    right: 5rem !important;
  }
  .s\:u-right-55 {
    right: 5.5rem !important;
  }
  .s\:u-right-60 {
    right: 6rem !important;
  }
  .s\:u-right-65 {
    right: 6.5rem !important;
  }
  .s\:u-right-70 {
    right: 7rem !important;
  }
  .s\:u-right-75 {
    right: 7.5rem !important;
  }
  .s\:u-right-80 {
    right: 8rem !important;
  }
  .s\:u-right-85 {
    right: 8.5rem !important;
  }
  .s\:u-right-90 {
    right: 9rem !important;
  }
  .s\:u-right-95 {
    right: 9.5rem !important;
  }
  .s\:u-right-100 {
    right: 10rem !important;
  }
}
.u-block {
  display: block;
}

@media screen and (max-width: 767px) {
  .s\:u-block {
    display: block;
  }
}
.u-nowrap {
  white-space: nowrap;
}

.u-t-0 {
  top: 0rem !important;
}

.u-t-5 {
  top: 0.5rem !important;
}

.u-t-10 {
  top: 1rem !important;
}

.u-t-15 {
  top: 1.5rem !important;
}

.u-t-20 {
  top: 2rem !important;
}

.u-t-25 {
  top: 2.5rem !important;
}

.u-t-30 {
  top: 3rem !important;
}

.u-b-0 {
  bottom: 0rem !important;
}

.u-b-5 {
  bottom: 0.5rem !important;
}

.u-b-10 {
  bottom: 1rem !important;
}

.u-b-15 {
  bottom: 1.5rem !important;
}

.u-b-20 {
  bottom: 2rem !important;
}

.u-b-25 {
  bottom: 2.5rem !important;
}

.u-b-30 {
  bottom: 3rem !important;
}

@media screen and (max-width: 767px) {
  .s\:u-t-0 {
    top: 0rem !important;
  }
  .s\:u-t-5 {
    top: 0.5rem !important;
  }
  .s\:u-t-10 {
    top: 1rem !important;
  }
  .s\:u-t-15 {
    top: 1.5rem !important;
  }
  .s\:u-t-20 {
    top: 2rem !important;
  }
  .s\:u-b-0 {
    bottom: 0rem !important;
  }
  .s\:u-b-5 {
    bottom: 0.5rem !important;
  }
  .s\:u-b-10 {
    bottom: 1rem !important;
  }
  .s\:u-b-15 {
    bottom: 1.5rem !important;
  }
  .s\:u-b-20 {
    bottom: 2rem !important;
  }
  .s\:u-b-25 {
    bottom: 2.5rem !important;
  }
  .s\:u-b-30 {
    bottom: 3rem !important;
  }
  .s\:u-b-35 {
    bottom: 3.5rem !important;
  }
  .s\:u-b-40 {
    bottom: 4rem !important;
  }
  .s\:u-b-45 {
    bottom: 4.5rem !important;
  }
  .s\:u-b-50 {
    bottom: 5rem !important;
  }
  .s\:u-b-55 {
    bottom: 5.5rem !important;
  }
  .s\:u-b-60 {
    bottom: 6rem !important;
  }
  .s\:u-b-65 {
    bottom: 6.5rem !important;
  }
  .s\:u-b-70 {
    bottom: 7rem !important;
  }
  .s\:u-b-75 {
    bottom: 7.5rem !important;
  }
  .s\:u-b-80 {
    bottom: 8rem !important;
  }
}
.u-p-0 {
  padding: 0rem !important;
}

.u-p-5 {
  padding: 0.5rem !important;
}

.u-p-10 {
  padding: 1rem !important;
}

.u-p-15 {
  padding: 1.5rem !important;
}

.u-p-20 {
  padding: 2rem !important;
}

.u-p-25 {
  padding: 2.5rem !important;
}

.u-p-30 {
  padding: 3rem !important;
}

.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-pb-5 {
  padding-bottom: 0.5rem !important;
}

.u-pb-10 {
  padding-bottom: 1rem !important;
}

.u-pb-15 {
  padding-bottom: 1.5rem !important;
}

.u-pb-20 {
  padding-bottom: 2rem !important;
}

.u-pb-25 {
  padding-bottom: 2.5rem !important;
}

.u-pb-30 {
  padding-bottom: 3rem !important;
}

.u-pb-35 {
  padding-bottom: 3.5rem !important;
}

.u-pb-40 {
  padding-bottom: 4rem !important;
}

.u-pb-45 {
  padding-bottom: 4.5rem !important;
}

.u-pb-50 {
  padding-bottom: 5rem !important;
}

.u-pb-55 {
  padding-bottom: 5.5rem !important;
}

.u-pb-60 {
  padding-bottom: 6rem !important;
}

.u-pb-65 {
  padding-bottom: 6.5rem !important;
}

.u-pb-70 {
  padding-bottom: 7rem !important;
}

.u-pb-75 {
  padding-bottom: 7.5rem !important;
}

.u-pb-80 {
  padding-bottom: 8rem !important;
}

.u-pb-85 {
  padding-bottom: 8.5rem !important;
}

.u-pb-90 {
  padding-bottom: 9rem !important;
}

.u-pb-95 {
  padding-bottom: 9.5rem !important;
}

.u-pb-100 {
  padding-bottom: 10rem !important;
}

.u-pb-105 {
  padding-bottom: 10.5rem !important;
}

.u-pb-110 {
  padding-bottom: 11rem !important;
}

.u-pb-115 {
  padding-bottom: 11.5rem !important;
}

.u-pb-120 {
  padding-bottom: 12rem !important;
}

.u-pb-125 {
  padding-bottom: 12.5rem !important;
}

.u-pb-130 {
  padding-bottom: 13rem !important;
}

.u-pb-135 {
  padding-bottom: 13.5rem !important;
}

.u-pb-140 {
  padding-bottom: 14rem !important;
}

.u-pb-145 {
  padding-bottom: 14.5rem !important;
}

.u-pb-150 {
  padding-bottom: 15rem !important;
}

.u-pb-155 {
  padding-bottom: 15.5rem !important;
}

.u-pb-160 {
  padding-bottom: 16rem !important;
}

.u-pb-165 {
  padding-bottom: 16.5rem !important;
}

.u-pb-170 {
  padding-bottom: 17rem !important;
}

.u-pb-175 {
  padding-bottom: 17.5rem !important;
}

.u-pb-180 {
  padding-bottom: 18rem !important;
}

.u-pb-185 {
  padding-bottom: 18.5rem !important;
}

.u-pb-190 {
  padding-bottom: 19rem !important;
}

.u-pb-195 {
  padding-bottom: 19.5rem !important;
}

.u-pb-200 {
  padding-bottom: 20rem !important;
}

.u-pb-205 {
  padding-bottom: 20.5rem !important;
}

.u-pb-210 {
  padding-bottom: 21rem !important;
}

.u-pb-215 {
  padding-bottom: 21.5rem !important;
}

.u-pb-220 {
  padding-bottom: 22rem !important;
}

.u-pb-225 {
  padding-bottom: 22.5rem !important;
}

.u-pb-230 {
  padding-bottom: 23rem !important;
}

.u-pb-235 {
  padding-bottom: 23.5rem !important;
}

.u-pb-240 {
  padding-bottom: 24rem !important;
}

.u-pb-245 {
  padding-bottom: 24.5rem !important;
}

.u-pb-250 {
  padding-bottom: 25rem !important;
}

.u-pb-255 {
  padding-bottom: 25.5rem !important;
}

.u-pb-260 {
  padding-bottom: 26rem !important;
}

.u-pb-265 {
  padding-bottom: 26.5rem !important;
}

.u-pb-270 {
  padding-bottom: 27rem !important;
}

.u-pb-275 {
  padding-bottom: 27.5rem !important;
}

.u-pb-280 {
  padding-bottom: 28rem !important;
}

.u-pb-285 {
  padding-bottom: 28.5rem !important;
}

.u-pb-290 {
  padding-bottom: 29rem !important;
}

.u-pb-295 {
  padding-bottom: 29.5rem !important;
}

.u-pb-300 {
  padding-bottom: 30rem !important;
}

.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pt-5 {
  padding-top: 0.5rem !important;
}

.u-pt-10 {
  padding-top: 1rem !important;
}

.u-pt-15 {
  padding-top: 1.5rem !important;
}

.u-pt-20 {
  padding-top: 2rem !important;
}

.u-pt-25 {
  padding-top: 2.5rem !important;
}

.u-pt-30 {
  padding-top: 3rem !important;
}

.u-pt-35 {
  padding-top: 3.5rem !important;
}

.u-pt-40 {
  padding-top: 4rem !important;
}

.u-pt-45 {
  padding-top: 4.5rem !important;
}

.u-pt-50 {
  padding-top: 5rem !important;
}

.u-pt-55 {
  padding-top: 5.5rem !important;
}

.u-pt-60 {
  padding-top: 6rem !important;
}

.u-pt-65 {
  padding-top: 6.5rem !important;
}

.u-pt-70 {
  padding-top: 7rem !important;
}

.u-pt-75 {
  padding-top: 7.5rem !important;
}

.u-pt-80 {
  padding-top: 8rem !important;
}

.u-pt-85 {
  padding-top: 8.5rem !important;
}

.u-pt-90 {
  padding-top: 9rem !important;
}

.u-pt-95 {
  padding-top: 9.5rem !important;
}

.u-pt-100 {
  padding-top: 10rem !important;
}

.u-pt-105 {
  padding-top: 10.5rem !important;
}

.u-pt-110 {
  padding-top: 11rem !important;
}

.u-pt-115 {
  padding-top: 11.5rem !important;
}

.u-pt-120 {
  padding-top: 12rem !important;
}

.u-pt-125 {
  padding-top: 12.5rem !important;
}

.u-pt-130 {
  padding-top: 13rem !important;
}

.u-pt-135 {
  padding-top: 13.5rem !important;
}

.u-pt-140 {
  padding-top: 14rem !important;
}

.u-pt-145 {
  padding-top: 14.5rem !important;
}

.u-pt-150 {
  padding-top: 15rem !important;
}

.u-pt-155 {
  padding-top: 15.5rem !important;
}

.u-pt-160 {
  padding-top: 16rem !important;
}

.u-pt-165 {
  padding-top: 16.5rem !important;
}

.u-pt-170 {
  padding-top: 17rem !important;
}

.u-pt-175 {
  padding-top: 17.5rem !important;
}

.u-pt-180 {
  padding-top: 18rem !important;
}

.u-pt-185 {
  padding-top: 18.5rem !important;
}

.u-pt-190 {
  padding-top: 19rem !important;
}

.u-pt-195 {
  padding-top: 19.5rem !important;
}

.u-pt-200 {
  padding-top: 20rem !important;
}

.u-pt-205 {
  padding-top: 20.5rem !important;
}

.u-pt-210 {
  padding-top: 21rem !important;
}

.u-pt-215 {
  padding-top: 21.5rem !important;
}

.u-pt-220 {
  padding-top: 22rem !important;
}

.u-pt-225 {
  padding-top: 22.5rem !important;
}

.u-pt-230 {
  padding-top: 23rem !important;
}

.u-pt-235 {
  padding-top: 23.5rem !important;
}

.u-pt-240 {
  padding-top: 24rem !important;
}

.u-pt-245 {
  padding-top: 24.5rem !important;
}

.u-pt-250 {
  padding-top: 25rem !important;
}

.u-pt-255 {
  padding-top: 25.5rem !important;
}

.u-pt-260 {
  padding-top: 26rem !important;
}

.u-pl-0 {
  padding-left: 0rem !important;
}

.u-pl-5 {
  padding-left: 0.5rem !important;
}

.u-pl-10 {
  padding-left: 1rem !important;
}

.u-pl-15 {
  padding-left: 1.5rem !important;
}

.u-pl-20 {
  padding-left: 2rem !important;
}

.u-pl-25 {
  padding-left: 2.5rem !important;
}

.u-pl-30 {
  padding-left: 3rem !important;
}

.u-pl-35 {
  padding-left: 3.5rem !important;
}

.u-pl-40 {
  padding-left: 4rem !important;
}

.u-pl-45 {
  padding-left: 4.5rem !important;
}

.u-pl-50 {
  padding-left: 5rem !important;
}

.u-pl-55 {
  padding-left: 5.5rem !important;
}

.u-pl-60 {
  padding-left: 6rem !important;
}

.u-pl-65 {
  padding-left: 6.5rem !important;
}

.u-pl-70 {
  padding-left: 7rem !important;
}

.u-pl-75 {
  padding-left: 7.5rem !important;
}

.u-pl-80 {
  padding-left: 8rem !important;
}

.u-pl-85 {
  padding-left: 8.5rem !important;
}

.u-pl-90 {
  padding-left: 9rem !important;
}

.u-pl-95 {
  padding-left: 9.5rem !important;
}

.u-pl-100 {
  padding-left: 10rem !important;
}

.u-pl-105 {
  padding-left: 10.5rem !important;
}

.u-pl-110 {
  padding-left: 11rem !important;
}

.u-pl-115 {
  padding-left: 11.5rem !important;
}

.u-pl-120 {
  padding-left: 12rem !important;
}

.u-pl-125 {
  padding-left: 12.5rem !important;
}

.u-pl-130 {
  padding-left: 13rem !important;
}

.u-pl-135 {
  padding-left: 13.5rem !important;
}

.u-pl-140 {
  padding-left: 14rem !important;
}

.u-pl-145 {
  padding-left: 14.5rem !important;
}

.u-pl-150 {
  padding-left: 15rem !important;
}

.u-pl-155 {
  padding-left: 15.5rem !important;
}

.u-pr-0 {
  padding-right: 0rem !important;
}

.u-pr-5 {
  padding-right: 0.5rem !important;
}

.u-pr-10 {
  padding-right: 1rem !important;
}

.u-pr-15 {
  padding-right: 1.5rem !important;
}

.u-pr-20 {
  padding-right: 2rem !important;
}

.u-pr-25 {
  padding-right: 2.5rem !important;
}

.u-pr-30 {
  padding-right: 3rem !important;
}

.u-pr-35 {
  padding-right: 3.5rem !important;
}

.u-pr-40 {
  padding-right: 4rem !important;
}

.u-pr-45 {
  padding-right: 4.5rem !important;
}

.u-pr-50 {
  padding-right: 5rem !important;
}

.u-pr-55 {
  padding-right: 5.5rem !important;
}

.u-pr-60 {
  padding-right: 6rem !important;
}

.u-pr-65 {
  padding-right: 6.5rem !important;
}

.u-pr-70 {
  padding-right: 7rem !important;
}

.u-pr-75 {
  padding-right: 7.5rem !important;
}

.u-pr-80 {
  padding-right: 8rem !important;
}

.u-pr-85 {
  padding-right: 8.5rem !important;
}

.u-pr-90 {
  padding-right: 9rem !important;
}

.u-pr-95 {
  padding-right: 9.5rem !important;
}

.u-pr-100 {
  padding-right: 10rem !important;
}

.u-pr-105 {
  padding-right: 10.5rem !important;
}

.u-pr-110 {
  padding-right: 11rem !important;
}

.u-pr-115 {
  padding-right: 11.5rem !important;
}

.u-pr-120 {
  padding-right: 12rem !important;
}

.u-pr-125 {
  padding-right: 12.5rem !important;
}

.u-pr-130 {
  padding-right: 13rem !important;
}

.u-pr-135 {
  padding-right: 13.5rem !important;
}

.u-pr-140 {
  padding-right: 14rem !important;
}

.u-pr-145 {
  padding-right: 14.5rem !important;
}

.u-pr-150 {
  padding-right: 15rem !important;
}

.u-pr-155 {
  padding-right: 15.5rem !important;
}

@media screen and (max-width: 767px) {
  .s\:u-pb-0 {
    padding-bottom: 0rem !important;
  }
  .s\:u-pb-5 {
    padding-bottom: 0.5rem !important;
  }
  .s\:u-pb-10 {
    padding-bottom: 1rem !important;
  }
  .s\:u-pb-15 {
    padding-bottom: 1.5rem !important;
  }
  .s\:u-pb-20 {
    padding-bottom: 2rem !important;
  }
  .s\:u-pb-25 {
    padding-bottom: 2.5rem !important;
  }
  .s\:u-pb-30 {
    padding-bottom: 3rem !important;
  }
  .s\:u-pb-35 {
    padding-bottom: 3.5rem !important;
  }
  .s\:u-pb-40 {
    padding-bottom: 4rem !important;
  }
  .s\:u-pb-45 {
    padding-bottom: 4.5rem !important;
  }
  .s\:u-pb-50 {
    padding-bottom: 5rem !important;
  }
  .s\:u-pb-55 {
    padding-bottom: 5.5rem !important;
  }
  .s\:u-pb-60 {
    padding-bottom: 6rem !important;
  }
  .s\:u-pb-65 {
    padding-bottom: 6.5rem !important;
  }
  .s\:u-pb-70 {
    padding-bottom: 7rem !important;
  }
  .s\:u-pb-75 {
    padding-bottom: 7.5rem !important;
  }
  .s\:u-pb-80 {
    padding-bottom: 8rem !important;
  }
  .s\:u-pb-85 {
    padding-bottom: 8.5rem !important;
  }
  .s\:u-pb-90 {
    padding-bottom: 9rem !important;
  }
  .s\:u-pb-95 {
    padding-bottom: 9.5rem !important;
  }
  .s\:u-pb-100 {
    padding-bottom: 10rem !important;
  }
  .s\:u-pt-0 {
    padding-top: 0rem !important;
  }
  .s\:u-pt-5 {
    padding-top: 0.5rem !important;
  }
  .s\:u-pt-10 {
    padding-top: 1rem !important;
  }
  .s\:u-pt-15 {
    padding-top: 1.5rem !important;
  }
  .s\:u-pt-20 {
    padding-top: 2rem !important;
  }
  .s\:u-pt-25 {
    padding-top: 2.5rem !important;
  }
  .s\:u-pt-30 {
    padding-top: 3rem !important;
  }
  .s\:u-pt-35 {
    padding-top: 3.5rem !important;
  }
  .s\:u-pt-40 {
    padding-top: 4rem !important;
  }
  .s\:u-pt-45 {
    padding-top: 4.5rem !important;
  }
  .s\:u-pt-50 {
    padding-top: 5rem !important;
  }
  .s\:u-pt-55 {
    padding-top: 5.5rem !important;
  }
  .s\:u-pt-60 {
    padding-top: 6rem !important;
  }
  .s\:u-pt-65 {
    padding-top: 6.5rem !important;
  }
  .s\:u-pt-70 {
    padding-top: 7rem !important;
  }
  .s\:u-pt-75 {
    padding-top: 7.5rem !important;
  }
  .s\:u-pt-80 {
    padding-top: 8rem !important;
  }
  .s\:u-pt-85 {
    padding-top: 8.5rem !important;
  }
  .s\:u-pt-90 {
    padding-top: 9rem !important;
  }
  .s\:u-pt-95 {
    padding-top: 9.5rem !important;
  }
  .s\:u-pt-100 {
    padding-top: 10rem !important;
  }
  .s\:u-pl-0 {
    padding-left: 0rem !important;
  }
  .s\:u-pl-5 {
    padding-left: 0.5rem !important;
  }
  .s\:u-pl-10 {
    padding-left: 1rem !important;
  }
  .s\:u-pl-15 {
    padding-left: 1.5rem !important;
  }
  .s\:u-pl-20 {
    padding-left: 2rem !important;
  }
  .s\:u-pl-25 {
    padding-left: 2.5rem !important;
  }
  .s\:u-pl-30 {
    padding-left: 3rem !important;
  }
  .s\:u-pl-35 {
    padding-left: 3.5rem !important;
  }
  .s\:u-pl-40 {
    padding-left: 4rem !important;
  }
  .s\:u-pl-45 {
    padding-left: 4.5rem !important;
  }
  .s\:u-pl-50 {
    padding-left: 5rem !important;
  }
  .s\:u-pl-55 {
    padding-left: 5.5rem !important;
  }
  .s\:u-pl-60 {
    padding-left: 6rem !important;
  }
  .s\:u-pl-65 {
    padding-left: 6.5rem !important;
  }
  .s\:u-pl-70 {
    padding-left: 7rem !important;
  }
  .s\:u-pl-75 {
    padding-left: 7.5rem !important;
  }
  .s\:u-pl-80 {
    padding-left: 8rem !important;
  }
  .s\:u-pl-85 {
    padding-left: 8.5rem !important;
  }
  .s\:u-pl-90 {
    padding-left: 9rem !important;
  }
  .s\:u-pl-95 {
    padding-left: 9.5rem !important;
  }
  .s\:u-pl-100 {
    padding-left: 10rem !important;
  }
  .s\:u-pr-0 {
    padding-right: 0rem !important;
  }
  .s\:u-pr-5 {
    padding-right: 0.5rem !important;
  }
  .s\:u-pr-10 {
    padding-right: 1rem !important;
  }
  .s\:u-pr-15 {
    padding-right: 1.5rem !important;
  }
  .s\:u-pr-20 {
    padding-right: 2rem !important;
  }
  .s\:u-pr-25 {
    padding-right: 2.5rem !important;
  }
  .s\:u-pr-30 {
    padding-right: 3rem !important;
  }
  .s\:u-pr-35 {
    padding-right: 3.5rem !important;
  }
  .s\:u-pr-40 {
    padding-right: 4rem !important;
  }
  .s\:u-pr-45 {
    padding-right: 4.5rem !important;
  }
  .s\:u-pr-50 {
    padding-right: 5rem !important;
  }
  .s\:u-pr-55 {
    padding-right: 5.5rem !important;
  }
  .s\:u-pr-60 {
    padding-right: 6rem !important;
  }
  .s\:u-pr-65 {
    padding-right: 6.5rem !important;
  }
  .s\:u-pr-70 {
    padding-right: 7rem !important;
  }
  .s\:u-pr-75 {
    padding-right: 7.5rem !important;
  }
  .s\:u-pr-80 {
    padding-right: 8rem !important;
  }
  .s\:u-pr-85 {
    padding-right: 8.5rem !important;
  }
  .s\:u-pr-90 {
    padding-right: 9rem !important;
  }
  .s\:u-pr-95 {
    padding-right: 9.5rem !important;
  }
  .s\:u-pr-100 {
    padding-right: 10rem !important;
  }
}
.u-m-auto {
  margin: 0 auto;
}

.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-mb-5 {
  margin-bottom: 0.5rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-15 {
  margin-bottom: 1.5rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-25 {
  margin-bottom: 2.5rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-35 {
  margin-bottom: 3.5rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-45 {
  margin-bottom: 4.5rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-55 {
  margin-bottom: 5.5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-65 {
  margin-bottom: 6.5rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-75 {
  margin-bottom: 7.5rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-85 {
  margin-bottom: 8.5rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-95 {
  margin-bottom: 9.5rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

.u-mb-105 {
  margin-bottom: 10.5rem !important;
}

.u-mb-110 {
  margin-bottom: 11rem !important;
}

.u-mb-115 {
  margin-bottom: 11.5rem !important;
}

.u-mb-120 {
  margin-bottom: 12rem !important;
}

.u-mb-125 {
  margin-bottom: 12.5rem !important;
}

.u-mb-130 {
  margin-bottom: 13rem !important;
}

.u-mb-135 {
  margin-bottom: 13.5rem !important;
}

.u-mb-140 {
  margin-bottom: 14rem !important;
}

.u-mb-145 {
  margin-bottom: 14.5rem !important;
}

.u-mb-150 {
  margin-bottom: 15rem !important;
}

.u-mb-155 {
  margin-bottom: 15.5rem !important;
}

.u-mb-160 {
  margin-bottom: 16rem !important;
}

.u-mb-165 {
  margin-bottom: 16.5rem !important;
}

.u-mb-170 {
  margin-bottom: 17rem !important;
}

.u-mb-175 {
  margin-bottom: 17.5rem !important;
}

.u-mb-180 {
  margin-bottom: 18rem !important;
}

.u-mb-185 {
  margin-bottom: 18.5rem !important;
}

.u-mb-190 {
  margin-bottom: 19rem !important;
}

.u-mb-195 {
  margin-bottom: 19.5rem !important;
}

.u-mb-200 {
  margin-bottom: 20rem !important;
}

.u-mb-205 {
  margin-bottom: 20.5rem !important;
}

.u-mb-210 {
  margin-bottom: 21rem !important;
}

.u-mb-215 {
  margin-bottom: 21.5rem !important;
}

.u-mb-220 {
  margin-bottom: 22rem !important;
}

.u-mb-225 {
  margin-bottom: 22.5rem !important;
}

.u-mb-230 {
  margin-bottom: 23rem !important;
}

.u-mb-235 {
  margin-bottom: 23.5rem !important;
}

.u-mb-240 {
  margin-bottom: 24rem !important;
}

.u-mb-245 {
  margin-bottom: 24.5rem !important;
}

.u-mb-250 {
  margin-bottom: 25rem !important;
}

.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mt-5 {
  margin-top: 0.5rem !important;
}

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-15 {
  margin-top: 1.5rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-25 {
  margin-top: 2.5rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-35 {
  margin-top: 3.5rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-45 {
  margin-top: 4.5rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-55 {
  margin-top: 5.5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-65 {
  margin-top: 6.5rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-75 {
  margin-top: 7.5rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-85 {
  margin-top: 8.5rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-95 {
  margin-top: 9.5rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mt-105 {
  margin-top: 10.5rem !important;
}

.u-mt-110 {
  margin-top: 11rem !important;
}

.u-mt-115 {
  margin-top: 11.5rem !important;
}

.u-mt-120 {
  margin-top: 12rem !important;
}

.u-mt-125 {
  margin-top: 12.5rem !important;
}

.u-mt-130 {
  margin-top: 13rem !important;
}

.u-mt-135 {
  margin-top: 13.5rem !important;
}

.u-mt-140 {
  margin-top: 14rem !important;
}

.u-ml-0 {
  margin-left: 0rem !important;
}

.u-ml-5 {
  margin-left: 0.5rem !important;
}

.u-ml-10 {
  margin-left: 1rem !important;
}

.u-ml-15 {
  margin-left: 1.5rem !important;
}

.u-ml-20 {
  margin-left: 2rem !important;
}

.u-ml-25 {
  margin-left: 2.5rem !important;
}

.u-ml-30 {
  margin-left: 3rem !important;
}

.u-ml-35 {
  margin-left: 3.5rem !important;
}

.u-ml-40 {
  margin-left: 4rem !important;
}

.u-ml-45 {
  margin-left: 4.5rem !important;
}

.u-ml-50 {
  margin-left: 5rem !important;
}

.u-ml-55 {
  margin-left: 5.5rem !important;
}

.u-ml-60 {
  margin-left: 6rem !important;
}

.u-ml-65 {
  margin-left: 6.5rem !important;
}

.u-ml-70 {
  margin-left: 7rem !important;
}

.u-ml-75 {
  margin-left: 7.5rem !important;
}

.u-ml-80 {
  margin-left: 8rem !important;
}

.u-ml-85 {
  margin-left: 8.5rem !important;
}

.u-ml-90 {
  margin-left: 9rem !important;
}

.u-ml-95 {
  margin-left: 9.5rem !important;
}

.u-ml-100 {
  margin-left: 10rem !important;
}

.u-ml-105 {
  margin-left: 10.5rem !important;
}

.u-ml-110 {
  margin-left: 11rem !important;
}

.u-ml-115 {
  margin-left: 11.5rem !important;
}

.u-ml-120 {
  margin-left: 12rem !important;
}

.u-ml-125 {
  margin-left: 12.5rem !important;
}

.u-ml-130 {
  margin-left: 13rem !important;
}

.u-ml-135 {
  margin-left: 13.5rem !important;
}

.u-ml-140 {
  margin-left: 14rem !important;
}

.u-mr-0 {
  margin-right: 0rem !important;
}

.u-mr-5 {
  margin-right: 0.5rem !important;
}

.u-mr-10 {
  margin-right: 1rem !important;
}

.u-mr-15 {
  margin-right: 1.5rem !important;
}

.u-mr-20 {
  margin-right: 2rem !important;
}

.u-mr-25 {
  margin-right: 2.5rem !important;
}

.u-mr-30 {
  margin-right: 3rem !important;
}

.u-mr-35 {
  margin-right: 3.5rem !important;
}

.u-mr-40 {
  margin-right: 4rem !important;
}

.u-mr-45 {
  margin-right: 4.5rem !important;
}

.u-mr-50 {
  margin-right: 5rem !important;
}

.u-mr-55 {
  margin-right: 5.5rem !important;
}

.u-mr-60 {
  margin-right: 6rem !important;
}

.u-mr-65 {
  margin-right: 6.5rem !important;
}

.u-mr-70 {
  margin-right: 7rem !important;
}

.u-mr-75 {
  margin-right: 7.5rem !important;
}

.u-mr-80 {
  margin-right: 8rem !important;
}

.u-mr-85 {
  margin-right: 8.5rem !important;
}

.u-mr-90 {
  margin-right: 9rem !important;
}

.u-mr-95 {
  margin-right: 9.5rem !important;
}

.u-mr-100 {
  margin-right: 10rem !important;
}

.u-mr-105 {
  margin-right: 10.5rem !important;
}

.u-mr-110 {
  margin-right: 11rem !important;
}

.u-mr-115 {
  margin-right: 11.5rem !important;
}

.u-mr-120 {
  margin-right: 12rem !important;
}

.u-mr-125 {
  margin-right: 12.5rem !important;
}

.u-mr-130 {
  margin-right: 13rem !important;
}

.u-mr-135 {
  margin-right: 13.5rem !important;
}

.u-mr-140 {
  margin-right: 14rem !important;
}

.u-mb-m-100 {
  margin-bottom: -10rem !important;
}

.u-mb-m-95 {
  margin-bottom: -9.5rem !important;
}

.u-mb-m-90 {
  margin-bottom: -9rem !important;
}

.u-mb-m-85 {
  margin-bottom: -8.5rem !important;
}

.u-mb-m-80 {
  margin-bottom: -8rem !important;
}

.u-mb-m-75 {
  margin-bottom: -7.5rem !important;
}

.u-mb-m-70 {
  margin-bottom: -7rem !important;
}

.u-mb-m-65 {
  margin-bottom: -6.5rem !important;
}

.u-mb-m-60 {
  margin-bottom: -6rem !important;
}

.u-mb-m-55 {
  margin-bottom: -5.5rem !important;
}

.u-mb-m-50 {
  margin-bottom: -5rem !important;
}

.u-mb-m-45 {
  margin-bottom: -4.5rem !important;
}

.u-mb-m-40 {
  margin-bottom: -4rem !important;
}

.u-mb-m-35 {
  margin-bottom: -3.5rem !important;
}

.u-mb-m-30 {
  margin-bottom: -3rem !important;
}

.u-mb-m-25 {
  margin-bottom: -2.5rem !important;
}

.u-mb-m-20 {
  margin-bottom: -2rem !important;
}

.u-mb-m-15 {
  margin-bottom: -1.5rem !important;
}

.u-mb-m-10 {
  margin-bottom: -1rem !important;
}

.u-mb-m-5 {
  margin-bottom: -0.5rem !important;
}

.u-mb-m-0 {
  margin-bottom: 0rem !important;
}

.u-mt-m-100 {
  margin-top: -10rem !important;
}

.u-mt-m-95 {
  margin-top: -9.5rem !important;
}

.u-mt-m-90 {
  margin-top: -9rem !important;
}

.u-mt-m-85 {
  margin-top: -8.5rem !important;
}

.u-mt-m-80 {
  margin-top: -8rem !important;
}

.u-mt-m-75 {
  margin-top: -7.5rem !important;
}

.u-mt-m-70 {
  margin-top: -7rem !important;
}

.u-mt-m-65 {
  margin-top: -6.5rem !important;
}

.u-mt-m-60 {
  margin-top: -6rem !important;
}

.u-mt-m-55 {
  margin-top: -5.5rem !important;
}

.u-mt-m-50 {
  margin-top: -5rem !important;
}

.u-mt-m-45 {
  margin-top: -4.5rem !important;
}

.u-mt-m-40 {
  margin-top: -4rem !important;
}

.u-mt-m-35 {
  margin-top: -3.5rem !important;
}

.u-mt-m-30 {
  margin-top: -3rem !important;
}

.u-mt-m-25 {
  margin-top: -2.5rem !important;
}

.u-mt-m-20 {
  margin-top: -2rem !important;
}

.u-mt-m-15 {
  margin-top: -1.5rem !important;
}

.u-mt-m-10 {
  margin-top: -1rem !important;
}

.u-mt-m-5 {
  margin-top: -0.5rem !important;
}

.u-mt-m-0 {
  margin-top: 0rem !important;
}

.u-ml-m-100 {
  margin-left: -10rem !important;
}

.u-ml-m-95 {
  margin-left: -9.5rem !important;
}

.u-ml-m-90 {
  margin-left: -9rem !important;
}

.u-ml-m-85 {
  margin-left: -8.5rem !important;
}

.u-ml-m-80 {
  margin-left: -8rem !important;
}

.u-ml-m-75 {
  margin-left: -7.5rem !important;
}

.u-ml-m-70 {
  margin-left: -7rem !important;
}

.u-ml-m-65 {
  margin-left: -6.5rem !important;
}

.u-ml-m-60 {
  margin-left: -6rem !important;
}

.u-ml-m-55 {
  margin-left: -5.5rem !important;
}

.u-ml-m-50 {
  margin-left: -5rem !important;
}

.u-ml-m-45 {
  margin-left: -4.5rem !important;
}

.u-ml-m-40 {
  margin-left: -4rem !important;
}

.u-ml-m-35 {
  margin-left: -3.5rem !important;
}

.u-ml-m-30 {
  margin-left: -3rem !important;
}

.u-ml-m-25 {
  margin-left: -2.5rem !important;
}

.u-ml-m-20 {
  margin-left: -2rem !important;
}

.u-ml-m-15 {
  margin-left: -1.5rem !important;
}

.u-ml-m-10 {
  margin-left: -1rem !important;
}

.u-ml-m-5 {
  margin-left: -0.5rem !important;
}

.u-ml-m-0 {
  margin-left: 0rem !important;
}

.u-mr-m-50 {
  margin-right: -5rem !important;
}

.u-mr-m-45 {
  margin-right: -4.5rem !important;
}

.u-mr-m-40 {
  margin-right: -4rem !important;
}

.u-mr-m-35 {
  margin-right: -3.5rem !important;
}

.u-mr-m-30 {
  margin-right: -3rem !important;
}

.u-mr-m-25 {
  margin-right: -2.5rem !important;
}

.u-mr-m-20 {
  margin-right: -2rem !important;
}

.u-mr-m-15 {
  margin-right: -1.5rem !important;
}

.u-mr-m-10 {
  margin-right: -1rem !important;
}

.u-mr-m-5 {
  margin-right: -0.5rem !important;
}

.u-mr-m-0 {
  margin-right: 0rem !important;
}

@media screen and (max-width: 767px) {
  .s\:u-m-auto {
    margin: 0 auto;
  }
  .s\:u-mb-0 {
    margin-bottom: 0rem !important;
  }
  .s\:u-mb-5 {
    margin-bottom: 0.5rem !important;
  }
  .s\:u-mb-10 {
    margin-bottom: 1rem !important;
  }
  .s\:u-mb-15 {
    margin-bottom: 1.5rem !important;
  }
  .s\:u-mb-20 {
    margin-bottom: 2rem !important;
  }
  .s\:u-mb-25 {
    margin-bottom: 2.5rem !important;
  }
  .s\:u-mb-30 {
    margin-bottom: 3rem !important;
  }
  .s\:u-mb-35 {
    margin-bottom: 3.5rem !important;
  }
  .s\:u-mb-40 {
    margin-bottom: 4rem !important;
  }
  .s\:u-mb-45 {
    margin-bottom: 4.5rem !important;
  }
  .s\:u-mb-50 {
    margin-bottom: 5rem !important;
  }
  .s\:u-mb-55 {
    margin-bottom: 5.5rem !important;
  }
  .s\:u-mb-60 {
    margin-bottom: 6rem !important;
  }
  .s\:u-mb-65 {
    margin-bottom: 6.5rem !important;
  }
  .s\:u-mb-70 {
    margin-bottom: 7rem !important;
  }
  .s\:u-mb-75 {
    margin-bottom: 7.5rem !important;
  }
  .s\:u-mb-80 {
    margin-bottom: 8rem !important;
  }
  .s\:u-mb-85 {
    margin-bottom: 8.5rem !important;
  }
  .s\:u-mb-90 {
    margin-bottom: 9rem !important;
  }
  .s\:u-mb-95 {
    margin-bottom: 9.5rem !important;
  }
  .s\:u-mb-100 {
    margin-bottom: 10rem !important;
  }
  .s\:u-mb-105 {
    margin-bottom: 10.5rem !important;
  }
  .s\:u-mb-110 {
    margin-bottom: 11rem !important;
  }
  .s\:u-mb-115 {
    margin-bottom: 11.5rem !important;
  }
  .s\:u-mb-120 {
    margin-bottom: 12rem !important;
  }
  .s\:u-mb-125 {
    margin-bottom: 12.5rem !important;
  }
  .s\:u-mb-130 {
    margin-bottom: 13rem !important;
  }
  .s\:u-mb-135 {
    margin-bottom: 13.5rem !important;
  }
  .s\:u-mb-140 {
    margin-bottom: 14rem !important;
  }
  .s\:u-mb-145 {
    margin-bottom: 14.5rem !important;
  }
  .s\:u-mb-150 {
    margin-bottom: 15rem !important;
  }
  .s\:u-mt-0 {
    margin-top: 0rem !important;
  }
  .s\:u-mt-5 {
    margin-top: 0.5rem !important;
  }
  .s\:u-mt-10 {
    margin-top: 1rem !important;
  }
  .s\:u-mt-15 {
    margin-top: 1.5rem !important;
  }
  .s\:u-mt-20 {
    margin-top: 2rem !important;
  }
  .s\:u-mt-25 {
    margin-top: 2.5rem !important;
  }
  .s\:u-mt-30 {
    margin-top: 3rem !important;
  }
  .s\:u-mt-35 {
    margin-top: 3.5rem !important;
  }
  .s\:u-mt-40 {
    margin-top: 4rem !important;
  }
  .s\:u-mt-45 {
    margin-top: 4.5rem !important;
  }
  .s\:u-mt-50 {
    margin-top: 5rem !important;
  }
  .s\:u-mt-55 {
    margin-top: 5.5rem !important;
  }
  .s\:u-mt-60 {
    margin-top: 6rem !important;
  }
  .s\:u-mt-65 {
    margin-top: 6.5rem !important;
  }
  .s\:u-mt-70 {
    margin-top: 7rem !important;
  }
  .s\:u-mt-75 {
    margin-top: 7.5rem !important;
  }
  .s\:u-mt-80 {
    margin-top: 8rem !important;
  }
  .s\:u-mt-85 {
    margin-top: 8.5rem !important;
  }
  .s\:u-mt-90 {
    margin-top: 9rem !important;
  }
  .s\:u-mt-95 {
    margin-top: 9.5rem !important;
  }
  .s\:u-mt-100 {
    margin-top: 10rem !important;
  }
  .s\:u-ml-0 {
    margin-left: 0rem !important;
  }
  .s\:u-ml-5 {
    margin-left: 0.5rem !important;
  }
  .s\:u-ml-10 {
    margin-left: 1rem !important;
  }
  .s\:u-ml-15 {
    margin-left: 1.5rem !important;
  }
  .s\:u-ml-20 {
    margin-left: 2rem !important;
  }
  .s\:u-ml-25 {
    margin-left: 2.5rem !important;
  }
  .s\:u-ml-30 {
    margin-left: 3rem !important;
  }
  .s\:u-ml-35 {
    margin-left: 3.5rem !important;
  }
  .s\:u-ml-40 {
    margin-left: 4rem !important;
  }
  .s\:u-ml-45 {
    margin-left: 4.5rem !important;
  }
  .s\:u-ml-50 {
    margin-left: 5rem !important;
  }
  .s\:u-ml-55 {
    margin-left: 5.5rem !important;
  }
  .s\:u-ml-60 {
    margin-left: 6rem !important;
  }
  .s\:u-ml-65 {
    margin-left: 6.5rem !important;
  }
  .s\:u-ml-70 {
    margin-left: 7rem !important;
  }
  .s\:u-ml-75 {
    margin-left: 7.5rem !important;
  }
  .s\:u-ml-80 {
    margin-left: 8rem !important;
  }
  .s\:u-mr-0 {
    margin-right: 0rem !important;
  }
  .s\:u-mr-5 {
    margin-right: 0.5rem !important;
  }
  .s\:u-mr-10 {
    margin-right: 1rem !important;
  }
  .s\:u-mr-15 {
    margin-right: 1.5rem !important;
  }
  .s\:u-mr-20 {
    margin-right: 2rem !important;
  }
  .s\:u-mr-25 {
    margin-right: 2.5rem !important;
  }
  .s\:u-mr-30 {
    margin-right: 3rem !important;
  }
  .s\:u-mr-35 {
    margin-right: 3.5rem !important;
  }
  .s\:u-mr-40 {
    margin-right: 4rem !important;
  }
  .s\:u-mr-45 {
    margin-right: 4.5rem !important;
  }
  .s\:u-mr-50 {
    margin-right: 5rem !important;
  }
  .s\:u-mr-55 {
    margin-right: 5.5rem !important;
  }
  .s\:u-mr-60 {
    margin-right: 6rem !important;
  }
  .s\:u-mr-65 {
    margin-right: 6.5rem !important;
  }
  .s\:u-mr-70 {
    margin-right: 7rem !important;
  }
  .s\:u-mr-75 {
    margin-right: 7.5rem !important;
  }
  .s\:u-mr-80 {
    margin-right: 8rem !important;
  }
  .s\:u-mb-m-100 {
    margin-bottom: -10rem !important;
  }
  .s\:u-mb-m-95 {
    margin-bottom: -9.5rem !important;
  }
  .s\:u-mb-m-90 {
    margin-bottom: -9rem !important;
  }
  .s\:u-mb-m-85 {
    margin-bottom: -8.5rem !important;
  }
  .s\:u-mb-m-80 {
    margin-bottom: -8rem !important;
  }
  .s\:u-mb-m-75 {
    margin-bottom: -7.5rem !important;
  }
  .s\:u-mb-m-70 {
    margin-bottom: -7rem !important;
  }
  .s\:u-mb-m-65 {
    margin-bottom: -6.5rem !important;
  }
  .s\:u-mb-m-60 {
    margin-bottom: -6rem !important;
  }
  .s\:u-mb-m-55 {
    margin-bottom: -5.5rem !important;
  }
  .s\:u-mb-m-50 {
    margin-bottom: -5rem !important;
  }
  .s\:u-mb-m-45 {
    margin-bottom: -4.5rem !important;
  }
  .s\:u-mb-m-40 {
    margin-bottom: -4rem !important;
  }
  .s\:u-mb-m-35 {
    margin-bottom: -3.5rem !important;
  }
  .s\:u-mb-m-30 {
    margin-bottom: -3rem !important;
  }
  .s\:u-mb-m-25 {
    margin-bottom: -2.5rem !important;
  }
  .s\:u-mb-m-20 {
    margin-bottom: -2rem !important;
  }
  .s\:u-mb-m-15 {
    margin-bottom: -1.5rem !important;
  }
  .s\:u-mb-m-10 {
    margin-bottom: -1rem !important;
  }
  .s\:u-mb-m-5 {
    margin-bottom: -0.5rem !important;
  }
  .s\:u-mb-m-0 {
    margin-bottom: 0rem !important;
  }
  .s\:u-mt-m-100 {
    margin-top: -10rem !important;
  }
  .s\:u-mt-m-95 {
    margin-top: -9.5rem !important;
  }
  .s\:u-mt-m-90 {
    margin-top: -9rem !important;
  }
  .s\:u-mt-m-85 {
    margin-top: -8.5rem !important;
  }
  .s\:u-mt-m-80 {
    margin-top: -8rem !important;
  }
  .s\:u-mt-m-75 {
    margin-top: -7.5rem !important;
  }
  .s\:u-mt-m-70 {
    margin-top: -7rem !important;
  }
  .s\:u-mt-m-65 {
    margin-top: -6.5rem !important;
  }
  .s\:u-mt-m-60 {
    margin-top: -6rem !important;
  }
  .s\:u-mt-m-55 {
    margin-top: -5.5rem !important;
  }
  .s\:u-mt-m-50 {
    margin-top: -5rem !important;
  }
  .s\:u-mt-m-45 {
    margin-top: -4.5rem !important;
  }
  .s\:u-mt-m-40 {
    margin-top: -4rem !important;
  }
  .s\:u-mt-m-35 {
    margin-top: -3.5rem !important;
  }
  .s\:u-mt-m-30 {
    margin-top: -3rem !important;
  }
  .s\:u-mt-m-25 {
    margin-top: -2.5rem !important;
  }
  .s\:u-mt-m-20 {
    margin-top: -2rem !important;
  }
  .s\:u-mt-m-15 {
    margin-top: -1.5rem !important;
  }
  .s\:u-mt-m-10 {
    margin-top: -1rem !important;
  }
  .s\:u-mt-m-5 {
    margin-top: -0.5rem !important;
  }
  .s\:u-mt-m-0 {
    margin-top: 0rem !important;
  }
  .s\:u-ml-m-100 {
    margin-left: -10rem !important;
  }
  .s\:u-ml-m-95 {
    margin-left: -9.5rem !important;
  }
  .s\:u-ml-m-90 {
    margin-left: -9rem !important;
  }
  .s\:u-ml-m-85 {
    margin-left: -8.5rem !important;
  }
  .s\:u-ml-m-80 {
    margin-left: -8rem !important;
  }
  .s\:u-ml-m-75 {
    margin-left: -7.5rem !important;
  }
  .s\:u-ml-m-70 {
    margin-left: -7rem !important;
  }
  .s\:u-ml-m-65 {
    margin-left: -6.5rem !important;
  }
  .s\:u-ml-m-60 {
    margin-left: -6rem !important;
  }
  .s\:u-ml-m-55 {
    margin-left: -5.5rem !important;
  }
  .s\:u-ml-m-50 {
    margin-left: -5rem !important;
  }
  .s\:u-ml-m-45 {
    margin-left: -4.5rem !important;
  }
  .s\:u-ml-m-40 {
    margin-left: -4rem !important;
  }
  .s\:u-ml-m-35 {
    margin-left: -3.5rem !important;
  }
  .s\:u-ml-m-30 {
    margin-left: -3rem !important;
  }
  .s\:u-ml-m-25 {
    margin-left: -2.5rem !important;
  }
  .s\:u-ml-m-20 {
    margin-left: -2rem !important;
  }
  .s\:u-ml-m-15 {
    margin-left: -1.5rem !important;
  }
  .s\:u-ml-m-10 {
    margin-left: -1rem !important;
  }
  .s\:u-ml-m-5 {
    margin-left: -0.5rem !important;
  }
  .s\:u-ml-m-0 {
    margin-left: 0rem !important;
  }
  .s\:u-mr-m-100 {
    margin-right: -10rem !important;
  }
  .s\:u-mr-m-95 {
    margin-right: -9.5rem !important;
  }
  .s\:u-mr-m-90 {
    margin-right: -9rem !important;
  }
  .s\:u-mr-m-85 {
    margin-right: -8.5rem !important;
  }
  .s\:u-mr-m-80 {
    margin-right: -8rem !important;
  }
  .s\:u-mr-m-75 {
    margin-right: -7.5rem !important;
  }
  .s\:u-mr-m-70 {
    margin-right: -7rem !important;
  }
  .s\:u-mr-m-65 {
    margin-right: -6.5rem !important;
  }
  .s\:u-mr-m-60 {
    margin-right: -6rem !important;
  }
  .s\:u-mr-m-55 {
    margin-right: -5.5rem !important;
  }
  .s\:u-mr-m-50 {
    margin-right: -5rem !important;
  }
  .s\:u-mr-m-45 {
    margin-right: -4.5rem !important;
  }
  .s\:u-mr-m-40 {
    margin-right: -4rem !important;
  }
  .s\:u-mr-m-35 {
    margin-right: -3.5rem !important;
  }
  .s\:u-mr-m-30 {
    margin-right: -3rem !important;
  }
  .s\:u-mr-m-25 {
    margin-right: -2.5rem !important;
  }
  .s\:u-mr-m-20 {
    margin-right: -2rem !important;
  }
  .s\:u-mr-m-15 {
    margin-right: -1.5rem !important;
  }
  .s\:u-mr-m-10 {
    margin-right: -1rem !important;
  }
  .s\:u-mr-m-5 {
    margin-right: -0.5rem !important;
  }
  .s\:u-mr-m-0 {
    margin-right: 0rem !important;
  }
}
.u-w-full-vw {
  width: 100vw;
}
.u-w-full {
  width: 100%;
}
.u-w-half {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .s\:u-w-full {
    width: 100%;
  }
  .s\:u-w-auto {
    width: auto;
  }
}
.u-h-full {
  height: 100%;
}
.u-h-half {
  height: 50%;
}

@media screen and (max-width: 767px) {
  .s\:u-h-full {
    height: 100%;
  }
  .s\:u-h-auto {
    height: auto;
  }
}
.u-z-9999 {
  z-index: 9999;
}

.u-mix-blend-normal {
  mix-blend-mode: normal;
}
.u-mix-blend-multiply {
  mix-blend-mode: multiply;
}

.u-opacity-0 {
  opacity: 0;
}
.u-opacity-20 {
  opacity: 0.2;
}
.u-opacity-50 {
  opacity: 0.5;
}
.u-opacity-100 {
  opacity: 1;
}

.u-palt {
  font-feature-settings: "palt";
}

.u-hidden-txt {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap; /* 折り返し防止 */
}

.l-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100dvh;
  padding: 9rem 0 0;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 6.4rem 0 0;
  }
}

.l-header {
  background-color: var(--white);
  border-radius: 6rem;
  box-shadow: 0 0 0.6rem rgba(165, 216, 224, 0.6);
  display: flex;
  height: 5.8rem;
  left: 2.7rem;
  padding: 0 1rem 0 1.7rem;
  position: fixed;
  top: 1.4rem;
  width: 131.5rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-header {
    left: 2.4rem;
    height: 5.1rem;
    top: 0.7rem;
    width: 34.1rem;
  }
}
.l-header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-header .u-flex {
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.l-header .logo {
  display: block;
  width: 34rem;
}
@media screen and (max-width: 767px) {
  .l-header .logo {
    width: 11.9rem;
  }
}
.l-header .nav {
  z-index: 2;
}
.l-header .nav ul {
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  gap: 2.8rem;
  letter-spacing: 0.03rem;
  padding-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .l-header .nav ul {
    align-items: center;
    flex-direction: column;
    font-size: 2rem;
    gap: 0;
    height: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .l-header .nav ul li {
    border-bottom: 2px dotted var(--cyan-light);
    display: block;
    padding: 1.5rem 0;
    text-align: center;
    width: 29.3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header .nav ul li a {
    color: var(--gray);
  }
}
@media screen and (max-width: 767px) {
  .l-header .nav ul li:last-child {
    border: none;
  }
}
.l-header .btn {
  align-items: center;
  background-color: var(--gray);
  border-radius: 8.1rem;
  color: var(--white);
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 700;
  gap: 0.8rem;
  justify-content: center;
  height: 3.8rem;
  margin: 0 0 0 3.5rem;
  padding: 0 1rem 0 2rem;
  width: 13.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-header .btn {
    height: 3.4rem;
    margin-right: 0.6rem;
    letter-spacing: 0.25rem;
    width: 10.7rem;
  }
}
.l-header .btn::after {
  background-color: var(--black);
  content: " ";
  display: inline-block;
  height: auto;
  line-height: 0;
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  aspect-ratio: 1/1;
  background-color: var(--white);
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"><path d="M0.540039 0.540001H3.69004L5.80054 11.0846C5.87255 11.4472 6.06979 11.7729 6.35773 12.0047C6.64567 12.2365 7.00596 12.3596 7.37554 12.3525H15.03C15.3996 12.3596 15.7599 12.2365 16.0479 12.0047C16.3358 11.7729 16.533 11.4472 16.605 11.0846L17.865 4.4775H4.47754M7.62754 16.29C7.62754 16.7249 7.27496 17.0775 6.84004 17.0775C6.40512 17.0775 6.05254 16.7249 6.05254 16.29C6.05254 15.8551 6.40512 15.5025 6.84004 15.5025C7.27496 15.5025 7.62754 15.8551 7.62754 16.29ZM16.29 16.29C16.29 16.7249 15.9375 17.0775 15.5025 17.0775C15.0676 17.0775 14.715 16.7249 14.715 16.29C14.715 15.8551 15.0676 15.5025 15.5025 15.5025C15.9375 15.5025 16.29 15.8551 16.29 16.29Z" stroke="white" stroke-width="1.08" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-header .btn::after {
    transform: translate(-0.3rem, 0.1rem);
    width: 1.9rem;
  }
}
.l-header .btn:hover {
  background-color: var(--light-blue);
  opacity: 1;
}

.l-footer {
  padding: 5.2rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 4.5rem 0 1rem;
  }
}
.l-footer-logos {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer-logos {
    align-items: center;
    flex-direction: column;
  }
}
.l-footer-logos .logo {
  display: block;
  width: 30.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer-logos .logo {
    width: 28.4rem;
  }
}
.l-footer-logos .logo-kj {
  display: block;
  padding: 1rem 0 0;
  width: 18.441rem;
}
@media screen and (max-width: 767px) {
  .l-footer-logos .logo-kj {
    margin: 4rem 0 0;
  }
}
.l-footer-share {
  bottom: 1rem;
  position: absolute;
  right: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 19.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-share {
    bottom: unset;
    position: relative;
    right: unset;
    margin: 0 auto;
    padding: 2rem 0 0;
  }
}
.l-footer-share dt {
  margin: 0 0 1rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer-share dt {
    letter-spacing: 0;
    font-size: 1.43rem;
  }
}
.l-footer-share dd {
  height: 2.7rem;
}
.l-footer-share dd img {
  height: 100%;
  width: auto;
}
.l-footer-copy {
  display: inline-block;
  font-size: 1.2rem;
  padding: 4rem 0 0;
  letter-spacing: 0.048rem;
}
@media screen and (max-width: 767px) {
  .l-footer-copy {
    display: block;
    padding: 3.5rem 0 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .js-hamburger-btn {
    background-color: var(--gray);
    border-radius: 50%;
    display: block;
    height: 3.4rem;
    position: relative;
    width: 3.4rem;
    top: 0;
    z-index: 9999;
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-btn span {
    background-color: white;
    border-radius: 9999px;
    bottom: 0;
    display: block;
    height: 0.2rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.4s ease;
    width: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-btn span:before, .js-hamburger-btn span:after {
    background-color: white;
    border-radius: 9999px;
    content: "";
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease;
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-btn span:before {
    top: -0.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-btn span::after {
    bottom: -0.5rem;
    right: unset;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-btn.is-open span {
    background-color: transparent !important;
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-btn.is-open span:before, .js-hamburger-btn.is-open span:after {
    bottom: 0;
    margin: auto;
    top: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-btn.is-open span::before {
    transform: rotate(150deg);
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-btn.is-open span::after {
    transform: rotate(-150deg);
  }
}
.js-hamburger-btn:focus {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .js-hamburger-menu {
    height: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    transform: translateY(-100vh);
    transition: opacity 0.4s ease;
    top: 0;
    width: 40.9rem;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .js-hamburger-menu.is-open {
    background: white;
    height: 100dvh;
    left: 0;
    opacity: 1;
    position: fixed;
    top: 0;
    width: 100dvw;
    transform: translateY(0);
    z-index: 7777;
  }
}

.remodal {
  aspect-ratio: 1.7777777778;
  background: transparent;
  height: auto;
  padding: 0;
  max-width: unset;
  width: 95rem;
}
@media screen and (max-width: 767px) {
  .remodal {
    width: 100%;
  }
}
.remodal-close {
  background-color: var(--black);
  content: " ";
  display: inline-block;
  height: auto;
  line-height: 0;
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  aspect-ratio: 1/1;
  background: white;
  left: unset;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" viewBox="0 0 35 35" fill="none"><path d="M17.5 0C27.165 0 35 7.83502 35 17.5C35 27.165 27.165 35 17.5 35C7.83502 35 0 27.165 0 17.5C0 7.83502 7.83502 0 17.5 0ZM17.5 1C8.3873 1 1 8.3873 1 17.5C1 26.6127 8.3873 34 17.5 34C26.6127 34 34 26.6127 34 17.5C34 8.3873 26.6127 1 17.5 1ZM25.958 10.7334L19.1914 17.5L25.958 24.2666L24.2666 25.958L17.5 19.1914L10.7334 25.958L9.04199 24.2666L15.8086 17.5L9.04199 10.7334L10.7334 9.04199L17.5 15.8086L24.2666 9.04199L25.958 10.7334Z" fill="black"/></svg>');
  position: absolute;
  right: 0;
  top: -5rem;
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .remodal-close {
    right: 3.4rem;
    width: 3rem;
  }
}
.remodal-close:before {
  content: "";
}
.remodal iframe {
  height: 100%;
  width: 100%;
}
.remodal-overlay {
  background: rgba(0, 0, 0, 0.75);
}
.remodal-wrapper {
  padding: 1rem 0 0 !important;
}

[data-js-fadeinup],
[data-js-fadeinup-wrapper] > * {
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(3rem);
}
[data-js-fadeinup].is-inview,
[data-js-fadeinup-wrapper] > *.is-inview {
  opacity: 1;
  transform: translateY(0);
}

[data-js-fadeinup] [data-js-fadeinup],
[data-js-fadeinup-wrapper] [data-js-fadeinup],
[data-js-fadeinup] [data-js-fadeinup-wrapper] > * {
  transform: translateY(1rem);
}
[data-js-fadeinup] [data-js-fadeinup].is-inview,
[data-js-fadeinup-wrapper] [data-js-fadeinup].is-inview,
[data-js-fadeinup] [data-js-fadeinup-wrapper] > *.is-inview {
  opacity: 1;
  transform: translateY(0);
}

[data-js-fadeinup="2"] {
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  [data-js-fadeinup="2"] {
    transition-delay: unset;
  }
}

[data-js-fadeinup="3"] {
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  [data-js-fadeinup="3"] {
    transition-delay: unset;
  }
}

[data-js-fadeinup="4"] {
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  [data-js-fadeinup="4"] {
    transition-delay: unset;
  }
}

[data-js-fadeinup="5"] {
  transition-delay: 0.8s;
}
@media screen and (max-width: 767px) {
  [data-js-fadeinup="5"] {
    transition-delay: unset;
  }
}

[data-js-fadeinup="6"] {
  transition-delay: 1s;
}
@media screen and (max-width: 767px) {
  [data-js-fadeinup="6"] {
    transition-delay: unset;
  }
}

/* デフォルト：非表示（画面外） */
.grecaptcha-badge {
  bottom: -100px !important;
}

.p-hero {
  z-index: 2;
}
.p-hero .u-flex {
  flex-direction: row-reverse;
  gap: 7.7rem;
}
@media screen and (max-width: 800px) {
  .p-hero .u-flex {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero .u-flex {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.p-hero-meta {
  flex: 1;
}
.p-hero-meta .ttl {
  color: var(--light-blue);
  font-size: 3.3267rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 5.7rem;
  padding: 3.6rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .ttl {
    font-size: 1.8716rem;
    letter-spacing: 0;
    margin: 0 0 1rem;
    padding: 0.5rem 0 0;
    text-align: center;
    text-indent: 1rem;
  }
}
.p-hero-meta .ttl .c-marker {
  font-size: 4.2772rem;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .ttl .c-marker {
    font-size: 2.4642rem;
  }
}
.p-hero-meta .product {
  margin: 0 0 3.8rem 7.3rem;
  width: 24.7rem;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .product {
    margin: 0 auto;
    width: 12rem;
  }
}
.p-hero-meta .share {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-content: center;
  justify-items: center;
  gap: 0.5rem 1rem;
  left: 34.8rem;
  position: absolute;
  top: 35.2rem;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .share {
    gap: 0.7rem;
    left: unset;
    right: 3.1rem;
    top: 12.5rem;
  }
}
.p-hero-meta .share-ttl {
  align-content: center;
  aspect-ratio: 103/23;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="103" height="23" viewBox="0 0 103 23" fill="none"><path d="M99 0C101.209 0 103 1.79086 103 4V16C103 18.2091 101.209 20 99 20H56.625L54.2471 23L51.8682 20H4C1.79086 20 3.22133e-08 18.2091 0 16V4C0 1.79086 1.79086 2.0133e-08 4 0H99Z" fill="%230094AC"/></svg>') no-repeat 0 0/contain;
  color: var(--white);
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  grid-column: 1/-1; /* 2列全体にまたがる */
  margin-bottom: 0.5rem;
  width: 10.3rem;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .share-ttl {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="78" height="18" viewBox="0 0 78 18" fill="none"><path d="M74.8223 0C76.4919 1.09385e-05 77.8457 1.35382 77.8457 3.02344V12.0928C77.8455 13.7623 76.4918 15.1152 74.8223 15.1152H42.7969L40.999 17.3828L39.2012 15.1152H3.02344C1.35391 15.1152 0.000156696 13.7623 0 12.0928V3.02344C0 1.35381 1.35381 0 3.02344 0H74.8223Z" fill="%230094AC"/></svg>') no-repeat 0 0/contain;
    font-size: 1.2rem;
    letter-spacing: 0;
    height: 1.8rem;
    margin: 0;
    width: 7.8rem;
  }
}
.p-hero-meta .share-x {
  width: 5.025rem;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .share-x {
    width: 3.7975rem;
  }
}
.p-hero-meta .share-line {
  width: 4.985rem;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .share-line {
    width: 3.768rem;
  }
}
.p-hero-meta .logo {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 0.8rem;
  min-width: 250px;
  width: 39.4rem;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .logo {
    left: 0;
    margin: 1.1rem auto 0;
    width: 24.9rem;
  }
}
.p-hero-meta .logo-body {
  width: 100%;
}
.p-hero-meta .logo-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1.6rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .logo-footer {
    margin-left: -0.5rem;
    padding: 0.6rem 0 0;
  }
}
.p-hero-meta .logo-footer .release {
  border: 1px solid var(--gray);
  border-radius: 9999px;
  font-size: 1.12rem;
  line-height: max(1.6rem, 16px);
  letter-spacing: 0;
  height: max(1.8rem, 18px);
  padding: 0 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .logo-footer .release {
    font-size: 0.996rem;
    padding: 0 0.4rem 0;
    white-space: nowrap;
  }
}
.p-hero-meta .logo-footer .price {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .logo-footer .price {
    font-size: 1.1rem;
    white-space: nowrap;
  }
}
.p-hero-meta .scroll {
  border-left: 1px solid black;
  bottom: -5.3rem;
  display: block;
  font-size: 1.5rem;
  height: 10.9rem;
  letter-spacing: 0;
  position: absolute;
  right: 4rem;
  padding-left: 0.3rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-hero-meta .scroll {
    bottom: -4.8rem;
    font-size: 1.4rem;
    height: 9.2rem;
    padding-left: 0;
    right: 1.7rem;
  }
}
.p-hero-visual {
  width: 76.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero-visual {
    width: 100%;
  }
}

.p-grad-bg {
  background: linear-gradient(180deg, var(--4, #FFF) 0%, #DFF2EF 30.76%, #CBE9E5 81.8%, #46D0E6 127.94%);
}
@media screen and (max-width: 767px) {
  .p-grad-bg {
    background: linear-gradient(180deg, var(--4, #FFF) 0%, #DFF2EF 45.83%, #CBE9E5 100%);
  }
}

.p-problem {
  padding: 14.2rem 0 10.9rem;
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding: 8.6rem 0 7.2rem;
  }
}
.p-problem:before {
  aspect-ratio: 1/1;
  background: var(--cyan-lighter) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="95" height="53" viewBox="0 0 95 53" fill="none"><path d="M88.542 20.188C90.5689 19.0675 93.1207 19.8027 94.2412 21.8296C95.3612 23.8562 94.6269 26.4072 92.6006 27.5278L47.3828 52.5269L2.16504 27.5278C0.138478 26.4072 -0.59587 23.8563 0.524414 21.8296C1.64489 19.8028 4.19583 19.0678 6.22266 20.188L47.3828 42.9438L88.542 20.188ZM88.542 0.523926C90.5687 -0.596268 93.1206 0.138949 94.2412 2.16553C95.3615 4.19212 94.6268 6.74299 92.6006 7.86377L47.3828 32.8628L2.16504 7.86377C0.138418 6.74313 -0.596013 4.1923 0.524414 2.16553C1.64503 0.139139 4.19599 -0.596175 6.22266 0.523926L47.3828 23.2798L88.542 0.523926Z" fill="white"/></svg>') no-repeat 50% 50%/9.5rem auto;
  border-radius: 50%;
  bottom: -8rem;
  content: " ";
  display: block;
  left: calc(50% - 13rem);
  position: absolute;
  width: 26.1rem;
}
@media screen and (max-width: 767px) {
  .p-problem:before {
    background-size: 7.02rem auto;
    bottom: -5.3rem;
    left: calc(50% - 8.5rem);
    width: 17.4rem;
  }
}
.p-problem .ttl {
  --marker-pos: 80%;
  color: var(--light-blue);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-problem .ttl {
    font-size: 2.1rem;
  }
}
.p-problem .ttl b {
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-problem .ttl b {
    font-size: 2.8rem;
  }
}
.p-problem .lead {
  color: var(--gray);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 177.778%;
  padding: 3.9rem 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-problem .lead {
    font-size: 1.4rem;
    line-height: 200%;
    padding: 1.9rem 0 0;
  }
}
.p-problem-imgs {
  display: flex;
  justify-content: space-between;
  padding: 5.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-problem-imgs {
    flex-direction: column;
    gap: 1.3rem;
    padding: 2.7rem 0 0;
  }
}
.p-problem-imgs .img-1 {
  width: 62.8rem;
}
@media screen and (max-width: 767px) {
  .p-problem-imgs .img-1 {
    width: 100%;
  }
}
.p-problem-imgs .img-2 {
  width: 47.3rem;
}
@media screen and (max-width: 767px) {
  .p-problem-imgs .img-2 {
    width: 100%;
  }
}

.p-solution {
  background: white;
  border-radius: 3.9rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-solution {
    border-radius: 2.4rem;
  }
}
.p-solution-head {
  align-items: center;
  background: var(--cyan-light);
  display: flex;
  height: 17.7rem;
  justify-content: center;
  padding: 0.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-solution-head {
    height: 14.7rem;
  }
}
.p-solution-head .ttl {
  color: white;
  font-size: 3.4rem;
  line-height: 1.55;
  margin-left: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-solution-head .ttl {
    font-size: 2rem;
  }
}
.p-solution-head .ttl .c-marker {
  --marker-pos: 90%;
}
.p-solution-body {
  display: flex;
  justify-content: space-between;
  margin: 2.9rem 0 0;
  padding: 0 4rem 4.7rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-solution-body {
    flex-direction: column;
    margin: 0;
    padding: 0 2.4rem 3.1rem;
  }
}
.p-solution-item {
  text-align: center;
  width: 46.7rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item {
    width: 100%;
  }
}
.p-solution-item > .ttl {
  color: var(--light-blue);
  font-size: 2.4rem;
  font-weight: 700;
  padding: 1rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item > .ttl {
    font-size: 2rem;
    padding: 1.7rem 0 0.7rem;
  }
}
.p-solution-item > .desc {
  color: var(--gray);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 0 0 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item > .desc {
    font-size: 1.6rem;
    line-height: 175%;
    margin: 0 0 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-1 {
    padding: 0 0 3rem;
    margin: 0 0 0.2rem;
  }
}
.p-solution-item.item-1 .imgs {
  display: grid;
  column-gap: 1.7rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 2.1rem;
  width: 46.7rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-1 .imgs {
    column-gap: 1.07rem;
    row-gap: 1.3rem;
    width: 100%;
  }
}
.p-solution-item.item-1 .imgs .img-1 {
  grid-column: 1/-1;
}
.p-solution-item.item-1:after {
  background-image: radial-gradient(circle, var(--cyan-light) 0.16rem, transparent 0.16rem);
  background-size: 0.3rem 0.83rem;
  background-repeat: repeat-y;
  content: " ";
  display: block;
  height: 100%;
  right: -4.8rem;
  position: absolute;
  top: 0;
  width: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-1:after {
    background-image: radial-gradient(circle, var(--cyan-light) 0.16rem, transparent 0.16rem);
    background-size: 0.83rem 0.3rem;
    background-repeat: repeat-x;
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    height: 0.3rem;
    top: unset;
    right: unset;
    bottom: 0;
    width: 100%;
  }
}
.p-solution-item.item-2 .sheets {
  display: flex;
  flex-direction: column;
  gap: 3.3rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-2 .sheets {
    gap: 2rem;
  }
}
.p-solution-item.item-2 .sheet {
  display: flex;
  justify-content: space-between;
}
.p-solution-item.item-2 .sheet-img {
  width: 19.6rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-2 .sheet-img {
    width: 12.2rem;
  }
}
.p-solution-item.item-2 .sheet-txt {
  width: 24.5rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-2 .sheet-txt {
    width: 15.9rem;
  }
}
.p-solution-item.item-2 .sheet-txt > .ttl {
  align-items: center;
  background-color: var(--cyan-light);
  border-radius: 9999px;
  color: white;
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  height: 3.1rem;
  justify-content: center;
  margin: 0 0 0.9rem;
  padding: 0 0 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-2 .sheet-txt > .ttl {
    font-size: 1.3rem;
    height: 1.9rem;
  }
}
.p-solution-item.item-2 .sheet-txt > .subttl {
  color: var(--gray);
  font-size: 1.8rem;
  margin: 0 0 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-2 .sheet-txt > .subttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-solution-item.item-2 .sheet-txt > .txt {
    font-size: 1.1rem;
    line-height: 145.455%;
  }
}

.p-scene {
  padding: 9.3rem 0 25.2rem;
}
@media screen and (max-width: 767px) {
  .p-scene {
    padding: 3.3rem 0 21.2rem;
  }
}
.p-scene .c-ttl-1 {
  margin: 0 0 3.1rem;
}
@media screen and (max-width: 767px) {
  .p-scene .c-ttl-1 {
    margin: 0 0 1.1rem;
  }
}
.p-scene-items {
  padding: 1.2rem 0 0;
}
.p-scene-items .u-flex {
  gap: 3.3rem;
}
.p-scene-item-header .ttl {
  background: var(--cyan-light);
  border-radius: 9999px;
  color: white;
  font-size: 2rem;
  height: 4.26rem;
  line-height: 4.26rem;
  padding: 0 2rem 0 4.4rem;
  width: fit-content;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-scene-item-header .ttl {
    font-size: 1.8rem;
    height: 3.9rem;
    width: 100%;
  }
}
.p-scene-item-header .ttl:before {
  aspect-ratio: 1/1;
  background: var(--cyan-light);
  border-radius: 50%;
  content: " ";
  display: block;
  position: absolute;
  left: 1.3rem;
  top: -1.1rem;
  width: 4.6rem;
}
.p-scene-item-header .ttl.is-green {
  background: var(--green);
}
.p-scene-item-header .ttl.is-green:before {
  background: var(--green);
}
.p-scene-item-header .ttl-icon {
  display: inline-block;
  height: 3.38rem;
  left: 2.1rem;
  position: absolute;
  top: -0.1rem;
}
.p-scene-item-header .ttl-icon img {
  display: block;
  height: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-scene-item-header .ttl-txt {
    display: inline-block;
    transform: translateY(-0.3rem);
  }
}
.p-scene-item-header .desc {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.8rem 0 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-scene-item-header .desc {
    font-size: 1.6rem;
    line-height: 175%;
    padding: 1.1rem 0 2.1rem !important;
    text-align: center;
  }
}
.p-scene-item-body {
  display: flex;
  gap: 3.3rem;
}
.p-scene-item-body .img {
  width: 35.3rem;
}
@media screen and (max-width: 767px) {
  .p-scene-item-body .img {
    width: 34.2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-scene-item-body .slick-initialized .img {
    margin-right: 2.5rem;
  }
}
.p-scene-item.item-1 {
  margin-bottom: 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-scene-item.item-1 {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-scene-item.item-3 {
    padding: 4.8rem 0 0;
  }
}
.p-scene-item.item-3 .ttl-icon {
  margin-left: -1.2rem;
}

.p-movie {
  background: var(--light-gray);
}
.p-movie .c-anchor {
  transform: translateY(-25rem);
}
@media screen and (max-width: 767px) {
  .p-movie .c-anchor {
    transform: translateY(-3rem);
  }
}
.p-movie:before {
  background: var(--light-gray);
  border-radius: 8rem 8rem 0 0;
  content: " ";
  display: block;
  height: 8rem;
  position: absolute;
  top: -8rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-movie:before {
    border-radius: 4rem 4rem 0 0;
  }
}
.p-movie-product {
  position: absolute;
  right: 18.4rem;
  top: -15.7rem;
  width: 24.6rem;
}
@media screen and (max-width: 767px) {
  .p-movie-product {
    left: calc(50% - 8.3rem);
    right: unset;
    top: -16.6rem;
    width: 17.3rem;
  }
}
.p-movie .c-ttl-1 {
  padding: 3.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-movie .c-ttl-1 {
    padding: 4.2rem 0 0;
  }
}
.p-movie-thumb {
  display: block;
  margin: 6.2rem auto 0;
  width: 73rem;
}
@media screen and (max-width: 767px) {
  .p-movie-thumb {
    border-radius: 2.4rem;
    overflow: hidden;
    margin: 4.2rem 0 0;
    width: 100%;
  }
}
.p-movie-thumb:before {
  aspect-ratio: 1/1;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="89" height="89" viewBox="0 0 89 89" fill="none"><path d="M44.5 0C69.0767 0 89 19.9233 89 44.5C89 69.0767 69.0767 89 44.5 89C19.9233 89 0 69.0767 0 44.5C0 19.9233 19.9233 0 44.5 0ZM44.5 4C22.1325 4 4 22.1325 4 44.5C4 66.8675 22.1325 85 44.5 85C66.8675 85 85 66.8675 85 44.5C85 22.1325 66.8675 4 44.5 4ZM35.0566 25.7363C35.7069 25.3885 36.4958 25.4269 37.1094 25.8359L62.6094 42.8359C63.1658 43.2069 63.5 43.8313 63.5 44.5C63.5 45.1687 63.1658 45.7931 62.6094 46.1641L37.1094 63.1641C36.4958 63.5731 35.7069 63.6115 35.0566 63.2637C34.4063 62.9156 34 62.2376 34 61.5V27.5C34 26.7624 34.4063 26.0844 35.0566 25.7363ZM38 57.7627L57.8945 44.5L38 31.2363V57.7627Z" fill="white"/></svg>') no-repeat 0 0/contain;
  content: " ";
  display: block;
  height: auto;
  left: calc(50% - 4.45rem);
  pointer-events: none;
  position: absolute;
  top: calc(50% - 4.45rem);
  width: 8.9rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-movie-thumb:before {
    left: calc(50% - 3rem);
    top: calc(50% - 3rem);
    width: 6.1rem;
  }
}

.p-products {
  background: var(--light-gray);
  padding: 13rem 0 20rem;
}
@media screen and (max-width: 767px) {
  .p-products {
    padding: 5rem 0 12.8rem;
  }
}
.p-products .c-ttl-1 {
  margin: 0 0 5.1rem;
}
@media screen and (max-width: 767px) {
  .p-products .c-ttl-1 {
    margin: 0 0 3.2rem;
  }
}
.p-products-features {
  display: flex;
  flex-direction: column;
  gap: 5.3rem;
}
@media screen and (max-width: 767px) {
  .p-products-features {
    gap: 3.5rem;
  }
}
.p-products-features .feature-ttl {
  color: var(--light-blue);
  font-size: 2.8rem;
  margin: 0 0 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-ttl {
    font-size: 2rem;
    margin: 0 0 0.6rem;
  }
}
.p-products-features .feature-txt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-txt {
    font-size: 1.6rem;
    line-height: 175%;
  }
}
.p-products-features .feature-figures {
  display: flex;
  gap: 3.3rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-figures {
    flex-direction: column;
    gap: 1.3rem;
  }
}
.p-products-features .feature-figure {
  padding: 2.7rem 0 0;
  width: 35.3rem;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-figure {
    padding: 2rem 0 0;
    width: 100%;
  }
}
.p-products-features .feature-figure .caption {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.3rem 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-figure .caption {
    padding: 1rem 0 0;
  }
}
.p-products-features .feature .c-roundbox {
  align-items: center;
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  padding: 2.9rem 4.1rem 2rem 5.2rem;
  margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature .c-roundbox {
    flex-direction: column-reverse;
    gap: 3rem;
    margin: 3.3rem 0 0;
    padding: 3rem 2.4rem;
  }
}
.p-products-features .feature-1 .img {
  border-radius: 1.2rem;
  overflow: hidden;
  width: 44.7rem;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-1 .img {
    order: 2;
    width: 100%;
  }
}
.p-products-features .feature-1 .content {
  width: 54.2rem;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-1 .content {
    display: contents;
  }
}
.p-products-features .feature-1 .table-scroller {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-1 .table-scroller {
    padding: 0 0 1rem;
    order: 2;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-1 .table-scroller .simplebar-scrollbar {
    background: #ccc;
    border-radius: 9999px;
  }
  .p-products-features .feature-1 .table-scroller .simplebar-content-wrapper {
    scrollbar-width: none !important;
  }
  .p-products-features .feature-1 .table-scroller .simplebar-content-wrapper::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-1 .table-scroller .table-wrapper {
    width: max-content;
  }
}
.p-products-features .feature-1 .table-scroller .table {
  background: linear-gradient(to bottom, var(--cyan-light) 0px, var(--cyan-light) 2.4rem, transparent 2.4rem), linear-gradient(to right, var(--cyan-lighter) 0%, var(--cyan-lighter) 25rem, var(--light-gray) 25rem, var(--light-gray) 100%);
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-1 .table-scroller .table {
    width: max-content;
  }
}
.p-products-features .feature-1 .table-scroller .table th,
.p-products-features .feature-1 .table-scroller .table td {
  background: transparent;
}
.p-products-features .feature-1 .table-scroller .table thead th {
  background: var(--cyan-light);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  height: 2.4rem;
}
.p-products-features .feature-1 .table-scroller .table thead th:first-child {
  border-right: 2px dotted var(--light-blue);
}
.p-products-features .feature-1 .table-scroller .table tbody tr:not(:last-child) th,
.p-products-features .feature-1 .table-scroller .table tbody tr:not(:last-child) td {
  border-bottom: 2px dotted var(--light-blue);
}
.p-products-features .feature-1 .table-scroller .table tbody th:first-child, .p-products-features .feature-1 .table-scroller .table tbody td:first-child {
  border-right: 2px dotted var(--light-blue);
}
.p-products-features .feature-1 .table-scroller .table tbody th {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.2rem 0.8rem 0.5rem 1rem;
  text-align: left;
  width: 25rem;
}
.p-products-features .feature-1 .table-scroller .table tbody th .volume {
  align-items: center;
  display: flex;
  margin-bottom: -0.7rem;
}
.p-products-features .feature-1 .table-scroller .table tbody th .volume-label {
  color: var(--light-blue);
  font-size: 2.707rem;
}
.p-products-features .feature-1 .table-scroller .table tbody th .volume-icon {
  display: inline-block;
  height: 2rem;
  padding: 0 0 0 0.8rem;
  transform: translateY(-0.5rem);
}
.p-products-features .feature-1 .table-scroller .table tbody th .volume-icon img {
  height: 100%;
  width: auto;
}
.p-products-features .feature-1 .table-scroller .table tbody th b {
  font-size: 1.62rem;
}
.p-products-features .feature-1 .table-scroller .table tbody td {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 7rem 0 2.5rem;
}
.p-products-features .feature-1 .note {
  align-items: center;
  background: #BCE4B6;
  border-radius: 9999px;
  display: flex;
  font-size: 1.245rem;
  font-weight: 700;
  min-height: 14.871rem;
  line-height: 1.3;
  padding: 1rem 0.5rem;
  position: absolute;
  right: 1rem;
  top: 3rem;
  writing-mode: vertical-rl;
  min-width: 4.174rem;
}
.p-products-features .feature-1 .notice {
  font-size: 1.1rem;
  padding: 0.2rem 0 0;
}
.p-products-features .feature-1 .notice li {
  line-height: 145.455%;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-products-features .feature-1 .notice li {
    padding-left: 0;
    text-indent: 0;
  }
}

.p-spec {
  background: linear-gradient(180deg, var(--4, #FFF) 22.17%, #CBE9E5 58.19%, #22C7E2 100%);
  padding: 0 0 13.4rem;
}
@media screen and (max-width: 767px) {
  .p-spec {
    padding: 0 0 6.3rem;
  }
}
.p-spec:before {
  background: white;
  border-radius: 8rem 8rem 0 0;
  content: " ";
  display: block;
  height: 8rem;
  left: 0;
  position: absolute;
  top: -8rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-spec:before {
    border-radius: 4rem 4rem 0 0;
  }
}
.p-spec-img {
  padding: 17rem 0 0 1.5rem;
  text-align: center;
  width: 52.3rem;
}
@media screen and (max-width: 767px) {
  .p-spec-img {
    padding: 0;
    width: auto;
  }
}
.p-spec-img img {
  width: 34.5rem;
}
@media screen and (max-width: 767px) {
  .p-spec-img img {
    width: 24rem;
  }
}
.p-spec-table {
  margin: 0 0 12.7rem;
  padding: 0.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-spec-table {
    margin: 0 0 5.3rem;
    padding: 8.5rem 0 0;
  }
}
.p-spec-table .ttl {
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-spec-table .ttl {
    font-size: 2rem;
    text-align: center;
  }
}
.p-spec-table dl {
  display: grid;
  grid-template-columns: 16.2rem 1fr;
}
@media screen and (max-width: 767px) {
  .p-spec-table dl {
    grid-template-columns: 7.3rem 1fr;
  }
}
.p-spec-table dt, .p-spec-table dd {
  border-top: 1px solid var(--light-gray);
  font-size: 1.4rem;
  padding: 1.1rem 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-spec-table dt, .p-spec-table dd {
    font-size: 1.3rem;
    line-height: 150.492%;
    padding: 0.9rem 0;
  }
}
.p-spec-table dt {
  font-weight: 700;
  padding-left: 3.7rem;
}
@media screen and (max-width: 767px) {
  .p-spec-table dt {
    padding-left: 0.5rem;
  }
}
.p-spec-table dd li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-spec-table dd small {
    font-size: 100%;
  }
}
.p-spec-details {
  padding: 3rem 4.3rem;
  margin: 0 auto 9.4rem;
  width: 98rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details {
    margin: 0 2.4rem;
    padding: 4rem 2.4rem 2.5rem;
    width: auto;
  }
}
.p-spec-details > .ttl {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details > .ttl {
    font-size: 2rem;
    text-align: center;
  }
}
.p-spec-details .parts {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-spec-details .parts {
    flex-direction: column;
  }
}
.p-spec-details .parts-item.item-1 {
  transform: translate(1.5rem, 0);
  width: 35.4rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .parts-item.item-1 {
    margin: 0.7rem 0 0 0.5rem;
    transform: unset;
    width: 29.3rem;
  }
}
.p-spec-details .parts-item.item-2 {
  transform: translate(-1.6rem, -1.6rem);
  width: 34.245rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .parts-item.item-2 {
    margin: 3.6rem 0 0 0.8rem;
    transform: unset;
    width: 28.245rem;
  }
}
.p-spec-details .parts-item.item-3 {
  transform: translate(-0.8rem, 0.8rem);
  width: 13.846rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .parts-item.item-3 {
    margin: 4.6rem 0 0 11.4rem;
    transform: unset;
    width: 11.4rem;
  }
}
.p-spec-details .sheets {
  display: flex;
  gap: 3.2rem;
  margin: 0 0 6.8rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .sheets {
    flex-direction: column;
    gap: 2.2rem;
    margin: 0 0 3rem;
  }
}
.p-spec-details .sheets-ttl {
  font-size: 1.378rem;
  line-height: 1.3;
  padding: 0.2rem 0 0 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .sheets-ttl {
    font-size: 1.4rem;
    padding: 6.1rem 0 0;
    text-align: center;
  }
}
.p-spec-details .sheets-items {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .sheets-items {
    flex-direction: column;
    gap: 1.8rem;
    margin: 0 auto;
  }
}
.p-spec-details .sheets-item {
  width: 17.585rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .sheets-item {
    width: 19.7rem;
  }
}
.p-spec-details .sheets-item .caption {
  font-size: 1.185rem;
  font-weight: 700;
  padding: 0.8rem 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-spec-details .sheets-item .caption {
    font-size: 1.4rem;
  }
}
.p-spec-details .battery {
  border-radius: 2.6rem;
  border: 1px solid var(--gray);
  margin: 0 auto 5rem;
  padding: 1.3rem 1.5rem;
  width: 73.6rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .battery {
    margin: 0;
    padding: 1.3rem 1.1rem 2.7rem;
    width: 100%;
  }
}
.p-spec-details .battery-ttl {
  align-items: center;
  background: var(--gray);
  border-radius: 9999px;
  color: white;
  display: flex;
  height: 3.1rem;
  justify-content: center;
  margin: 0 0 1.5rem;
  padding-bottom: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-spec-details .battery-ttl {
    font-size: 1.8rem;
    margin: 0 0 1rem;
  }
}
.p-spec-details .battery-list {
  font-size: 1.4rem;
  padding: 0 0.5rem 0 1.1rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .battery-list {
    padding: 0;
  }
}
.p-spec-details .battery-list li {
  letter-spacing: 0;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-spec-details .battery-list li {
    padding: 0;
    text-indent: 0;
  }
}
.p-spec-details .battery-notes {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 1.1rem 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-spec-details .battery-notes {
    line-height: 145.455%;
    padding: 0.8rem 0 0;
  }
}
.p-spec-caution ul {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3.6rem;
  margin: 0 auto;
  padding: 3.8rem 3rem 3.5rem 5rem;
  width: 76rem;
}
@media screen and (max-width: 767px) {
  .p-spec-caution ul {
    margin: 2.1rem auto 0;
    padding: 2.2rem 2.4rem 5rem;
    width: 34.2rem;
  }
}
.p-spec-caution ul li {
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 169.231%;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-spec-caution ul li {
    padding-left: 0;
    text-indent: 0;
  }
}

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