@charset "UTF-8";
/* ==========================================================================
   IMPORTS
   ========================================================================== */
/* ==========================================================================
   VARIABLES
   ========================================================================== */
/* Colors
   ========================================================================== */
/* Typography
   ========================================================================== */
/* Layout
   ========================================================================== */
/* Spacing
   ========================================================================== */
/* Breakpoints
   ========================================================================== */
/* Transitions
   ========================================================================== */
/* Border Radius
   ========================================================================== */
/* Shadows
   ========================================================================== */
/* ==========================================================================
   MIXINS
   ========================================================================== */
/* Media Queries
   ========================================================================== */
/* Button Mixin
   ========================================================================== */
/* Flexbox Utilities
   ========================================================================== */
/* Positioning
   ========================================================================== */
/* Text Utilities
   ========================================================================== */
/* Animation
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Lato:wght@400;700&display=swap");
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ==========================================================================
   BASE STYLES
   ========================================================================== */
/* Google Fonts */
/* Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 10px base */
  line-height: 1.6;
}
@media (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media (max-width: 960px) {
  html {
    font-size: 1.0416666667vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}
@media (max-width: 599px) {
  html {
    font-size: 62.5%;
  }
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #f6f9fc;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

p {
  margin-bottom: 2rem;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* Container
   ========================================================================== */
.l-inner {
  position: relative;
  max-width: 1200px;
  width: calc(100% - 6rem);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l-inner {
    width: calc(100% - 3rem);
  }
}
.l-inner--narrow {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  width: calc(100% - 6rem);
}
@media (max-width: 767px) {
  .l-inner--narrow {
    width: calc(100% - 3rem);
  }
}
.l-inner--extra-narrow {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l-inner--extra-narrow {
    width: calc(100% - 3rem);
  }
}
.l-inner--py-large {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

/* Responsive Padding
   ========================================================================== */
/* Main Layout
   ========================================================================== */
.l-main {
  margin-top: 12.5rem;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .l-main {
    margin-top: 20rem;
  }
}

/* Scroll Margin for Fixed Header
   ========================================================================== */
/* 固定ヘッダーを考慮したスクロールマージン */
[id] {
  scroll-margin-top: var(--header-offset, 12rem);
}

/* サービスセクションのスクロールマージン */
.p-service-section,
[id^=nav-] {
  scroll-margin-top: var(--header-offset, 12rem);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}
@media (min-width: 961px) {
  .u-hidden-pc {
    display: none !important;
  }
}
/* Margin Utilities
   ========================================================================== */
.mt-0 {
  margin-top: 0rem !important;
}

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

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

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

.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

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

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

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

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

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

.mx-1 {
  margin-left: 0.1rem !important;
  margin-right: 0.1rem !important;
}

.my-1 {
  margin-top: 0.1rem !important;
  margin-bottom: 0.1rem !important;
}

.m-1 {
  margin: 0.1rem !important;
}

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

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

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

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

.mx-2 {
  margin-left: 0.2rem !important;
  margin-right: 0.2rem !important;
}

.my-2 {
  margin-top: 0.2rem !important;
  margin-bottom: 0.2rem !important;
}

.m-2 {
  margin: 0.2rem !important;
}

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

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

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

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

.mx-3 {
  margin-left: 0.3rem !important;
  margin-right: 0.3rem !important;
}

.my-3 {
  margin-top: 0.3rem !important;
  margin-bottom: 0.3rem !important;
}

.m-3 {
  margin: 0.3rem !important;
}

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

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

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

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

.mx-4 {
  margin-left: 0.4rem !important;
  margin-right: 0.4rem !important;
}

.my-4 {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}

.m-4 {
  margin: 0.4rem !important;
}

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

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

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

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

.mx-5 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-5 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

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

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

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

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

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

.mx-6 {
  margin-left: 0.6rem !important;
  margin-right: 0.6rem !important;
}

.my-6 {
  margin-top: 0.6rem !important;
  margin-bottom: 0.6rem !important;
}

.m-6 {
  margin: 0.6rem !important;
}

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

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

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

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

.mx-7 {
  margin-left: 0.7rem !important;
  margin-right: 0.7rem !important;
}

.my-7 {
  margin-top: 0.7rem !important;
  margin-bottom: 0.7rem !important;
}

.m-7 {
  margin: 0.7rem !important;
}

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

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

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

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

.mx-8 {
  margin-left: 0.8rem !important;
  margin-right: 0.8rem !important;
}

.my-8 {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

.m-8 {
  margin: 0.8rem !important;
}

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

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

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

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

.mx-9 {
  margin-left: 0.9rem !important;
  margin-right: 0.9rem !important;
}

.my-9 {
  margin-top: 0.9rem !important;
  margin-bottom: 0.9rem !important;
}

.m-9 {
  margin: 0.9rem !important;
}

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

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

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

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

.mx-10 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-10 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

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

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

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

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

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

.mx-11 {
  margin-left: 1.1rem !important;
  margin-right: 1.1rem !important;
}

.my-11 {
  margin-top: 1.1rem !important;
  margin-bottom: 1.1rem !important;
}

.m-11 {
  margin: 1.1rem !important;
}

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

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

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

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

.mx-12 {
  margin-left: 1.2rem !important;
  margin-right: 1.2rem !important;
}

.my-12 {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

.m-12 {
  margin: 1.2rem !important;
}

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

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

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

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

.mx-13 {
  margin-left: 1.3rem !important;
  margin-right: 1.3rem !important;
}

.my-13 {
  margin-top: 1.3rem !important;
  margin-bottom: 1.3rem !important;
}

.m-13 {
  margin: 1.3rem !important;
}

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

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

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

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

.mx-14 {
  margin-left: 1.4rem !important;
  margin-right: 1.4rem !important;
}

.my-14 {
  margin-top: 1.4rem !important;
  margin-bottom: 1.4rem !important;
}

.m-14 {
  margin: 1.4rem !important;
}

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

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

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

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

.mx-15 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-15 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

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

.mt-16 {
  margin-top: 1.6rem !important;
}

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

.ml-16 {
  margin-left: 1.6rem !important;
}

.mr-16 {
  margin-right: 1.6rem !important;
}

.mx-16 {
  margin-left: 1.6rem !important;
  margin-right: 1.6rem !important;
}

.my-16 {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

.m-16 {
  margin: 1.6rem !important;
}

.mt-17 {
  margin-top: 1.7rem !important;
}

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

.ml-17 {
  margin-left: 1.7rem !important;
}

.mr-17 {
  margin-right: 1.7rem !important;
}

.mx-17 {
  margin-left: 1.7rem !important;
  margin-right: 1.7rem !important;
}

.my-17 {
  margin-top: 1.7rem !important;
  margin-bottom: 1.7rem !important;
}

.m-17 {
  margin: 1.7rem !important;
}

.mt-18 {
  margin-top: 1.8rem !important;
}

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

.ml-18 {
  margin-left: 1.8rem !important;
}

.mr-18 {
  margin-right: 1.8rem !important;
}

.mx-18 {
  margin-left: 1.8rem !important;
  margin-right: 1.8rem !important;
}

.my-18 {
  margin-top: 1.8rem !important;
  margin-bottom: 1.8rem !important;
}

.m-18 {
  margin: 1.8rem !important;
}

.mt-19 {
  margin-top: 1.9rem !important;
}

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

.ml-19 {
  margin-left: 1.9rem !important;
}

.mr-19 {
  margin-right: 1.9rem !important;
}

.mx-19 {
  margin-left: 1.9rem !important;
  margin-right: 1.9rem !important;
}

.my-19 {
  margin-top: 1.9rem !important;
  margin-bottom: 1.9rem !important;
}

.m-19 {
  margin: 1.9rem !important;
}

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

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

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

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

.mx-20 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-20 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

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

.mt-21 {
  margin-top: 2.1rem !important;
}

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

.ml-21 {
  margin-left: 2.1rem !important;
}

.mr-21 {
  margin-right: 2.1rem !important;
}

.mx-21 {
  margin-left: 2.1rem !important;
  margin-right: 2.1rem !important;
}

.my-21 {
  margin-top: 2.1rem !important;
  margin-bottom: 2.1rem !important;
}

.m-21 {
  margin: 2.1rem !important;
}

.mt-22 {
  margin-top: 2.2rem !important;
}

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

.ml-22 {
  margin-left: 2.2rem !important;
}

.mr-22 {
  margin-right: 2.2rem !important;
}

.mx-22 {
  margin-left: 2.2rem !important;
  margin-right: 2.2rem !important;
}

.my-22 {
  margin-top: 2.2rem !important;
  margin-bottom: 2.2rem !important;
}

.m-22 {
  margin: 2.2rem !important;
}

.mt-23 {
  margin-top: 2.3rem !important;
}

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

.ml-23 {
  margin-left: 2.3rem !important;
}

.mr-23 {
  margin-right: 2.3rem !important;
}

.mx-23 {
  margin-left: 2.3rem !important;
  margin-right: 2.3rem !important;
}

.my-23 {
  margin-top: 2.3rem !important;
  margin-bottom: 2.3rem !important;
}

.m-23 {
  margin: 2.3rem !important;
}

.mt-24 {
  margin-top: 2.4rem !important;
}

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

.ml-24 {
  margin-left: 2.4rem !important;
}

.mr-24 {
  margin-right: 2.4rem !important;
}

.mx-24 {
  margin-left: 2.4rem !important;
  margin-right: 2.4rem !important;
}

.my-24 {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

.m-24 {
  margin: 2.4rem !important;
}

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

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

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

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

.mx-25 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-25 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

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

.mt-26 {
  margin-top: 2.6rem !important;
}

.mb-26 {
  margin-bottom: 2.6rem !important;
}

.ml-26 {
  margin-left: 2.6rem !important;
}

.mr-26 {
  margin-right: 2.6rem !important;
}

.mx-26 {
  margin-left: 2.6rem !important;
  margin-right: 2.6rem !important;
}

.my-26 {
  margin-top: 2.6rem !important;
  margin-bottom: 2.6rem !important;
}

.m-26 {
  margin: 2.6rem !important;
}

.mt-27 {
  margin-top: 2.7rem !important;
}

.mb-27 {
  margin-bottom: 2.7rem !important;
}

.ml-27 {
  margin-left: 2.7rem !important;
}

.mr-27 {
  margin-right: 2.7rem !important;
}

.mx-27 {
  margin-left: 2.7rem !important;
  margin-right: 2.7rem !important;
}

.my-27 {
  margin-top: 2.7rem !important;
  margin-bottom: 2.7rem !important;
}

.m-27 {
  margin: 2.7rem !important;
}

.mt-28 {
  margin-top: 2.8rem !important;
}

.mb-28 {
  margin-bottom: 2.8rem !important;
}

.ml-28 {
  margin-left: 2.8rem !important;
}

.mr-28 {
  margin-right: 2.8rem !important;
}

.mx-28 {
  margin-left: 2.8rem !important;
  margin-right: 2.8rem !important;
}

.my-28 {
  margin-top: 2.8rem !important;
  margin-bottom: 2.8rem !important;
}

.m-28 {
  margin: 2.8rem !important;
}

.mt-29 {
  margin-top: 2.9rem !important;
}

.mb-29 {
  margin-bottom: 2.9rem !important;
}

.ml-29 {
  margin-left: 2.9rem !important;
}

.mr-29 {
  margin-right: 2.9rem !important;
}

.mx-29 {
  margin-left: 2.9rem !important;
  margin-right: 2.9rem !important;
}

.my-29 {
  margin-top: 2.9rem !important;
  margin-bottom: 2.9rem !important;
}

.m-29 {
  margin: 2.9rem !important;
}

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

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

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

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

.mx-30 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-30 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

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

.mt-31 {
  margin-top: 3.1rem !important;
}

.mb-31 {
  margin-bottom: 3.1rem !important;
}

.ml-31 {
  margin-left: 3.1rem !important;
}

.mr-31 {
  margin-right: 3.1rem !important;
}

.mx-31 {
  margin-left: 3.1rem !important;
  margin-right: 3.1rem !important;
}

.my-31 {
  margin-top: 3.1rem !important;
  margin-bottom: 3.1rem !important;
}

.m-31 {
  margin: 3.1rem !important;
}

.mt-32 {
  margin-top: 3.2rem !important;
}

.mb-32 {
  margin-bottom: 3.2rem !important;
}

.ml-32 {
  margin-left: 3.2rem !important;
}

.mr-32 {
  margin-right: 3.2rem !important;
}

.mx-32 {
  margin-left: 3.2rem !important;
  margin-right: 3.2rem !important;
}

.my-32 {
  margin-top: 3.2rem !important;
  margin-bottom: 3.2rem !important;
}

.m-32 {
  margin: 3.2rem !important;
}

.mt-33 {
  margin-top: 3.3rem !important;
}

.mb-33 {
  margin-bottom: 3.3rem !important;
}

.ml-33 {
  margin-left: 3.3rem !important;
}

.mr-33 {
  margin-right: 3.3rem !important;
}

.mx-33 {
  margin-left: 3.3rem !important;
  margin-right: 3.3rem !important;
}

.my-33 {
  margin-top: 3.3rem !important;
  margin-bottom: 3.3rem !important;
}

.m-33 {
  margin: 3.3rem !important;
}

.mt-34 {
  margin-top: 3.4rem !important;
}

.mb-34 {
  margin-bottom: 3.4rem !important;
}

.ml-34 {
  margin-left: 3.4rem !important;
}

.mr-34 {
  margin-right: 3.4rem !important;
}

.mx-34 {
  margin-left: 3.4rem !important;
  margin-right: 3.4rem !important;
}

.my-34 {
  margin-top: 3.4rem !important;
  margin-bottom: 3.4rem !important;
}

.m-34 {
  margin: 3.4rem !important;
}

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

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

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

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

.mx-35 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.my-35 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

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

.mt-36 {
  margin-top: 3.6rem !important;
}

.mb-36 {
  margin-bottom: 3.6rem !important;
}

.ml-36 {
  margin-left: 3.6rem !important;
}

.mr-36 {
  margin-right: 3.6rem !important;
}

.mx-36 {
  margin-left: 3.6rem !important;
  margin-right: 3.6rem !important;
}

.my-36 {
  margin-top: 3.6rem !important;
  margin-bottom: 3.6rem !important;
}

.m-36 {
  margin: 3.6rem !important;
}

.mt-37 {
  margin-top: 3.7rem !important;
}

.mb-37 {
  margin-bottom: 3.7rem !important;
}

.ml-37 {
  margin-left: 3.7rem !important;
}

.mr-37 {
  margin-right: 3.7rem !important;
}

.mx-37 {
  margin-left: 3.7rem !important;
  margin-right: 3.7rem !important;
}

.my-37 {
  margin-top: 3.7rem !important;
  margin-bottom: 3.7rem !important;
}

.m-37 {
  margin: 3.7rem !important;
}

.mt-38 {
  margin-top: 3.8rem !important;
}

.mb-38 {
  margin-bottom: 3.8rem !important;
}

.ml-38 {
  margin-left: 3.8rem !important;
}

.mr-38 {
  margin-right: 3.8rem !important;
}

.mx-38 {
  margin-left: 3.8rem !important;
  margin-right: 3.8rem !important;
}

.my-38 {
  margin-top: 3.8rem !important;
  margin-bottom: 3.8rem !important;
}

.m-38 {
  margin: 3.8rem !important;
}

.mt-39 {
  margin-top: 3.9rem !important;
}

.mb-39 {
  margin-bottom: 3.9rem !important;
}

.ml-39 {
  margin-left: 3.9rem !important;
}

.mr-39 {
  margin-right: 3.9rem !important;
}

.mx-39 {
  margin-left: 3.9rem !important;
  margin-right: 3.9rem !important;
}

.my-39 {
  margin-top: 3.9rem !important;
  margin-bottom: 3.9rem !important;
}

.m-39 {
  margin: 3.9rem !important;
}

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

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

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

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

.mx-40 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-40 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

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

.mt-41 {
  margin-top: 4.1rem !important;
}

.mb-41 {
  margin-bottom: 4.1rem !important;
}

.ml-41 {
  margin-left: 4.1rem !important;
}

.mr-41 {
  margin-right: 4.1rem !important;
}

.mx-41 {
  margin-left: 4.1rem !important;
  margin-right: 4.1rem !important;
}

.my-41 {
  margin-top: 4.1rem !important;
  margin-bottom: 4.1rem !important;
}

.m-41 {
  margin: 4.1rem !important;
}

.mt-42 {
  margin-top: 4.2rem !important;
}

.mb-42 {
  margin-bottom: 4.2rem !important;
}

.ml-42 {
  margin-left: 4.2rem !important;
}

.mr-42 {
  margin-right: 4.2rem !important;
}

.mx-42 {
  margin-left: 4.2rem !important;
  margin-right: 4.2rem !important;
}

.my-42 {
  margin-top: 4.2rem !important;
  margin-bottom: 4.2rem !important;
}

.m-42 {
  margin: 4.2rem !important;
}

.mt-43 {
  margin-top: 4.3rem !important;
}

.mb-43 {
  margin-bottom: 4.3rem !important;
}

.ml-43 {
  margin-left: 4.3rem !important;
}

.mr-43 {
  margin-right: 4.3rem !important;
}

.mx-43 {
  margin-left: 4.3rem !important;
  margin-right: 4.3rem !important;
}

.my-43 {
  margin-top: 4.3rem !important;
  margin-bottom: 4.3rem !important;
}

.m-43 {
  margin: 4.3rem !important;
}

.mt-44 {
  margin-top: 4.4rem !important;
}

.mb-44 {
  margin-bottom: 4.4rem !important;
}

.ml-44 {
  margin-left: 4.4rem !important;
}

.mr-44 {
  margin-right: 4.4rem !important;
}

.mx-44 {
  margin-left: 4.4rem !important;
  margin-right: 4.4rem !important;
}

.my-44 {
  margin-top: 4.4rem !important;
  margin-bottom: 4.4rem !important;
}

.m-44 {
  margin: 4.4rem !important;
}

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

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

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

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

.mx-45 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.my-45 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

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

.mt-46 {
  margin-top: 4.6rem !important;
}

.mb-46 {
  margin-bottom: 4.6rem !important;
}

.ml-46 {
  margin-left: 4.6rem !important;
}

.mr-46 {
  margin-right: 4.6rem !important;
}

.mx-46 {
  margin-left: 4.6rem !important;
  margin-right: 4.6rem !important;
}

.my-46 {
  margin-top: 4.6rem !important;
  margin-bottom: 4.6rem !important;
}

.m-46 {
  margin: 4.6rem !important;
}

.mt-47 {
  margin-top: 4.7rem !important;
}

.mb-47 {
  margin-bottom: 4.7rem !important;
}

.ml-47 {
  margin-left: 4.7rem !important;
}

.mr-47 {
  margin-right: 4.7rem !important;
}

.mx-47 {
  margin-left: 4.7rem !important;
  margin-right: 4.7rem !important;
}

.my-47 {
  margin-top: 4.7rem !important;
  margin-bottom: 4.7rem !important;
}

.m-47 {
  margin: 4.7rem !important;
}

.mt-48 {
  margin-top: 4.8rem !important;
}

.mb-48 {
  margin-bottom: 4.8rem !important;
}

.ml-48 {
  margin-left: 4.8rem !important;
}

.mr-48 {
  margin-right: 4.8rem !important;
}

.mx-48 {
  margin-left: 4.8rem !important;
  margin-right: 4.8rem !important;
}

.my-48 {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}

.m-48 {
  margin: 4.8rem !important;
}

.mt-49 {
  margin-top: 4.9rem !important;
}

.mb-49 {
  margin-bottom: 4.9rem !important;
}

.ml-49 {
  margin-left: 4.9rem !important;
}

.mr-49 {
  margin-right: 4.9rem !important;
}

.mx-49 {
  margin-left: 4.9rem !important;
  margin-right: 4.9rem !important;
}

.my-49 {
  margin-top: 4.9rem !important;
  margin-bottom: 4.9rem !important;
}

.m-49 {
  margin: 4.9rem !important;
}

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

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

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

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

.mx-50 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-50 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

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

.mt-51 {
  margin-top: 5.1rem !important;
}

.mb-51 {
  margin-bottom: 5.1rem !important;
}

.ml-51 {
  margin-left: 5.1rem !important;
}

.mr-51 {
  margin-right: 5.1rem !important;
}

.mx-51 {
  margin-left: 5.1rem !important;
  margin-right: 5.1rem !important;
}

.my-51 {
  margin-top: 5.1rem !important;
  margin-bottom: 5.1rem !important;
}

.m-51 {
  margin: 5.1rem !important;
}

.mt-52 {
  margin-top: 5.2rem !important;
}

.mb-52 {
  margin-bottom: 5.2rem !important;
}

.ml-52 {
  margin-left: 5.2rem !important;
}

.mr-52 {
  margin-right: 5.2rem !important;
}

.mx-52 {
  margin-left: 5.2rem !important;
  margin-right: 5.2rem !important;
}

.my-52 {
  margin-top: 5.2rem !important;
  margin-bottom: 5.2rem !important;
}

.m-52 {
  margin: 5.2rem !important;
}

.mt-53 {
  margin-top: 5.3rem !important;
}

.mb-53 {
  margin-bottom: 5.3rem !important;
}

.ml-53 {
  margin-left: 5.3rem !important;
}

.mr-53 {
  margin-right: 5.3rem !important;
}

.mx-53 {
  margin-left: 5.3rem !important;
  margin-right: 5.3rem !important;
}

.my-53 {
  margin-top: 5.3rem !important;
  margin-bottom: 5.3rem !important;
}

.m-53 {
  margin: 5.3rem !important;
}

.mt-54 {
  margin-top: 5.4rem !important;
}

.mb-54 {
  margin-bottom: 5.4rem !important;
}

.ml-54 {
  margin-left: 5.4rem !important;
}

.mr-54 {
  margin-right: 5.4rem !important;
}

.mx-54 {
  margin-left: 5.4rem !important;
  margin-right: 5.4rem !important;
}

.my-54 {
  margin-top: 5.4rem !important;
  margin-bottom: 5.4rem !important;
}

.m-54 {
  margin: 5.4rem !important;
}

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

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

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

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

.mx-55 {
  margin-left: 5.5rem !important;
  margin-right: 5.5rem !important;
}

.my-55 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}

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

.mt-56 {
  margin-top: 5.6rem !important;
}

.mb-56 {
  margin-bottom: 5.6rem !important;
}

.ml-56 {
  margin-left: 5.6rem !important;
}

.mr-56 {
  margin-right: 5.6rem !important;
}

.mx-56 {
  margin-left: 5.6rem !important;
  margin-right: 5.6rem !important;
}

.my-56 {
  margin-top: 5.6rem !important;
  margin-bottom: 5.6rem !important;
}

.m-56 {
  margin: 5.6rem !important;
}

.mt-57 {
  margin-top: 5.7rem !important;
}

.mb-57 {
  margin-bottom: 5.7rem !important;
}

.ml-57 {
  margin-left: 5.7rem !important;
}

.mr-57 {
  margin-right: 5.7rem !important;
}

.mx-57 {
  margin-left: 5.7rem !important;
  margin-right: 5.7rem !important;
}

.my-57 {
  margin-top: 5.7rem !important;
  margin-bottom: 5.7rem !important;
}

.m-57 {
  margin: 5.7rem !important;
}

.mt-58 {
  margin-top: 5.8rem !important;
}

.mb-58 {
  margin-bottom: 5.8rem !important;
}

.ml-58 {
  margin-left: 5.8rem !important;
}

.mr-58 {
  margin-right: 5.8rem !important;
}

.mx-58 {
  margin-left: 5.8rem !important;
  margin-right: 5.8rem !important;
}

.my-58 {
  margin-top: 5.8rem !important;
  margin-bottom: 5.8rem !important;
}

.m-58 {
  margin: 5.8rem !important;
}

.mt-59 {
  margin-top: 5.9rem !important;
}

.mb-59 {
  margin-bottom: 5.9rem !important;
}

.ml-59 {
  margin-left: 5.9rem !important;
}

.mr-59 {
  margin-right: 5.9rem !important;
}

.mx-59 {
  margin-left: 5.9rem !important;
  margin-right: 5.9rem !important;
}

.my-59 {
  margin-top: 5.9rem !important;
  margin-bottom: 5.9rem !important;
}

.m-59 {
  margin: 5.9rem !important;
}

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

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

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

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

.mx-60 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-60 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

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

.mt-61 {
  margin-top: 6.1rem !important;
}

.mb-61 {
  margin-bottom: 6.1rem !important;
}

.ml-61 {
  margin-left: 6.1rem !important;
}

.mr-61 {
  margin-right: 6.1rem !important;
}

.mx-61 {
  margin-left: 6.1rem !important;
  margin-right: 6.1rem !important;
}

.my-61 {
  margin-top: 6.1rem !important;
  margin-bottom: 6.1rem !important;
}

.m-61 {
  margin: 6.1rem !important;
}

.mt-62 {
  margin-top: 6.2rem !important;
}

.mb-62 {
  margin-bottom: 6.2rem !important;
}

.ml-62 {
  margin-left: 6.2rem !important;
}

.mr-62 {
  margin-right: 6.2rem !important;
}

.mx-62 {
  margin-left: 6.2rem !important;
  margin-right: 6.2rem !important;
}

.my-62 {
  margin-top: 6.2rem !important;
  margin-bottom: 6.2rem !important;
}

.m-62 {
  margin: 6.2rem !important;
}

.mt-63 {
  margin-top: 6.3rem !important;
}

.mb-63 {
  margin-bottom: 6.3rem !important;
}

.ml-63 {
  margin-left: 6.3rem !important;
}

.mr-63 {
  margin-right: 6.3rem !important;
}

.mx-63 {
  margin-left: 6.3rem !important;
  margin-right: 6.3rem !important;
}

.my-63 {
  margin-top: 6.3rem !important;
  margin-bottom: 6.3rem !important;
}

.m-63 {
  margin: 6.3rem !important;
}

.mt-64 {
  margin-top: 6.4rem !important;
}

.mb-64 {
  margin-bottom: 6.4rem !important;
}

.ml-64 {
  margin-left: 6.4rem !important;
}

.mr-64 {
  margin-right: 6.4rem !important;
}

.mx-64 {
  margin-left: 6.4rem !important;
  margin-right: 6.4rem !important;
}

.my-64 {
  margin-top: 6.4rem !important;
  margin-bottom: 6.4rem !important;
}

.m-64 {
  margin: 6.4rem !important;
}

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

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

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

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

.mx-65 {
  margin-left: 6.5rem !important;
  margin-right: 6.5rem !important;
}

.my-65 {
  margin-top: 6.5rem !important;
  margin-bottom: 6.5rem !important;
}

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

.mt-66 {
  margin-top: 6.6rem !important;
}

.mb-66 {
  margin-bottom: 6.6rem !important;
}

.ml-66 {
  margin-left: 6.6rem !important;
}

.mr-66 {
  margin-right: 6.6rem !important;
}

.mx-66 {
  margin-left: 6.6rem !important;
  margin-right: 6.6rem !important;
}

.my-66 {
  margin-top: 6.6rem !important;
  margin-bottom: 6.6rem !important;
}

.m-66 {
  margin: 6.6rem !important;
}

.mt-67 {
  margin-top: 6.7rem !important;
}

.mb-67 {
  margin-bottom: 6.7rem !important;
}

.ml-67 {
  margin-left: 6.7rem !important;
}

.mr-67 {
  margin-right: 6.7rem !important;
}

.mx-67 {
  margin-left: 6.7rem !important;
  margin-right: 6.7rem !important;
}

.my-67 {
  margin-top: 6.7rem !important;
  margin-bottom: 6.7rem !important;
}

.m-67 {
  margin: 6.7rem !important;
}

.mt-68 {
  margin-top: 6.8rem !important;
}

.mb-68 {
  margin-bottom: 6.8rem !important;
}

.ml-68 {
  margin-left: 6.8rem !important;
}

.mr-68 {
  margin-right: 6.8rem !important;
}

.mx-68 {
  margin-left: 6.8rem !important;
  margin-right: 6.8rem !important;
}

.my-68 {
  margin-top: 6.8rem !important;
  margin-bottom: 6.8rem !important;
}

.m-68 {
  margin: 6.8rem !important;
}

.mt-69 {
  margin-top: 6.9rem !important;
}

.mb-69 {
  margin-bottom: 6.9rem !important;
}

.ml-69 {
  margin-left: 6.9rem !important;
}

.mr-69 {
  margin-right: 6.9rem !important;
}

.mx-69 {
  margin-left: 6.9rem !important;
  margin-right: 6.9rem !important;
}

.my-69 {
  margin-top: 6.9rem !important;
  margin-bottom: 6.9rem !important;
}

.m-69 {
  margin: 6.9rem !important;
}

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

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

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

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

.mx-70 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.my-70 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

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

.mt-71 {
  margin-top: 7.1rem !important;
}

.mb-71 {
  margin-bottom: 7.1rem !important;
}

.ml-71 {
  margin-left: 7.1rem !important;
}

.mr-71 {
  margin-right: 7.1rem !important;
}

.mx-71 {
  margin-left: 7.1rem !important;
  margin-right: 7.1rem !important;
}

.my-71 {
  margin-top: 7.1rem !important;
  margin-bottom: 7.1rem !important;
}

.m-71 {
  margin: 7.1rem !important;
}

.mt-72 {
  margin-top: 7.2rem !important;
}

.mb-72 {
  margin-bottom: 7.2rem !important;
}

.ml-72 {
  margin-left: 7.2rem !important;
}

.mr-72 {
  margin-right: 7.2rem !important;
}

.mx-72 {
  margin-left: 7.2rem !important;
  margin-right: 7.2rem !important;
}

.my-72 {
  margin-top: 7.2rem !important;
  margin-bottom: 7.2rem !important;
}

.m-72 {
  margin: 7.2rem !important;
}

.mt-73 {
  margin-top: 7.3rem !important;
}

.mb-73 {
  margin-bottom: 7.3rem !important;
}

.ml-73 {
  margin-left: 7.3rem !important;
}

.mr-73 {
  margin-right: 7.3rem !important;
}

.mx-73 {
  margin-left: 7.3rem !important;
  margin-right: 7.3rem !important;
}

.my-73 {
  margin-top: 7.3rem !important;
  margin-bottom: 7.3rem !important;
}

.m-73 {
  margin: 7.3rem !important;
}

.mt-74 {
  margin-top: 7.4rem !important;
}

.mb-74 {
  margin-bottom: 7.4rem !important;
}

.ml-74 {
  margin-left: 7.4rem !important;
}

.mr-74 {
  margin-right: 7.4rem !important;
}

.mx-74 {
  margin-left: 7.4rem !important;
  margin-right: 7.4rem !important;
}

.my-74 {
  margin-top: 7.4rem !important;
  margin-bottom: 7.4rem !important;
}

.m-74 {
  margin: 7.4rem !important;
}

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

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

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

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

.mx-75 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important;
}

.my-75 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

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

.mt-76 {
  margin-top: 7.6rem !important;
}

.mb-76 {
  margin-bottom: 7.6rem !important;
}

.ml-76 {
  margin-left: 7.6rem !important;
}

.mr-76 {
  margin-right: 7.6rem !important;
}

.mx-76 {
  margin-left: 7.6rem !important;
  margin-right: 7.6rem !important;
}

.my-76 {
  margin-top: 7.6rem !important;
  margin-bottom: 7.6rem !important;
}

.m-76 {
  margin: 7.6rem !important;
}

.mt-77 {
  margin-top: 7.7rem !important;
}

.mb-77 {
  margin-bottom: 7.7rem !important;
}

.ml-77 {
  margin-left: 7.7rem !important;
}

.mr-77 {
  margin-right: 7.7rem !important;
}

.mx-77 {
  margin-left: 7.7rem !important;
  margin-right: 7.7rem !important;
}

.my-77 {
  margin-top: 7.7rem !important;
  margin-bottom: 7.7rem !important;
}

.m-77 {
  margin: 7.7rem !important;
}

.mt-78 {
  margin-top: 7.8rem !important;
}

.mb-78 {
  margin-bottom: 7.8rem !important;
}

.ml-78 {
  margin-left: 7.8rem !important;
}

.mr-78 {
  margin-right: 7.8rem !important;
}

.mx-78 {
  margin-left: 7.8rem !important;
  margin-right: 7.8rem !important;
}

.my-78 {
  margin-top: 7.8rem !important;
  margin-bottom: 7.8rem !important;
}

.m-78 {
  margin: 7.8rem !important;
}

.mt-79 {
  margin-top: 7.9rem !important;
}

.mb-79 {
  margin-bottom: 7.9rem !important;
}

.ml-79 {
  margin-left: 7.9rem !important;
}

.mr-79 {
  margin-right: 7.9rem !important;
}

.mx-79 {
  margin-left: 7.9rem !important;
  margin-right: 7.9rem !important;
}

.my-79 {
  margin-top: 7.9rem !important;
  margin-bottom: 7.9rem !important;
}

.m-79 {
  margin: 7.9rem !important;
}

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

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

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

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

.mx-80 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-80 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

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

.mt-81 {
  margin-top: 8.1rem !important;
}

.mb-81 {
  margin-bottom: 8.1rem !important;
}

.ml-81 {
  margin-left: 8.1rem !important;
}

.mr-81 {
  margin-right: 8.1rem !important;
}

.mx-81 {
  margin-left: 8.1rem !important;
  margin-right: 8.1rem !important;
}

.my-81 {
  margin-top: 8.1rem !important;
  margin-bottom: 8.1rem !important;
}

.m-81 {
  margin: 8.1rem !important;
}

.mt-82 {
  margin-top: 8.2rem !important;
}

.mb-82 {
  margin-bottom: 8.2rem !important;
}

.ml-82 {
  margin-left: 8.2rem !important;
}

.mr-82 {
  margin-right: 8.2rem !important;
}

.mx-82 {
  margin-left: 8.2rem !important;
  margin-right: 8.2rem !important;
}

.my-82 {
  margin-top: 8.2rem !important;
  margin-bottom: 8.2rem !important;
}

.m-82 {
  margin: 8.2rem !important;
}

.mt-83 {
  margin-top: 8.3rem !important;
}

.mb-83 {
  margin-bottom: 8.3rem !important;
}

.ml-83 {
  margin-left: 8.3rem !important;
}

.mr-83 {
  margin-right: 8.3rem !important;
}

.mx-83 {
  margin-left: 8.3rem !important;
  margin-right: 8.3rem !important;
}

.my-83 {
  margin-top: 8.3rem !important;
  margin-bottom: 8.3rem !important;
}

.m-83 {
  margin: 8.3rem !important;
}

.mt-84 {
  margin-top: 8.4rem !important;
}

.mb-84 {
  margin-bottom: 8.4rem !important;
}

.ml-84 {
  margin-left: 8.4rem !important;
}

.mr-84 {
  margin-right: 8.4rem !important;
}

.mx-84 {
  margin-left: 8.4rem !important;
  margin-right: 8.4rem !important;
}

.my-84 {
  margin-top: 8.4rem !important;
  margin-bottom: 8.4rem !important;
}

.m-84 {
  margin: 8.4rem !important;
}

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

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

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

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

.mx-85 {
  margin-left: 8.5rem !important;
  margin-right: 8.5rem !important;
}

.my-85 {
  margin-top: 8.5rem !important;
  margin-bottom: 8.5rem !important;
}

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

.mt-86 {
  margin-top: 8.6rem !important;
}

.mb-86 {
  margin-bottom: 8.6rem !important;
}

.ml-86 {
  margin-left: 8.6rem !important;
}

.mr-86 {
  margin-right: 8.6rem !important;
}

.mx-86 {
  margin-left: 8.6rem !important;
  margin-right: 8.6rem !important;
}

.my-86 {
  margin-top: 8.6rem !important;
  margin-bottom: 8.6rem !important;
}

.m-86 {
  margin: 8.6rem !important;
}

.mt-87 {
  margin-top: 8.7rem !important;
}

.mb-87 {
  margin-bottom: 8.7rem !important;
}

.ml-87 {
  margin-left: 8.7rem !important;
}

.mr-87 {
  margin-right: 8.7rem !important;
}

.mx-87 {
  margin-left: 8.7rem !important;
  margin-right: 8.7rem !important;
}

.my-87 {
  margin-top: 8.7rem !important;
  margin-bottom: 8.7rem !important;
}

.m-87 {
  margin: 8.7rem !important;
}

.mt-88 {
  margin-top: 8.8rem !important;
}

.mb-88 {
  margin-bottom: 8.8rem !important;
}

.ml-88 {
  margin-left: 8.8rem !important;
}

.mr-88 {
  margin-right: 8.8rem !important;
}

.mx-88 {
  margin-left: 8.8rem !important;
  margin-right: 8.8rem !important;
}

.my-88 {
  margin-top: 8.8rem !important;
  margin-bottom: 8.8rem !important;
}

.m-88 {
  margin: 8.8rem !important;
}

.mt-89 {
  margin-top: 8.9rem !important;
}

.mb-89 {
  margin-bottom: 8.9rem !important;
}

.ml-89 {
  margin-left: 8.9rem !important;
}

.mr-89 {
  margin-right: 8.9rem !important;
}

.mx-89 {
  margin-left: 8.9rem !important;
  margin-right: 8.9rem !important;
}

.my-89 {
  margin-top: 8.9rem !important;
  margin-bottom: 8.9rem !important;
}

.m-89 {
  margin: 8.9rem !important;
}

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

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

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

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

.mx-90 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.my-90 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

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

.mt-91 {
  margin-top: 9.1rem !important;
}

.mb-91 {
  margin-bottom: 9.1rem !important;
}

.ml-91 {
  margin-left: 9.1rem !important;
}

.mr-91 {
  margin-right: 9.1rem !important;
}

.mx-91 {
  margin-left: 9.1rem !important;
  margin-right: 9.1rem !important;
}

.my-91 {
  margin-top: 9.1rem !important;
  margin-bottom: 9.1rem !important;
}

.m-91 {
  margin: 9.1rem !important;
}

.mt-92 {
  margin-top: 9.2rem !important;
}

.mb-92 {
  margin-bottom: 9.2rem !important;
}

.ml-92 {
  margin-left: 9.2rem !important;
}

.mr-92 {
  margin-right: 9.2rem !important;
}

.mx-92 {
  margin-left: 9.2rem !important;
  margin-right: 9.2rem !important;
}

.my-92 {
  margin-top: 9.2rem !important;
  margin-bottom: 9.2rem !important;
}

.m-92 {
  margin: 9.2rem !important;
}

.mt-93 {
  margin-top: 9.3rem !important;
}

.mb-93 {
  margin-bottom: 9.3rem !important;
}

.ml-93 {
  margin-left: 9.3rem !important;
}

.mr-93 {
  margin-right: 9.3rem !important;
}

.mx-93 {
  margin-left: 9.3rem !important;
  margin-right: 9.3rem !important;
}

.my-93 {
  margin-top: 9.3rem !important;
  margin-bottom: 9.3rem !important;
}

.m-93 {
  margin: 9.3rem !important;
}

.mt-94 {
  margin-top: 9.4rem !important;
}

.mb-94 {
  margin-bottom: 9.4rem !important;
}

.ml-94 {
  margin-left: 9.4rem !important;
}

.mr-94 {
  margin-right: 9.4rem !important;
}

.mx-94 {
  margin-left: 9.4rem !important;
  margin-right: 9.4rem !important;
}

.my-94 {
  margin-top: 9.4rem !important;
  margin-bottom: 9.4rem !important;
}

.m-94 {
  margin: 9.4rem !important;
}

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

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

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

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

.mx-95 {
  margin-left: 9.5rem !important;
  margin-right: 9.5rem !important;
}

.my-95 {
  margin-top: 9.5rem !important;
  margin-bottom: 9.5rem !important;
}

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

.mt-96 {
  margin-top: 9.6rem !important;
}

.mb-96 {
  margin-bottom: 9.6rem !important;
}

.ml-96 {
  margin-left: 9.6rem !important;
}

.mr-96 {
  margin-right: 9.6rem !important;
}

.mx-96 {
  margin-left: 9.6rem !important;
  margin-right: 9.6rem !important;
}

.my-96 {
  margin-top: 9.6rem !important;
  margin-bottom: 9.6rem !important;
}

.m-96 {
  margin: 9.6rem !important;
}

.mt-97 {
  margin-top: 9.7rem !important;
}

.mb-97 {
  margin-bottom: 9.7rem !important;
}

.ml-97 {
  margin-left: 9.7rem !important;
}

.mr-97 {
  margin-right: 9.7rem !important;
}

.mx-97 {
  margin-left: 9.7rem !important;
  margin-right: 9.7rem !important;
}

.my-97 {
  margin-top: 9.7rem !important;
  margin-bottom: 9.7rem !important;
}

.m-97 {
  margin: 9.7rem !important;
}

.mt-98 {
  margin-top: 9.8rem !important;
}

.mb-98 {
  margin-bottom: 9.8rem !important;
}

.ml-98 {
  margin-left: 9.8rem !important;
}

.mr-98 {
  margin-right: 9.8rem !important;
}

.mx-98 {
  margin-left: 9.8rem !important;
  margin-right: 9.8rem !important;
}

.my-98 {
  margin-top: 9.8rem !important;
  margin-bottom: 9.8rem !important;
}

.m-98 {
  margin: 9.8rem !important;
}

.mt-99 {
  margin-top: 9.9rem !important;
}

.mb-99 {
  margin-bottom: 9.9rem !important;
}

.ml-99 {
  margin-left: 9.9rem !important;
}

.mr-99 {
  margin-right: 9.9rem !important;
}

.mx-99 {
  margin-left: 9.9rem !important;
  margin-right: 9.9rem !important;
}

.my-99 {
  margin-top: 9.9rem !important;
  margin-bottom: 9.9rem !important;
}

.m-99 {
  margin: 9.9rem !important;
}

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

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

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

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

.mx-100 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-100 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

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

.mt-101 {
  margin-top: 10.1rem !important;
}

.mb-101 {
  margin-bottom: 10.1rem !important;
}

.ml-101 {
  margin-left: 10.1rem !important;
}

.mr-101 {
  margin-right: 10.1rem !important;
}

.mx-101 {
  margin-left: 10.1rem !important;
  margin-right: 10.1rem !important;
}

.my-101 {
  margin-top: 10.1rem !important;
  margin-bottom: 10.1rem !important;
}

.m-101 {
  margin: 10.1rem !important;
}

.mt-102 {
  margin-top: 10.2rem !important;
}

.mb-102 {
  margin-bottom: 10.2rem !important;
}

.ml-102 {
  margin-left: 10.2rem !important;
}

.mr-102 {
  margin-right: 10.2rem !important;
}

.mx-102 {
  margin-left: 10.2rem !important;
  margin-right: 10.2rem !important;
}

.my-102 {
  margin-top: 10.2rem !important;
  margin-bottom: 10.2rem !important;
}

.m-102 {
  margin: 10.2rem !important;
}

.mt-103 {
  margin-top: 10.3rem !important;
}

.mb-103 {
  margin-bottom: 10.3rem !important;
}

.ml-103 {
  margin-left: 10.3rem !important;
}

.mr-103 {
  margin-right: 10.3rem !important;
}

.mx-103 {
  margin-left: 10.3rem !important;
  margin-right: 10.3rem !important;
}

.my-103 {
  margin-top: 10.3rem !important;
  margin-bottom: 10.3rem !important;
}

.m-103 {
  margin: 10.3rem !important;
}

.mt-104 {
  margin-top: 10.4rem !important;
}

.mb-104 {
  margin-bottom: 10.4rem !important;
}

.ml-104 {
  margin-left: 10.4rem !important;
}

.mr-104 {
  margin-right: 10.4rem !important;
}

.mx-104 {
  margin-left: 10.4rem !important;
  margin-right: 10.4rem !important;
}

.my-104 {
  margin-top: 10.4rem !important;
  margin-bottom: 10.4rem !important;
}

.m-104 {
  margin: 10.4rem !important;
}

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

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

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

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

.mx-105 {
  margin-left: 10.5rem !important;
  margin-right: 10.5rem !important;
}

.my-105 {
  margin-top: 10.5rem !important;
  margin-bottom: 10.5rem !important;
}

.m-105 {
  margin: 10.5rem !important;
}

.mt-106 {
  margin-top: 10.6rem !important;
}

.mb-106 {
  margin-bottom: 10.6rem !important;
}

.ml-106 {
  margin-left: 10.6rem !important;
}

.mr-106 {
  margin-right: 10.6rem !important;
}

.mx-106 {
  margin-left: 10.6rem !important;
  margin-right: 10.6rem !important;
}

.my-106 {
  margin-top: 10.6rem !important;
  margin-bottom: 10.6rem !important;
}

.m-106 {
  margin: 10.6rem !important;
}

.mt-107 {
  margin-top: 10.7rem !important;
}

.mb-107 {
  margin-bottom: 10.7rem !important;
}

.ml-107 {
  margin-left: 10.7rem !important;
}

.mr-107 {
  margin-right: 10.7rem !important;
}

.mx-107 {
  margin-left: 10.7rem !important;
  margin-right: 10.7rem !important;
}

.my-107 {
  margin-top: 10.7rem !important;
  margin-bottom: 10.7rem !important;
}

.m-107 {
  margin: 10.7rem !important;
}

.mt-108 {
  margin-top: 10.8rem !important;
}

.mb-108 {
  margin-bottom: 10.8rem !important;
}

.ml-108 {
  margin-left: 10.8rem !important;
}

.mr-108 {
  margin-right: 10.8rem !important;
}

.mx-108 {
  margin-left: 10.8rem !important;
  margin-right: 10.8rem !important;
}

.my-108 {
  margin-top: 10.8rem !important;
  margin-bottom: 10.8rem !important;
}

.m-108 {
  margin: 10.8rem !important;
}

.mt-109 {
  margin-top: 10.9rem !important;
}

.mb-109 {
  margin-bottom: 10.9rem !important;
}

.ml-109 {
  margin-left: 10.9rem !important;
}

.mr-109 {
  margin-right: 10.9rem !important;
}

.mx-109 {
  margin-left: 10.9rem !important;
  margin-right: 10.9rem !important;
}

.my-109 {
  margin-top: 10.9rem !important;
  margin-bottom: 10.9rem !important;
}

.m-109 {
  margin: 10.9rem !important;
}

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

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

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

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

.mx-110 {
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.my-110 {
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}

.m-110 {
  margin: 11rem !important;
}

.mt-111 {
  margin-top: 11.1rem !important;
}

.mb-111 {
  margin-bottom: 11.1rem !important;
}

.ml-111 {
  margin-left: 11.1rem !important;
}

.mr-111 {
  margin-right: 11.1rem !important;
}

.mx-111 {
  margin-left: 11.1rem !important;
  margin-right: 11.1rem !important;
}

.my-111 {
  margin-top: 11.1rem !important;
  margin-bottom: 11.1rem !important;
}

.m-111 {
  margin: 11.1rem !important;
}

.mt-112 {
  margin-top: 11.2rem !important;
}

.mb-112 {
  margin-bottom: 11.2rem !important;
}

.ml-112 {
  margin-left: 11.2rem !important;
}

.mr-112 {
  margin-right: 11.2rem !important;
}

.mx-112 {
  margin-left: 11.2rem !important;
  margin-right: 11.2rem !important;
}

.my-112 {
  margin-top: 11.2rem !important;
  margin-bottom: 11.2rem !important;
}

.m-112 {
  margin: 11.2rem !important;
}

.mt-113 {
  margin-top: 11.3rem !important;
}

.mb-113 {
  margin-bottom: 11.3rem !important;
}

.ml-113 {
  margin-left: 11.3rem !important;
}

.mr-113 {
  margin-right: 11.3rem !important;
}

.mx-113 {
  margin-left: 11.3rem !important;
  margin-right: 11.3rem !important;
}

.my-113 {
  margin-top: 11.3rem !important;
  margin-bottom: 11.3rem !important;
}

.m-113 {
  margin: 11.3rem !important;
}

.mt-114 {
  margin-top: 11.4rem !important;
}

.mb-114 {
  margin-bottom: 11.4rem !important;
}

.ml-114 {
  margin-left: 11.4rem !important;
}

.mr-114 {
  margin-right: 11.4rem !important;
}

.mx-114 {
  margin-left: 11.4rem !important;
  margin-right: 11.4rem !important;
}

.my-114 {
  margin-top: 11.4rem !important;
  margin-bottom: 11.4rem !important;
}

.m-114 {
  margin: 11.4rem !important;
}

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

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

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

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

.mx-115 {
  margin-left: 11.5rem !important;
  margin-right: 11.5rem !important;
}

.my-115 {
  margin-top: 11.5rem !important;
  margin-bottom: 11.5rem !important;
}

.m-115 {
  margin: 11.5rem !important;
}

.mt-116 {
  margin-top: 11.6rem !important;
}

.mb-116 {
  margin-bottom: 11.6rem !important;
}

.ml-116 {
  margin-left: 11.6rem !important;
}

.mr-116 {
  margin-right: 11.6rem !important;
}

.mx-116 {
  margin-left: 11.6rem !important;
  margin-right: 11.6rem !important;
}

.my-116 {
  margin-top: 11.6rem !important;
  margin-bottom: 11.6rem !important;
}

.m-116 {
  margin: 11.6rem !important;
}

.mt-117 {
  margin-top: 11.7rem !important;
}

.mb-117 {
  margin-bottom: 11.7rem !important;
}

.ml-117 {
  margin-left: 11.7rem !important;
}

.mr-117 {
  margin-right: 11.7rem !important;
}

.mx-117 {
  margin-left: 11.7rem !important;
  margin-right: 11.7rem !important;
}

.my-117 {
  margin-top: 11.7rem !important;
  margin-bottom: 11.7rem !important;
}

.m-117 {
  margin: 11.7rem !important;
}

.mt-118 {
  margin-top: 11.8rem !important;
}

.mb-118 {
  margin-bottom: 11.8rem !important;
}

.ml-118 {
  margin-left: 11.8rem !important;
}

.mr-118 {
  margin-right: 11.8rem !important;
}

.mx-118 {
  margin-left: 11.8rem !important;
  margin-right: 11.8rem !important;
}

.my-118 {
  margin-top: 11.8rem !important;
  margin-bottom: 11.8rem !important;
}

.m-118 {
  margin: 11.8rem !important;
}

.mt-119 {
  margin-top: 11.9rem !important;
}

.mb-119 {
  margin-bottom: 11.9rem !important;
}

.ml-119 {
  margin-left: 11.9rem !important;
}

.mr-119 {
  margin-right: 11.9rem !important;
}

.mx-119 {
  margin-left: 11.9rem !important;
  margin-right: 11.9rem !important;
}

.my-119 {
  margin-top: 11.9rem !important;
  margin-bottom: 11.9rem !important;
}

.m-119 {
  margin: 11.9rem !important;
}

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

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

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

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

.mx-120 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.my-120 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.m-120 {
  margin: 12rem !important;
}

.mt-121 {
  margin-top: 12.1rem !important;
}

.mb-121 {
  margin-bottom: 12.1rem !important;
}

.ml-121 {
  margin-left: 12.1rem !important;
}

.mr-121 {
  margin-right: 12.1rem !important;
}

.mx-121 {
  margin-left: 12.1rem !important;
  margin-right: 12.1rem !important;
}

.my-121 {
  margin-top: 12.1rem !important;
  margin-bottom: 12.1rem !important;
}

.m-121 {
  margin: 12.1rem !important;
}

.mt-122 {
  margin-top: 12.2rem !important;
}

.mb-122 {
  margin-bottom: 12.2rem !important;
}

.ml-122 {
  margin-left: 12.2rem !important;
}

.mr-122 {
  margin-right: 12.2rem !important;
}

.mx-122 {
  margin-left: 12.2rem !important;
  margin-right: 12.2rem !important;
}

.my-122 {
  margin-top: 12.2rem !important;
  margin-bottom: 12.2rem !important;
}

.m-122 {
  margin: 12.2rem !important;
}

.mt-123 {
  margin-top: 12.3rem !important;
}

.mb-123 {
  margin-bottom: 12.3rem !important;
}

.ml-123 {
  margin-left: 12.3rem !important;
}

.mr-123 {
  margin-right: 12.3rem !important;
}

.mx-123 {
  margin-left: 12.3rem !important;
  margin-right: 12.3rem !important;
}

.my-123 {
  margin-top: 12.3rem !important;
  margin-bottom: 12.3rem !important;
}

.m-123 {
  margin: 12.3rem !important;
}

.mt-124 {
  margin-top: 12.4rem !important;
}

.mb-124 {
  margin-bottom: 12.4rem !important;
}

.ml-124 {
  margin-left: 12.4rem !important;
}

.mr-124 {
  margin-right: 12.4rem !important;
}

.mx-124 {
  margin-left: 12.4rem !important;
  margin-right: 12.4rem !important;
}

.my-124 {
  margin-top: 12.4rem !important;
  margin-bottom: 12.4rem !important;
}

.m-124 {
  margin: 12.4rem !important;
}

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

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

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

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

.mx-125 {
  margin-left: 12.5rem !important;
  margin-right: 12.5rem !important;
}

.my-125 {
  margin-top: 12.5rem !important;
  margin-bottom: 12.5rem !important;
}

.m-125 {
  margin: 12.5rem !important;
}

.mt-126 {
  margin-top: 12.6rem !important;
}

.mb-126 {
  margin-bottom: 12.6rem !important;
}

.ml-126 {
  margin-left: 12.6rem !important;
}

.mr-126 {
  margin-right: 12.6rem !important;
}

.mx-126 {
  margin-left: 12.6rem !important;
  margin-right: 12.6rem !important;
}

.my-126 {
  margin-top: 12.6rem !important;
  margin-bottom: 12.6rem !important;
}

.m-126 {
  margin: 12.6rem !important;
}

.mt-127 {
  margin-top: 12.7rem !important;
}

.mb-127 {
  margin-bottom: 12.7rem !important;
}

.ml-127 {
  margin-left: 12.7rem !important;
}

.mr-127 {
  margin-right: 12.7rem !important;
}

.mx-127 {
  margin-left: 12.7rem !important;
  margin-right: 12.7rem !important;
}

.my-127 {
  margin-top: 12.7rem !important;
  margin-bottom: 12.7rem !important;
}

.m-127 {
  margin: 12.7rem !important;
}

.mt-128 {
  margin-top: 12.8rem !important;
}

.mb-128 {
  margin-bottom: 12.8rem !important;
}

.ml-128 {
  margin-left: 12.8rem !important;
}

.mr-128 {
  margin-right: 12.8rem !important;
}

.mx-128 {
  margin-left: 12.8rem !important;
  margin-right: 12.8rem !important;
}

.my-128 {
  margin-top: 12.8rem !important;
  margin-bottom: 12.8rem !important;
}

.m-128 {
  margin: 12.8rem !important;
}

.mt-129 {
  margin-top: 12.9rem !important;
}

.mb-129 {
  margin-bottom: 12.9rem !important;
}

.ml-129 {
  margin-left: 12.9rem !important;
}

.mr-129 {
  margin-right: 12.9rem !important;
}

.mx-129 {
  margin-left: 12.9rem !important;
  margin-right: 12.9rem !important;
}

.my-129 {
  margin-top: 12.9rem !important;
  margin-bottom: 12.9rem !important;
}

.m-129 {
  margin: 12.9rem !important;
}

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

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

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

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

.mx-130 {
  margin-left: 13rem !important;
  margin-right: 13rem !important;
}

.my-130 {
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}

.m-130 {
  margin: 13rem !important;
}

.mt-131 {
  margin-top: 13.1rem !important;
}

.mb-131 {
  margin-bottom: 13.1rem !important;
}

.ml-131 {
  margin-left: 13.1rem !important;
}

.mr-131 {
  margin-right: 13.1rem !important;
}

.mx-131 {
  margin-left: 13.1rem !important;
  margin-right: 13.1rem !important;
}

.my-131 {
  margin-top: 13.1rem !important;
  margin-bottom: 13.1rem !important;
}

.m-131 {
  margin: 13.1rem !important;
}

.mt-132 {
  margin-top: 13.2rem !important;
}

.mb-132 {
  margin-bottom: 13.2rem !important;
}

.ml-132 {
  margin-left: 13.2rem !important;
}

.mr-132 {
  margin-right: 13.2rem !important;
}

.mx-132 {
  margin-left: 13.2rem !important;
  margin-right: 13.2rem !important;
}

.my-132 {
  margin-top: 13.2rem !important;
  margin-bottom: 13.2rem !important;
}

.m-132 {
  margin: 13.2rem !important;
}

.mt-133 {
  margin-top: 13.3rem !important;
}

.mb-133 {
  margin-bottom: 13.3rem !important;
}

.ml-133 {
  margin-left: 13.3rem !important;
}

.mr-133 {
  margin-right: 13.3rem !important;
}

.mx-133 {
  margin-left: 13.3rem !important;
  margin-right: 13.3rem !important;
}

.my-133 {
  margin-top: 13.3rem !important;
  margin-bottom: 13.3rem !important;
}

.m-133 {
  margin: 13.3rem !important;
}

.mt-134 {
  margin-top: 13.4rem !important;
}

.mb-134 {
  margin-bottom: 13.4rem !important;
}

.ml-134 {
  margin-left: 13.4rem !important;
}

.mr-134 {
  margin-right: 13.4rem !important;
}

.mx-134 {
  margin-left: 13.4rem !important;
  margin-right: 13.4rem !important;
}

.my-134 {
  margin-top: 13.4rem !important;
  margin-bottom: 13.4rem !important;
}

.m-134 {
  margin: 13.4rem !important;
}

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

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

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

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

.mx-135 {
  margin-left: 13.5rem !important;
  margin-right: 13.5rem !important;
}

.my-135 {
  margin-top: 13.5rem !important;
  margin-bottom: 13.5rem !important;
}

.m-135 {
  margin: 13.5rem !important;
}

.mt-136 {
  margin-top: 13.6rem !important;
}

.mb-136 {
  margin-bottom: 13.6rem !important;
}

.ml-136 {
  margin-left: 13.6rem !important;
}

.mr-136 {
  margin-right: 13.6rem !important;
}

.mx-136 {
  margin-left: 13.6rem !important;
  margin-right: 13.6rem !important;
}

.my-136 {
  margin-top: 13.6rem !important;
  margin-bottom: 13.6rem !important;
}

.m-136 {
  margin: 13.6rem !important;
}

.mt-137 {
  margin-top: 13.7rem !important;
}

.mb-137 {
  margin-bottom: 13.7rem !important;
}

.ml-137 {
  margin-left: 13.7rem !important;
}

.mr-137 {
  margin-right: 13.7rem !important;
}

.mx-137 {
  margin-left: 13.7rem !important;
  margin-right: 13.7rem !important;
}

.my-137 {
  margin-top: 13.7rem !important;
  margin-bottom: 13.7rem !important;
}

.m-137 {
  margin: 13.7rem !important;
}

.mt-138 {
  margin-top: 13.8rem !important;
}

.mb-138 {
  margin-bottom: 13.8rem !important;
}

.ml-138 {
  margin-left: 13.8rem !important;
}

.mr-138 {
  margin-right: 13.8rem !important;
}

.mx-138 {
  margin-left: 13.8rem !important;
  margin-right: 13.8rem !important;
}

.my-138 {
  margin-top: 13.8rem !important;
  margin-bottom: 13.8rem !important;
}

.m-138 {
  margin: 13.8rem !important;
}

.mt-139 {
  margin-top: 13.9rem !important;
}

.mb-139 {
  margin-bottom: 13.9rem !important;
}

.ml-139 {
  margin-left: 13.9rem !important;
}

.mr-139 {
  margin-right: 13.9rem !important;
}

.mx-139 {
  margin-left: 13.9rem !important;
  margin-right: 13.9rem !important;
}

.my-139 {
  margin-top: 13.9rem !important;
  margin-bottom: 13.9rem !important;
}

.m-139 {
  margin: 13.9rem !important;
}

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

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

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

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

.mx-140 {
  margin-left: 14rem !important;
  margin-right: 14rem !important;
}

.my-140 {
  margin-top: 14rem !important;
  margin-bottom: 14rem !important;
}

.m-140 {
  margin: 14rem !important;
}

.mt-141 {
  margin-top: 14.1rem !important;
}

.mb-141 {
  margin-bottom: 14.1rem !important;
}

.ml-141 {
  margin-left: 14.1rem !important;
}

.mr-141 {
  margin-right: 14.1rem !important;
}

.mx-141 {
  margin-left: 14.1rem !important;
  margin-right: 14.1rem !important;
}

.my-141 {
  margin-top: 14.1rem !important;
  margin-bottom: 14.1rem !important;
}

.m-141 {
  margin: 14.1rem !important;
}

.mt-142 {
  margin-top: 14.2rem !important;
}

.mb-142 {
  margin-bottom: 14.2rem !important;
}

.ml-142 {
  margin-left: 14.2rem !important;
}

.mr-142 {
  margin-right: 14.2rem !important;
}

.mx-142 {
  margin-left: 14.2rem !important;
  margin-right: 14.2rem !important;
}

.my-142 {
  margin-top: 14.2rem !important;
  margin-bottom: 14.2rem !important;
}

.m-142 {
  margin: 14.2rem !important;
}

.mt-143 {
  margin-top: 14.3rem !important;
}

.mb-143 {
  margin-bottom: 14.3rem !important;
}

.ml-143 {
  margin-left: 14.3rem !important;
}

.mr-143 {
  margin-right: 14.3rem !important;
}

.mx-143 {
  margin-left: 14.3rem !important;
  margin-right: 14.3rem !important;
}

.my-143 {
  margin-top: 14.3rem !important;
  margin-bottom: 14.3rem !important;
}

.m-143 {
  margin: 14.3rem !important;
}

.mt-144 {
  margin-top: 14.4rem !important;
}

.mb-144 {
  margin-bottom: 14.4rem !important;
}

.ml-144 {
  margin-left: 14.4rem !important;
}

.mr-144 {
  margin-right: 14.4rem !important;
}

.mx-144 {
  margin-left: 14.4rem !important;
  margin-right: 14.4rem !important;
}

.my-144 {
  margin-top: 14.4rem !important;
  margin-bottom: 14.4rem !important;
}

.m-144 {
  margin: 14.4rem !important;
}

.mt-145 {
  margin-top: 14.5rem !important;
}

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

.ml-145 {
  margin-left: 14.5rem !important;
}

.mr-145 {
  margin-right: 14.5rem !important;
}

.mx-145 {
  margin-left: 14.5rem !important;
  margin-right: 14.5rem !important;
}

.my-145 {
  margin-top: 14.5rem !important;
  margin-bottom: 14.5rem !important;
}

.m-145 {
  margin: 14.5rem !important;
}

.mt-146 {
  margin-top: 14.6rem !important;
}

.mb-146 {
  margin-bottom: 14.6rem !important;
}

.ml-146 {
  margin-left: 14.6rem !important;
}

.mr-146 {
  margin-right: 14.6rem !important;
}

.mx-146 {
  margin-left: 14.6rem !important;
  margin-right: 14.6rem !important;
}

.my-146 {
  margin-top: 14.6rem !important;
  margin-bottom: 14.6rem !important;
}

.m-146 {
  margin: 14.6rem !important;
}

.mt-147 {
  margin-top: 14.7rem !important;
}

.mb-147 {
  margin-bottom: 14.7rem !important;
}

.ml-147 {
  margin-left: 14.7rem !important;
}

.mr-147 {
  margin-right: 14.7rem !important;
}

.mx-147 {
  margin-left: 14.7rem !important;
  margin-right: 14.7rem !important;
}

.my-147 {
  margin-top: 14.7rem !important;
  margin-bottom: 14.7rem !important;
}

.m-147 {
  margin: 14.7rem !important;
}

.mt-148 {
  margin-top: 14.8rem !important;
}

.mb-148 {
  margin-bottom: 14.8rem !important;
}

.ml-148 {
  margin-left: 14.8rem !important;
}

.mr-148 {
  margin-right: 14.8rem !important;
}

.mx-148 {
  margin-left: 14.8rem !important;
  margin-right: 14.8rem !important;
}

.my-148 {
  margin-top: 14.8rem !important;
  margin-bottom: 14.8rem !important;
}

.m-148 {
  margin: 14.8rem !important;
}

.mt-149 {
  margin-top: 14.9rem !important;
}

.mb-149 {
  margin-bottom: 14.9rem !important;
}

.ml-149 {
  margin-left: 14.9rem !important;
}

.mr-149 {
  margin-right: 14.9rem !important;
}

.mx-149 {
  margin-left: 14.9rem !important;
  margin-right: 14.9rem !important;
}

.my-149 {
  margin-top: 14.9rem !important;
  margin-bottom: 14.9rem !important;
}

.m-149 {
  margin: 14.9rem !important;
}

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

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

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

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

.mx-150 {
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}

.my-150 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.m-150 {
  margin: 15rem !important;
}

.mt-151 {
  margin-top: 15.1rem !important;
}

.mb-151 {
  margin-bottom: 15.1rem !important;
}

.ml-151 {
  margin-left: 15.1rem !important;
}

.mr-151 {
  margin-right: 15.1rem !important;
}

.mx-151 {
  margin-left: 15.1rem !important;
  margin-right: 15.1rem !important;
}

.my-151 {
  margin-top: 15.1rem !important;
  margin-bottom: 15.1rem !important;
}

.m-151 {
  margin: 15.1rem !important;
}

.mt-152 {
  margin-top: 15.2rem !important;
}

.mb-152 {
  margin-bottom: 15.2rem !important;
}

.ml-152 {
  margin-left: 15.2rem !important;
}

.mr-152 {
  margin-right: 15.2rem !important;
}

.mx-152 {
  margin-left: 15.2rem !important;
  margin-right: 15.2rem !important;
}

.my-152 {
  margin-top: 15.2rem !important;
  margin-bottom: 15.2rem !important;
}

.m-152 {
  margin: 15.2rem !important;
}

.mt-153 {
  margin-top: 15.3rem !important;
}

.mb-153 {
  margin-bottom: 15.3rem !important;
}

.ml-153 {
  margin-left: 15.3rem !important;
}

.mr-153 {
  margin-right: 15.3rem !important;
}

.mx-153 {
  margin-left: 15.3rem !important;
  margin-right: 15.3rem !important;
}

.my-153 {
  margin-top: 15.3rem !important;
  margin-bottom: 15.3rem !important;
}

.m-153 {
  margin: 15.3rem !important;
}

.mt-154 {
  margin-top: 15.4rem !important;
}

.mb-154 {
  margin-bottom: 15.4rem !important;
}

.ml-154 {
  margin-left: 15.4rem !important;
}

.mr-154 {
  margin-right: 15.4rem !important;
}

.mx-154 {
  margin-left: 15.4rem !important;
  margin-right: 15.4rem !important;
}

.my-154 {
  margin-top: 15.4rem !important;
  margin-bottom: 15.4rem !important;
}

.m-154 {
  margin: 15.4rem !important;
}

.mt-155 {
  margin-top: 15.5rem !important;
}

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

.ml-155 {
  margin-left: 15.5rem !important;
}

.mr-155 {
  margin-right: 15.5rem !important;
}

.mx-155 {
  margin-left: 15.5rem !important;
  margin-right: 15.5rem !important;
}

.my-155 {
  margin-top: 15.5rem !important;
  margin-bottom: 15.5rem !important;
}

.m-155 {
  margin: 15.5rem !important;
}

.mt-156 {
  margin-top: 15.6rem !important;
}

.mb-156 {
  margin-bottom: 15.6rem !important;
}

.ml-156 {
  margin-left: 15.6rem !important;
}

.mr-156 {
  margin-right: 15.6rem !important;
}

.mx-156 {
  margin-left: 15.6rem !important;
  margin-right: 15.6rem !important;
}

.my-156 {
  margin-top: 15.6rem !important;
  margin-bottom: 15.6rem !important;
}

.m-156 {
  margin: 15.6rem !important;
}

.mt-157 {
  margin-top: 15.7rem !important;
}

.mb-157 {
  margin-bottom: 15.7rem !important;
}

.ml-157 {
  margin-left: 15.7rem !important;
}

.mr-157 {
  margin-right: 15.7rem !important;
}

.mx-157 {
  margin-left: 15.7rem !important;
  margin-right: 15.7rem !important;
}

.my-157 {
  margin-top: 15.7rem !important;
  margin-bottom: 15.7rem !important;
}

.m-157 {
  margin: 15.7rem !important;
}

.mt-158 {
  margin-top: 15.8rem !important;
}

.mb-158 {
  margin-bottom: 15.8rem !important;
}

.ml-158 {
  margin-left: 15.8rem !important;
}

.mr-158 {
  margin-right: 15.8rem !important;
}

.mx-158 {
  margin-left: 15.8rem !important;
  margin-right: 15.8rem !important;
}

.my-158 {
  margin-top: 15.8rem !important;
  margin-bottom: 15.8rem !important;
}

.m-158 {
  margin: 15.8rem !important;
}

.mt-159 {
  margin-top: 15.9rem !important;
}

.mb-159 {
  margin-bottom: 15.9rem !important;
}

.ml-159 {
  margin-left: 15.9rem !important;
}

.mr-159 {
  margin-right: 15.9rem !important;
}

.mx-159 {
  margin-left: 15.9rem !important;
  margin-right: 15.9rem !important;
}

.my-159 {
  margin-top: 15.9rem !important;
  margin-bottom: 15.9rem !important;
}

.m-159 {
  margin: 15.9rem !important;
}

.mt-160 {
  margin-top: 16rem !important;
}

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

.ml-160 {
  margin-left: 16rem !important;
}

.mr-160 {
  margin-right: 16rem !important;
}

.mx-160 {
  margin-left: 16rem !important;
  margin-right: 16rem !important;
}

.my-160 {
  margin-top: 16rem !important;
  margin-bottom: 16rem !important;
}

.m-160 {
  margin: 16rem !important;
}

.mt-161 {
  margin-top: 16.1rem !important;
}

.mb-161 {
  margin-bottom: 16.1rem !important;
}

.ml-161 {
  margin-left: 16.1rem !important;
}

.mr-161 {
  margin-right: 16.1rem !important;
}

.mx-161 {
  margin-left: 16.1rem !important;
  margin-right: 16.1rem !important;
}

.my-161 {
  margin-top: 16.1rem !important;
  margin-bottom: 16.1rem !important;
}

.m-161 {
  margin: 16.1rem !important;
}

.mt-162 {
  margin-top: 16.2rem !important;
}

.mb-162 {
  margin-bottom: 16.2rem !important;
}

.ml-162 {
  margin-left: 16.2rem !important;
}

.mr-162 {
  margin-right: 16.2rem !important;
}

.mx-162 {
  margin-left: 16.2rem !important;
  margin-right: 16.2rem !important;
}

.my-162 {
  margin-top: 16.2rem !important;
  margin-bottom: 16.2rem !important;
}

.m-162 {
  margin: 16.2rem !important;
}

.mt-163 {
  margin-top: 16.3rem !important;
}

.mb-163 {
  margin-bottom: 16.3rem !important;
}

.ml-163 {
  margin-left: 16.3rem !important;
}

.mr-163 {
  margin-right: 16.3rem !important;
}

.mx-163 {
  margin-left: 16.3rem !important;
  margin-right: 16.3rem !important;
}

.my-163 {
  margin-top: 16.3rem !important;
  margin-bottom: 16.3rem !important;
}

.m-163 {
  margin: 16.3rem !important;
}

.mt-164 {
  margin-top: 16.4rem !important;
}

.mb-164 {
  margin-bottom: 16.4rem !important;
}

.ml-164 {
  margin-left: 16.4rem !important;
}

.mr-164 {
  margin-right: 16.4rem !important;
}

.mx-164 {
  margin-left: 16.4rem !important;
  margin-right: 16.4rem !important;
}

.my-164 {
  margin-top: 16.4rem !important;
  margin-bottom: 16.4rem !important;
}

.m-164 {
  margin: 16.4rem !important;
}

.mt-165 {
  margin-top: 16.5rem !important;
}

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

.ml-165 {
  margin-left: 16.5rem !important;
}

.mr-165 {
  margin-right: 16.5rem !important;
}

.mx-165 {
  margin-left: 16.5rem !important;
  margin-right: 16.5rem !important;
}

.my-165 {
  margin-top: 16.5rem !important;
  margin-bottom: 16.5rem !important;
}

.m-165 {
  margin: 16.5rem !important;
}

.mt-166 {
  margin-top: 16.6rem !important;
}

.mb-166 {
  margin-bottom: 16.6rem !important;
}

.ml-166 {
  margin-left: 16.6rem !important;
}

.mr-166 {
  margin-right: 16.6rem !important;
}

.mx-166 {
  margin-left: 16.6rem !important;
  margin-right: 16.6rem !important;
}

.my-166 {
  margin-top: 16.6rem !important;
  margin-bottom: 16.6rem !important;
}

.m-166 {
  margin: 16.6rem !important;
}

.mt-167 {
  margin-top: 16.7rem !important;
}

.mb-167 {
  margin-bottom: 16.7rem !important;
}

.ml-167 {
  margin-left: 16.7rem !important;
}

.mr-167 {
  margin-right: 16.7rem !important;
}

.mx-167 {
  margin-left: 16.7rem !important;
  margin-right: 16.7rem !important;
}

.my-167 {
  margin-top: 16.7rem !important;
  margin-bottom: 16.7rem !important;
}

.m-167 {
  margin: 16.7rem !important;
}

.mt-168 {
  margin-top: 16.8rem !important;
}

.mb-168 {
  margin-bottom: 16.8rem !important;
}

.ml-168 {
  margin-left: 16.8rem !important;
}

.mr-168 {
  margin-right: 16.8rem !important;
}

.mx-168 {
  margin-left: 16.8rem !important;
  margin-right: 16.8rem !important;
}

.my-168 {
  margin-top: 16.8rem !important;
  margin-bottom: 16.8rem !important;
}

.m-168 {
  margin: 16.8rem !important;
}

.mt-169 {
  margin-top: 16.9rem !important;
}

.mb-169 {
  margin-bottom: 16.9rem !important;
}

.ml-169 {
  margin-left: 16.9rem !important;
}

.mr-169 {
  margin-right: 16.9rem !important;
}

.mx-169 {
  margin-left: 16.9rem !important;
  margin-right: 16.9rem !important;
}

.my-169 {
  margin-top: 16.9rem !important;
  margin-bottom: 16.9rem !important;
}

.m-169 {
  margin: 16.9rem !important;
}

.mt-170 {
  margin-top: 17rem !important;
}

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

.ml-170 {
  margin-left: 17rem !important;
}

.mr-170 {
  margin-right: 17rem !important;
}

.mx-170 {
  margin-left: 17rem !important;
  margin-right: 17rem !important;
}

.my-170 {
  margin-top: 17rem !important;
  margin-bottom: 17rem !important;
}

.m-170 {
  margin: 17rem !important;
}

.mt-171 {
  margin-top: 17.1rem !important;
}

.mb-171 {
  margin-bottom: 17.1rem !important;
}

.ml-171 {
  margin-left: 17.1rem !important;
}

.mr-171 {
  margin-right: 17.1rem !important;
}

.mx-171 {
  margin-left: 17.1rem !important;
  margin-right: 17.1rem !important;
}

.my-171 {
  margin-top: 17.1rem !important;
  margin-bottom: 17.1rem !important;
}

.m-171 {
  margin: 17.1rem !important;
}

.mt-172 {
  margin-top: 17.2rem !important;
}

.mb-172 {
  margin-bottom: 17.2rem !important;
}

.ml-172 {
  margin-left: 17.2rem !important;
}

.mr-172 {
  margin-right: 17.2rem !important;
}

.mx-172 {
  margin-left: 17.2rem !important;
  margin-right: 17.2rem !important;
}

.my-172 {
  margin-top: 17.2rem !important;
  margin-bottom: 17.2rem !important;
}

.m-172 {
  margin: 17.2rem !important;
}

.mt-173 {
  margin-top: 17.3rem !important;
}

.mb-173 {
  margin-bottom: 17.3rem !important;
}

.ml-173 {
  margin-left: 17.3rem !important;
}

.mr-173 {
  margin-right: 17.3rem !important;
}

.mx-173 {
  margin-left: 17.3rem !important;
  margin-right: 17.3rem !important;
}

.my-173 {
  margin-top: 17.3rem !important;
  margin-bottom: 17.3rem !important;
}

.m-173 {
  margin: 17.3rem !important;
}

.mt-174 {
  margin-top: 17.4rem !important;
}

.mb-174 {
  margin-bottom: 17.4rem !important;
}

.ml-174 {
  margin-left: 17.4rem !important;
}

.mr-174 {
  margin-right: 17.4rem !important;
}

.mx-174 {
  margin-left: 17.4rem !important;
  margin-right: 17.4rem !important;
}

.my-174 {
  margin-top: 17.4rem !important;
  margin-bottom: 17.4rem !important;
}

.m-174 {
  margin: 17.4rem !important;
}

.mt-175 {
  margin-top: 17.5rem !important;
}

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

.ml-175 {
  margin-left: 17.5rem !important;
}

.mr-175 {
  margin-right: 17.5rem !important;
}

.mx-175 {
  margin-left: 17.5rem !important;
  margin-right: 17.5rem !important;
}

.my-175 {
  margin-top: 17.5rem !important;
  margin-bottom: 17.5rem !important;
}

.m-175 {
  margin: 17.5rem !important;
}

.mt-176 {
  margin-top: 17.6rem !important;
}

.mb-176 {
  margin-bottom: 17.6rem !important;
}

.ml-176 {
  margin-left: 17.6rem !important;
}

.mr-176 {
  margin-right: 17.6rem !important;
}

.mx-176 {
  margin-left: 17.6rem !important;
  margin-right: 17.6rem !important;
}

.my-176 {
  margin-top: 17.6rem !important;
  margin-bottom: 17.6rem !important;
}

.m-176 {
  margin: 17.6rem !important;
}

.mt-177 {
  margin-top: 17.7rem !important;
}

.mb-177 {
  margin-bottom: 17.7rem !important;
}

.ml-177 {
  margin-left: 17.7rem !important;
}

.mr-177 {
  margin-right: 17.7rem !important;
}

.mx-177 {
  margin-left: 17.7rem !important;
  margin-right: 17.7rem !important;
}

.my-177 {
  margin-top: 17.7rem !important;
  margin-bottom: 17.7rem !important;
}

.m-177 {
  margin: 17.7rem !important;
}

.mt-178 {
  margin-top: 17.8rem !important;
}

.mb-178 {
  margin-bottom: 17.8rem !important;
}

.ml-178 {
  margin-left: 17.8rem !important;
}

.mr-178 {
  margin-right: 17.8rem !important;
}

.mx-178 {
  margin-left: 17.8rem !important;
  margin-right: 17.8rem !important;
}

.my-178 {
  margin-top: 17.8rem !important;
  margin-bottom: 17.8rem !important;
}

.m-178 {
  margin: 17.8rem !important;
}

.mt-179 {
  margin-top: 17.9rem !important;
}

.mb-179 {
  margin-bottom: 17.9rem !important;
}

.ml-179 {
  margin-left: 17.9rem !important;
}

.mr-179 {
  margin-right: 17.9rem !important;
}

.mx-179 {
  margin-left: 17.9rem !important;
  margin-right: 17.9rem !important;
}

.my-179 {
  margin-top: 17.9rem !important;
  margin-bottom: 17.9rem !important;
}

.m-179 {
  margin: 17.9rem !important;
}

.mt-180 {
  margin-top: 18rem !important;
}

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

.ml-180 {
  margin-left: 18rem !important;
}

.mr-180 {
  margin-right: 18rem !important;
}

.mx-180 {
  margin-left: 18rem !important;
  margin-right: 18rem !important;
}

.my-180 {
  margin-top: 18rem !important;
  margin-bottom: 18rem !important;
}

.m-180 {
  margin: 18rem !important;
}

.mt-181 {
  margin-top: 18.1rem !important;
}

.mb-181 {
  margin-bottom: 18.1rem !important;
}

.ml-181 {
  margin-left: 18.1rem !important;
}

.mr-181 {
  margin-right: 18.1rem !important;
}

.mx-181 {
  margin-left: 18.1rem !important;
  margin-right: 18.1rem !important;
}

.my-181 {
  margin-top: 18.1rem !important;
  margin-bottom: 18.1rem !important;
}

.m-181 {
  margin: 18.1rem !important;
}

.mt-182 {
  margin-top: 18.2rem !important;
}

.mb-182 {
  margin-bottom: 18.2rem !important;
}

.ml-182 {
  margin-left: 18.2rem !important;
}

.mr-182 {
  margin-right: 18.2rem !important;
}

.mx-182 {
  margin-left: 18.2rem !important;
  margin-right: 18.2rem !important;
}

.my-182 {
  margin-top: 18.2rem !important;
  margin-bottom: 18.2rem !important;
}

.m-182 {
  margin: 18.2rem !important;
}

.mt-183 {
  margin-top: 18.3rem !important;
}

.mb-183 {
  margin-bottom: 18.3rem !important;
}

.ml-183 {
  margin-left: 18.3rem !important;
}

.mr-183 {
  margin-right: 18.3rem !important;
}

.mx-183 {
  margin-left: 18.3rem !important;
  margin-right: 18.3rem !important;
}

.my-183 {
  margin-top: 18.3rem !important;
  margin-bottom: 18.3rem !important;
}

.m-183 {
  margin: 18.3rem !important;
}

.mt-184 {
  margin-top: 18.4rem !important;
}

.mb-184 {
  margin-bottom: 18.4rem !important;
}

.ml-184 {
  margin-left: 18.4rem !important;
}

.mr-184 {
  margin-right: 18.4rem !important;
}

.mx-184 {
  margin-left: 18.4rem !important;
  margin-right: 18.4rem !important;
}

.my-184 {
  margin-top: 18.4rem !important;
  margin-bottom: 18.4rem !important;
}

.m-184 {
  margin: 18.4rem !important;
}

.mt-185 {
  margin-top: 18.5rem !important;
}

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

.ml-185 {
  margin-left: 18.5rem !important;
}

.mr-185 {
  margin-right: 18.5rem !important;
}

.mx-185 {
  margin-left: 18.5rem !important;
  margin-right: 18.5rem !important;
}

.my-185 {
  margin-top: 18.5rem !important;
  margin-bottom: 18.5rem !important;
}

.m-185 {
  margin: 18.5rem !important;
}

.mt-186 {
  margin-top: 18.6rem !important;
}

.mb-186 {
  margin-bottom: 18.6rem !important;
}

.ml-186 {
  margin-left: 18.6rem !important;
}

.mr-186 {
  margin-right: 18.6rem !important;
}

.mx-186 {
  margin-left: 18.6rem !important;
  margin-right: 18.6rem !important;
}

.my-186 {
  margin-top: 18.6rem !important;
  margin-bottom: 18.6rem !important;
}

.m-186 {
  margin: 18.6rem !important;
}

.mt-187 {
  margin-top: 18.7rem !important;
}

.mb-187 {
  margin-bottom: 18.7rem !important;
}

.ml-187 {
  margin-left: 18.7rem !important;
}

.mr-187 {
  margin-right: 18.7rem !important;
}

.mx-187 {
  margin-left: 18.7rem !important;
  margin-right: 18.7rem !important;
}

.my-187 {
  margin-top: 18.7rem !important;
  margin-bottom: 18.7rem !important;
}

.m-187 {
  margin: 18.7rem !important;
}

.mt-188 {
  margin-top: 18.8rem !important;
}

.mb-188 {
  margin-bottom: 18.8rem !important;
}

.ml-188 {
  margin-left: 18.8rem !important;
}

.mr-188 {
  margin-right: 18.8rem !important;
}

.mx-188 {
  margin-left: 18.8rem !important;
  margin-right: 18.8rem !important;
}

.my-188 {
  margin-top: 18.8rem !important;
  margin-bottom: 18.8rem !important;
}

.m-188 {
  margin: 18.8rem !important;
}

.mt-189 {
  margin-top: 18.9rem !important;
}

.mb-189 {
  margin-bottom: 18.9rem !important;
}

.ml-189 {
  margin-left: 18.9rem !important;
}

.mr-189 {
  margin-right: 18.9rem !important;
}

.mx-189 {
  margin-left: 18.9rem !important;
  margin-right: 18.9rem !important;
}

.my-189 {
  margin-top: 18.9rem !important;
  margin-bottom: 18.9rem !important;
}

.m-189 {
  margin: 18.9rem !important;
}

.mt-190 {
  margin-top: 19rem !important;
}

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

.ml-190 {
  margin-left: 19rem !important;
}

.mr-190 {
  margin-right: 19rem !important;
}

.mx-190 {
  margin-left: 19rem !important;
  margin-right: 19rem !important;
}

.my-190 {
  margin-top: 19rem !important;
  margin-bottom: 19rem !important;
}

.m-190 {
  margin: 19rem !important;
}

.mt-191 {
  margin-top: 19.1rem !important;
}

.mb-191 {
  margin-bottom: 19.1rem !important;
}

.ml-191 {
  margin-left: 19.1rem !important;
}

.mr-191 {
  margin-right: 19.1rem !important;
}

.mx-191 {
  margin-left: 19.1rem !important;
  margin-right: 19.1rem !important;
}

.my-191 {
  margin-top: 19.1rem !important;
  margin-bottom: 19.1rem !important;
}

.m-191 {
  margin: 19.1rem !important;
}

.mt-192 {
  margin-top: 19.2rem !important;
}

.mb-192 {
  margin-bottom: 19.2rem !important;
}

.ml-192 {
  margin-left: 19.2rem !important;
}

.mr-192 {
  margin-right: 19.2rem !important;
}

.mx-192 {
  margin-left: 19.2rem !important;
  margin-right: 19.2rem !important;
}

.my-192 {
  margin-top: 19.2rem !important;
  margin-bottom: 19.2rem !important;
}

.m-192 {
  margin: 19.2rem !important;
}

.mt-193 {
  margin-top: 19.3rem !important;
}

.mb-193 {
  margin-bottom: 19.3rem !important;
}

.ml-193 {
  margin-left: 19.3rem !important;
}

.mr-193 {
  margin-right: 19.3rem !important;
}

.mx-193 {
  margin-left: 19.3rem !important;
  margin-right: 19.3rem !important;
}

.my-193 {
  margin-top: 19.3rem !important;
  margin-bottom: 19.3rem !important;
}

.m-193 {
  margin: 19.3rem !important;
}

.mt-194 {
  margin-top: 19.4rem !important;
}

.mb-194 {
  margin-bottom: 19.4rem !important;
}

.ml-194 {
  margin-left: 19.4rem !important;
}

.mr-194 {
  margin-right: 19.4rem !important;
}

.mx-194 {
  margin-left: 19.4rem !important;
  margin-right: 19.4rem !important;
}

.my-194 {
  margin-top: 19.4rem !important;
  margin-bottom: 19.4rem !important;
}

.m-194 {
  margin: 19.4rem !important;
}

.mt-195 {
  margin-top: 19.5rem !important;
}

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

.ml-195 {
  margin-left: 19.5rem !important;
}

.mr-195 {
  margin-right: 19.5rem !important;
}

.mx-195 {
  margin-left: 19.5rem !important;
  margin-right: 19.5rem !important;
}

.my-195 {
  margin-top: 19.5rem !important;
  margin-bottom: 19.5rem !important;
}

.m-195 {
  margin: 19.5rem !important;
}

.mt-196 {
  margin-top: 19.6rem !important;
}

.mb-196 {
  margin-bottom: 19.6rem !important;
}

.ml-196 {
  margin-left: 19.6rem !important;
}

.mr-196 {
  margin-right: 19.6rem !important;
}

.mx-196 {
  margin-left: 19.6rem !important;
  margin-right: 19.6rem !important;
}

.my-196 {
  margin-top: 19.6rem !important;
  margin-bottom: 19.6rem !important;
}

.m-196 {
  margin: 19.6rem !important;
}

.mt-197 {
  margin-top: 19.7rem !important;
}

.mb-197 {
  margin-bottom: 19.7rem !important;
}

.ml-197 {
  margin-left: 19.7rem !important;
}

.mr-197 {
  margin-right: 19.7rem !important;
}

.mx-197 {
  margin-left: 19.7rem !important;
  margin-right: 19.7rem !important;
}

.my-197 {
  margin-top: 19.7rem !important;
  margin-bottom: 19.7rem !important;
}

.m-197 {
  margin: 19.7rem !important;
}

.mt-198 {
  margin-top: 19.8rem !important;
}

.mb-198 {
  margin-bottom: 19.8rem !important;
}

.ml-198 {
  margin-left: 19.8rem !important;
}

.mr-198 {
  margin-right: 19.8rem !important;
}

.mx-198 {
  margin-left: 19.8rem !important;
  margin-right: 19.8rem !important;
}

.my-198 {
  margin-top: 19.8rem !important;
  margin-bottom: 19.8rem !important;
}

.m-198 {
  margin: 19.8rem !important;
}

.mt-199 {
  margin-top: 19.9rem !important;
}

.mb-199 {
  margin-bottom: 19.9rem !important;
}

.ml-199 {
  margin-left: 19.9rem !important;
}

.mr-199 {
  margin-right: 19.9rem !important;
}

.mx-199 {
  margin-left: 19.9rem !important;
  margin-right: 19.9rem !important;
}

.my-199 {
  margin-top: 19.9rem !important;
  margin-bottom: 19.9rem !important;
}

.m-199 {
  margin: 19.9rem !important;
}

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

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

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

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

.mx-200 {
  margin-left: 20rem !important;
  margin-right: 20rem !important;
}

.my-200 {
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}

.m-200 {
  margin: 20rem !important;
}

/* Padding Utilities
   ========================================================================== */
.pt-0 {
  padding-top: 0rem !important;
}

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

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

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

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.p-0 {
  padding: 0rem !important;
}

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

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

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

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

.px-1 {
  padding-left: 0.1rem !important;
  padding-right: 0.1rem !important;
}

.py-1 {
  padding-top: 0.1rem !important;
  padding-bottom: 0.1rem !important;
}

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

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

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

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

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

.px-2 {
  padding-left: 0.2rem !important;
  padding-right: 0.2rem !important;
}

.py-2 {
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
}

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

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

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

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

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

.px-3 {
  padding-left: 0.3rem !important;
  padding-right: 0.3rem !important;
}

.py-3 {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}

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

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

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

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

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

.px-4 {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

.py-4 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

.p-4 {
  padding: 0.4rem !important;
}

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

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

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

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

.px-5 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-5 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

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

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

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

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

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

.px-6 {
  padding-left: 0.6rem !important;
  padding-right: 0.6rem !important;
}

.py-6 {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

.p-6 {
  padding: 0.6rem !important;
}

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

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

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

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

.px-7 {
  padding-left: 0.7rem !important;
  padding-right: 0.7rem !important;
}

.py-7 {
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
}

.p-7 {
  padding: 0.7rem !important;
}

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

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

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

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

.px-8 {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

.py-8 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.p-8 {
  padding: 0.8rem !important;
}

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

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

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

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

.px-9 {
  padding-left: 0.9rem !important;
  padding-right: 0.9rem !important;
}

.py-9 {
  padding-top: 0.9rem !important;
  padding-bottom: 0.9rem !important;
}

.p-9 {
  padding: 0.9rem !important;
}

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

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

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

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

.px-10 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-10 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

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

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

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

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

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

.px-11 {
  padding-left: 1.1rem !important;
  padding-right: 1.1rem !important;
}

.py-11 {
  padding-top: 1.1rem !important;
  padding-bottom: 1.1rem !important;
}

.p-11 {
  padding: 1.1rem !important;
}

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

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

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

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

.px-12 {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

.py-12 {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

.p-12 {
  padding: 1.2rem !important;
}

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

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

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

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

.px-13 {
  padding-left: 1.3rem !important;
  padding-right: 1.3rem !important;
}

.py-13 {
  padding-top: 1.3rem !important;
  padding-bottom: 1.3rem !important;
}

.p-13 {
  padding: 1.3rem !important;
}

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

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

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

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

.px-14 {
  padding-left: 1.4rem !important;
  padding-right: 1.4rem !important;
}

.py-14 {
  padding-top: 1.4rem !important;
  padding-bottom: 1.4rem !important;
}

.p-14 {
  padding: 1.4rem !important;
}

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

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

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

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

.px-15 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-15 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

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

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

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

.pl-16 {
  padding-left: 1.6rem !important;
}

.pr-16 {
  padding-right: 1.6rem !important;
}

.px-16 {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}

.py-16 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

.p-16 {
  padding: 1.6rem !important;
}

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

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

.pl-17 {
  padding-left: 1.7rem !important;
}

.pr-17 {
  padding-right: 1.7rem !important;
}

.px-17 {
  padding-left: 1.7rem !important;
  padding-right: 1.7rem !important;
}

.py-17 {
  padding-top: 1.7rem !important;
  padding-bottom: 1.7rem !important;
}

.p-17 {
  padding: 1.7rem !important;
}

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

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

.pl-18 {
  padding-left: 1.8rem !important;
}

.pr-18 {
  padding-right: 1.8rem !important;
}

.px-18 {
  padding-left: 1.8rem !important;
  padding-right: 1.8rem !important;
}

.py-18 {
  padding-top: 1.8rem !important;
  padding-bottom: 1.8rem !important;
}

.p-18 {
  padding: 1.8rem !important;
}

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

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

.pl-19 {
  padding-left: 1.9rem !important;
}

.pr-19 {
  padding-right: 1.9rem !important;
}

.px-19 {
  padding-left: 1.9rem !important;
  padding-right: 1.9rem !important;
}

.py-19 {
  padding-top: 1.9rem !important;
  padding-bottom: 1.9rem !important;
}

.p-19 {
  padding: 1.9rem !important;
}

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

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

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

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

.px-20 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-20 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

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

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

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

.pl-21 {
  padding-left: 2.1rem !important;
}

.pr-21 {
  padding-right: 2.1rem !important;
}

.px-21 {
  padding-left: 2.1rem !important;
  padding-right: 2.1rem !important;
}

.py-21 {
  padding-top: 2.1rem !important;
  padding-bottom: 2.1rem !important;
}

.p-21 {
  padding: 2.1rem !important;
}

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

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

.pl-22 {
  padding-left: 2.2rem !important;
}

.pr-22 {
  padding-right: 2.2rem !important;
}

.px-22 {
  padding-left: 2.2rem !important;
  padding-right: 2.2rem !important;
}

.py-22 {
  padding-top: 2.2rem !important;
  padding-bottom: 2.2rem !important;
}

.p-22 {
  padding: 2.2rem !important;
}

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

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

.pl-23 {
  padding-left: 2.3rem !important;
}

.pr-23 {
  padding-right: 2.3rem !important;
}

.px-23 {
  padding-left: 2.3rem !important;
  padding-right: 2.3rem !important;
}

.py-23 {
  padding-top: 2.3rem !important;
  padding-bottom: 2.3rem !important;
}

.p-23 {
  padding: 2.3rem !important;
}

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

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

.pl-24 {
  padding-left: 2.4rem !important;
}

.pr-24 {
  padding-right: 2.4rem !important;
}

.px-24 {
  padding-left: 2.4rem !important;
  padding-right: 2.4rem !important;
}

.py-24 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

.p-24 {
  padding: 2.4rem !important;
}

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

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

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

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

.px-25 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-25 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

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

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

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

.pl-26 {
  padding-left: 2.6rem !important;
}

.pr-26 {
  padding-right: 2.6rem !important;
}

.px-26 {
  padding-left: 2.6rem !important;
  padding-right: 2.6rem !important;
}

.py-26 {
  padding-top: 2.6rem !important;
  padding-bottom: 2.6rem !important;
}

.p-26 {
  padding: 2.6rem !important;
}

.pt-27 {
  padding-top: 2.7rem !important;
}

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

.pl-27 {
  padding-left: 2.7rem !important;
}

.pr-27 {
  padding-right: 2.7rem !important;
}

.px-27 {
  padding-left: 2.7rem !important;
  padding-right: 2.7rem !important;
}

.py-27 {
  padding-top: 2.7rem !important;
  padding-bottom: 2.7rem !important;
}

.p-27 {
  padding: 2.7rem !important;
}

.pt-28 {
  padding-top: 2.8rem !important;
}

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

.pl-28 {
  padding-left: 2.8rem !important;
}

.pr-28 {
  padding-right: 2.8rem !important;
}

.px-28 {
  padding-left: 2.8rem !important;
  padding-right: 2.8rem !important;
}

.py-28 {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}

.p-28 {
  padding: 2.8rem !important;
}

.pt-29 {
  padding-top: 2.9rem !important;
}

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

.pl-29 {
  padding-left: 2.9rem !important;
}

.pr-29 {
  padding-right: 2.9rem !important;
}

.px-29 {
  padding-left: 2.9rem !important;
  padding-right: 2.9rem !important;
}

.py-29 {
  padding-top: 2.9rem !important;
  padding-bottom: 2.9rem !important;
}

.p-29 {
  padding: 2.9rem !important;
}

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

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

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

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

.px-30 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-30 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

.pt-31 {
  padding-top: 3.1rem !important;
}

.pb-31 {
  padding-bottom: 3.1rem !important;
}

.pl-31 {
  padding-left: 3.1rem !important;
}

.pr-31 {
  padding-right: 3.1rem !important;
}

.px-31 {
  padding-left: 3.1rem !important;
  padding-right: 3.1rem !important;
}

.py-31 {
  padding-top: 3.1rem !important;
  padding-bottom: 3.1rem !important;
}

.p-31 {
  padding: 3.1rem !important;
}

.pt-32 {
  padding-top: 3.2rem !important;
}

.pb-32 {
  padding-bottom: 3.2rem !important;
}

.pl-32 {
  padding-left: 3.2rem !important;
}

.pr-32 {
  padding-right: 3.2rem !important;
}

.px-32 {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
}

.py-32 {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

.p-32 {
  padding: 3.2rem !important;
}

.pt-33 {
  padding-top: 3.3rem !important;
}

.pb-33 {
  padding-bottom: 3.3rem !important;
}

.pl-33 {
  padding-left: 3.3rem !important;
}

.pr-33 {
  padding-right: 3.3rem !important;
}

.px-33 {
  padding-left: 3.3rem !important;
  padding-right: 3.3rem !important;
}

.py-33 {
  padding-top: 3.3rem !important;
  padding-bottom: 3.3rem !important;
}

.p-33 {
  padding: 3.3rem !important;
}

.pt-34 {
  padding-top: 3.4rem !important;
}

.pb-34 {
  padding-bottom: 3.4rem !important;
}

.pl-34 {
  padding-left: 3.4rem !important;
}

.pr-34 {
  padding-right: 3.4rem !important;
}

.px-34 {
  padding-left: 3.4rem !important;
  padding-right: 3.4rem !important;
}

.py-34 {
  padding-top: 3.4rem !important;
  padding-bottom: 3.4rem !important;
}

.p-34 {
  padding: 3.4rem !important;
}

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

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

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

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

.px-35 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.py-35 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.p-35 {
  padding: 3.5rem !important;
}

.pt-36 {
  padding-top: 3.6rem !important;
}

.pb-36 {
  padding-bottom: 3.6rem !important;
}

.pl-36 {
  padding-left: 3.6rem !important;
}

.pr-36 {
  padding-right: 3.6rem !important;
}

.px-36 {
  padding-left: 3.6rem !important;
  padding-right: 3.6rem !important;
}

.py-36 {
  padding-top: 3.6rem !important;
  padding-bottom: 3.6rem !important;
}

.p-36 {
  padding: 3.6rem !important;
}

.pt-37 {
  padding-top: 3.7rem !important;
}

.pb-37 {
  padding-bottom: 3.7rem !important;
}

.pl-37 {
  padding-left: 3.7rem !important;
}

.pr-37 {
  padding-right: 3.7rem !important;
}

.px-37 {
  padding-left: 3.7rem !important;
  padding-right: 3.7rem !important;
}

.py-37 {
  padding-top: 3.7rem !important;
  padding-bottom: 3.7rem !important;
}

.p-37 {
  padding: 3.7rem !important;
}

.pt-38 {
  padding-top: 3.8rem !important;
}

.pb-38 {
  padding-bottom: 3.8rem !important;
}

.pl-38 {
  padding-left: 3.8rem !important;
}

.pr-38 {
  padding-right: 3.8rem !important;
}

.px-38 {
  padding-left: 3.8rem !important;
  padding-right: 3.8rem !important;
}

.py-38 {
  padding-top: 3.8rem !important;
  padding-bottom: 3.8rem !important;
}

.p-38 {
  padding: 3.8rem !important;
}

.pt-39 {
  padding-top: 3.9rem !important;
}

.pb-39 {
  padding-bottom: 3.9rem !important;
}

.pl-39 {
  padding-left: 3.9rem !important;
}

.pr-39 {
  padding-right: 3.9rem !important;
}

.px-39 {
  padding-left: 3.9rem !important;
  padding-right: 3.9rem !important;
}

.py-39 {
  padding-top: 3.9rem !important;
  padding-bottom: 3.9rem !important;
}

.p-39 {
  padding: 3.9rem !important;
}

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

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

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

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

.px-40 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-40 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.p-40 {
  padding: 4rem !important;
}

.pt-41 {
  padding-top: 4.1rem !important;
}

.pb-41 {
  padding-bottom: 4.1rem !important;
}

.pl-41 {
  padding-left: 4.1rem !important;
}

.pr-41 {
  padding-right: 4.1rem !important;
}

.px-41 {
  padding-left: 4.1rem !important;
  padding-right: 4.1rem !important;
}

.py-41 {
  padding-top: 4.1rem !important;
  padding-bottom: 4.1rem !important;
}

.p-41 {
  padding: 4.1rem !important;
}

.pt-42 {
  padding-top: 4.2rem !important;
}

.pb-42 {
  padding-bottom: 4.2rem !important;
}

.pl-42 {
  padding-left: 4.2rem !important;
}

.pr-42 {
  padding-right: 4.2rem !important;
}

.px-42 {
  padding-left: 4.2rem !important;
  padding-right: 4.2rem !important;
}

.py-42 {
  padding-top: 4.2rem !important;
  padding-bottom: 4.2rem !important;
}

.p-42 {
  padding: 4.2rem !important;
}

.pt-43 {
  padding-top: 4.3rem !important;
}

.pb-43 {
  padding-bottom: 4.3rem !important;
}

.pl-43 {
  padding-left: 4.3rem !important;
}

.pr-43 {
  padding-right: 4.3rem !important;
}

.px-43 {
  padding-left: 4.3rem !important;
  padding-right: 4.3rem !important;
}

.py-43 {
  padding-top: 4.3rem !important;
  padding-bottom: 4.3rem !important;
}

.p-43 {
  padding: 4.3rem !important;
}

.pt-44 {
  padding-top: 4.4rem !important;
}

.pb-44 {
  padding-bottom: 4.4rem !important;
}

.pl-44 {
  padding-left: 4.4rem !important;
}

.pr-44 {
  padding-right: 4.4rem !important;
}

.px-44 {
  padding-left: 4.4rem !important;
  padding-right: 4.4rem !important;
}

.py-44 {
  padding-top: 4.4rem !important;
  padding-bottom: 4.4rem !important;
}

.p-44 {
  padding: 4.4rem !important;
}

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

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

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

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

.px-45 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

.py-45 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.p-45 {
  padding: 4.5rem !important;
}

.pt-46 {
  padding-top: 4.6rem !important;
}

.pb-46 {
  padding-bottom: 4.6rem !important;
}

.pl-46 {
  padding-left: 4.6rem !important;
}

.pr-46 {
  padding-right: 4.6rem !important;
}

.px-46 {
  padding-left: 4.6rem !important;
  padding-right: 4.6rem !important;
}

.py-46 {
  padding-top: 4.6rem !important;
  padding-bottom: 4.6rem !important;
}

.p-46 {
  padding: 4.6rem !important;
}

.pt-47 {
  padding-top: 4.7rem !important;
}

.pb-47 {
  padding-bottom: 4.7rem !important;
}

.pl-47 {
  padding-left: 4.7rem !important;
}

.pr-47 {
  padding-right: 4.7rem !important;
}

.px-47 {
  padding-left: 4.7rem !important;
  padding-right: 4.7rem !important;
}

.py-47 {
  padding-top: 4.7rem !important;
  padding-bottom: 4.7rem !important;
}

.p-47 {
  padding: 4.7rem !important;
}

.pt-48 {
  padding-top: 4.8rem !important;
}

.pb-48 {
  padding-bottom: 4.8rem !important;
}

.pl-48 {
  padding-left: 4.8rem !important;
}

.pr-48 {
  padding-right: 4.8rem !important;
}

.px-48 {
  padding-left: 4.8rem !important;
  padding-right: 4.8rem !important;
}

.py-48 {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

.p-48 {
  padding: 4.8rem !important;
}

.pt-49 {
  padding-top: 4.9rem !important;
}

.pb-49 {
  padding-bottom: 4.9rem !important;
}

.pl-49 {
  padding-left: 4.9rem !important;
}

.pr-49 {
  padding-right: 4.9rem !important;
}

.px-49 {
  padding-left: 4.9rem !important;
  padding-right: 4.9rem !important;
}

.py-49 {
  padding-top: 4.9rem !important;
  padding-bottom: 4.9rem !important;
}

.p-49 {
  padding: 4.9rem !important;
}

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

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

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

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

.px-50 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-50 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

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

.pt-51 {
  padding-top: 5.1rem !important;
}

.pb-51 {
  padding-bottom: 5.1rem !important;
}

.pl-51 {
  padding-left: 5.1rem !important;
}

.pr-51 {
  padding-right: 5.1rem !important;
}

.px-51 {
  padding-left: 5.1rem !important;
  padding-right: 5.1rem !important;
}

.py-51 {
  padding-top: 5.1rem !important;
  padding-bottom: 5.1rem !important;
}

.p-51 {
  padding: 5.1rem !important;
}

.pt-52 {
  padding-top: 5.2rem !important;
}

.pb-52 {
  padding-bottom: 5.2rem !important;
}

.pl-52 {
  padding-left: 5.2rem !important;
}

.pr-52 {
  padding-right: 5.2rem !important;
}

.px-52 {
  padding-left: 5.2rem !important;
  padding-right: 5.2rem !important;
}

.py-52 {
  padding-top: 5.2rem !important;
  padding-bottom: 5.2rem !important;
}

.p-52 {
  padding: 5.2rem !important;
}

.pt-53 {
  padding-top: 5.3rem !important;
}

.pb-53 {
  padding-bottom: 5.3rem !important;
}

.pl-53 {
  padding-left: 5.3rem !important;
}

.pr-53 {
  padding-right: 5.3rem !important;
}

.px-53 {
  padding-left: 5.3rem !important;
  padding-right: 5.3rem !important;
}

.py-53 {
  padding-top: 5.3rem !important;
  padding-bottom: 5.3rem !important;
}

.p-53 {
  padding: 5.3rem !important;
}

.pt-54 {
  padding-top: 5.4rem !important;
}

.pb-54 {
  padding-bottom: 5.4rem !important;
}

.pl-54 {
  padding-left: 5.4rem !important;
}

.pr-54 {
  padding-right: 5.4rem !important;
}

.px-54 {
  padding-left: 5.4rem !important;
  padding-right: 5.4rem !important;
}

.py-54 {
  padding-top: 5.4rem !important;
  padding-bottom: 5.4rem !important;
}

.p-54 {
  padding: 5.4rem !important;
}

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

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

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

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

.px-55 {
  padding-left: 5.5rem !important;
  padding-right: 5.5rem !important;
}

.py-55 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.p-55 {
  padding: 5.5rem !important;
}

.pt-56 {
  padding-top: 5.6rem !important;
}

.pb-56 {
  padding-bottom: 5.6rem !important;
}

.pl-56 {
  padding-left: 5.6rem !important;
}

.pr-56 {
  padding-right: 5.6rem !important;
}

.px-56 {
  padding-left: 5.6rem !important;
  padding-right: 5.6rem !important;
}

.py-56 {
  padding-top: 5.6rem !important;
  padding-bottom: 5.6rem !important;
}

.p-56 {
  padding: 5.6rem !important;
}

.pt-57 {
  padding-top: 5.7rem !important;
}

.pb-57 {
  padding-bottom: 5.7rem !important;
}

.pl-57 {
  padding-left: 5.7rem !important;
}

.pr-57 {
  padding-right: 5.7rem !important;
}

.px-57 {
  padding-left: 5.7rem !important;
  padding-right: 5.7rem !important;
}

.py-57 {
  padding-top: 5.7rem !important;
  padding-bottom: 5.7rem !important;
}

.p-57 {
  padding: 5.7rem !important;
}

.pt-58 {
  padding-top: 5.8rem !important;
}

.pb-58 {
  padding-bottom: 5.8rem !important;
}

.pl-58 {
  padding-left: 5.8rem !important;
}

.pr-58 {
  padding-right: 5.8rem !important;
}

.px-58 {
  padding-left: 5.8rem !important;
  padding-right: 5.8rem !important;
}

.py-58 {
  padding-top: 5.8rem !important;
  padding-bottom: 5.8rem !important;
}

.p-58 {
  padding: 5.8rem !important;
}

.pt-59 {
  padding-top: 5.9rem !important;
}

.pb-59 {
  padding-bottom: 5.9rem !important;
}

.pl-59 {
  padding-left: 5.9rem !important;
}

.pr-59 {
  padding-right: 5.9rem !important;
}

.px-59 {
  padding-left: 5.9rem !important;
  padding-right: 5.9rem !important;
}

.py-59 {
  padding-top: 5.9rem !important;
  padding-bottom: 5.9rem !important;
}

.p-59 {
  padding: 5.9rem !important;
}

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

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

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

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

.px-60 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-60 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.p-60 {
  padding: 6rem !important;
}

.pt-61 {
  padding-top: 6.1rem !important;
}

.pb-61 {
  padding-bottom: 6.1rem !important;
}

.pl-61 {
  padding-left: 6.1rem !important;
}

.pr-61 {
  padding-right: 6.1rem !important;
}

.px-61 {
  padding-left: 6.1rem !important;
  padding-right: 6.1rem !important;
}

.py-61 {
  padding-top: 6.1rem !important;
  padding-bottom: 6.1rem !important;
}

.p-61 {
  padding: 6.1rem !important;
}

.pt-62 {
  padding-top: 6.2rem !important;
}

.pb-62 {
  padding-bottom: 6.2rem !important;
}

.pl-62 {
  padding-left: 6.2rem !important;
}

.pr-62 {
  padding-right: 6.2rem !important;
}

.px-62 {
  padding-left: 6.2rem !important;
  padding-right: 6.2rem !important;
}

.py-62 {
  padding-top: 6.2rem !important;
  padding-bottom: 6.2rem !important;
}

.p-62 {
  padding: 6.2rem !important;
}

.pt-63 {
  padding-top: 6.3rem !important;
}

.pb-63 {
  padding-bottom: 6.3rem !important;
}

.pl-63 {
  padding-left: 6.3rem !important;
}

.pr-63 {
  padding-right: 6.3rem !important;
}

.px-63 {
  padding-left: 6.3rem !important;
  padding-right: 6.3rem !important;
}

.py-63 {
  padding-top: 6.3rem !important;
  padding-bottom: 6.3rem !important;
}

.p-63 {
  padding: 6.3rem !important;
}

.pt-64 {
  padding-top: 6.4rem !important;
}

.pb-64 {
  padding-bottom: 6.4rem !important;
}

.pl-64 {
  padding-left: 6.4rem !important;
}

.pr-64 {
  padding-right: 6.4rem !important;
}

.px-64 {
  padding-left: 6.4rem !important;
  padding-right: 6.4rem !important;
}

.py-64 {
  padding-top: 6.4rem !important;
  padding-bottom: 6.4rem !important;
}

.p-64 {
  padding: 6.4rem !important;
}

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

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

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

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

.px-65 {
  padding-left: 6.5rem !important;
  padding-right: 6.5rem !important;
}

.py-65 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

.p-65 {
  padding: 6.5rem !important;
}

.pt-66 {
  padding-top: 6.6rem !important;
}

.pb-66 {
  padding-bottom: 6.6rem !important;
}

.pl-66 {
  padding-left: 6.6rem !important;
}

.pr-66 {
  padding-right: 6.6rem !important;
}

.px-66 {
  padding-left: 6.6rem !important;
  padding-right: 6.6rem !important;
}

.py-66 {
  padding-top: 6.6rem !important;
  padding-bottom: 6.6rem !important;
}

.p-66 {
  padding: 6.6rem !important;
}

.pt-67 {
  padding-top: 6.7rem !important;
}

.pb-67 {
  padding-bottom: 6.7rem !important;
}

.pl-67 {
  padding-left: 6.7rem !important;
}

.pr-67 {
  padding-right: 6.7rem !important;
}

.px-67 {
  padding-left: 6.7rem !important;
  padding-right: 6.7rem !important;
}

.py-67 {
  padding-top: 6.7rem !important;
  padding-bottom: 6.7rem !important;
}

.p-67 {
  padding: 6.7rem !important;
}

.pt-68 {
  padding-top: 6.8rem !important;
}

.pb-68 {
  padding-bottom: 6.8rem !important;
}

.pl-68 {
  padding-left: 6.8rem !important;
}

.pr-68 {
  padding-right: 6.8rem !important;
}

.px-68 {
  padding-left: 6.8rem !important;
  padding-right: 6.8rem !important;
}

.py-68 {
  padding-top: 6.8rem !important;
  padding-bottom: 6.8rem !important;
}

.p-68 {
  padding: 6.8rem !important;
}

.pt-69 {
  padding-top: 6.9rem !important;
}

.pb-69 {
  padding-bottom: 6.9rem !important;
}

.pl-69 {
  padding-left: 6.9rem !important;
}

.pr-69 {
  padding-right: 6.9rem !important;
}

.px-69 {
  padding-left: 6.9rem !important;
  padding-right: 6.9rem !important;
}

.py-69 {
  padding-top: 6.9rem !important;
  padding-bottom: 6.9rem !important;
}

.p-69 {
  padding: 6.9rem !important;
}

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

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

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

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

.px-70 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.py-70 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.p-70 {
  padding: 7rem !important;
}

.pt-71 {
  padding-top: 7.1rem !important;
}

.pb-71 {
  padding-bottom: 7.1rem !important;
}

.pl-71 {
  padding-left: 7.1rem !important;
}

.pr-71 {
  padding-right: 7.1rem !important;
}

.px-71 {
  padding-left: 7.1rem !important;
  padding-right: 7.1rem !important;
}

.py-71 {
  padding-top: 7.1rem !important;
  padding-bottom: 7.1rem !important;
}

.p-71 {
  padding: 7.1rem !important;
}

.pt-72 {
  padding-top: 7.2rem !important;
}

.pb-72 {
  padding-bottom: 7.2rem !important;
}

.pl-72 {
  padding-left: 7.2rem !important;
}

.pr-72 {
  padding-right: 7.2rem !important;
}

.px-72 {
  padding-left: 7.2rem !important;
  padding-right: 7.2rem !important;
}

.py-72 {
  padding-top: 7.2rem !important;
  padding-bottom: 7.2rem !important;
}

.p-72 {
  padding: 7.2rem !important;
}

.pt-73 {
  padding-top: 7.3rem !important;
}

.pb-73 {
  padding-bottom: 7.3rem !important;
}

.pl-73 {
  padding-left: 7.3rem !important;
}

.pr-73 {
  padding-right: 7.3rem !important;
}

.px-73 {
  padding-left: 7.3rem !important;
  padding-right: 7.3rem !important;
}

.py-73 {
  padding-top: 7.3rem !important;
  padding-bottom: 7.3rem !important;
}

.p-73 {
  padding: 7.3rem !important;
}

.pt-74 {
  padding-top: 7.4rem !important;
}

.pb-74 {
  padding-bottom: 7.4rem !important;
}

.pl-74 {
  padding-left: 7.4rem !important;
}

.pr-74 {
  padding-right: 7.4rem !important;
}

.px-74 {
  padding-left: 7.4rem !important;
  padding-right: 7.4rem !important;
}

.py-74 {
  padding-top: 7.4rem !important;
  padding-bottom: 7.4rem !important;
}

.p-74 {
  padding: 7.4rem !important;
}

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

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

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

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

.px-75 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important;
}

.py-75 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.p-75 {
  padding: 7.5rem !important;
}

.pt-76 {
  padding-top: 7.6rem !important;
}

.pb-76 {
  padding-bottom: 7.6rem !important;
}

.pl-76 {
  padding-left: 7.6rem !important;
}

.pr-76 {
  padding-right: 7.6rem !important;
}

.px-76 {
  padding-left: 7.6rem !important;
  padding-right: 7.6rem !important;
}

.py-76 {
  padding-top: 7.6rem !important;
  padding-bottom: 7.6rem !important;
}

.p-76 {
  padding: 7.6rem !important;
}

.pt-77 {
  padding-top: 7.7rem !important;
}

.pb-77 {
  padding-bottom: 7.7rem !important;
}

.pl-77 {
  padding-left: 7.7rem !important;
}

.pr-77 {
  padding-right: 7.7rem !important;
}

.px-77 {
  padding-left: 7.7rem !important;
  padding-right: 7.7rem !important;
}

.py-77 {
  padding-top: 7.7rem !important;
  padding-bottom: 7.7rem !important;
}

.p-77 {
  padding: 7.7rem !important;
}

.pt-78 {
  padding-top: 7.8rem !important;
}

.pb-78 {
  padding-bottom: 7.8rem !important;
}

.pl-78 {
  padding-left: 7.8rem !important;
}

.pr-78 {
  padding-right: 7.8rem !important;
}

.px-78 {
  padding-left: 7.8rem !important;
  padding-right: 7.8rem !important;
}

.py-78 {
  padding-top: 7.8rem !important;
  padding-bottom: 7.8rem !important;
}

.p-78 {
  padding: 7.8rem !important;
}

.pt-79 {
  padding-top: 7.9rem !important;
}

.pb-79 {
  padding-bottom: 7.9rem !important;
}

.pl-79 {
  padding-left: 7.9rem !important;
}

.pr-79 {
  padding-right: 7.9rem !important;
}

.px-79 {
  padding-left: 7.9rem !important;
  padding-right: 7.9rem !important;
}

.py-79 {
  padding-top: 7.9rem !important;
  padding-bottom: 7.9rem !important;
}

.p-79 {
  padding: 7.9rem !important;
}

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

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

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

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

.px-80 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-80 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.p-80 {
  padding: 8rem !important;
}

.pt-81 {
  padding-top: 8.1rem !important;
}

.pb-81 {
  padding-bottom: 8.1rem !important;
}

.pl-81 {
  padding-left: 8.1rem !important;
}

.pr-81 {
  padding-right: 8.1rem !important;
}

.px-81 {
  padding-left: 8.1rem !important;
  padding-right: 8.1rem !important;
}

.py-81 {
  padding-top: 8.1rem !important;
  padding-bottom: 8.1rem !important;
}

.p-81 {
  padding: 8.1rem !important;
}

.pt-82 {
  padding-top: 8.2rem !important;
}

.pb-82 {
  padding-bottom: 8.2rem !important;
}

.pl-82 {
  padding-left: 8.2rem !important;
}

.pr-82 {
  padding-right: 8.2rem !important;
}

.px-82 {
  padding-left: 8.2rem !important;
  padding-right: 8.2rem !important;
}

.py-82 {
  padding-top: 8.2rem !important;
  padding-bottom: 8.2rem !important;
}

.p-82 {
  padding: 8.2rem !important;
}

.pt-83 {
  padding-top: 8.3rem !important;
}

.pb-83 {
  padding-bottom: 8.3rem !important;
}

.pl-83 {
  padding-left: 8.3rem !important;
}

.pr-83 {
  padding-right: 8.3rem !important;
}

.px-83 {
  padding-left: 8.3rem !important;
  padding-right: 8.3rem !important;
}

.py-83 {
  padding-top: 8.3rem !important;
  padding-bottom: 8.3rem !important;
}

.p-83 {
  padding: 8.3rem !important;
}

.pt-84 {
  padding-top: 8.4rem !important;
}

.pb-84 {
  padding-bottom: 8.4rem !important;
}

.pl-84 {
  padding-left: 8.4rem !important;
}

.pr-84 {
  padding-right: 8.4rem !important;
}

.px-84 {
  padding-left: 8.4rem !important;
  padding-right: 8.4rem !important;
}

.py-84 {
  padding-top: 8.4rem !important;
  padding-bottom: 8.4rem !important;
}

.p-84 {
  padding: 8.4rem !important;
}

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

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

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

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

.px-85 {
  padding-left: 8.5rem !important;
  padding-right: 8.5rem !important;
}

.py-85 {
  padding-top: 8.5rem !important;
  padding-bottom: 8.5rem !important;
}

.p-85 {
  padding: 8.5rem !important;
}

.pt-86 {
  padding-top: 8.6rem !important;
}

.pb-86 {
  padding-bottom: 8.6rem !important;
}

.pl-86 {
  padding-left: 8.6rem !important;
}

.pr-86 {
  padding-right: 8.6rem !important;
}

.px-86 {
  padding-left: 8.6rem !important;
  padding-right: 8.6rem !important;
}

.py-86 {
  padding-top: 8.6rem !important;
  padding-bottom: 8.6rem !important;
}

.p-86 {
  padding: 8.6rem !important;
}

.pt-87 {
  padding-top: 8.7rem !important;
}

.pb-87 {
  padding-bottom: 8.7rem !important;
}

.pl-87 {
  padding-left: 8.7rem !important;
}

.pr-87 {
  padding-right: 8.7rem !important;
}

.px-87 {
  padding-left: 8.7rem !important;
  padding-right: 8.7rem !important;
}

.py-87 {
  padding-top: 8.7rem !important;
  padding-bottom: 8.7rem !important;
}

.p-87 {
  padding: 8.7rem !important;
}

.pt-88 {
  padding-top: 8.8rem !important;
}

.pb-88 {
  padding-bottom: 8.8rem !important;
}

.pl-88 {
  padding-left: 8.8rem !important;
}

.pr-88 {
  padding-right: 8.8rem !important;
}

.px-88 {
  padding-left: 8.8rem !important;
  padding-right: 8.8rem !important;
}

.py-88 {
  padding-top: 8.8rem !important;
  padding-bottom: 8.8rem !important;
}

.p-88 {
  padding: 8.8rem !important;
}

.pt-89 {
  padding-top: 8.9rem !important;
}

.pb-89 {
  padding-bottom: 8.9rem !important;
}

.pl-89 {
  padding-left: 8.9rem !important;
}

.pr-89 {
  padding-right: 8.9rem !important;
}

.px-89 {
  padding-left: 8.9rem !important;
  padding-right: 8.9rem !important;
}

.py-89 {
  padding-top: 8.9rem !important;
  padding-bottom: 8.9rem !important;
}

.p-89 {
  padding: 8.9rem !important;
}

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

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

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

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

.px-90 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.py-90 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.p-90 {
  padding: 9rem !important;
}

.pt-91 {
  padding-top: 9.1rem !important;
}

.pb-91 {
  padding-bottom: 9.1rem !important;
}

.pl-91 {
  padding-left: 9.1rem !important;
}

.pr-91 {
  padding-right: 9.1rem !important;
}

.px-91 {
  padding-left: 9.1rem !important;
  padding-right: 9.1rem !important;
}

.py-91 {
  padding-top: 9.1rem !important;
  padding-bottom: 9.1rem !important;
}

.p-91 {
  padding: 9.1rem !important;
}

.pt-92 {
  padding-top: 9.2rem !important;
}

.pb-92 {
  padding-bottom: 9.2rem !important;
}

.pl-92 {
  padding-left: 9.2rem !important;
}

.pr-92 {
  padding-right: 9.2rem !important;
}

.px-92 {
  padding-left: 9.2rem !important;
  padding-right: 9.2rem !important;
}

.py-92 {
  padding-top: 9.2rem !important;
  padding-bottom: 9.2rem !important;
}

.p-92 {
  padding: 9.2rem !important;
}

.pt-93 {
  padding-top: 9.3rem !important;
}

.pb-93 {
  padding-bottom: 9.3rem !important;
}

.pl-93 {
  padding-left: 9.3rem !important;
}

.pr-93 {
  padding-right: 9.3rem !important;
}

.px-93 {
  padding-left: 9.3rem !important;
  padding-right: 9.3rem !important;
}

.py-93 {
  padding-top: 9.3rem !important;
  padding-bottom: 9.3rem !important;
}

.p-93 {
  padding: 9.3rem !important;
}

.pt-94 {
  padding-top: 9.4rem !important;
}

.pb-94 {
  padding-bottom: 9.4rem !important;
}

.pl-94 {
  padding-left: 9.4rem !important;
}

.pr-94 {
  padding-right: 9.4rem !important;
}

.px-94 {
  padding-left: 9.4rem !important;
  padding-right: 9.4rem !important;
}

.py-94 {
  padding-top: 9.4rem !important;
  padding-bottom: 9.4rem !important;
}

.p-94 {
  padding: 9.4rem !important;
}

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

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

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

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

.px-95 {
  padding-left: 9.5rem !important;
  padding-right: 9.5rem !important;
}

.py-95 {
  padding-top: 9.5rem !important;
  padding-bottom: 9.5rem !important;
}

.p-95 {
  padding: 9.5rem !important;
}

.pt-96 {
  padding-top: 9.6rem !important;
}

.pb-96 {
  padding-bottom: 9.6rem !important;
}

.pl-96 {
  padding-left: 9.6rem !important;
}

.pr-96 {
  padding-right: 9.6rem !important;
}

.px-96 {
  padding-left: 9.6rem !important;
  padding-right: 9.6rem !important;
}

.py-96 {
  padding-top: 9.6rem !important;
  padding-bottom: 9.6rem !important;
}

.p-96 {
  padding: 9.6rem !important;
}

.pt-97 {
  padding-top: 9.7rem !important;
}

.pb-97 {
  padding-bottom: 9.7rem !important;
}

.pl-97 {
  padding-left: 9.7rem !important;
}

.pr-97 {
  padding-right: 9.7rem !important;
}

.px-97 {
  padding-left: 9.7rem !important;
  padding-right: 9.7rem !important;
}

.py-97 {
  padding-top: 9.7rem !important;
  padding-bottom: 9.7rem !important;
}

.p-97 {
  padding: 9.7rem !important;
}

.pt-98 {
  padding-top: 9.8rem !important;
}

.pb-98 {
  padding-bottom: 9.8rem !important;
}

.pl-98 {
  padding-left: 9.8rem !important;
}

.pr-98 {
  padding-right: 9.8rem !important;
}

.px-98 {
  padding-left: 9.8rem !important;
  padding-right: 9.8rem !important;
}

.py-98 {
  padding-top: 9.8rem !important;
  padding-bottom: 9.8rem !important;
}

.p-98 {
  padding: 9.8rem !important;
}

.pt-99 {
  padding-top: 9.9rem !important;
}

.pb-99 {
  padding-bottom: 9.9rem !important;
}

.pl-99 {
  padding-left: 9.9rem !important;
}

.pr-99 {
  padding-right: 9.9rem !important;
}

.px-99 {
  padding-left: 9.9rem !important;
  padding-right: 9.9rem !important;
}

.py-99 {
  padding-top: 9.9rem !important;
  padding-bottom: 9.9rem !important;
}

.p-99 {
  padding: 9.9rem !important;
}

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

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

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

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

.px-100 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-100 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

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

.pt-101 {
  padding-top: 10.1rem !important;
}

.pb-101 {
  padding-bottom: 10.1rem !important;
}

.pl-101 {
  padding-left: 10.1rem !important;
}

.pr-101 {
  padding-right: 10.1rem !important;
}

.px-101 {
  padding-left: 10.1rem !important;
  padding-right: 10.1rem !important;
}

.py-101 {
  padding-top: 10.1rem !important;
  padding-bottom: 10.1rem !important;
}

.p-101 {
  padding: 10.1rem !important;
}

.pt-102 {
  padding-top: 10.2rem !important;
}

.pb-102 {
  padding-bottom: 10.2rem !important;
}

.pl-102 {
  padding-left: 10.2rem !important;
}

.pr-102 {
  padding-right: 10.2rem !important;
}

.px-102 {
  padding-left: 10.2rem !important;
  padding-right: 10.2rem !important;
}

.py-102 {
  padding-top: 10.2rem !important;
  padding-bottom: 10.2rem !important;
}

.p-102 {
  padding: 10.2rem !important;
}

.pt-103 {
  padding-top: 10.3rem !important;
}

.pb-103 {
  padding-bottom: 10.3rem !important;
}

.pl-103 {
  padding-left: 10.3rem !important;
}

.pr-103 {
  padding-right: 10.3rem !important;
}

.px-103 {
  padding-left: 10.3rem !important;
  padding-right: 10.3rem !important;
}

.py-103 {
  padding-top: 10.3rem !important;
  padding-bottom: 10.3rem !important;
}

.p-103 {
  padding: 10.3rem !important;
}

.pt-104 {
  padding-top: 10.4rem !important;
}

.pb-104 {
  padding-bottom: 10.4rem !important;
}

.pl-104 {
  padding-left: 10.4rem !important;
}

.pr-104 {
  padding-right: 10.4rem !important;
}

.px-104 {
  padding-left: 10.4rem !important;
  padding-right: 10.4rem !important;
}

.py-104 {
  padding-top: 10.4rem !important;
  padding-bottom: 10.4rem !important;
}

.p-104 {
  padding: 10.4rem !important;
}

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

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

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

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

.px-105 {
  padding-left: 10.5rem !important;
  padding-right: 10.5rem !important;
}

.py-105 {
  padding-top: 10.5rem !important;
  padding-bottom: 10.5rem !important;
}

.p-105 {
  padding: 10.5rem !important;
}

.pt-106 {
  padding-top: 10.6rem !important;
}

.pb-106 {
  padding-bottom: 10.6rem !important;
}

.pl-106 {
  padding-left: 10.6rem !important;
}

.pr-106 {
  padding-right: 10.6rem !important;
}

.px-106 {
  padding-left: 10.6rem !important;
  padding-right: 10.6rem !important;
}

.py-106 {
  padding-top: 10.6rem !important;
  padding-bottom: 10.6rem !important;
}

.p-106 {
  padding: 10.6rem !important;
}

.pt-107 {
  padding-top: 10.7rem !important;
}

.pb-107 {
  padding-bottom: 10.7rem !important;
}

.pl-107 {
  padding-left: 10.7rem !important;
}

.pr-107 {
  padding-right: 10.7rem !important;
}

.px-107 {
  padding-left: 10.7rem !important;
  padding-right: 10.7rem !important;
}

.py-107 {
  padding-top: 10.7rem !important;
  padding-bottom: 10.7rem !important;
}

.p-107 {
  padding: 10.7rem !important;
}

.pt-108 {
  padding-top: 10.8rem !important;
}

.pb-108 {
  padding-bottom: 10.8rem !important;
}

.pl-108 {
  padding-left: 10.8rem !important;
}

.pr-108 {
  padding-right: 10.8rem !important;
}

.px-108 {
  padding-left: 10.8rem !important;
  padding-right: 10.8rem !important;
}

.py-108 {
  padding-top: 10.8rem !important;
  padding-bottom: 10.8rem !important;
}

.p-108 {
  padding: 10.8rem !important;
}

.pt-109 {
  padding-top: 10.9rem !important;
}

.pb-109 {
  padding-bottom: 10.9rem !important;
}

.pl-109 {
  padding-left: 10.9rem !important;
}

.pr-109 {
  padding-right: 10.9rem !important;
}

.px-109 {
  padding-left: 10.9rem !important;
  padding-right: 10.9rem !important;
}

.py-109 {
  padding-top: 10.9rem !important;
  padding-bottom: 10.9rem !important;
}

.p-109 {
  padding: 10.9rem !important;
}

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

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

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

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

.px-110 {
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.py-110 {
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}

.p-110 {
  padding: 11rem !important;
}

.pt-111 {
  padding-top: 11.1rem !important;
}

.pb-111 {
  padding-bottom: 11.1rem !important;
}

.pl-111 {
  padding-left: 11.1rem !important;
}

.pr-111 {
  padding-right: 11.1rem !important;
}

.px-111 {
  padding-left: 11.1rem !important;
  padding-right: 11.1rem !important;
}

.py-111 {
  padding-top: 11.1rem !important;
  padding-bottom: 11.1rem !important;
}

.p-111 {
  padding: 11.1rem !important;
}

.pt-112 {
  padding-top: 11.2rem !important;
}

.pb-112 {
  padding-bottom: 11.2rem !important;
}

.pl-112 {
  padding-left: 11.2rem !important;
}

.pr-112 {
  padding-right: 11.2rem !important;
}

.px-112 {
  padding-left: 11.2rem !important;
  padding-right: 11.2rem !important;
}

.py-112 {
  padding-top: 11.2rem !important;
  padding-bottom: 11.2rem !important;
}

.p-112 {
  padding: 11.2rem !important;
}

.pt-113 {
  padding-top: 11.3rem !important;
}

.pb-113 {
  padding-bottom: 11.3rem !important;
}

.pl-113 {
  padding-left: 11.3rem !important;
}

.pr-113 {
  padding-right: 11.3rem !important;
}

.px-113 {
  padding-left: 11.3rem !important;
  padding-right: 11.3rem !important;
}

.py-113 {
  padding-top: 11.3rem !important;
  padding-bottom: 11.3rem !important;
}

.p-113 {
  padding: 11.3rem !important;
}

.pt-114 {
  padding-top: 11.4rem !important;
}

.pb-114 {
  padding-bottom: 11.4rem !important;
}

.pl-114 {
  padding-left: 11.4rem !important;
}

.pr-114 {
  padding-right: 11.4rem !important;
}

.px-114 {
  padding-left: 11.4rem !important;
  padding-right: 11.4rem !important;
}

.py-114 {
  padding-top: 11.4rem !important;
  padding-bottom: 11.4rem !important;
}

.p-114 {
  padding: 11.4rem !important;
}

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

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

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

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

.px-115 {
  padding-left: 11.5rem !important;
  padding-right: 11.5rem !important;
}

.py-115 {
  padding-top: 11.5rem !important;
  padding-bottom: 11.5rem !important;
}

.p-115 {
  padding: 11.5rem !important;
}

.pt-116 {
  padding-top: 11.6rem !important;
}

.pb-116 {
  padding-bottom: 11.6rem !important;
}

.pl-116 {
  padding-left: 11.6rem !important;
}

.pr-116 {
  padding-right: 11.6rem !important;
}

.px-116 {
  padding-left: 11.6rem !important;
  padding-right: 11.6rem !important;
}

.py-116 {
  padding-top: 11.6rem !important;
  padding-bottom: 11.6rem !important;
}

.p-116 {
  padding: 11.6rem !important;
}

.pt-117 {
  padding-top: 11.7rem !important;
}

.pb-117 {
  padding-bottom: 11.7rem !important;
}

.pl-117 {
  padding-left: 11.7rem !important;
}

.pr-117 {
  padding-right: 11.7rem !important;
}

.px-117 {
  padding-left: 11.7rem !important;
  padding-right: 11.7rem !important;
}

.py-117 {
  padding-top: 11.7rem !important;
  padding-bottom: 11.7rem !important;
}

.p-117 {
  padding: 11.7rem !important;
}

.pt-118 {
  padding-top: 11.8rem !important;
}

.pb-118 {
  padding-bottom: 11.8rem !important;
}

.pl-118 {
  padding-left: 11.8rem !important;
}

.pr-118 {
  padding-right: 11.8rem !important;
}

.px-118 {
  padding-left: 11.8rem !important;
  padding-right: 11.8rem !important;
}

.py-118 {
  padding-top: 11.8rem !important;
  padding-bottom: 11.8rem !important;
}

.p-118 {
  padding: 11.8rem !important;
}

.pt-119 {
  padding-top: 11.9rem !important;
}

.pb-119 {
  padding-bottom: 11.9rem !important;
}

.pl-119 {
  padding-left: 11.9rem !important;
}

.pr-119 {
  padding-right: 11.9rem !important;
}

.px-119 {
  padding-left: 11.9rem !important;
  padding-right: 11.9rem !important;
}

.py-119 {
  padding-top: 11.9rem !important;
  padding-bottom: 11.9rem !important;
}

.p-119 {
  padding: 11.9rem !important;
}

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

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

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

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

.px-120 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.py-120 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

.p-120 {
  padding: 12rem !important;
}

.pt-121 {
  padding-top: 12.1rem !important;
}

.pb-121 {
  padding-bottom: 12.1rem !important;
}

.pl-121 {
  padding-left: 12.1rem !important;
}

.pr-121 {
  padding-right: 12.1rem !important;
}

.px-121 {
  padding-left: 12.1rem !important;
  padding-right: 12.1rem !important;
}

.py-121 {
  padding-top: 12.1rem !important;
  padding-bottom: 12.1rem !important;
}

.p-121 {
  padding: 12.1rem !important;
}

.pt-122 {
  padding-top: 12.2rem !important;
}

.pb-122 {
  padding-bottom: 12.2rem !important;
}

.pl-122 {
  padding-left: 12.2rem !important;
}

.pr-122 {
  padding-right: 12.2rem !important;
}

.px-122 {
  padding-left: 12.2rem !important;
  padding-right: 12.2rem !important;
}

.py-122 {
  padding-top: 12.2rem !important;
  padding-bottom: 12.2rem !important;
}

.p-122 {
  padding: 12.2rem !important;
}

.pt-123 {
  padding-top: 12.3rem !important;
}

.pb-123 {
  padding-bottom: 12.3rem !important;
}

.pl-123 {
  padding-left: 12.3rem !important;
}

.pr-123 {
  padding-right: 12.3rem !important;
}

.px-123 {
  padding-left: 12.3rem !important;
  padding-right: 12.3rem !important;
}

.py-123 {
  padding-top: 12.3rem !important;
  padding-bottom: 12.3rem !important;
}

.p-123 {
  padding: 12.3rem !important;
}

.pt-124 {
  padding-top: 12.4rem !important;
}

.pb-124 {
  padding-bottom: 12.4rem !important;
}

.pl-124 {
  padding-left: 12.4rem !important;
}

.pr-124 {
  padding-right: 12.4rem !important;
}

.px-124 {
  padding-left: 12.4rem !important;
  padding-right: 12.4rem !important;
}

.py-124 {
  padding-top: 12.4rem !important;
  padding-bottom: 12.4rem !important;
}

.p-124 {
  padding: 12.4rem !important;
}

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

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

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

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

.px-125 {
  padding-left: 12.5rem !important;
  padding-right: 12.5rem !important;
}

.py-125 {
  padding-top: 12.5rem !important;
  padding-bottom: 12.5rem !important;
}

.p-125 {
  padding: 12.5rem !important;
}

.pt-126 {
  padding-top: 12.6rem !important;
}

.pb-126 {
  padding-bottom: 12.6rem !important;
}

.pl-126 {
  padding-left: 12.6rem !important;
}

.pr-126 {
  padding-right: 12.6rem !important;
}

.px-126 {
  padding-left: 12.6rem !important;
  padding-right: 12.6rem !important;
}

.py-126 {
  padding-top: 12.6rem !important;
  padding-bottom: 12.6rem !important;
}

.p-126 {
  padding: 12.6rem !important;
}

.pt-127 {
  padding-top: 12.7rem !important;
}

.pb-127 {
  padding-bottom: 12.7rem !important;
}

.pl-127 {
  padding-left: 12.7rem !important;
}

.pr-127 {
  padding-right: 12.7rem !important;
}

.px-127 {
  padding-left: 12.7rem !important;
  padding-right: 12.7rem !important;
}

.py-127 {
  padding-top: 12.7rem !important;
  padding-bottom: 12.7rem !important;
}

.p-127 {
  padding: 12.7rem !important;
}

.pt-128 {
  padding-top: 12.8rem !important;
}

.pb-128 {
  padding-bottom: 12.8rem !important;
}

.pl-128 {
  padding-left: 12.8rem !important;
}

.pr-128 {
  padding-right: 12.8rem !important;
}

.px-128 {
  padding-left: 12.8rem !important;
  padding-right: 12.8rem !important;
}

.py-128 {
  padding-top: 12.8rem !important;
  padding-bottom: 12.8rem !important;
}

.p-128 {
  padding: 12.8rem !important;
}

.pt-129 {
  padding-top: 12.9rem !important;
}

.pb-129 {
  padding-bottom: 12.9rem !important;
}

.pl-129 {
  padding-left: 12.9rem !important;
}

.pr-129 {
  padding-right: 12.9rem !important;
}

.px-129 {
  padding-left: 12.9rem !important;
  padding-right: 12.9rem !important;
}

.py-129 {
  padding-top: 12.9rem !important;
  padding-bottom: 12.9rem !important;
}

.p-129 {
  padding: 12.9rem !important;
}

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

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

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

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

.px-130 {
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}

.py-130 {
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}

.p-130 {
  padding: 13rem !important;
}

.pt-131 {
  padding-top: 13.1rem !important;
}

.pb-131 {
  padding-bottom: 13.1rem !important;
}

.pl-131 {
  padding-left: 13.1rem !important;
}

.pr-131 {
  padding-right: 13.1rem !important;
}

.px-131 {
  padding-left: 13.1rem !important;
  padding-right: 13.1rem !important;
}

.py-131 {
  padding-top: 13.1rem !important;
  padding-bottom: 13.1rem !important;
}

.p-131 {
  padding: 13.1rem !important;
}

.pt-132 {
  padding-top: 13.2rem !important;
}

.pb-132 {
  padding-bottom: 13.2rem !important;
}

.pl-132 {
  padding-left: 13.2rem !important;
}

.pr-132 {
  padding-right: 13.2rem !important;
}

.px-132 {
  padding-left: 13.2rem !important;
  padding-right: 13.2rem !important;
}

.py-132 {
  padding-top: 13.2rem !important;
  padding-bottom: 13.2rem !important;
}

.p-132 {
  padding: 13.2rem !important;
}

.pt-133 {
  padding-top: 13.3rem !important;
}

.pb-133 {
  padding-bottom: 13.3rem !important;
}

.pl-133 {
  padding-left: 13.3rem !important;
}

.pr-133 {
  padding-right: 13.3rem !important;
}

.px-133 {
  padding-left: 13.3rem !important;
  padding-right: 13.3rem !important;
}

.py-133 {
  padding-top: 13.3rem !important;
  padding-bottom: 13.3rem !important;
}

.p-133 {
  padding: 13.3rem !important;
}

.pt-134 {
  padding-top: 13.4rem !important;
}

.pb-134 {
  padding-bottom: 13.4rem !important;
}

.pl-134 {
  padding-left: 13.4rem !important;
}

.pr-134 {
  padding-right: 13.4rem !important;
}

.px-134 {
  padding-left: 13.4rem !important;
  padding-right: 13.4rem !important;
}

.py-134 {
  padding-top: 13.4rem !important;
  padding-bottom: 13.4rem !important;
}

.p-134 {
  padding: 13.4rem !important;
}

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

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

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

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

.px-135 {
  padding-left: 13.5rem !important;
  padding-right: 13.5rem !important;
}

.py-135 {
  padding-top: 13.5rem !important;
  padding-bottom: 13.5rem !important;
}

.p-135 {
  padding: 13.5rem !important;
}

.pt-136 {
  padding-top: 13.6rem !important;
}

.pb-136 {
  padding-bottom: 13.6rem !important;
}

.pl-136 {
  padding-left: 13.6rem !important;
}

.pr-136 {
  padding-right: 13.6rem !important;
}

.px-136 {
  padding-left: 13.6rem !important;
  padding-right: 13.6rem !important;
}

.py-136 {
  padding-top: 13.6rem !important;
  padding-bottom: 13.6rem !important;
}

.p-136 {
  padding: 13.6rem !important;
}

.pt-137 {
  padding-top: 13.7rem !important;
}

.pb-137 {
  padding-bottom: 13.7rem !important;
}

.pl-137 {
  padding-left: 13.7rem !important;
}

.pr-137 {
  padding-right: 13.7rem !important;
}

.px-137 {
  padding-left: 13.7rem !important;
  padding-right: 13.7rem !important;
}

.py-137 {
  padding-top: 13.7rem !important;
  padding-bottom: 13.7rem !important;
}

.p-137 {
  padding: 13.7rem !important;
}

.pt-138 {
  padding-top: 13.8rem !important;
}

.pb-138 {
  padding-bottom: 13.8rem !important;
}

.pl-138 {
  padding-left: 13.8rem !important;
}

.pr-138 {
  padding-right: 13.8rem !important;
}

.px-138 {
  padding-left: 13.8rem !important;
  padding-right: 13.8rem !important;
}

.py-138 {
  padding-top: 13.8rem !important;
  padding-bottom: 13.8rem !important;
}

.p-138 {
  padding: 13.8rem !important;
}

.pt-139 {
  padding-top: 13.9rem !important;
}

.pb-139 {
  padding-bottom: 13.9rem !important;
}

.pl-139 {
  padding-left: 13.9rem !important;
}

.pr-139 {
  padding-right: 13.9rem !important;
}

.px-139 {
  padding-left: 13.9rem !important;
  padding-right: 13.9rem !important;
}

.py-139 {
  padding-top: 13.9rem !important;
  padding-bottom: 13.9rem !important;
}

.p-139 {
  padding: 13.9rem !important;
}

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

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

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

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

.px-140 {
  padding-left: 14rem !important;
  padding-right: 14rem !important;
}

.py-140 {
  padding-top: 14rem !important;
  padding-bottom: 14rem !important;
}

.p-140 {
  padding: 14rem !important;
}

.pt-141 {
  padding-top: 14.1rem !important;
}

.pb-141 {
  padding-bottom: 14.1rem !important;
}

.pl-141 {
  padding-left: 14.1rem !important;
}

.pr-141 {
  padding-right: 14.1rem !important;
}

.px-141 {
  padding-left: 14.1rem !important;
  padding-right: 14.1rem !important;
}

.py-141 {
  padding-top: 14.1rem !important;
  padding-bottom: 14.1rem !important;
}

.p-141 {
  padding: 14.1rem !important;
}

.pt-142 {
  padding-top: 14.2rem !important;
}

.pb-142 {
  padding-bottom: 14.2rem !important;
}

.pl-142 {
  padding-left: 14.2rem !important;
}

.pr-142 {
  padding-right: 14.2rem !important;
}

.px-142 {
  padding-left: 14.2rem !important;
  padding-right: 14.2rem !important;
}

.py-142 {
  padding-top: 14.2rem !important;
  padding-bottom: 14.2rem !important;
}

.p-142 {
  padding: 14.2rem !important;
}

.pt-143 {
  padding-top: 14.3rem !important;
}

.pb-143 {
  padding-bottom: 14.3rem !important;
}

.pl-143 {
  padding-left: 14.3rem !important;
}

.pr-143 {
  padding-right: 14.3rem !important;
}

.px-143 {
  padding-left: 14.3rem !important;
  padding-right: 14.3rem !important;
}

.py-143 {
  padding-top: 14.3rem !important;
  padding-bottom: 14.3rem !important;
}

.p-143 {
  padding: 14.3rem !important;
}

.pt-144 {
  padding-top: 14.4rem !important;
}

.pb-144 {
  padding-bottom: 14.4rem !important;
}

.pl-144 {
  padding-left: 14.4rem !important;
}

.pr-144 {
  padding-right: 14.4rem !important;
}

.px-144 {
  padding-left: 14.4rem !important;
  padding-right: 14.4rem !important;
}

.py-144 {
  padding-top: 14.4rem !important;
  padding-bottom: 14.4rem !important;
}

.p-144 {
  padding: 14.4rem !important;
}

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

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

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

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

.px-145 {
  padding-left: 14.5rem !important;
  padding-right: 14.5rem !important;
}

.py-145 {
  padding-top: 14.5rem !important;
  padding-bottom: 14.5rem !important;
}

.p-145 {
  padding: 14.5rem !important;
}

.pt-146 {
  padding-top: 14.6rem !important;
}

.pb-146 {
  padding-bottom: 14.6rem !important;
}

.pl-146 {
  padding-left: 14.6rem !important;
}

.pr-146 {
  padding-right: 14.6rem !important;
}

.px-146 {
  padding-left: 14.6rem !important;
  padding-right: 14.6rem !important;
}

.py-146 {
  padding-top: 14.6rem !important;
  padding-bottom: 14.6rem !important;
}

.p-146 {
  padding: 14.6rem !important;
}

.pt-147 {
  padding-top: 14.7rem !important;
}

.pb-147 {
  padding-bottom: 14.7rem !important;
}

.pl-147 {
  padding-left: 14.7rem !important;
}

.pr-147 {
  padding-right: 14.7rem !important;
}

.px-147 {
  padding-left: 14.7rem !important;
  padding-right: 14.7rem !important;
}

.py-147 {
  padding-top: 14.7rem !important;
  padding-bottom: 14.7rem !important;
}

.p-147 {
  padding: 14.7rem !important;
}

.pt-148 {
  padding-top: 14.8rem !important;
}

.pb-148 {
  padding-bottom: 14.8rem !important;
}

.pl-148 {
  padding-left: 14.8rem !important;
}

.pr-148 {
  padding-right: 14.8rem !important;
}

.px-148 {
  padding-left: 14.8rem !important;
  padding-right: 14.8rem !important;
}

.py-148 {
  padding-top: 14.8rem !important;
  padding-bottom: 14.8rem !important;
}

.p-148 {
  padding: 14.8rem !important;
}

.pt-149 {
  padding-top: 14.9rem !important;
}

.pb-149 {
  padding-bottom: 14.9rem !important;
}

.pl-149 {
  padding-left: 14.9rem !important;
}

.pr-149 {
  padding-right: 14.9rem !important;
}

.px-149 {
  padding-left: 14.9rem !important;
  padding-right: 14.9rem !important;
}

.py-149 {
  padding-top: 14.9rem !important;
  padding-bottom: 14.9rem !important;
}

.p-149 {
  padding: 14.9rem !important;
}

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

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

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

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

.px-150 {
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}

.py-150 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

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

.pt-151 {
  padding-top: 15.1rem !important;
}

.pb-151 {
  padding-bottom: 15.1rem !important;
}

.pl-151 {
  padding-left: 15.1rem !important;
}

.pr-151 {
  padding-right: 15.1rem !important;
}

.px-151 {
  padding-left: 15.1rem !important;
  padding-right: 15.1rem !important;
}

.py-151 {
  padding-top: 15.1rem !important;
  padding-bottom: 15.1rem !important;
}

.p-151 {
  padding: 15.1rem !important;
}

.pt-152 {
  padding-top: 15.2rem !important;
}

.pb-152 {
  padding-bottom: 15.2rem !important;
}

.pl-152 {
  padding-left: 15.2rem !important;
}

.pr-152 {
  padding-right: 15.2rem !important;
}

.px-152 {
  padding-left: 15.2rem !important;
  padding-right: 15.2rem !important;
}

.py-152 {
  padding-top: 15.2rem !important;
  padding-bottom: 15.2rem !important;
}

.p-152 {
  padding: 15.2rem !important;
}

.pt-153 {
  padding-top: 15.3rem !important;
}

.pb-153 {
  padding-bottom: 15.3rem !important;
}

.pl-153 {
  padding-left: 15.3rem !important;
}

.pr-153 {
  padding-right: 15.3rem !important;
}

.px-153 {
  padding-left: 15.3rem !important;
  padding-right: 15.3rem !important;
}

.py-153 {
  padding-top: 15.3rem !important;
  padding-bottom: 15.3rem !important;
}

.p-153 {
  padding: 15.3rem !important;
}

.pt-154 {
  padding-top: 15.4rem !important;
}

.pb-154 {
  padding-bottom: 15.4rem !important;
}

.pl-154 {
  padding-left: 15.4rem !important;
}

.pr-154 {
  padding-right: 15.4rem !important;
}

.px-154 {
  padding-left: 15.4rem !important;
  padding-right: 15.4rem !important;
}

.py-154 {
  padding-top: 15.4rem !important;
  padding-bottom: 15.4rem !important;
}

.p-154 {
  padding: 15.4rem !important;
}

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

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

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

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

.px-155 {
  padding-left: 15.5rem !important;
  padding-right: 15.5rem !important;
}

.py-155 {
  padding-top: 15.5rem !important;
  padding-bottom: 15.5rem !important;
}

.p-155 {
  padding: 15.5rem !important;
}

.pt-156 {
  padding-top: 15.6rem !important;
}

.pb-156 {
  padding-bottom: 15.6rem !important;
}

.pl-156 {
  padding-left: 15.6rem !important;
}

.pr-156 {
  padding-right: 15.6rem !important;
}

.px-156 {
  padding-left: 15.6rem !important;
  padding-right: 15.6rem !important;
}

.py-156 {
  padding-top: 15.6rem !important;
  padding-bottom: 15.6rem !important;
}

.p-156 {
  padding: 15.6rem !important;
}

.pt-157 {
  padding-top: 15.7rem !important;
}

.pb-157 {
  padding-bottom: 15.7rem !important;
}

.pl-157 {
  padding-left: 15.7rem !important;
}

.pr-157 {
  padding-right: 15.7rem !important;
}

.px-157 {
  padding-left: 15.7rem !important;
  padding-right: 15.7rem !important;
}

.py-157 {
  padding-top: 15.7rem !important;
  padding-bottom: 15.7rem !important;
}

.p-157 {
  padding: 15.7rem !important;
}

.pt-158 {
  padding-top: 15.8rem !important;
}

.pb-158 {
  padding-bottom: 15.8rem !important;
}

.pl-158 {
  padding-left: 15.8rem !important;
}

.pr-158 {
  padding-right: 15.8rem !important;
}

.px-158 {
  padding-left: 15.8rem !important;
  padding-right: 15.8rem !important;
}

.py-158 {
  padding-top: 15.8rem !important;
  padding-bottom: 15.8rem !important;
}

.p-158 {
  padding: 15.8rem !important;
}

.pt-159 {
  padding-top: 15.9rem !important;
}

.pb-159 {
  padding-bottom: 15.9rem !important;
}

.pl-159 {
  padding-left: 15.9rem !important;
}

.pr-159 {
  padding-right: 15.9rem !important;
}

.px-159 {
  padding-left: 15.9rem !important;
  padding-right: 15.9rem !important;
}

.py-159 {
  padding-top: 15.9rem !important;
  padding-bottom: 15.9rem !important;
}

.p-159 {
  padding: 15.9rem !important;
}

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

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

.pl-160 {
  padding-left: 16rem !important;
}

.pr-160 {
  padding-right: 16rem !important;
}

.px-160 {
  padding-left: 16rem !important;
  padding-right: 16rem !important;
}

.py-160 {
  padding-top: 16rem !important;
  padding-bottom: 16rem !important;
}

.p-160 {
  padding: 16rem !important;
}

.pt-161 {
  padding-top: 16.1rem !important;
}

.pb-161 {
  padding-bottom: 16.1rem !important;
}

.pl-161 {
  padding-left: 16.1rem !important;
}

.pr-161 {
  padding-right: 16.1rem !important;
}

.px-161 {
  padding-left: 16.1rem !important;
  padding-right: 16.1rem !important;
}

.py-161 {
  padding-top: 16.1rem !important;
  padding-bottom: 16.1rem !important;
}

.p-161 {
  padding: 16.1rem !important;
}

.pt-162 {
  padding-top: 16.2rem !important;
}

.pb-162 {
  padding-bottom: 16.2rem !important;
}

.pl-162 {
  padding-left: 16.2rem !important;
}

.pr-162 {
  padding-right: 16.2rem !important;
}

.px-162 {
  padding-left: 16.2rem !important;
  padding-right: 16.2rem !important;
}

.py-162 {
  padding-top: 16.2rem !important;
  padding-bottom: 16.2rem !important;
}

.p-162 {
  padding: 16.2rem !important;
}

.pt-163 {
  padding-top: 16.3rem !important;
}

.pb-163 {
  padding-bottom: 16.3rem !important;
}

.pl-163 {
  padding-left: 16.3rem !important;
}

.pr-163 {
  padding-right: 16.3rem !important;
}

.px-163 {
  padding-left: 16.3rem !important;
  padding-right: 16.3rem !important;
}

.py-163 {
  padding-top: 16.3rem !important;
  padding-bottom: 16.3rem !important;
}

.p-163 {
  padding: 16.3rem !important;
}

.pt-164 {
  padding-top: 16.4rem !important;
}

.pb-164 {
  padding-bottom: 16.4rem !important;
}

.pl-164 {
  padding-left: 16.4rem !important;
}

.pr-164 {
  padding-right: 16.4rem !important;
}

.px-164 {
  padding-left: 16.4rem !important;
  padding-right: 16.4rem !important;
}

.py-164 {
  padding-top: 16.4rem !important;
  padding-bottom: 16.4rem !important;
}

.p-164 {
  padding: 16.4rem !important;
}

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

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

.pl-165 {
  padding-left: 16.5rem !important;
}

.pr-165 {
  padding-right: 16.5rem !important;
}

.px-165 {
  padding-left: 16.5rem !important;
  padding-right: 16.5rem !important;
}

.py-165 {
  padding-top: 16.5rem !important;
  padding-bottom: 16.5rem !important;
}

.p-165 {
  padding: 16.5rem !important;
}

.pt-166 {
  padding-top: 16.6rem !important;
}

.pb-166 {
  padding-bottom: 16.6rem !important;
}

.pl-166 {
  padding-left: 16.6rem !important;
}

.pr-166 {
  padding-right: 16.6rem !important;
}

.px-166 {
  padding-left: 16.6rem !important;
  padding-right: 16.6rem !important;
}

.py-166 {
  padding-top: 16.6rem !important;
  padding-bottom: 16.6rem !important;
}

.p-166 {
  padding: 16.6rem !important;
}

.pt-167 {
  padding-top: 16.7rem !important;
}

.pb-167 {
  padding-bottom: 16.7rem !important;
}

.pl-167 {
  padding-left: 16.7rem !important;
}

.pr-167 {
  padding-right: 16.7rem !important;
}

.px-167 {
  padding-left: 16.7rem !important;
  padding-right: 16.7rem !important;
}

.py-167 {
  padding-top: 16.7rem !important;
  padding-bottom: 16.7rem !important;
}

.p-167 {
  padding: 16.7rem !important;
}

.pt-168 {
  padding-top: 16.8rem !important;
}

.pb-168 {
  padding-bottom: 16.8rem !important;
}

.pl-168 {
  padding-left: 16.8rem !important;
}

.pr-168 {
  padding-right: 16.8rem !important;
}

.px-168 {
  padding-left: 16.8rem !important;
  padding-right: 16.8rem !important;
}

.py-168 {
  padding-top: 16.8rem !important;
  padding-bottom: 16.8rem !important;
}

.p-168 {
  padding: 16.8rem !important;
}

.pt-169 {
  padding-top: 16.9rem !important;
}

.pb-169 {
  padding-bottom: 16.9rem !important;
}

.pl-169 {
  padding-left: 16.9rem !important;
}

.pr-169 {
  padding-right: 16.9rem !important;
}

.px-169 {
  padding-left: 16.9rem !important;
  padding-right: 16.9rem !important;
}

.py-169 {
  padding-top: 16.9rem !important;
  padding-bottom: 16.9rem !important;
}

.p-169 {
  padding: 16.9rem !important;
}

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

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

.pl-170 {
  padding-left: 17rem !important;
}

.pr-170 {
  padding-right: 17rem !important;
}

.px-170 {
  padding-left: 17rem !important;
  padding-right: 17rem !important;
}

.py-170 {
  padding-top: 17rem !important;
  padding-bottom: 17rem !important;
}

.p-170 {
  padding: 17rem !important;
}

.pt-171 {
  padding-top: 17.1rem !important;
}

.pb-171 {
  padding-bottom: 17.1rem !important;
}

.pl-171 {
  padding-left: 17.1rem !important;
}

.pr-171 {
  padding-right: 17.1rem !important;
}

.px-171 {
  padding-left: 17.1rem !important;
  padding-right: 17.1rem !important;
}

.py-171 {
  padding-top: 17.1rem !important;
  padding-bottom: 17.1rem !important;
}

.p-171 {
  padding: 17.1rem !important;
}

.pt-172 {
  padding-top: 17.2rem !important;
}

.pb-172 {
  padding-bottom: 17.2rem !important;
}

.pl-172 {
  padding-left: 17.2rem !important;
}

.pr-172 {
  padding-right: 17.2rem !important;
}

.px-172 {
  padding-left: 17.2rem !important;
  padding-right: 17.2rem !important;
}

.py-172 {
  padding-top: 17.2rem !important;
  padding-bottom: 17.2rem !important;
}

.p-172 {
  padding: 17.2rem !important;
}

.pt-173 {
  padding-top: 17.3rem !important;
}

.pb-173 {
  padding-bottom: 17.3rem !important;
}

.pl-173 {
  padding-left: 17.3rem !important;
}

.pr-173 {
  padding-right: 17.3rem !important;
}

.px-173 {
  padding-left: 17.3rem !important;
  padding-right: 17.3rem !important;
}

.py-173 {
  padding-top: 17.3rem !important;
  padding-bottom: 17.3rem !important;
}

.p-173 {
  padding: 17.3rem !important;
}

.pt-174 {
  padding-top: 17.4rem !important;
}

.pb-174 {
  padding-bottom: 17.4rem !important;
}

.pl-174 {
  padding-left: 17.4rem !important;
}

.pr-174 {
  padding-right: 17.4rem !important;
}

.px-174 {
  padding-left: 17.4rem !important;
  padding-right: 17.4rem !important;
}

.py-174 {
  padding-top: 17.4rem !important;
  padding-bottom: 17.4rem !important;
}

.p-174 {
  padding: 17.4rem !important;
}

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

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

.pl-175 {
  padding-left: 17.5rem !important;
}

.pr-175 {
  padding-right: 17.5rem !important;
}

.px-175 {
  padding-left: 17.5rem !important;
  padding-right: 17.5rem !important;
}

.py-175 {
  padding-top: 17.5rem !important;
  padding-bottom: 17.5rem !important;
}

.p-175 {
  padding: 17.5rem !important;
}

.pt-176 {
  padding-top: 17.6rem !important;
}

.pb-176 {
  padding-bottom: 17.6rem !important;
}

.pl-176 {
  padding-left: 17.6rem !important;
}

.pr-176 {
  padding-right: 17.6rem !important;
}

.px-176 {
  padding-left: 17.6rem !important;
  padding-right: 17.6rem !important;
}

.py-176 {
  padding-top: 17.6rem !important;
  padding-bottom: 17.6rem !important;
}

.p-176 {
  padding: 17.6rem !important;
}

.pt-177 {
  padding-top: 17.7rem !important;
}

.pb-177 {
  padding-bottom: 17.7rem !important;
}

.pl-177 {
  padding-left: 17.7rem !important;
}

.pr-177 {
  padding-right: 17.7rem !important;
}

.px-177 {
  padding-left: 17.7rem !important;
  padding-right: 17.7rem !important;
}

.py-177 {
  padding-top: 17.7rem !important;
  padding-bottom: 17.7rem !important;
}

.p-177 {
  padding: 17.7rem !important;
}

.pt-178 {
  padding-top: 17.8rem !important;
}

.pb-178 {
  padding-bottom: 17.8rem !important;
}

.pl-178 {
  padding-left: 17.8rem !important;
}

.pr-178 {
  padding-right: 17.8rem !important;
}

.px-178 {
  padding-left: 17.8rem !important;
  padding-right: 17.8rem !important;
}

.py-178 {
  padding-top: 17.8rem !important;
  padding-bottom: 17.8rem !important;
}

.p-178 {
  padding: 17.8rem !important;
}

.pt-179 {
  padding-top: 17.9rem !important;
}

.pb-179 {
  padding-bottom: 17.9rem !important;
}

.pl-179 {
  padding-left: 17.9rem !important;
}

.pr-179 {
  padding-right: 17.9rem !important;
}

.px-179 {
  padding-left: 17.9rem !important;
  padding-right: 17.9rem !important;
}

.py-179 {
  padding-top: 17.9rem !important;
  padding-bottom: 17.9rem !important;
}

.p-179 {
  padding: 17.9rem !important;
}

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

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

.pl-180 {
  padding-left: 18rem !important;
}

.pr-180 {
  padding-right: 18rem !important;
}

.px-180 {
  padding-left: 18rem !important;
  padding-right: 18rem !important;
}

.py-180 {
  padding-top: 18rem !important;
  padding-bottom: 18rem !important;
}

.p-180 {
  padding: 18rem !important;
}

.pt-181 {
  padding-top: 18.1rem !important;
}

.pb-181 {
  padding-bottom: 18.1rem !important;
}

.pl-181 {
  padding-left: 18.1rem !important;
}

.pr-181 {
  padding-right: 18.1rem !important;
}

.px-181 {
  padding-left: 18.1rem !important;
  padding-right: 18.1rem !important;
}

.py-181 {
  padding-top: 18.1rem !important;
  padding-bottom: 18.1rem !important;
}

.p-181 {
  padding: 18.1rem !important;
}

.pt-182 {
  padding-top: 18.2rem !important;
}

.pb-182 {
  padding-bottom: 18.2rem !important;
}

.pl-182 {
  padding-left: 18.2rem !important;
}

.pr-182 {
  padding-right: 18.2rem !important;
}

.px-182 {
  padding-left: 18.2rem !important;
  padding-right: 18.2rem !important;
}

.py-182 {
  padding-top: 18.2rem !important;
  padding-bottom: 18.2rem !important;
}

.p-182 {
  padding: 18.2rem !important;
}

.pt-183 {
  padding-top: 18.3rem !important;
}

.pb-183 {
  padding-bottom: 18.3rem !important;
}

.pl-183 {
  padding-left: 18.3rem !important;
}

.pr-183 {
  padding-right: 18.3rem !important;
}

.px-183 {
  padding-left: 18.3rem !important;
  padding-right: 18.3rem !important;
}

.py-183 {
  padding-top: 18.3rem !important;
  padding-bottom: 18.3rem !important;
}

.p-183 {
  padding: 18.3rem !important;
}

.pt-184 {
  padding-top: 18.4rem !important;
}

.pb-184 {
  padding-bottom: 18.4rem !important;
}

.pl-184 {
  padding-left: 18.4rem !important;
}

.pr-184 {
  padding-right: 18.4rem !important;
}

.px-184 {
  padding-left: 18.4rem !important;
  padding-right: 18.4rem !important;
}

.py-184 {
  padding-top: 18.4rem !important;
  padding-bottom: 18.4rem !important;
}

.p-184 {
  padding: 18.4rem !important;
}

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

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

.pl-185 {
  padding-left: 18.5rem !important;
}

.pr-185 {
  padding-right: 18.5rem !important;
}

.px-185 {
  padding-left: 18.5rem !important;
  padding-right: 18.5rem !important;
}

.py-185 {
  padding-top: 18.5rem !important;
  padding-bottom: 18.5rem !important;
}

.p-185 {
  padding: 18.5rem !important;
}

.pt-186 {
  padding-top: 18.6rem !important;
}

.pb-186 {
  padding-bottom: 18.6rem !important;
}

.pl-186 {
  padding-left: 18.6rem !important;
}

.pr-186 {
  padding-right: 18.6rem !important;
}

.px-186 {
  padding-left: 18.6rem !important;
  padding-right: 18.6rem !important;
}

.py-186 {
  padding-top: 18.6rem !important;
  padding-bottom: 18.6rem !important;
}

.p-186 {
  padding: 18.6rem !important;
}

.pt-187 {
  padding-top: 18.7rem !important;
}

.pb-187 {
  padding-bottom: 18.7rem !important;
}

.pl-187 {
  padding-left: 18.7rem !important;
}

.pr-187 {
  padding-right: 18.7rem !important;
}

.px-187 {
  padding-left: 18.7rem !important;
  padding-right: 18.7rem !important;
}

.py-187 {
  padding-top: 18.7rem !important;
  padding-bottom: 18.7rem !important;
}

.p-187 {
  padding: 18.7rem !important;
}

.pt-188 {
  padding-top: 18.8rem !important;
}

.pb-188 {
  padding-bottom: 18.8rem !important;
}

.pl-188 {
  padding-left: 18.8rem !important;
}

.pr-188 {
  padding-right: 18.8rem !important;
}

.px-188 {
  padding-left: 18.8rem !important;
  padding-right: 18.8rem !important;
}

.py-188 {
  padding-top: 18.8rem !important;
  padding-bottom: 18.8rem !important;
}

.p-188 {
  padding: 18.8rem !important;
}

.pt-189 {
  padding-top: 18.9rem !important;
}

.pb-189 {
  padding-bottom: 18.9rem !important;
}

.pl-189 {
  padding-left: 18.9rem !important;
}

.pr-189 {
  padding-right: 18.9rem !important;
}

.px-189 {
  padding-left: 18.9rem !important;
  padding-right: 18.9rem !important;
}

.py-189 {
  padding-top: 18.9rem !important;
  padding-bottom: 18.9rem !important;
}

.p-189 {
  padding: 18.9rem !important;
}

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

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

.pl-190 {
  padding-left: 19rem !important;
}

.pr-190 {
  padding-right: 19rem !important;
}

.px-190 {
  padding-left: 19rem !important;
  padding-right: 19rem !important;
}

.py-190 {
  padding-top: 19rem !important;
  padding-bottom: 19rem !important;
}

.p-190 {
  padding: 19rem !important;
}

.pt-191 {
  padding-top: 19.1rem !important;
}

.pb-191 {
  padding-bottom: 19.1rem !important;
}

.pl-191 {
  padding-left: 19.1rem !important;
}

.pr-191 {
  padding-right: 19.1rem !important;
}

.px-191 {
  padding-left: 19.1rem !important;
  padding-right: 19.1rem !important;
}

.py-191 {
  padding-top: 19.1rem !important;
  padding-bottom: 19.1rem !important;
}

.p-191 {
  padding: 19.1rem !important;
}

.pt-192 {
  padding-top: 19.2rem !important;
}

.pb-192 {
  padding-bottom: 19.2rem !important;
}

.pl-192 {
  padding-left: 19.2rem !important;
}

.pr-192 {
  padding-right: 19.2rem !important;
}

.px-192 {
  padding-left: 19.2rem !important;
  padding-right: 19.2rem !important;
}

.py-192 {
  padding-top: 19.2rem !important;
  padding-bottom: 19.2rem !important;
}

.p-192 {
  padding: 19.2rem !important;
}

.pt-193 {
  padding-top: 19.3rem !important;
}

.pb-193 {
  padding-bottom: 19.3rem !important;
}

.pl-193 {
  padding-left: 19.3rem !important;
}

.pr-193 {
  padding-right: 19.3rem !important;
}

.px-193 {
  padding-left: 19.3rem !important;
  padding-right: 19.3rem !important;
}

.py-193 {
  padding-top: 19.3rem !important;
  padding-bottom: 19.3rem !important;
}

.p-193 {
  padding: 19.3rem !important;
}

.pt-194 {
  padding-top: 19.4rem !important;
}

.pb-194 {
  padding-bottom: 19.4rem !important;
}

.pl-194 {
  padding-left: 19.4rem !important;
}

.pr-194 {
  padding-right: 19.4rem !important;
}

.px-194 {
  padding-left: 19.4rem !important;
  padding-right: 19.4rem !important;
}

.py-194 {
  padding-top: 19.4rem !important;
  padding-bottom: 19.4rem !important;
}

.p-194 {
  padding: 19.4rem !important;
}

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

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

.pl-195 {
  padding-left: 19.5rem !important;
}

.pr-195 {
  padding-right: 19.5rem !important;
}

.px-195 {
  padding-left: 19.5rem !important;
  padding-right: 19.5rem !important;
}

.py-195 {
  padding-top: 19.5rem !important;
  padding-bottom: 19.5rem !important;
}

.p-195 {
  padding: 19.5rem !important;
}

.pt-196 {
  padding-top: 19.6rem !important;
}

.pb-196 {
  padding-bottom: 19.6rem !important;
}

.pl-196 {
  padding-left: 19.6rem !important;
}

.pr-196 {
  padding-right: 19.6rem !important;
}

.px-196 {
  padding-left: 19.6rem !important;
  padding-right: 19.6rem !important;
}

.py-196 {
  padding-top: 19.6rem !important;
  padding-bottom: 19.6rem !important;
}

.p-196 {
  padding: 19.6rem !important;
}

.pt-197 {
  padding-top: 19.7rem !important;
}

.pb-197 {
  padding-bottom: 19.7rem !important;
}

.pl-197 {
  padding-left: 19.7rem !important;
}

.pr-197 {
  padding-right: 19.7rem !important;
}

.px-197 {
  padding-left: 19.7rem !important;
  padding-right: 19.7rem !important;
}

.py-197 {
  padding-top: 19.7rem !important;
  padding-bottom: 19.7rem !important;
}

.p-197 {
  padding: 19.7rem !important;
}

.pt-198 {
  padding-top: 19.8rem !important;
}

.pb-198 {
  padding-bottom: 19.8rem !important;
}

.pl-198 {
  padding-left: 19.8rem !important;
}

.pr-198 {
  padding-right: 19.8rem !important;
}

.px-198 {
  padding-left: 19.8rem !important;
  padding-right: 19.8rem !important;
}

.py-198 {
  padding-top: 19.8rem !important;
  padding-bottom: 19.8rem !important;
}

.p-198 {
  padding: 19.8rem !important;
}

.pt-199 {
  padding-top: 19.9rem !important;
}

.pb-199 {
  padding-bottom: 19.9rem !important;
}

.pl-199 {
  padding-left: 19.9rem !important;
}

.pr-199 {
  padding-right: 19.9rem !important;
}

.px-199 {
  padding-left: 19.9rem !important;
  padding-right: 19.9rem !important;
}

.py-199 {
  padding-top: 19.9rem !important;
  padding-bottom: 19.9rem !important;
}

.p-199 {
  padding: 19.9rem !important;
}

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

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

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

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

.px-200 {
  padding-left: 20rem !important;
  padding-right: 20rem !important;
}

.py-200 {
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}

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

/* WordPress Admin Area Fix
   ========================================================================== */
body.wp-admin {
  font-size: 16px !important;
}
body.wp-admin html {
  font-size: 100% !important;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  padding: 1.3rem 0;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: calc(100% - 6rem);
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 767px) {
  .l-header__inner {
    flex-direction: row;
    width: calc(100% - 3rem);
    padding: 0;
  }
}
.l-header__logo {
  flex-shrink: 0;
}
.l-header__logo-img {
  width: 20rem;
}
@media (max-width: 767px) {
  .l-header__logo-img {
    width: 14rem;
  }
}
.l-header__brand {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.l-header__tagline {
  margin: 0;
  font-size: 1.4rem;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .l-header__tagline {
    display: none;
  }
}
.l-header__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
@media (max-width: 767px) {
  .l-header__aside {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.l-header__info {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 960px) {
  .l-header__info {
    display: none;
  }
}
.l-header__tel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.l-header__tel-link {
  font-family: "Lato", sans-serif;
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  color: #3569ae;
  text-decoration: none;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-header__tel-link {
    font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  }
}
.l-header__tel-hours {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  line-height: 1.3;
}
.l-header__tel-hours p {
  margin-bottom: 0;
}
.l-header__search {
  width: 3rem;
  height: 3rem;
  border-radius: 2.25rem;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__search .material-symbols-outlined {
  font-size: 1.8rem;
}
.l-header__contact {
  padding: 1.1rem 3rem;
}
@media (max-width: 960px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav-list > li {
  position: relative;
  line-height: 1;
}
.l-header__nav-list a {
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.5s ease;
}
.l-header__nav-list a:hover {
  color: #3569ae;
}
.l-header__nav-item--has-mega:hover .l-header__mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.l-header__mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 500px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0.8rem;
  padding: 3rem;
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}
@media (max-width: 960px) {
  .l-header__mega-menu {
    display: none;
  }
}
.l-header__mega-menu-inner {
  display: flex;
  gap: 6rem;
}
.l-header__mega-menu-column {
  flex: 1;
  min-width: 200px;
}
.l-header__mega-menu-title {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #3569ae;
  pointer-events: none;
  cursor: default;
  line-height: 1.3;
}
.l-header__mega-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__mega-menu-list li {
  margin-bottom: 1rem;
}
.l-header__mega-menu-list li:last-child {
  margin-bottom: 0;
}
.l-header__mega-menu-list a {
  display: block;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0.4rem;
}
.l-header__mega-menu-list a:hover {
  color: #3569ae;
}
.l-header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 960px) {
  .l-header__hamburger {
    display: flex;
  }
}
.l-header__hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 2.4rem;
  height: 1.8rem;
  position: relative;
  justify-content: center;
}
.l-header__hamburger-icon span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #000;
  border-radius: 0.2rem;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}
.l-header__hamburger-icon span:nth-child(1) {
  top: 0;
}
.l-header__hamburger-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__hamburger-icon span:nth-child(3) {
  bottom: 0;
}
.l-header__hamburger-text {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  line-height: 1;
}
.l-header__hamburger.is-open .l-header__hamburger-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__hamburger.is-open .l-header__hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) translateX(-1rem);
}
.l-header__hamburger.is-open .l-header__hamburger-icon span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.l-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.l-header__overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 961px) {
  .l-header__overlay {
    display: none;
  }
}
.l-header__mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 8rem 2rem 2rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}
@media (max-width: 960px) {
  .l-header__mobile-nav {
    top: 0;
    height: 100vh;
  }
}
.l-header__overlay.is-open .l-header__mobile-nav {
  transform: translateY(0);
  pointer-events: auto;
}
.l-header__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.l-header__mobile-menu .c-global-nav-section {
  border-bottom: 1px solid rgba(217, 217, 217, 0.4);
  padding-bottom: 1.5rem;
}
.l-header__mobile-menu .c-global-nav-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.l-header__mobile-menu .c-global-nav-section h3 {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  margin-bottom: 1rem;
}
.l-header__mobile-menu .c-global-nav-section h4 {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  margin-top: 1rem;
}
.l-header__mobile-menu .c-global-nav-section a {
  display: block;
  padding: 0.4rem 0;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  color: #000;
  text-decoration: none;
}
.l-header__mobile-menu .c-global-nav-section a:hover {
  color: #3569ae;
}
.l-header__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #d9d9d9;
}
.l-header__mobile-contact .c-btn {
  width: 100%;
  text-align: center;
}
.l-header__mobile-tel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f6f9fc;
  border-radius: 0.8rem;
  text-decoration: none;
  color: #3569ae;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
}
.l-header__mobile-tel .material-symbols-outlined {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .l-header {
    padding: 1rem 0;
  }
}

/* ==========================================================================
   NAV LIST (search-other.php用)
   ========================================================================== */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li {
  margin: 0;
}
.nav-list a {
  color: #000;
  text-decoration: none;
  transition: color 0.5s ease;
}
.nav-list a:hover {
  color: #3569ae;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.l-footer {
  background: #fff;
  padding: 6.7rem 0;
}
.l-footer__inner {
  max-width: 1200px;
  width: calc(100% - 6rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 4rem;
  }
}
.l-footer__info {
  flex-shrink: 0;
  width: 28.8rem;
}
@media (max-width: 767px) {
  .l-footer__info {
    width: auto;
  }
}
.l-footer__logo img {
  width: 18.4rem;
  height: auto;
  margin-bottom: 1.9rem;
}
.l-footer__address {
  font-style: normal;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.5;
}
.l-footer__nav {
  flex: 1;
  display: flex;
  gap: 4rem;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .l-footer__nav {
    flex-direction: column;
    gap: 3rem;
  }
}

.c-global-nav-section h3 {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
}
.c-global-nav-section h4 {
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  font-weight: 700;
  margin-top: 1rem;
}
.c-global-nav-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-global-nav-section li {
  margin: 0;
}
.c-global-nav-section a {
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.5s ease;
}
.c-global-nav-section a:hover {
  color: #3569ae;
}

/* ==========================================================================
   GRID LAYOUT
   ========================================================================== */
.l-main {
  margin-top: 8rem;
}

.l-section {
  padding: 6rem 0;
}
.l-section--large {
  padding: 10rem 0;
}
.l-section--small {
  padding: 3rem 0;
}

/* Page Container */
.p-page-container {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .p-page-container {
    padding: 3rem 0;
  }
}

/* Page Title */
.p-page__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.3;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 55px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1.2;
  box-sizing: border-box;
  max-width: 100%;
}
.c-btn--outline {
  position: relative;
  border: 1px solid #d9d9d9;
  color: #000;
  background: transparent;
  padding-right: 6rem;
  overflow: hidden;
  border-color: #d9d9d9;
}
@media (max-width: 767px) {
  .c-btn--outline {
    margin: 0 auto;
  }
}
.c-btn--outline::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid #3569ae;
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.1s ease;
}
.c-btn--outline::after {
  content: "chevron_forward";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  background-color: #3569ae;
  color: #fff;
  border-radius: 50%;
  font-family: "Material Symbols Outlined";
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  line-height: 2.4rem;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-btn--outline:hover {
  border-color: #3569ae;
}
.c-btn--outline:hover::before {
  opacity: 1;
  animation: border-draw-clockwise 0.6s ease forwards;
}
.c-btn--outline:hover::after {
  animation: arrow-in-circle-exit 0.4s ease forwards, arrow-in-circle-enter 0.4s ease 0.4s forwards;
}
@keyframes border-draw-clockwise {
  0% {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 0 0, 0 0);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  }
  75% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes arrow-in-circle-exit {
  0% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) translateX(1.2rem);
    opacity: 0;
  }
}
@keyframes arrow-in-circle-enter {
  0% {
    transform: translateY(-50%) translateX(-1.2rem);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.c-btn--gradient {
  background: linear-gradient(135deg, #3c8fd5 0%, #32b2ea 25%, #4ad0d6 50%, #32b2ea 75%, #3c8fd5 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  border: none;
  transition: background-position 0.6s ease;
}
.c-btn--gradient:hover {
  background-position: 100% 50%;
}
.c-btn--large {
  padding: 2rem 40px;
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
}
@media (max-width: 767px) {
  .c-btn--large {
    padding: 1.5rem 2rem;
    font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
.c-btn .material-symbols-outlined {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
}

/* DEPRECATED: .c-feature-nav-btn → use .p-page-nav__btn */
.c-feature-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 3.2rem;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  transition: all 0.3s ease;
  min-width: 15.6rem;
  text-decoration: none;
  color: inherit;
}
.c-feature-nav-btn:hover {
  background-color: #f0f0f0;
}
.c-feature-nav-btn .material-symbols-outlined {
  font-size: 2rem;
}

/* ==========================================================================
   PAGE TOP BUTTON
   ========================================================================== */
.c-page-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background-color: #3569ae;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .c-page-top {
    bottom: 2rem;
    right: 2rem;
    width: 4.5rem;
    height: 4.5rem;
  }
}
.c-page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-page-top:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.2);
}
.c-page-top:active {
  transform: translateY(-0.1rem);
}
.c-page-top__icon {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-page-top__icon {
    font-size: 2rem;
  }
}

/* ==========================================================================
   PAGE HERO (COMMON FOR SUB PAGES)
   ========================================================================== */
.p-page-hero {
  position: relative;
  z-index: 0;
}
.p-page-hero::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -20rem;
  transform: translateX(calc(60rem - 50%));
  width: 54.8rem;
  aspect-ratio: 1/1;
  background: none;
  border: 3rem solid #EDF5FC;
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-page-hero::before {
    display: none;
  }
}
.p-page-hero__container {
  background-color: #3569ae;
  margin-right: calc((100% - 120rem) / 2);
  border-radius: 0 0 10rem 0;
  max-height: 13.25rem;
}
@media (max-width: 767px) {
  .p-page-hero__container {
    margin-right: 0;
    border-radius: 0;
  }
}
.p-page-hero__inner {
  max-width: 120rem;
  margin-right: 0;
  margin-left: auto;
  width: calc(100% - 6rem);
}
@media (max-width: 767px) {
  .p-page-hero__inner {
    width: 100%;
    padding: 0 2rem;
  }
}
.p-page-hero__title {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: clamp(2.5rem, 2.5rem + 2.5vw, 4rem) 0;
}
.p-page-hero__title-sub {
  display: block;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.p-page-hero__title-main {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.c-form__group {
  margin-bottom: 2rem;
}
.c-form__label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #000;
}
.c-form__input, .c-form__textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  transition: all 0.3s ease;
}
.c-form__input:focus, .c-form__textarea:focus {
  outline: none;
  border-color: #3569ae;
  box-shadow: 0 0 0 3px rgba(53, 105, 174, 0.1);
}
.c-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.c-form__error {
  margin-top: 0.5rem;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #e74c3c;
}
.c-form__submit {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #3569ae 0%, #4d82c9 100%);
  color: #fff;
  width: 100%;
}
.c-form__submit:hover {
  transform: translateY(-2px);
}
.c-form__submit:hover {
  background: linear-gradient(135deg, #2f5d9a 0%, #3569ae 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 960px) {
  .c-form__submit {
    width: auto;
    min-width: 200px;
  }
}

/* ==========================================================================
   SLIDERS
   ========================================================================== */
/* Hero Home Slider */
.p-hero-home {
  position: relative;
  overflow: hidden;
  /* Slick dots */
  /* 大画面での調整 */
  /* タブレット用の調整 */
}
.p-hero-home__slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 30px auto;
}
.p-hero-home__slide {
  outline: none;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.p-hero-home__slide-img {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  object-fit: cover;
  display: block;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}
.p-hero-home__slide-text {
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
  z-index: 1;
}
.p-hero-home .slick-dots {
  bottom: 30px;
}
.p-hero-home .slick-dots li button:before {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.p-hero-home .slick-dots li button:hover:before {
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}
.p-hero-home .slick-dots li.slick-active button:before {
  color: #fff;
  transform: scale(1.3);
}
@media (min-width: 1400px) {
  .p-hero-home .slick-prev {
    left: calc((100vw - 1200px) / 2 - 80px);
  }
  .p-hero-home .slick-next {
    right: calc((100vw - 1200px) / 2 - 80px);
  }
}
@media (max-width: 1024px) {
  .p-hero-home__slider {
    width: 100%;
    left: auto;
    transform: none;
    margin: 30px 0;
  }
  .p-hero-home__slide {
    padding: 0 1rem;
  }
  .p-hero-home__slide-img {
    max-width: 800px;
  }
}
@media (max-width: 767px) {
  .p-hero-home__slider {
    width: 100%;
    left: auto;
    transform: none;
    margin: 0 !important;
  }
  .p-hero-home__slide {
    padding: 0;
  }
  .p-hero-home__slide-img {
    max-width: 100%;
    border-radius: 0;
  }
  .slick-slider .slick-slide .p-hero-home__slide-img {
    opacity: 1;
    transform: scale(1);
  }
  .p-hero-home .slick-prev,
  .p-hero-home .slick-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-hero-home .slick-prev:hover,
  .p-hero-home .slick-next:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .p-hero-home .slick-prev:before,
  .p-hero-home .slick-next:before {
    font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  }
  .p-hero-home .slick-prev {
    left: 1.5rem;
  }
  .p-hero-home .slick-next {
    right: 1.5rem;
  }
  .p-hero-home .slick-dots {
    bottom: 2rem;
  }
}

/* ==========================================================================
   PAGE IN-PAGE NAV (COMMON)
   ========================================================================== */
.p-page-nav {
  padding-bottom: 6rem;
  background-color: transparent;
}
.p-page-nav__title {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
}
.p-page-nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 70rem;
}
.p-page-nav__item {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-page-nav__btn {
  display: inline-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 4.6rem 1rem 1.6rem;
  background-color: #fff;
  border-radius: 3.2rem;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  transition: all 0.3s ease;
  min-width: 15.6rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  width: auto;
}
.p-page-nav__btn span {
  line-height: 1.3;
  display: block;
}
.p-page-nav__btn:hover {
  background-color: #f0f0f0;
}
.p-page-nav__btn .material-symbols-outlined {
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}

/* ==========================================================================
   SEARCH MODAL
   ========================================================================== */
.search-wrapper {
  display: none;
  position: relative;
  z-index: 1000;
}
.search-wrapper--low {
  z-index: 2;
}

.search-bg {
  background-color: rgba(46, 48, 56, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}
.search-bg--low {
  z-index: 2;
}

.header-search {
  color: #333;
  opacity: 0.9;
  background-color: #f2f2f2;
  width: 4rem;
  height: 4rem;
  font-size: 1.2rem;
  font-family: "Lobster", sans-serif;
  text-align: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-search i {
  display: block;
  font-size: 2rem;
}
.header-search:hover {
  opacity: 1;
}
.header-search-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70rem;
  width: 84.6354166667%;
  height: 20rem;
  z-index: 1001;
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-search-content--low {
  z-index: 3;
}
.header-search-content form {
  width: 100%;
}
.header-search-input-wrapper {
  position: relative;
  margin-top: 2rem;
}
.header-search-input {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 6.5rem;
  margin: 0 auto;
  border: transparent;
  padding: 1rem;
  font-size: 1.8rem;
  color: #000;
  /* 検索フィールドの✕ボタンを非表示 */
  /* 検索フィールドの装飾を無効化（他のブラウザ対応） */
}
.header-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.header-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.header-search-btn {
  position: absolute;
  color: #000;
  font-size: 3rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-search-btn--low {
  top: 7.5rem;
  transform: none;
}
.header-search-btn:hover {
  opacity: 0.7;
}

.close-btn {
  font-size: 2.2rem;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 3.5rem auto 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.close-btn:hover {
  opacity: 0.8;
}
.close-btn .material-symbols-outlined {
  margin-right: 1rem;
  font-size: 3rem;
}
.close-btn i {
  font-size: 3rem;
  margin-right: 1rem;
  vertical-align: bottom;
}

/* ==========================================================================
   BREADCRUMB COMPONENT
   ========================================================================== */
.p-breadcrumb {
  width: 100%;
  padding: 1.5rem 0;
  background-color: rgba(246, 249, 252, 0.5);
  max-width: 120rem;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-breadcrumb {
    padding: 1.5rem;
  }
}
@media (max-width: 599px) {
  .p-breadcrumb {
    padding: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .p-breadcrumb::-webkit-scrollbar {
    display: none;
  }
}
.p-breadcrumb a {
  color: #666;
  text-decoration: none;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.p-breadcrumb a:hover, .p-breadcrumb a:focus {
  color: #3569ae;
  text-decoration: underline;
}
.p-breadcrumb span {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #000;
  white-space: nowrap;
}
.p-breadcrumb span.material-symbols-outlined {
  color: #666;
  font-size: 1.1rem;
  margin: 0 0.5rem;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}
@media (max-width: 599px) {
  .p-breadcrumb span.material-symbols-outlined {
    font-size: 0.9rem;
    margin: 0 0.25rem;
  }
}

/* ページヒーロー内での breadcrumb */
.p-page-hero .p-breadcrumb,
.p-page-hero .p-breadcrumb {
  background-color: transparent;
  border-bottom: none;
  padding: 0 0 1.5rem 0;
}
.p-page-hero .p-breadcrumb a,
.p-page-hero .p-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}
.p-page-hero .p-breadcrumb a:hover, .p-page-hero .p-breadcrumb a:focus,
.p-page-hero .p-breadcrumb a:hover,
.p-page-hero .p-breadcrumb a:focus {
  color: #fff;
}
.p-page-hero .p-breadcrumb span,
.p-page-hero .p-breadcrumb span {
  color: #fff;
}
.p-page-hero .p-breadcrumb span.material-symbols-outlined,
.p-page-hero .p-breadcrumb span.material-symbols-outlined {
  color: rgba(255, 255, 255, 0.6);
}

/* シンプルバージョン */
.p-breadcrumb--simple {
  background-color: transparent;
  border-bottom: none;
  padding: 1rem 0;
}
.p-breadcrumb--simple a,
.p-breadcrumb--simple span {
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
}
.p-breadcrumb--simple span.material-symbols-outlined {
  font-size: 1.1rem;
}

/* ==========================================================================
   TYPOGRAPHY COMPONENTS
   ========================================================================== */
/* Font Size Components
   ========================================================================== */
/* Extra Large Heading */
.c-text-xl {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .c-text-xl {
    font-size: 3.2rem;
  }
}

.c-text-lg {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .c-text-lg {
    font-size: 2.8rem;
  }
}

.c-text-md {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .c-text-md {
    font-size: 2.4rem;
  }
}

.c-text-base {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-text-base {
    font-size: 2rem;
  }
}

.c-text-sm {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .c-text-sm {
    font-size: 1.8rem;
  }
}

.c-text-xs {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-text-xs {
    font-size: 1.6rem;
  }
}

/* Font Weight Utilities
   ========================================================================== */
.c-text-normal {
  font-weight: 400;
}

.c-text-medium {
  font-weight: 500;
}

.c-text-bold {
  font-weight: 700;
}

/* Line Height Utilities
   ========================================================================== */
.c-text-tight {
  line-height: 1.2;
}

.c-text-normal-lh {
  line-height: 1.6;
}

/* Text Alignment Utilities
   ========================================================================== */
.c-text-left {
  text-align: left;
}

.c-text-center {
  text-align: center;
}

.c-text-right {
  text-align: right;
}

/* Text Color Utilities
   ========================================================================== */
.c-text-primary {
  color: #3569ae;
}

.c-text-secondary {
  color: #666;
}

.c-text-white {
  color: #fff;
}

/* Text Transform Utilities
   ========================================================================== */
.c-text-uppercase {
  text-transform: uppercase;
}

.c-text-lowercase {
  text-transform: lowercase;
}

.c-text-capitalize {
  text-transform: capitalize;
}

/* Text Decoration Utilities
   ========================================================================== */
.c-text-underline {
  text-decoration: underline;
}

.c-text-no-underline {
  text-decoration: none;
}

/* Font Family Utilities
   ========================================================================== */
.c-text-primary-font {
  font-family: "Noto Sans JP", sans-serif;
}

.c-text-secondary-font {
  font-family: "Lato", sans-serif;
}

/* ==========================================================================
   WORKS SECTION (COMMON)
   ========================================================================== */
.p-works {
  background-color: #f6f9fc;
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .p-works {
    padding: 6rem 0;
  }
}
.p-works--white {
  background-color: #fff;
}
.p-works__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.p-works__bg-title {
  font-family: "Lato", sans-serif;
  font-size: clamp(8rem, 15vw, 18rem);
  font-weight: 700;
  color: rgba(53, 105, 174, 0.03);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-works__header {
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-works__label {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
  color: #3569ae;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.p-works__title {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.p-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .p-works__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .p-works__list {
    grid-template-columns: 1fr;
  }
}
.p-works__item {
  background-color: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.p-works__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-works__item-img {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}
.p-works__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.p-works__item:hover .p-works__item-img img {
  transform: scale(1.05);
}
.p-works__item-content {
  padding: 2rem;
}
.p-works__item-date {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #666;
  margin-bottom: 1rem;
}
.p-works__item-title {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
  line-height: 1.3;
}
.p-works__item-excerpt {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #000;
  line-height: 1.6;
}
.p-works__empty {
  text-align: center;
  padding: 6rem 0;
  color: #666;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
}
.p-works__footer {
  text-align: center;
  margin-top: 4rem;
}
.p-works__categories {
  margin-bottom: 6rem;
}
.p-works__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-works__category-list {
    flex-direction: column;
    align-items: stretch;
  }
}
.p-works__category-item {
  margin: 0;
}
.p-works__category-link {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 2.5rem;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-works__category-link {
    display: block;
    text-align: center;
  }
}
.p-works__category-link:hover {
  background-color: #000;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.p-works__category-link.is-active {
  background-color: #000;
  color: #fff;
  pointer-events: none;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
  text-align: center;
  margin-top: 6rem;
  padding-top: 3rem;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.pagination li {
  margin: 0;
  background-color: #fff;
  border-radius: 0.4rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.5rem;
  color: #3569ae;
  text-decoration: none;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
}
.pagination .page-numbers.current {
  background-color: #3569ae;
  color: #fff;
  pointer-events: none;
}
.pagination .page-numbers.dots {
  border: none;
  pointer-events: none;
}
.pagination .page-numbers.dots:hover {
  background-color: transparent;
  color: #000;
}
.pagination .prev,
.pagination .next {
  font-weight: 700;
}

/* ==========================================================================
   CONTACT FORM COMPONENT
   ========================================================================== */
.c-contact-form {
  /* Contact Form 7 専用のスタイル */
  /* Contact Form 7 のラジオボタンスタイル */
  /* Contact Form 7 のチェックボックススタイル */
  /* Contact Form 7 の送信ボタンスタイル */
  /* wpcf7-radio の横並びスタイル */
  /* Contact Form 7 エラーメッセージ */
  /* フォーム上部のエラーメッセージを非表示 */
  /* スクリーンリーダー用レスポンスを非表示 */
  /* レスポンス出力のスタイル */
  /* 個別フィールドのエラーメッセージ */
  /* エラー時の入力フィールド */
}
.c-contact-form__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
}
.c-contact-form__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  color: #666;
  margin-bottom: 4rem;
}
.c-contact-form__section {
  margin-top: 5rem;
  margin-bottom: 3rem;
}
.c-contact-form__section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #000;
}
.c-contact-form__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #666;
  margin-bottom: 0.8rem;
  margin-top: 0;
}
.c-contact-form__privacy-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.6;
  color: #000;
  margin-bottom: 2rem;
}
.c-contact-form__privacy-text p {
  margin-bottom: 1.5rem;
}
.c-contact-form__privacy-text a {
  color: #0066cc;
  text-decoration: underline;
}
.c-contact-form__required-mark {
  color: #d4183d;
  font-weight: 700;
}
.c-contact-form__group {
  margin-bottom: 3rem;
}
.c-contact-form__group--sm {
  max-width: 20rem;
}
.c-contact-form__group--md {
  max-width: 30rem;
}
.c-contact-form__group--lg {
  max-width: 40rem;
}
.c-contact-form__group--xl {
  max-width: 50rem;
}
.c-contact-form__group--full {
  width: 100%;
  max-width: 100%;
}
.c-contact-form__row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.c-contact-form__row .c-contact-form__group {
  flex: 1;
}
.c-contact-form__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
  color: #000;
  display: block;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-contact-form__required-badge {
  display: inline-block;
  background-color: #d4183d;
  color: #fff;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  border-radius: 1.5rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  line-height: 1;
}
.c-contact-form__input:focus, .c-contact-form__textarea:focus, .c-contact-form__select:focus {
  outline: none;
  border-color: #000;
}
.c-contact-form__input::placeholder, .c-contact-form__textarea::placeholder, .c-contact-form__select::placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.c-contact-form__input::-webkit-input-placeholder, .c-contact-form__textarea::-webkit-input-placeholder, .c-contact-form__select::-webkit-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.c-contact-form__input::-moz-placeholder, .c-contact-form__textarea::-moz-placeholder, .c-contact-form__select::-moz-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.c-contact-form__input:-ms-input-placeholder, .c-contact-form__textarea:-ms-input-placeholder, .c-contact-form__select:-ms-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.c-contact-form__input, .c-contact-form__select {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-contact-form input[type=text],
.c-contact-form input[type=email],
.c-contact-form input[type=tel],
.c-contact-form select {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  border: 1px solid #cccccc;
  border-radius: 0.4rem;
  background-color: #fff;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-contact-form input[type=text]:focus,
.c-contact-form input[type=email]:focus,
.c-contact-form input[type=tel]:focus,
.c-contact-form select:focus {
  outline: none;
  border-color: #000;
}
.c-contact-form input[type=text]::placeholder,
.c-contact-form input[type=email]::placeholder,
.c-contact-form input[type=tel]::placeholder,
.c-contact-form select::placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.c-contact-form input[type=text]::-webkit-input-placeholder,
.c-contact-form input[type=email]::-webkit-input-placeholder,
.c-contact-form input[type=tel]::-webkit-input-placeholder,
.c-contact-form select::-webkit-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.c-contact-form input[type=text]::-moz-placeholder,
.c-contact-form input[type=email]::-moz-placeholder,
.c-contact-form input[type=tel]::-moz-placeholder,
.c-contact-form select::-moz-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.c-contact-form input[type=text]:-ms-input-placeholder,
.c-contact-form input[type=email]:-ms-input-placeholder,
.c-contact-form input[type=tel]:-ms-input-placeholder,
.c-contact-form select:-ms-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.c-contact-form textarea {
  width: 100%;
  min-height: 5rem;
  resize: vertical;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  box-sizing: border-box;
  border: solid 1px #ccc;
  padding: 1.2rem 1.6rem;
  border-radius: 0.4rem;
}
.c-contact-form .wpcf7-list-item {
  margin: unset;
  display: flex;
  align-items: center;
}
.c-contact-form .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-contact-form .wpcf7-list-item input[type=checkbox] {
  position: relative;
  top: 0.1rem;
}
.c-contact-form .wpcf7-list-item .wpcf7-list-item-label {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  cursor: pointer;
  line-height: 1.4;
}
.c-contact-form .wpcf7-acceptance {
  margin: 3rem 0;
}
.c-contact-form .wpcf7-acceptance input[type=checkbox] {
  position: relative;
  top: 0.1rem;
}
.c-contact-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #000;
  display: flex;
  align-items: center;
}
.c-contact-form .wpcf7-submit {
  background: #cccccc;
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
  padding: 1.6rem 2rem;
  border: none;
  border-radius: 5rem;
  cursor: not-allowed;
  transition: background-position 0.6s ease, background 0.45s ease, cursor 0.3s ease, opacity 0.45s ease, transform 0.45s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 35rem;
  margin: 0 auto;
  opacity: 0.6;
  transform: scale(0.98);
}
.c-contact-form .wpcf7-submit.is-agreed {
  background: linear-gradient(135deg, #3c8fd5 0%, #32b2ea 25%, #4ad0d6 50%, #32b2ea 75%, #3c8fd5 100%);
  background-size: 200% 200%;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
}
.c-contact-form .wpcf7-submit.is-agreed:hover {
  background-position: 100% 50%;
}
.c-contact-form .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .c-contact-form .wpcf7-radio .wpcf7-list-item {
    display: block;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
.c-contact-form__check-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.c-contact-form__check-group--vertical {
  flex-direction: column;
  gap: 1.5rem;
}
.c-contact-form__radio-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.c-contact-form__radio {
  width: 1.8rem;
  height: 1.8rem;
}
.c-contact-form__radio-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  color: #000;
  cursor: pointer;
}
.c-contact-form__checkbox-group {
  margin: 3rem 0;
}
.c-contact-form__checkbox-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.c-contact-form__checkbox {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.c-contact-form__checkbox-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  line-height: 1.6;
  color: #000;
}
.c-contact-form__submit {
  text-align: center;
  margin-top: 4rem;
}
.c-contact-form__button {
  background: linear-gradient(135deg, #3c8fd5 0%, #32b2ea 25%, #4ad0d6 50%, #32b2ea 75%, #3c8fd5 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
  padding: 1.6rem 6rem;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  transition: background-position 0.6s ease;
}
.c-contact-form__button:hover {
  background-position: 100% 50%;
}
.c-contact-form .wpcf7-validation-errors {
  display: none;
}
.c-contact-form .screen-reader-response {
  display: none;
}
.c-contact-form .wpcf7-response-output {
  margin-top: 4rem;
  text-align: center;
  color: #d4183d;
  border-color: #d4183d;
  background-color: rgba(212, 24, 61, 0.08);
}
.c-contact-form .wpcf7-mail-sent-ok {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  padding: 1.2rem 1.6rem;
  margin-bottom: 2rem;
  border-radius: 0.4rem;
  background-color: #d4edda;
  border: 1px solid #28a745;
  color: #155724;
}
.c-contact-form .wpcf7-not-valid-tip {
  font-family: "Noto Sans JP", sans-serif;
  color: #d4183d;
  margin-top: 0.5rem;
  display: block;
}
.c-policy-box {
  margin: 3rem auto 3rem;
}
.c-policy-box dl dt {
  font-weight: bold;
  margin-bottom: 1rem;
}
.c-policy-box dl dd a {
  color: #0078ff;
}
.c-policy-box dl dd a:hover {
  text-decoration: underline;
}

.c-privacy-box__list {
  width: 100%;
  height: 30rem;
  padding: 2rem 3rem 2rem;
  box-sizing: border-box;
  border: solid 0.1rem #333;
  overflow-y: scroll;
  margin: 3rem auto 4rem;
}
.c-privacy-box__item {
  margin-bottom: 2rem;
}
.c-privacy-box__item p span {
  font-weight: bold;
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */
/* About Section */
.p-top-about {
  padding: 8rem 0 50rem;
  background: #f6f9fc;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-about {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .p-top-about__content {
    padding: 0;
  }
}
.p-top-about__title {
  position: relative;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 2.8rem;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-top-about__title {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.p-top-about__text {
  position: relative;
  line-height: 2;
  margin-bottom: 3rem;
  z-index: 2;
}
.p-top-about__text p {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-top-about__text {
    font-size: 1.4rem;
  }
}
.p-top-about__bg-sp {
  display: none;
}
@media (max-width: 767px) {
  .p-top-about__bg-sp {
    display: block;
    margin: 4rem 0;
  }
}
.p-top-about__bg-sp img {
  width: 100%;
  height: auto;
}
.p-top-about__bg {
  position: absolute;
  top: 0;
  font-family: "Lato", sans-serif;
  font-size: 14.1rem;
  font-weight: 600;
  pointer-events: none;
  left: -15rem;
  writing-mode: vertical-rl;
  color: #c1daf7;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-about__bg {
    display: none;
  }
}
.p-top-about__diagram {
  position: absolute;
  right: -30rem;
  width: 94.6rem;
  height: 94.6rem;
  bottom: -50rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-top-about__diagram {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-top-about__diagram {
    display: none;
  }
}
.p-top-about__diagram img {
  width: 100%;
  height: 100%;
}
.p-top-about__diagram-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-top-about__circle {
  position: absolute;
  border-radius: 50%;
  border: 8rem solid #edf5fc;
}
.p-top-about__circle--main {
  width: 86.6rem;
  height: 86.6rem;
  top: 4rem;
  left: 4rem;
}
.p-top-about__circle--sub {
  width: 32.9rem;
  height: 32.9rem;
  top: 30.1rem;
  right: 1.6rem;
  border-width: 2rem;
}
.p-top-about__service-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 17.4rem;
  background: #fff;
  border-radius: 50%;
  padding: 2rem;
  box-shadow: 0 3rem 6rem rgb(204, 230, 255);
}
.p-top-about__service-item--01 {
  top: 26.7rem;
  left: 9.7rem;
}
.p-top-about__service-item--02 {
  top: 26.7rem;
  right: 34.3rem;
}
.p-top-about__service-item--03 {
  top: 14rem;
  right: 21.6rem;
}
.p-top-about__service-item--04 {
  bottom: 14rem;
  left: 25.2rem;
}
.p-top-about__service-item--05 {
  bottom: 14rem;
  right: 38.9rem;
}
.p-top-about__service-icon img {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
}
.p-top-about__service-text h3 {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.p-top-about__category {
  position: absolute;
  text-align: right;
}
.p-top-about__category:first-of-type {
  top: 21.3rem;
  right: 7.3rem;
}
.p-top-about__category--other {
  bottom: 19.2rem;
  right: 30.2rem;
}
.p-top-about__category-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #3569ae;
  margin: 0 0 0.5rem 0;
}
.p-top-about__category-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #a7cdef;
  margin: 0;
}

/* Top Services Section
   ========================================================================== */
.p-top-services {
  background: #216fc8;
  background: linear-gradient(135deg, #216fc8 0%, #239dd2 49.519%, #33c0c6 100%);
  color: #fff;
  padding: 10rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-services {
    padding: 4rem 0;
  }
}
.p-top-services__bg {
  position: absolute;
  top: 15.5rem;
  font-family: "Lato", sans-serif;
  font-size: 10rem;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
  left: calc(50% - 50rem);
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-services__bg {
    display: none;
  }
}
.p-top-services__header {
  text-align: center;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-top-services__header {
    margin-bottom: 4rem;
  }
}
.p-top-services__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 600;
  margin: 0;
}
.p-top-services__subtitle {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.p-top-services__subtitle-text {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  margin: 0;
}
.p-top-services__content {
  background: #fff;
  border-radius: 3rem;
  padding: 7.3rem 10rem;
  color: #000;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-services__content {
    padding: 4rem 2rem;
  }
}
.p-top-services__section {
  margin-bottom: 8rem;
}
.p-top-services__section:last-child {
  margin-bottom: 0;
}
.p-top-services__section-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.p-top-services__section-title {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .p-top-services__section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
  }
}
.p-top-services__section-title-text {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.p-top-services__section-title h3 {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 600;
  margin: 0;
}
.p-top-services__section-border {
  height: 0.1rem;
  background: #000;
  flex: 1;
}
@media (max-width: 767px) {
  .p-top-services__section-border {
    display: none;
  }
}
.p-top-services__section-icon-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-top-services__section-icon-wrap {
    flex-direction: column;
    width: 100%;
  }
}
.p-top-services__section-icon img {
  width: 5rem;
  height: 5rem;
}
.p-top-services__section-subtitle {
  font-size: 2rem;
  margin-bottom: 4rem;
  color: #000;
}
.p-top-services__section-footer {
  text-align: right;
}
.p-top-services__categories {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-top-services__categories {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.p-top-services__categories-content {
  width: 100%;
}
.p-top-services__categories-image {
  flex: 0 0 40%;
  max-width: 25rem;
}
@media (max-width: 767px) {
  .p-top-services__categories-image {
    flex: none;
    max-width: 100%;
    order: -1;
  }
}
.p-top-services__image {
  width: 100%;
  height: auto;
}
.p-top-services__category {
  margin-bottom: 4rem;
}
.p-top-services__category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
  width: fit-content;
}
.p-top-services__category-header:hover .p-top-services__category-icon {
  animation: category-icon-exit 0.4s ease forwards, category-icon-enter 0.4s ease 0.4s forwards;
}
.p-top-services__category-header h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}
.p-top-services__category-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #3569ae;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transform: translateX(0);
}
.p-top-services__category-icon .material-symbols-outlined {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Material Symbols Outlined";
  font-style: normal;
}
.p-top-services__items {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-top-services__items {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-top-services__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 1.5rem;
  border-bottom: 0.1rem solid #d9d9d9;
  font-size: 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.p-top-services__item:hover {
  border-color: #3569ae;
  border-bottom: 0.1rem solid #3569ae;
}
.p-top-services__item:hover .material-symbols-outlined {
  color: #3569ae;
  transform: translateX(0.5rem);
}
.p-top-services__item .material-symbols-outlined {
  font-size: 2rem;
  color: #d9d9d9;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .p-top-services__item {
    width: 100%;
    padding: 1.2rem 1.5rem;
  }
}
.p-top-services__examples {
  display: flex;
  gap: 2.3rem;
  margin: 4rem 0;
}
@media (max-width: 767px) {
  .p-top-services__examples {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-top-services__example img {
  width: 30.5rem;
  height: 21.6rem;
  object-fit: cover;
  border-radius: 0.8rem;
}
@media (max-width: 767px) {
  .p-top-services__example img {
    width: 100%;
    height: auto;
  }
}

/* Top Other Services Section
   ========================================================================== */
.p-top-other-services {
  background: #fff;
  border-radius: 3rem;
  padding: 7.3rem 10rem;
  color: #000;
  position: relative;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p-top-other-services {
    padding: 3rem 0;
    margin-top: 3rem;
  }
}
.p-top-other-services__header {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-top-other-services__header {
    margin-bottom: 2rem;
  }
}
.p-top-other-services__title {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  margin: 0;
}
.p-top-other-services__content {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 767px) {
  .p-top-other-services__content {
    gap: 4rem;
  }
}
.p-top-other-services__section {
  flex: 1;
}
.p-top-other-services__section-header {
  margin-bottom: 3rem;
}
.p-top-other-services__section-title {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .p-top-other-services__section-title {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.p-top-other-services__section-title h3,
.p-top-other-services__section-title .p-top-services__section-title-text {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  margin: 0;
}
@media (max-width: 767px) {
  .p-top-other-services__section-title h3,
  .p-top-other-services__section-title .p-top-services__section-title-text {
    font-size: 2rem;
  }
}
.p-top-other-services__section-icon img {
  width: 5rem;
  height: 5rem;
}
.p-top-other-services__section-footer {
  text-align: right;
}
.p-top-other-services__items {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-top-other-services__items {
    grid-template-columns: 1fr;
  }
}
.p-top-other-services__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 1.5rem;
  border-bottom: 0.1rem solid #d9d9d9;
  font-size: 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.p-top-other-services__item:hover {
  border-color: #3569ae;
  border-bottom: 0.1rem solid #3569ae;
}
.p-top-other-services__item:hover .material-symbols-outlined {
  color: #3569ae;
  transform: translateX(0.5rem);
}
.p-top-other-services__item .material-symbols-outlined {
  font-size: 2rem;
  color: #d9d9d9;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .p-top-other-services__item {
    padding: 1.2rem 0;
  }
}

/* Works Section */
.p-top-works {
  color: #000;
  padding: 10rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-works {
    padding: 15rem 0;
  }
}
.p-top-works__bg {
  position: absolute;
  left: 0;
  top: 27.6rem;
  font-family: "Lato", sans-serif;
  font-size: 14.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transform: translateX(-30%);
}
.p-top-works__header {
  text-align: center;
  margin-bottom: 5rem;
}
.p-top-works__label {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 600;
  color: #3569ae;
  margin-bottom: 0;
}
.p-top-works__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  margin: 0;
}
.p-top-works__list {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-top-works__list {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-top-works__item {
  flex: 1;
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  color: #000;
}
.p-top-works__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.p-top-works__item-img {
  width: 100%;
  aspect-ratio: 3/2;
  background: #eee;
  overflow: hidden;
}
.p-top-works__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.p-top-works__item-link:hover .p-top-works__item-img img {
  transform: scale(1.05);
}
.p-top-works__item-content {
  padding: 1.5rem;
}
.p-top-works__item-date {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #666;
  margin-bottom: 0.5rem;
}
.p-top-works__item-category {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #3569ae;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.p-top-works__item-title {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 0.8rem 0;
}
.p-top-works__item-excerpt {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.5;
}
.p-top-works__footer {
  text-align: right;
}
.p-top-works__empty {
  text-align: center;
  padding: 6rem 0;
  color: #666;
}

/* Clients Section */
.p-top-clients {
  padding: 10rem 0;
  width: 100vw;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .p-top-clients {
    padding: 6rem 0;
  }
}
@media (max-width: 767px) {
  .p-top-clients {
    width: 100%;
  }
}
.p-top-clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50vw + 60rem);
  height: 100%;
  background: #fff;
  border-radius: 0 5rem 5rem 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-top-clients::before {
    width: 100%;
    border-radius: 0 2rem 2rem 0;
  }
}
.p-top-clients__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-top-clients__container {
    padding: 0 2rem;
  }
}
.p-top-clients__header {
  text-align: center;
  margin-bottom: 4rem;
}
.p-top-clients__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
}
.p-top-clients__subtitle {
  font-size: 1.4rem;
  margin: 0;
  color: #666;
}
.p-top-clients__list {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-top-clients__list {
    flex-direction: column;
    gap: 0;
  }
}
.p-top-clients__column {
  flex: 1;
}
.p-top-clients__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-top-clients__column li {
  font-size: 1.5rem;
  line-height: 2;
  color: #000;
  position: relative;
  padding-left: 2rem;
}
.p-top-clients__column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 0.8rem;
  background-color: #3569ae;
  border-radius: 50%;
}
.p-top-clients__note {
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-top-clients__note {
    text-align: left;
  }
}
@media (max-width: 124rem) {
  .p-top-clients::before {
    width: 100vw;
    border-radius: 0 3rem 3rem 0;
  }
}
@media (max-width: 124rem) and (max-width: 767px) {
  .p-top-clients::before {
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 124rem) {
  .p-top-clients__container {
    padding: 0 4rem;
  }
}

/* News Section */
.p-top-news {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .p-top-news {
    padding: 6rem 0;
  }
}
.p-top-news__wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .p-top-news__wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-top-news .l-inner {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-top-news .l-inner {
    flex-direction: column;
    gap: 4rem;
  }
}
.p-top-news__header {
  flex-shrink: 0;
  width: 28rem;
}
@media (max-width: 767px) {
  .p-top-news__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-top-news__header-content {
  margin-bottom: 3rem;
}
.p-top-news__label {
  font-size: 2rem;
  font-weight: 600;
  color: #3569ae;
  margin: 0;
}
@media (max-width: 767px) {
  .p-top-news__label {
    text-align: center;
  }
}
.p-top-news__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.p-top-news__list {
  flex: 1;
  max-width: none;
  margin: 0;
  width: 100%;
}
.p-top-news__item {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2.8rem 0;
  border-bottom: 0.1rem solid #9f9f9f;
}
@media (max-width: 767px) {
  .p-top-news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.p-top-news__date {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #727171;
  flex-shrink: 0;
}
.p-top-news__item-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.p-top-news__item-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-top-news__item-title a:hover {
  color: #3569ae;
}
.p-top-news__footer {
  text-align: left;
}
.p-top-news__empty {
  text-align: center;
  padding: 6rem 0;
  color: #666;
}

/* Top Flow Section
   ========================================================================== */
@media (max-width: 767px) {
  .p-top-flow {
    padding: 0 1.5rem;
  }
}
.p-top-flow__inner {
  max-width: 96rem;
  background: #fff;
  border-radius: 3rem;
  padding: 8rem 8rem;
  margin: 8rem auto 0;
  color: #000;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-flow__inner {
    margin: 0 auto;
    padding: 4rem 2rem;
  }
}
.p-top-flow__bg {
  position: absolute;
  top: -10rem;
  font-family: "Lato", sans-serif;
  font-size: 14.1rem;
  font-weight: 600;
  color: #c1daf7;
  pointer-events: none;
  right: 5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-flow__bg {
    display: none;
  }
}
.p-top-flow__header {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-top-flow__header {
    margin-bottom: 3rem;
  }
}
.p-top-flow__label {
  font-size: 1.4rem;
  color: #3569ae;
  margin: 0 0 0.8rem 0;
}
.p-top-flow__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  margin: 0;
}
.p-top-flow__list {
  margin: 0 auto;
}
.p-top-flow__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-bottom: 6rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-flow__item {
    align-items: center;
    padding-bottom: 3rem;
    gap: 1rem;
  }
}
.p-top-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 4.5rem;
  top: 9.1rem;
  width: 2px;
  height: 100%;
  background: #3569ae;
  background-size: 2px 4px;
}
@media (max-width: 767px) {
  .p-top-flow__item:not(:last-child)::after {
    left: 3rem;
    top: 1rem;
    z-index: 1;
  }
}
.p-top-flow__step {
  position: relative;
  flex-shrink: 0;
  width: 9.1rem;
  height: 9.1rem;
  border-radius: 50%;
  background: #3569ae;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-top-flow__step {
    width: 6rem;
    height: 6rem;
  }
}
.p-top-flow__step-label {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-flow__step-label {
    font-size: 1.2rem;
  }
}
.p-top-flow__step-number {
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-flow__step-number {
    font-size: 2rem;
  }
}
.p-top-flow__content h3 {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-top-flow__content h3 {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
.p-top-flow__content p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}

@keyframes category-icon-exit {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(1.2rem);
    opacity: 0;
  }
}
@keyframes category-icon-enter {
  0% {
    transform: translateX(-1.2rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* FAQ Section: 共通スタイルは pages/_faq.scss に集約 */
.p-404 {
  padding: 8rem 0;
}
.p-404__title {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  margin: 0;
}
.p-404__text {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
/* Page hero moved to components/_page-hero.scss as .p-page-hero */
/* About features moved to components/_page-nav.scss as .p-page-nav */
/* Feature Items (used on about page) */
.p-about-feature-item {
  position: relative;
  margin-right: calc((100% - 120rem) / 2);
  display: flex;
  align-items: center;
  gap: 7rem;
  padding: 3rem 0;
  margin-bottom: 6rem;
  z-index: 2;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-about-feature-item {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
  }
}
.p-about-feature-item:nth-child(even) {
  margin-left: calc((100% - 120rem) / 2);
  margin-right: 0;
}
@media (max-width: 767px) {
  .p-about-feature-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-about-feature-item:nth-child(even)::before {
  left: auto;
  right: 0;
}
.p-about-feature-item:nth-child(even) .p-about-feature-item__inner {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-about-feature-item:nth-child(even) .p-about-feature-item__inner {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-about-feature-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background: #fff;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-about-feature-item::before {
    display: none;
  }
}
.p-about-feature-item__inner {
  max-width: 120rem;
  margin-right: 0;
  margin-left: auto;
  width: calc(100% - 6rem);
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 767px) {
  .p-about-feature-item__inner {
    width: calc(100% - 3rem);
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    gap: 2rem;
  }
}
.p-about-feature-item--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .p-about-feature-item--reverse {
    flex-direction: column;
  }
}
.p-about-feature-item__content {
  flex: 1;
}
.p-about-feature-item__number {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 3.6rem + 2vw, 5.6rem);
  color: #3569ae;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-about-feature-item__number {
    text-align: center;
  }
}
.p-about-feature-item__title {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.9rem;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .p-about-feature-item__title {
    text-align: center;
  }
}
.p-about-feature-item__description {
  font-size: 2rem;
  line-height: 1.8;
}
.p-about-feature-item__image {
  flex-shrink: 0;
  width: 40rem;
  height: 30rem;
}
@media (max-width: 767px) {
  .p-about-feature-item__image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
.p-about-feature-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .p-about-feature-item__image img {
    height: auto;
  }
}

/* ==========================================================================
   ABOUT REPRESENTATIVE SECTION
   ========================================================================== */
.p-about-representative {
  padding: 6rem 0;
  background-color: #f6f9fc;
}
.p-about-representative__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-about-representative__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
}
.p-about-representative__content {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-about-representative__content {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-about-representative__text {
  flex: 1;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
  color: #000;
}
.p-about-representative__text p {
  margin-bottom: 1.5rem;
}
.p-about-representative__text p:last-child {
  margin-bottom: 0;
}
.p-about-representative__image {
  text-align: center;
}
.p-about-representative__image img {
  width: 100%;
  max-width: 40rem;
  height: auto;
}

/* ==========================================================================
   ABOUT STAFF SECTION
   ========================================================================== */
.p-about-staff {
  padding: 6rem 0 0;
  background-color: #f6f9fc;
}
.p-about-staff__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-about-staff__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
}
.p-about-staff__content {
  display: flex;
  gap: 10rem;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-about-staff__content {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-about-staff__image {
  text-align: center;
}
.p-about-staff__image img {
  width: 100%;
  max-width: 40rem;
  height: auto;
}
.p-about-staff__image2 {
  text-align: center;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p-about-staff__image2 {
    margin: 8rem calc(50% - 50vw) 0;
  }
}
.p-about-staff__image2 img {
  width: 100%;
}
.p-about-staff__text {
  flex: 1;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
  color: #000;
}
.p-about-staff__text p {
  margin-bottom: 1.5rem;
}
.p-about-staff__text p:last-child {
  margin-bottom: 0;
}

.p-about-detail {
  padding: 6rem 0;
}
.p-about-detail__content {
  max-width: 80rem;
  margin: 0 auto;
}
.p-about-detail__content h2 {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  margin-bottom: 3rem;
}
.p-about-detail__content p {
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ==========================================================================
   SERVICES PAGE - 支援サービスページ共通スタイル
   ========================================================================== */
.p-service__headline {
  margin-bottom: 6rem;
}

/* Service Section (blue bar title) */
.p-service-section {
  padding: 0 0 6rem;
}
.p-service-section__content {
  margin-bottom: 8rem;
}
.p-service-section__content:last-child {
  margin-bottom: 0;
}
.p-service-section__title {
  background: linear-gradient(90deg, #0054a7 0%, #4a9cd6 100%);
  color: #fff;
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  padding: 1rem 3rem;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.3;
}
.p-service-section__subtitle {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  color: #3569ae;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 0.6rem solid #3569ae;
  line-height: 1.2;
}
.p-service-section__subtitle-sub {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
}
.p-service-section__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.p-service-section__item {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
  color: #000;
}
.p-service-section__item strong {
  font-weight: 700;
  color: #000;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
}
.p-service-section__item p {
  margin-bottom: 0;
}
.p-service-section__content {
  margin-top: 2rem;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
  color: #000;
}

/* Price Section */
.p-price {
  padding: 6rem 0;
  background-color: #f6f9fc;
  position: relative;
}
.p-price__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.p-price__bg-title {
  font-family: "Lato", sans-serif;
  font-size: clamp(8rem, 15vw, 18rem);
  font-weight: 700;
  color: rgba(53, 105, 174, 0.03);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-price__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.p-price__label {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 600;
  color: #3569ae;
  margin-bottom: 0;
}
.p-price__title {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.p-price__section-title {
  color: #000;
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.p-price__table-wrap {
  margin-bottom: 6rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-price__table-wrap:last-child {
  margin-bottom: 0;
}
.p-price__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  table-layout: fixed;
}
.p-price__table thead {
  background-color: #3569ae;
  color: #fff;
}
.p-price__table thead th {
  padding: 1.5rem 2rem;
  text-align: left;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  border: 1px solid #2f5d9a;
}
.p-price__table thead th:nth-child(1) {
  width: 30%;
}
.p-price__table thead th:nth-child(2) {
  width: 30%;
}
.p-price__table thead th:nth-child(3) {
  width: 40%;
}
.p-price__table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.p-price__table tbody th,
.p-price__table tbody td {
  padding: 1.5rem 2rem;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  color: #000;
  border: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: middle;
}
.p-price__table tbody th span,
.p-price__table tbody td span {
  font-size: 1.2rem;
}
.p-price__table tbody th:nth-child(2),
.p-price__table tbody td:nth-child(2) {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-price__table tbody th:nth-child(2),
  .p-price__table tbody td:nth-child(2) {
    white-space: normal;
  }
}
.p-price__table tbody th {
  font-weight: 700;
  background-color: #fff;
}

/* Works Section adjustments for service child pages */
.page-clinical_development #nav-works,
.page-analysis #nav-works,
.page-publication #nav-works,
.page-research #nav-works,
.page-marketing #nav-works {
  background-color: #fff;
  padding: 8rem 0;
}

/* ==========================================================================
   CLIENTS PAGE
   ========================================================================== */
.p-clients {
  padding: 10rem 0;
  width: 100vw;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .p-clients {
    width: 100%;
  }
}
.p-clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50vw + 60rem);
  height: 100%;
  background: #fff;
  border-radius: 0 5rem 5rem 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-clients::before {
    width: 100%;
    border-radius: 0;
  }
}
.p-clients__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.p-clients__header {
  text-align: center;
  margin-bottom: 4rem;
}
.p-clients__title {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
}
.p-clients__subtitle {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  margin: 0;
  color: #666;
}
.p-clients__list {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
}
.p-clients__column {
  flex: 1;
}
.p-clients__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-clients__column li {
  font-size: 1.5rem;
  line-height: 2;
  color: #000;
  position: relative;
  padding-left: 2rem;
}
.p-clients__column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 0.8rem;
  background-color: #3569ae;
  border-radius: 50%;
}
.p-clients__note {
  text-align: right;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.5;
}
@media (max-width: 124rem) {
  .p-clients::before {
    width: 100vw;
    border-radius: 0 3rem 3rem 0;
  }
}
@media (max-width: 124rem) and (max-width: 767px) {
  .p-clients::before {
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 124rem) {
  .p-clients__container {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .p-clients {
    padding: 6rem 0;
  }
  .p-clients::before {
    border-radius: 0 2rem 2rem 0;
  }
  .p-clients__container {
    padding: 0 2rem;
  }
  .p-clients__list {
    flex-direction: column;
    gap: 2rem;
  }
  .p-clients__note {
    text-align: left;
  }
}

/* ==========================================================================
   NEWS PAGE
   ========================================================================== */
.p-news .l-inner {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}
.p-news__header {
  flex-shrink: 0;
  width: 28rem;
}
.p-news__header-content {
  margin-bottom: 3rem;
}
.p-news__label {
  font-size: 2rem;
  font-weight: 600;
  color: #3569ae;
  margin: 0 0 1rem 0;
}
.p-news__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0;
}
.p-news__list {
  flex: 1;
  max-width: none;
  margin: 0;
}
.p-news__item {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2.8rem 0;
  border-bottom: 0.1rem solid #9f9f9f;
}
.p-news__date {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
  color: #727171;
  flex-shrink: 0;
}
.p-news__item-title {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
  margin: 0;
}
.p-news__item-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-news__item-title a:hover {
  color: #3569ae;
}
.p-news__footer {
  text-align: left;
}
.p-news__empty {
  text-align: center;
  padding: 6rem 0;
  color: #666;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
}
@media (max-width: 767px) {
  .p-news .l-inner {
    flex-direction: column;
    gap: 4rem;
  }
  .p-news__header {
    width: 100%;
  }
  .p-news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   FLOW PAGE - For fixed flow page only
   ========================================================================== */
/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
.p-faq {
  padding: 6rem 0;
}
.p-faq__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 6rem 0;
}
@media (max-width: 767px) {
  .p-faq__title {
    margin-bottom: 3rem;
  }
}
.p-faq__list {
  max-width: 960px;
  margin: 0 auto 4rem;
}
.p-faq__item {
  margin-bottom: 2.5rem;
}
.p-faq__item.is-open .p-faq__toggle-icon {
  transform: rotate(180deg);
}
.p-faq__item.is-open .p-faq__answer {
  max-height: 100rem;
  opacity: 1;
  padding: 1.9rem 1.5rem;
  margin: 1rem 0;
}
.p-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 600;
  text-align: left;
}
.p-faq__question-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1.8rem;
  background: #3569ae;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 600;
  flex-shrink: 0;
}
.p-faq__question-text {
  flex: 1;
}
.p-faq__toggle-icon {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  color: #3569ae;
  transition: transform 0.3s ease;
}
.p-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-height: 0;
  opacity: 0;
  padding: 0 1.5rem;
  background: #edf5fc;
  border-radius: 1rem;
  margin: 0;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}
.p-faq__answer-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1.8rem;
  background: #fff;
  color: #3569ae;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 600;
  flex-shrink: 0;
}
.p-faq__footer {
  text-align: center;
  max-width: 960px;
  margin: 4rem auto 0;
}
@media (max-width: 767px) {
  .p-faq__title {
    font-size: 2.8rem;
  }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.p-cta {
  background: linear-gradient(135deg, #216fc8 0%, #239dd2 49.519%, #33c0c6 100%);
  color: #fff;
  padding: 5.5rem 0 5.5rem;
  position: relative;
}
.p-cta__bg-title {
  font-family: "Lato", sans-serif;
  font-size: clamp(4rem, 3.6rem + 2vw, 5.6rem);
  font-weight: 600;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-cta__bg-title {
    font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
    margin-bottom: 2rem;
  }
}
.p-cta__header {
  text-align: center;
  margin-bottom: 2rem;
}
.p-cta__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-cta__title {
    font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  }
}
.p-cta__subtitle {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-cta__subtitle {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  }
}
.p-cta__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .p-cta__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-cta__phone {
  text-align: center;
  background: #fff;
  border-radius: 3rem;
  color: #000;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .p-cta__phone {
    padding: 3rem 2rem;
    border-radius: 1.5rem;
  }
}
.p-cta__phone h3 {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-cta__phone h3 {
    margin-bottom: 1rem;
  }
}
.p-cta__phone-number {
  margin-bottom: 2rem;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-size: clamp(4rem, 3.6rem + 2vw, 5.6rem);
  font-weight: 700;
  color: #216fc8;
}
@media (max-width: 767px) {
  .p-cta__phone-number {
    margin-bottom: 1rem;
  }
}
.p-cta__phone-hours {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  margin: 0;
}
.p-cta__form {
  text-align: center;
  background: #fff;
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .p-cta__form {
    padding: 3rem 2rem;
    border-radius: 1.5rem;
  }
}
.p-cta__form h3 {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-cta__form h3 {
    margin-bottom: 1rem;
  }
}
.p-cta__form-note {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p-cta__form-note {
    margin-top: 1rem;
    margin-bottom: 0;
  }
}
/* Placeholder Image */
.c-placeholder-image {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  border-radius: 0.8rem;
}

/* Caption */
.c-caption {
  text-align: center;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  margin-top: 1.4rem;
}

/* Staff Name */
.c-staff-name {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  margin-top: 2rem;
  font-weight: 500;
}

.p-company__info .table1 {
  width: 100%;
  margin-bottom: clamp(5rem, 7vw + 1rem, 10rem);
}
.p-company__info .table1 tr:first-child th, .p-company__info .table1 tr:first-child td {
  border-top: solid 0.1rem #e5e5e5;
}
@media (max-width: 767px) {
  .p-company__info .table1 tr:first-child th, .p-company__info .table1 tr:first-child td {
    border-top: none;
  }
}
.p-company__info .table1 th {
  min-width: 20rem;
  padding: 3rem;
  text-align: center;
  border-bottom: solid 0.1rem #e5e5e5;
  font-weight: bold;
}
@media (max-width: 599px) {
  .p-company__info .table1 th {
    display: block;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .p-company__info .table1 th {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.p-company__info .table1 td {
  padding: 3rem;
  border-bottom: solid 0.1rem #e5e5e5;
}
@media (max-width: 599px) {
  .p-company__info .table1 td {
    display: block;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .p-company__info .table1 td {
    padding-top: 0;
  }
}

.p-company__access {
  padding: 10rem 0;
  background-color: #FFF;
}
.p-company__access__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media (max-width: 767px) {
  .p-company__access__inner {
    flex-direction: column;
  }
}
.p-company__access__text {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .p-company__access__text {
    width: 100%;
  }
}
.p-company__access__text h2 {
  margin-bottom: 2rem;
}
.p-company__access__text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.p-company__access__text dl {
  margin-top: 2rem;
}
.p-company__access__text dl dt {
  font-weight: 700;
  margin-bottom: 1rem;
}
.p-company__access__text dl dd {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.p-company__access__map {
  flex: 1;
  min-width: 0;
  aspect-ratio: 3/2;
}
@media (max-width: 767px) {
  .p-company__access__map {
    width: 100%;
  }
}
.p-company__access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.p-company__history {
  /*タイムライン全体の設定*/
}
.p-company__history .timeline {
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
}
.p-company__history .timeline li {
  /*線の起点とするためrelativeを設定*/
  position: relative;
}
.p-company__history .timeline dl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-company__history .timeline dl {
    flex-direction: column;
    padding-left: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-company__history .timeline dl::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 1.6rem;
    height: 1.6rem;
    background: #3569ae;
    border-radius: 50%;
    z-index: 1;
  }
  .p-company__history .timeline dl::before {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 1.6rem;
    width: 0.2rem;
    height: calc(100% + 3rem);
    background: #ccc;
    z-index: 0;
  }
}
.p-company__history .timeline dt {
  display: block;
  width: 15rem;
  padding: 0 3rem 3rem 0;
  font-weight: bold;
  white-space: nowrap;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
}
@media (max-width: 767px) {
  .p-company__history .timeline dt {
    width: 8rem;
    font-size: 1.6rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .p-company__history .timeline dt {
    width: 100%;
    padding: 0 0 0.5rem 0;
    margin-left: 0;
  }
}
.p-company__history .timeline dd {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  position: relative;
  display: block;
  padding: 0 0 5rem 5rem;
}
.p-company__history .timeline dd .row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-company__history .timeline dd {
    width: 100%;
    padding: 0 0 1rem 3rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-company__history .timeline dd {
    padding: 0 0 3rem 0;
    margin-left: 0;
  }
}
.p-company__history .timeline dd .month {
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .p-company__history .timeline dd .month {
    width: 100%;
    display: block;
  }
}
.p-company__history .timeline dd::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: #3569ae;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .p-company__history .timeline dd::after {
    display: none;
  }
}
.p-company__history .timeline dd::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 1.6rem;
  width: 0.2rem;
  height: calc(100% + 0.5rem);
  background: #ccc;
}
@media (max-width: 767px) {
  .p-company__history .timeline dd::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-company__history .timeline li:last-child dl::before {
    display: none;
  }
}
.p-company__history .timeline li:last-child dd::before {
  display: none;
}
.p-company__history .timeline .border-line {
  display: none;
}

/* ==========================================================================
   SEARCH OTHER PAGE
   ========================================================================== */
/* Header (search-other.php専用) */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.navi-area {
  display: flex;
  justify-content: space-between;
}

.btn-kicseason a {
  text-decoration: none;
}

/* ==========================================================================
   SEARCH RESULTS PAGE
   ========================================================================== */
.p-search-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-search-results__item {
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.p-search-results__item:first-child {
  padding-top: 0;
}
.p-search-results__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-search-results__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.p-search-results__link:hover {
  opacity: 0.8;
}
.p-search-results__title {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.p-search-results__excerpt {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  color: #666;
  margin: 0;
  line-height: 1.8;
}
.p-search-results__empty {
  text-align: center;
  padding: 6rem 0;
}
.p-search-results__empty p {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  color: #666;
  margin: 0 0 1rem 0;
}
.p-search-results__empty p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   SINGLE WORKS PAGE
   ========================================================================== */
.p-single-works__inner {
  max-width: 720px !important;
}
.p-single-works__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.p-single-works__category {
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: #3569ae;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 0.3rem;
  font-weight: 500;
}
.p-single-works__date {
  font-size: 1.2rem;
  color: #666;
}
.p-single-works__title {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 3rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-single-works__title {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  }
}
.p-single-works__eyecatch {
  width: 100%;
  margin-bottom: 6rem;
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-single-works__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-single-works__client {
  margin-bottom: 6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .p-single-works__client {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.p-single-works__client-label {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #666;
  margin: 0;
  white-space: nowrap;
}
.p-single-works__client-name {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 500;
  color: #000;
  margin: 0;
}
.p-single-works__section {
  background-color: #fff;
  padding: 3rem;
  border-radius: 0.8rem;
}
.p-single-works__section:last-of-type {
  margin-bottom: 0;
}
.p-single-works__section--result {
  margin-bottom: 6rem;
}
.p-single-works__section--voice {
  background-color: #e8f4ff;
  padding: 3rem;
  border-radius: 0.8rem;
}
.p-single-works__section--voice .p-single-works__section-title {
  margin-bottom: 2rem;
}
.p-single-works__section--voice .p-single-works__arrow {
  display: none;
}
.p-single-works__section-title {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
}
.p-single-works__content {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
  color: #000;
  margin-bottom: 2rem;
}
.p-single-works__content p {
  margin-bottom: 1.5rem;
}
.p-single-works__content p:last-child {
  margin-bottom: 0;
}
.p-single-works__content ul, .p-single-works__content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.p-single-works__content li {
  margin-bottom: 1rem;
}
.p-single-works__arrow {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.p-single-works__arrow .material-symbols-outlined {
  font-size: 4rem;
  color: #3569ae;
}

.p-related-works {
  padding: 6rem 0;
  background-color: #f6f9fc;
}
.p-related-works__title {
  font-size: clamp(2.8rem, 2.6rem + 1.2vw, 3.6rem);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
}
.p-related-works .p-works__list--related {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .p-related-works .p-works__list--related {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .p-related-works .p-works__list--related {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SINGLE NEWS PAGE
   ========================================================================== */
.p-single-news__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.p-single-news__date {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  color: #666;
}
.p-single-news__category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background-color: #3569ae;
  color: #fff;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  border-radius: 2rem;
  font-weight: 500;
}
.p-single-news__title {
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 3rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-single-news__title {
    font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  }
}
.p-single-news__eyecatch {
  margin-bottom: 3rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
.p-single-news__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}
.p-single-news__content {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
  color: #000;
  margin-bottom: 6rem;
}
.p-single-news__content p {
  margin-bottom: 2rem;
}
.p-single-news__content p:last-child {
  margin-bottom: 0;
}
.p-single-news__content h2 {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  color: #000;
  margin-top: 6rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #3569ae;
}
.p-single-news__content h3 {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
  color: #000;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 4px solid #3569ae;
}
.p-single-news__content ul, .p-single-news__content ol {
  margin-bottom: 2rem;
  padding-left: 3rem;
}
.p-single-news__content li {
  margin-bottom: 1rem;
}
.p-single-news__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.4rem;
  margin: 2rem 0;
}
.p-single-news__content a {
  color: #3569ae;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.p-single-news__content a:hover {
  opacity: 0.7;
}
.p-single-news__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background-color: #f9f9f9;
  border-left: 4px solid #3569ae;
  font-style: italic;
}
.p-single-news__content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}
.p-single-news__content table th, .p-single-news__content table td {
  padding: 1rem 1.5rem;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.p-single-news__content table th {
  background-color: #3569ae;
  color: #fff;
  font-weight: 700;
}
.p-single-news__content table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.p-single-news__nav {
  margin-top: 6rem;
  padding-top: 3rem;
}
.p-single-news__nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 4.4rem;
}
@media (max-width: 640px) {
  .p-single-news__nav-links {
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
  }
}
.p-single-news__nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 0.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  justify-content: center;
  min-height: 4.4rem;
  box-sizing: border-box;
  line-height: 1;
}
@media (max-width: 640px) {
  .p-single-news__nav-link {
    width: 100%;
    justify-content: center;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
  }
}
.p-single-news__nav-link:hover {
  background-color: #3569ae;
  color: #fff;
}
.p-single-news__nav-link--prev {
  margin-right: auto;
}
@media (max-width: 640px) {
  .p-single-news__nav-link--prev {
    margin-right: 0;
    order: 0;
  }
}
.p-single-news__nav-link--next {
  margin-left: auto;
}
@media (max-width: 640px) {
  .p-single-news__nav-link--next {
    margin-left: 0;
    order: 2;
  }
}
.p-single-news__nav-link--list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .p-single-news__nav-link--list {
    position: relative;
    transform: none;
    left: auto;
    order: 1;
  }
}
.p-single-news__nav-arrow {
  font-weight: 700;
}
.p-single-news__nav-text {
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
}

/* ==========================================================================
   PRIVACY POLICY PAGE
   ========================================================================== */
.p-privacy-policy__content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
  color: #000;
}
.p-privacy-policy__intro {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-privacy-policy__intro {
    margin-bottom: 3rem;
  }
}
.p-privacy-policy__section {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-privacy-policy__section {
    margin-bottom: 3rem;
  }
}
.p-privacy-policy__section:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__section-title {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
.p-privacy-policy__subsection-title {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 700;
  color: #000;
  margin-top: 3rem;
  line-height: 1.4;
}
.p-privacy-policy__list-title {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
  color: #000;
  margin-top: 2rem;
}
.p-privacy-policy__text {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.p-privacy-policy__text:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__text a {
  color: #3569ae;
  text-decoration: underline;
}
.p-privacy-policy__text a:hover {
  text-decoration: none;
}
.p-privacy-policy__list {
  margin-left: 0;
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
  counter-reset: list-counter;
}
.p-privacy-policy__list li {
  line-height: 1.8;
  padding-left: 0;
}
.p-privacy-policy__list li:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__list li::before {
  content: "";
  display: none;
}
.p-privacy-policy__footer {
  margin-top: 3rem;
  text-align: right;
}
@media (max-width: 768px) {
  .p-privacy-policy__footer {
    text-align: left;
  }
}
.p-privacy-policy__contact {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid #e0e0e0;
}
.p-privacy-policy__contact-title {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.4rem);
  font-weight: 700;
  color: #000;
}
.p-privacy-policy__contact-list dt {
  font-weight: 700;
  color: #000;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.p-privacy-policy__contact-list dt:first-child {
  margin-top: 0;
}
.p-privacy-policy__contact-list dd {
  margin-left: 0;
  margin-bottom: 1rem;
  line-height: 1.8;
}/*# sourceMappingURL=style.css.map */