@charset "UTF-8";
/*
Site Name: 株式会社グロアス
Version: 2026.03.16
*/
/*! ==================================================

  このCSSファイルはSassから生成されていますので
  編集しないようご注意ください。

================================================== */
:root {
  --vw: calc(100vw / 100);
  --vh: calc(100vh / 100);
  --ww: calc(var(--vw) * 100);
  --wh: calc(var(--vh) * 100);
  --scrollbar-width: 0px;
  --color-text-main: #333;
  --color-text-sub: #808080;
  --color-primary: #007ab8;
  --color-orange: #f08b25;
  --color-pink: #e56795;
  --color-purple: #947ddb;
  --color-border-gray: #d2dbe5;
  --color-bg-blue: #e9f3f8;
  --color-bg-gray: #f5f6f8;
  --color-primary-hover: #55ccd1;
  --gradient-blue: linear-gradient(90deg, #1e74c9 0%, #55ccd1 100%);
  --gradient-green: linear-gradient(90deg, #2fc2c7 0%, #9ecf5f 100%);
  --gradient-yellow: linear-gradient(90deg, #efa430 0%, #fccf0a 100%);
  --gradient-pink: linear-gradient(90deg, #ea76c5 0%, #efa430 100%);
  --gradient-purple: linear-gradient(90deg, #947ddb 0%, #d580e6 100%);
  --gradient-btn-yellow: linear-gradient(90deg, #f08b25 0%, #f9c010 100%);
  --gradient-btn-pink: linear-gradient(90deg, #e567e5 0%, #efa430 100%);
  --gradient-blue-p: linear-gradient(180deg, #1e74c9 0%, #55ccd1 100%);
  --gradient-green-p: linear-gradient(180deg, #2fc2c7 0%, #9ecf5f 100%);
  --gradient-yellow-p: linear-gradient(180deg, #efa430 0%, #fccf0a 100%);
  --gradient-pink-p: linear-gradient(180deg, #ea76c5 0%, #efa430 100%);
  --gradient-purple-p: linear-gradient(180deg, #947ddb 0%, #d580e6 100%);
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --space-xs: 0.75rem;
  --space-sm: 1.5rem;
  --space-md: 2.4rem;
  --space-lg: 3.6rem;
  --space-xl: 5rem;
}

/* component
========================================================= */
.c-heading {
  font-family: GENJ, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

.c-rounded__lg {
  border-radius: 20px;
}

.c-btn {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: var(--font-base);
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-btn {
    font-size: var(--font-md);
  }
}
.c-btn i {
  margin-right: 0.25rem;
}
.c-btn::before {
  background-color: rgba(44, 54, 66, 0.5);
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  mix-blend-mode: overlay;
  transition: all 0.3s ease;
}
.c-btn:hover::before {
  opacity: 1;
}

.c-btn__sm {
  border-radius: 20px;
  overflow: hidden;
  height: 40px;
  font-size: var(--font-base);
}
@media screen and (max-width: 767px) {
  .c-btn__sm {
    font-size: var(--font-sm);
  }
}

.c-btn__md {
  border-radius: 25px;
  overflow: hidden;
  height: 50px;
  font-size: var(--font-lg);
}

.c-btn__lg {
  border-radius: 35px;
  overflow: hidden;
  height: 70px;
}

.c-fill__blue-grad {
  background: var(--gradient-blue);
  color: #fff;
}

.c-fill__green-grad {
  background: var(--gradient-green);
  color: #fff;
}

.c-fill__purple-grad {
  background: var(--gradient-purple);
  color: #fff;
}

.c-fill__yellow-grad {
  background: var(--gradient-yellow);
  color: #fff;
}

.c-fill__btn-yellow-grad {
  background: var(--gradient-btn-yellow);
  color: #fff;
}

.c-fill__pink-grad {
  background: var(--gradient-pink);
  color: #fff;
}

.c-fill__btn-pink-grad {
  background: var(--gradient-btn-pink);
  color: #fff;
}

.c-btn__line-blue {
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 0 0 var(--color-primary);
}

.p-child-page-list__nav {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.p-child-page-list__nav-btn {
  border: 2px solid var(--color-pink);
  border-radius: 20px;
  color: var(--color-pink);
  height: 40px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-left: 1.5em;
  padding-right: 2em;
  text-decoration: none;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 900;
  margin: 0 0.25rem;
  position: relative;
}
.p-child-page-list__nav-btn::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f078";
  display: block;
  position: absolute;
  right: 10px;
}

.c-btn__arrow {
  position: relative;
  padding-right: 0.5em;
}
.c-btn__arrow::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f138";
  display: block;
  position: absolute;
  right: 10px;
}

.c-page-header {
  height: 56px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-page-header {
    height: 48px;
  }
}
.c-page-header::before {
  content: "";
  display: block;
  height: 100%;
  background-image: url("./assets/images/pageheader_bg@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  aspect-ratio: 264/112;
}
@media screen and (max-width: 1024px) {
  .c-page-header::before {
    background-position: -40px center;
  }
}
@media screen and (max-width: 767px) {
  .c-page-header::before {
    background-position: -50px center;
  }
}
body.slug-examples .c-page-header {
  background: var(--gradient-purple);
}
body.slug-company .c-page-header {
  background: var(--gradient-yellow);
}
body.slug-recruit .c-page-header, body.slug-sales .c-page-header, body.slug-office .c-page-header, body.slug-entry .c-page-header {
  background: var(--gradient-pink);
}
body.slug-contact .c-page-header, body.slug-privacy-policy .c-page-header {
  background: var(--gradient-blue);
}
body.slug-capsules-index .c-page-header, body.slug-machines-index .c-page-header, body.single-capsules .c-page-header, body.single-machines .c-page-header {
  background: var(--gradient-green);
}

.c-page-header__ttl {
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .c-page-header__ttl {
    width: 1000px;
    left: calc(50% - 500px);
  }
}
@media screen and (max-width: 1024px) {
  .c-page-header__ttl {
    width: 92.8%;
    left: 3.6%;
  }
}
@media screen and (max-width: 767px) {
  .c-page-header__ttl {
    width: 90%;
    left: 10%;
    font-size: 22px;
  }
  body.slug-privacy-policy .c-page-header__ttl {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}
.c-page-header__ttl small {
  font-size: var(--font-sm);
  margin-left: 1.75em;
}
@media screen and (max-width: 767px) {
  .c-page-header__ttl small {
    font-size: var(--font-xs);
  }
  body.slug-privacy-policy .c-page-header__ttl small {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

.c-page-content {
  padding-top: 3rem;
  padding-bottom: 4rem;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .c-page-content {
    width: 720px;
  }
  body.slug-examples .c-page-content, body.slug-capsules-index .c-page-content, body.slug-machines-index .c-page-content, body.single-capsules .c-page-content, body.single-machines .c-page-content {
    width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .c-page-content {
    width: 90%;
  }
}
.c-page-content > p {
  line-height: 2;
}
.c-page-content > p + p {
  margin-top: 1.8em;
}
.c-page-content a:not(.c-btn, .wp-block-button__link, .p-child-page-list__nav-btn) {
  color: var(--color-primary);
}
.c-page-content a[target=_blank][rel=noopener] {
  display: inline-block;
  margin: 0 0.3em;
  padding-right: 1.2em;
  position: relative;
}
.c-page-content a[target=_blank][rel=noopener]::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f08e";
  font-size: 90%;
  position: absolute;
  right: 0;
  top: 0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

.u-my-1 {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}

.u-my-2 {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.u-my-3 {
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}

.u-my-4 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.u-my-5 {
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}

.u-my-6 {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.u-my-7 {
  margin-bottom: 1.75rem;
  margin-top: 1.75rem;
}

.u-my-8 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.u-my-9 {
  margin-bottom: 2.25rem;
  margin-top: 2.25rem;
}

.u-my-10 {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}

.u-my-11 {
  margin-bottom: 2.75rem;
  margin-top: 2.75rem;
}

.u-my-12 {
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.u-my-13 {
  margin-bottom: 3.25rem;
  margin-top: 3.25rem;
}

.u-my-14 {
  margin-bottom: 3.5rem;
  margin-top: 3.5rem;
}

.u-my-15 {
  margin-bottom: 3.75rem;
  margin-top: 3.75rem;
}

.u-my-16 {
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.u-my-17 {
  margin-bottom: 4.25rem;
  margin-top: 4.25rem;
}

.u-my-18 {
  margin-bottom: 4.5rem;
  margin-top: 4.5rem;
}

.u-my-19 {
  margin-bottom: 4.75rem;
  margin-top: 4.75rem;
}

.u-my-20 {
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.u-my-21 {
  margin-bottom: 5.25rem;
  margin-top: 5.25rem;
}

.u-my-22 {
  margin-bottom: 5.5rem;
  margin-top: 5.5rem;
}

.u-my-23 {
  margin-bottom: 5.75rem;
  margin-top: 5.75rem;
}

.u-my-24 {
  margin-bottom: 6rem;
  margin-top: 6rem;
}

.u-my-25 {
  margin-bottom: 6.25rem;
  margin-top: 6.25rem;
}

.u-my-26 {
  margin-bottom: 6.5rem;
  margin-top: 6.5rem;
}

.u-my-27 {
  margin-bottom: 6.75rem;
  margin-top: 6.75rem;
}

.u-my-28 {
  margin-bottom: 7rem;
  margin-top: 7rem;
}

.u-my-29 {
  margin-bottom: 7.25rem;
  margin-top: 7.25rem;
}

.u-my-30 {
  margin-bottom: 7.5rem;
  margin-top: 7.5rem;
}

.u-my-31 {
  margin-bottom: 7.75rem;
  margin-top: 7.75rem;
}

.u-my-32 {
  margin-bottom: 8rem;
  margin-top: 8rem;
}

.u-my-33 {
  margin-bottom: 8.25rem;
  margin-top: 8.25rem;
}

.u-my-34 {
  margin-bottom: 8.5rem;
  margin-top: 8.5rem;
}

.u-my-35 {
  margin-bottom: 8.75rem;
  margin-top: 8.75rem;
}

.u-my-36 {
  margin-bottom: 9rem;
  margin-top: 9rem;
}

.u-my-37 {
  margin-bottom: 9.25rem;
  margin-top: 9.25rem;
}

.u-my-38 {
  margin-bottom: 9.5rem;
  margin-top: 9.5rem;
}

.u-my-39 {
  margin-bottom: 9.75rem;
  margin-top: 9.75rem;
}

.u-my-40 {
  margin-bottom: 10rem;
  margin-top: 10rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.u-px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.u-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.u-px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.u-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.u-px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.u-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.u-px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.u-px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.u-px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.u-px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.u-px-11 {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.u-px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.u-px-13 {
  padding-left: 3.25rem;
  padding-right: 3.25rem;
}

.u-px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.u-px-15 {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.u-px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.u-px-17 {
  padding-left: 4.25rem;
  padding-right: 4.25rem;
}

.u-px-18 {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.u-px-19 {
  padding-left: 4.75rem;
  padding-right: 4.75rem;
}

.u-px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.u-px-21 {
  padding-left: 5.25rem;
  padding-right: 5.25rem;
}

.u-px-22 {
  padding-left: 5.5rem;
  padding-right: 5.5rem;
}

.u-px-23 {
  padding-left: 5.75rem;
  padding-right: 5.75rem;
}

.u-px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.u-px-25 {
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}

.u-px-26 {
  padding-left: 6.5rem;
  padding-right: 6.5rem;
}

.u-px-27 {
  padding-left: 6.75rem;
  padding-right: 6.75rem;
}

.u-px-28 {
  padding-left: 7rem;
  padding-right: 7rem;
}

.u-px-29 {
  padding-left: 7.25rem;
  padding-right: 7.25rem;
}

.u-px-30 {
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}

.u-px-31 {
  padding-left: 7.75rem;
  padding-right: 7.75rem;
}

.u-px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.u-px-33 {
  padding-left: 8.25rem;
  padding-right: 8.25rem;
}

.u-px-34 {
  padding-left: 8.5rem;
  padding-right: 8.5rem;
}

.u-px-35 {
  padding-left: 8.75rem;
  padding-right: 8.75rem;
}

.u-px-36 {
  padding-left: 9rem;
  padding-right: 9rem;
}

.u-px-37 {
  padding-left: 9.25rem;
  padding-right: 9.25rem;
}

.u-px-38 {
  padding-left: 9.5rem;
  padding-right: 9.5rem;
}

.u-px-39 {
  padding-left: 9.75rem;
  padding-right: 9.75rem;
}

.u-px-40 {
  padding-left: 10rem;
  padding-right: 10rem;
}

.u-py-0 {
  padding-bottom: 0rem;
  padding-top: 0rem;
}

.u-py-1 {
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}

.u-py-2 {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.u-py-3 {
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}

.u-py-4 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.u-py-5 {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.u-py-6 {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.u-py-7 {
  padding-bottom: 1.75rem;
  padding-top: 1.75rem;
}

.u-py-8 {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.u-py-9 {
  padding-bottom: 2.25rem;
  padding-top: 2.25rem;
}

.u-py-10 {
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.u-py-11 {
  padding-bottom: 2.75rem;
  padding-top: 2.75rem;
}

.u-py-12 {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.u-py-13 {
  padding-bottom: 3.25rem;
  padding-top: 3.25rem;
}

.u-py-14 {
  padding-bottom: 3.5rem;
  padding-top: 3.5rem;
}

.u-py-15 {
  padding-bottom: 3.75rem;
  padding-top: 3.75rem;
}

.u-py-16 {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.u-py-17 {
  padding-bottom: 4.25rem;
  padding-top: 4.25rem;
}

.u-py-18 {
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
}

.u-py-19 {
  padding-bottom: 4.75rem;
  padding-top: 4.75rem;
}

.u-py-20 {
  padding-bottom: 5rem;
  padding-top: 5rem;
}

.u-py-21 {
  padding-bottom: 5.25rem;
  padding-top: 5.25rem;
}

.u-py-22 {
  padding-bottom: 5.5rem;
  padding-top: 5.5rem;
}

.u-py-23 {
  padding-bottom: 5.75rem;
  padding-top: 5.75rem;
}

.u-py-24 {
  padding-bottom: 6rem;
  padding-top: 6rem;
}

.u-py-25 {
  padding-bottom: 6.25rem;
  padding-top: 6.25rem;
}

.u-py-26 {
  padding-bottom: 6.5rem;
  padding-top: 6.5rem;
}

.u-py-27 {
  padding-bottom: 6.75rem;
  padding-top: 6.75rem;
}

.u-py-28 {
  padding-bottom: 7rem;
  padding-top: 7rem;
}

.u-py-29 {
  padding-bottom: 7.25rem;
  padding-top: 7.25rem;
}

.u-py-30 {
  padding-bottom: 7.5rem;
  padding-top: 7.5rem;
}

.u-py-31 {
  padding-bottom: 7.75rem;
  padding-top: 7.75rem;
}

.u-py-32 {
  padding-bottom: 8rem;
  padding-top: 8rem;
}

.u-py-33 {
  padding-bottom: 8.25rem;
  padding-top: 8.25rem;
}

.u-py-34 {
  padding-bottom: 8.5rem;
  padding-top: 8.5rem;
}

.u-py-35 {
  padding-bottom: 8.75rem;
  padding-top: 8.75rem;
}

.u-py-36 {
  padding-bottom: 9rem;
  padding-top: 9rem;
}

.u-py-37 {
  padding-bottom: 9.25rem;
  padding-top: 9.25rem;
}

.u-py-38 {
  padding-bottom: 9.5rem;
  padding-top: 9.5rem;
}

.u-py-39 {
  padding-bottom: 9.75rem;
  padding-top: 9.75rem;
}

.u-py-40 {
  padding-bottom: 10rem;
  padding-top: 10rem;
}

.u-w-5 {
  width: 5% !important;
}

.u-w-6 {
  width: 6% !important;
}

.u-w-7 {
  width: 7% !important;
}

.u-w-8 {
  width: 8% !important;
}

.u-w-9 {
  width: 9% !important;
}

.u-w-10 {
  width: 10% !important;
}

.u-w-11 {
  width: 11% !important;
}

.u-w-12 {
  width: 12% !important;
}

.u-w-13 {
  width: 13% !important;
}

.u-w-14 {
  width: 14% !important;
}

.u-w-15 {
  width: 15% !important;
}

.u-w-16 {
  width: 16% !important;
}

.u-w-17 {
  width: 17% !important;
}

.u-w-18 {
  width: 18% !important;
}

.u-w-19 {
  width: 19% !important;
}

.u-w-20 {
  width: 20% !important;
}

.u-w-21 {
  width: 21% !important;
}

.u-w-22 {
  width: 22% !important;
}

.u-w-23 {
  width: 23% !important;
}

.u-w-24 {
  width: 24% !important;
}

.u-w-25 {
  width: 25% !important;
}

.u-w-26 {
  width: 26% !important;
}

.u-w-27 {
  width: 27% !important;
}

.u-w-28 {
  width: 28% !important;
}

.u-w-29 {
  width: 29% !important;
}

.u-w-30 {
  width: 30% !important;
}

.u-w-31 {
  width: 31% !important;
}

.u-w-32 {
  width: 32% !important;
}

.u-w-33 {
  width: 33% !important;
}

.u-w-34 {
  width: 34% !important;
}

.u-w-35 {
  width: 35% !important;
}

.u-w-36 {
  width: 36% !important;
}

.u-w-37 {
  width: 37% !important;
}

.u-w-38 {
  width: 38% !important;
}

.u-w-39 {
  width: 39% !important;
}

.u-w-40 {
  width: 40% !important;
}

.u-w-41 {
  width: 41% !important;
}

.u-w-42 {
  width: 42% !important;
}

.u-w-43 {
  width: 43% !important;
}

.u-w-44 {
  width: 44% !important;
}

.u-w-45 {
  width: 45% !important;
}

.u-w-46 {
  width: 46% !important;
}

.u-w-47 {
  width: 47% !important;
}

.u-w-48 {
  width: 48% !important;
}

.u-w-49 {
  width: 49% !important;
}

.u-w-50 {
  width: 50% !important;
}

.u-w-51 {
  width: 51% !important;
}

.u-w-52 {
  width: 52% !important;
}

.u-w-53 {
  width: 53% !important;
}

.u-w-54 {
  width: 54% !important;
}

.u-w-55 {
  width: 55% !important;
}

.u-w-56 {
  width: 56% !important;
}

.u-w-57 {
  width: 57% !important;
}

.u-w-58 {
  width: 58% !important;
}

.u-w-59 {
  width: 59% !important;
}

.u-w-60 {
  width: 60% !important;
}

.u-w-61 {
  width: 61% !important;
}

.u-w-62 {
  width: 62% !important;
}

.u-w-63 {
  width: 63% !important;
}

.u-w-64 {
  width: 64% !important;
}

.u-w-65 {
  width: 65% !important;
}

.u-w-66 {
  width: 66% !important;
}

.u-w-67 {
  width: 67% !important;
}

.u-w-68 {
  width: 68% !important;
}

.u-w-69 {
  width: 69% !important;
}

.u-w-70 {
  width: 70% !important;
}

.u-w-71 {
  width: 71% !important;
}

.u-w-72 {
  width: 72% !important;
}

.u-w-73 {
  width: 73% !important;
}

.u-w-74 {
  width: 74% !important;
}

.u-w-75 {
  width: 75% !important;
}

.u-w-76 {
  width: 76% !important;
}

.u-w-77 {
  width: 77% !important;
}

.u-w-78 {
  width: 78% !important;
}

.u-w-79 {
  width: 79% !important;
}

.u-w-80 {
  width: 80% !important;
}

.u-w-81 {
  width: 81% !important;
}

.u-w-82 {
  width: 82% !important;
}

.u-w-83 {
  width: 83% !important;
}

.u-w-84 {
  width: 84% !important;
}

.u-w-85 {
  width: 85% !important;
}

.u-w-86 {
  width: 86% !important;
}

.u-w-87 {
  width: 87% !important;
}

.u-w-88 {
  width: 88% !important;
}

.u-w-89 {
  width: 89% !important;
}

.u-w-90 {
  width: 90% !important;
}

.u-w-91 {
  width: 91% !important;
}

.u-w-92 {
  width: 92% !important;
}

.u-w-93 {
  width: 93% !important;
}

.u-w-94 {
  width: 94% !important;
}

.u-w-95 {
  width: 95% !important;
}

.u-w-96 {
  width: 96% !important;
}

.u-w-97 {
  width: 97% !important;
}

.u-w-98 {
  width: 98% !important;
}

.u-w-99 {
  width: 99% !important;
}

.u-w-100 {
  width: 100% !important;
}

.u-w-full {
  width: 100% !important;
}

.u-h-1 {
  height: 0.25em !important;
}

.u-h-2 {
  height: 0.5em !important;
}

.u-h-3 {
  height: 0.75em !important;
}

.u-h-4 {
  height: 1em !important;
}

.u-h-5 {
  height: 1.25em !important;
}

.u-h-6 {
  height: 1.5em !important;
}

.u-h-7 {
  height: 1.75em !important;
}

.u-h-8 {
  height: 2em !important;
}

.u-h-9 {
  height: 2.25em !important;
}

.u-h-10 {
  height: 2.5em !important;
}

.u-h-11 {
  height: 2.75em !important;
}

.u-h-12 {
  height: 3em !important;
}

.u-h-13 {
  height: 3.25em !important;
}

.u-h-14 {
  height: 3.5em !important;
}

.u-h-15 {
  height: 3.75em !important;
}

.u-h-16 {
  height: 4em !important;
}

.u-h-17 {
  height: 4.25em !important;
}

.u-h-18 {
  height: 4.5em !important;
}

.u-h-19 {
  height: 4.75em !important;
}

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

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

.u-text-left {
  text-align: left !important;
}

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

.u-text-right {
  text-align: right !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-flex {
  display: flex !important;
}

.u-inline-flex {
  display: inline-flex !important;
}

.u-flex-1 {
  flex: 1;
}

.u-flex-none {
  flex: none;
}

.u-flex-wrap {
  flex-wrap: wrap !important;
}

.u-justify-end {
  justify-content: flex-end !important;
}

.u-justify-center {
  justify-content: center !important;
}

.u-justify-between {
  justify-content: space-between !important;
}

.u-justify-around {
  justify-content: space-around !important;
}

.u-items-center {
  align-items: center !important;
}

.u-border-1 {
  border-style: solid !important;
  border-width: 1px !important;
}

.u-border-2 {
  border-style: solid !important;
  border-width: 2px !important;
}

.u-border-3 {
  border-style: solid !important;
  border-width: 3px !important;
}

.u-border-4 {
  border-style: solid !important;
  border-width: 4px !important;
}

.u-border-5 {
  border-style: solid !important;
  border-width: 5px !important;
}

.u-border-6 {
  border-style: solid !important;
  border-width: 6px !important;
}

.u-border-7 {
  border-style: solid !important;
  border-width: 7px !important;
}

.u-border-8 {
  border-style: solid !important;
  border-width: 8px !important;
}

.u-border-9 {
  border-style: solid !important;
  border-width: 9px !important;
}

.u-border-10 {
  border-style: solid !important;
  border-width: 10px !important;
}

.u-text-10 {
  font-size: 10px !important;
}

.u-text-11 {
  font-size: 11px !important;
}

.u-text-12 {
  font-size: 12px !important;
}

.u-text-13 {
  font-size: 13px !important;
}

.u-text-14 {
  font-size: 14px !important;
}

.u-text-15 {
  font-size: 15px !important;
}

.u-text-16 {
  font-size: 16px !important;
}

.u-text-17 {
  font-size: 17px !important;
}

.u-text-18 {
  font-size: 18px !important;
}

.u-text-19 {
  font-size: 19px !important;
}

.u-text-20 {
  font-size: 20px !important;
}

.u-text-21 {
  font-size: 21px !important;
}

.u-text-22 {
  font-size: 22px !important;
}

.u-text-23 {
  font-size: 23px !important;
}

.u-text-24 {
  font-size: 24px !important;
}

.u-text-25 {
  font-size: 25px !important;
}

.u-text-26 {
  font-size: 26px !important;
}

.u-text-27 {
  font-size: 27px !important;
}

.u-text-28 {
  font-size: 28px !important;
}

.u-text-29 {
  font-size: 29px !important;
}

.u-text-30 {
  font-size: 30px !important;
}

.u-text-xs {
  font-size: 0.625rem !important;
}

.u-text-sm {
  font-size: 0.75rem !important;
}

.u-text-md {
  font-size: 0.875rem !important;
}

.u-text-base {
  font-size: 1rem !important;
}

.u-text-lg {
  font-size: 1.125rem !important;
}

.u-text-xl {
  font-size: 1.25rem !important;
}

.u-relative {
  position: relative !important;
}

@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

/* body
========================================================= */
html {
  font-size: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

body {
  color: var(--color-text-main);
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: var(--font-size-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-wrap: break-word;
  overflow-x: hidden;
  text-size-adjust: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}

.l-wrapper {
  min-height: 100%;
  width: 100%;
}

/* header
========================================================= */
:root {
  --header-h: clamp(80px, 12vh, 116px); /* 8vwヘッダーを安全に */
}

.l-header {
  width: 100%;
}

.l-header-front {
  height: 790px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .l-header-front {
    aspect-ratio: 1000/700;
    height: calc(100% + 90px);
  }
}
@media screen and (max-width: 767px) {
  .l-header-front {
    height: 560px;
  }
}

.l-header-pc {
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: space-between;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 0;
  width: auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-header-pc {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .l-header-pc__site-name {
    width: 180px;
  }
  .l-header-pc__site-name img {
    width: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header-pc__site-name {
    width: 15%;
  }
}
@media screen and (max-width: 767px) {
  .l-header-pc__site-name {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-header-sp__site-name {
    align-items: end;
    display: flex;
    height: 50px;
    justify-content: center;
    width: 100px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-header-sp__site-name {
    display: none;
  }
}

.l-header-pc__contact {
  height: 40px;
  width: 180px;
}
@media screen and (max-width: 1024px) {
  .l-header-pc__contact {
    width: clamp(116px, 18%, 180px);
  }
}
@media screen and (max-width: 767px) {
  .l-header-pc__contact {
    display: none;
  }
}
.l-header-pc__contact .c-btn {
  font-size: var(--font-base);
  border-radius: 20px;
  height: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .l-header-pc__contact .c-btn {
    font-size: 1.7vw;
  }
}

/* gnav
========================================================= */
@media screen and (max-width: 767px) {
  .l-header-pc__gnav {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-header-pc__gnav {
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .l-header-pc__gnav-list {
    display: none;
  }
}
.l-header-pc__gnav-list {
  display: flex;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  justify-content: center;
  margin: 0 auto;
}
.l-header-pc__gnav-list > li {
  position: relative;
}
.l-header-pc__gnav-list > li > a {
  color: var(--color-primary);
  display: block;
  font-size: var(--font-base);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25em 30px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .l-header-pc__gnav-list > li > a {
    padding: 0.25em 1.86vw;
    font-size: clamp(14px, 2vw, 16px);
  }
}
.l-header-pc__gnav-list > li > a small {
  color: var(--color-text-main);
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .l-header-pc__gnav-list > li > a small {
    font-size: clamp(10px, 1.36vw, 11px);
  }
}
.l-header-pc__gnav-list > li > a:hover {
  color: var(--color-primary-hover);
}
.l-header-pc__gnav-list > li .sub-menu {
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 0.5rem;
  display: none;
  left: 0;
  min-width: 160px;
  position: absolute;
  overflow: hidden;
  top: 100%;
}
.l-header-pc__gnav-list > li .sub-menu li a {
  display: block;
  font-size: var(--font-sm);
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  text-align: left;
  text-decoration: none;
  transition: all 0.3s ease;
}
.l-header-pc__gnav-list > li .sub-menu li a:hover {
  background-color: var(--color-bg-blue);
}
.l-header-pc__gnav-list > li .sub-menu li:not(:first-child) {
  border-top: 1px dotted var(--color-primary);
}

body.slug-home .l-header-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .l-header-sp__btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header-sp__btn {
    background: var(--gradient-blue);
    border-radius: 0 0 0 10px;
    height: 64px;
    position: fixed;
    right: 0;
    top: 0;
    width: 64px;
    z-index: 9998; /* ボタンを最前面に */
  }
}

.l-header-sp__btn-icon {
  height: 22px;
  left: calc(50% - 15px);
  position: relative;
  top: 12px;
  width: 30px;
}
.l-header-sp__btn-icon .point {
  background-color: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition: all 0.3s ease;
  width: 100%;
}
.l-header-sp__btn-icon .point.top {
  top: 0;
}
.l-header-sp__btn-icon .point.mid {
  top: calc(50% - 1px);
}
.l-header-sp__btn-icon .point.bot {
  bottom: 0;
}
body.slide-open .l-header-sp__btn-icon .point.top {
  top: calc(50% - 9px);
  transform: translateX(-1px) translateY(8px) rotate(-40deg);
  width: 110%;
}
body.slide-open .l-header-sp__btn-icon .point.mid {
  opacity: 0;
}
body.slide-open .l-header-sp__btn-icon .point.bot {
  bottom: calc(50% + 7px);
  transform: translateX(-1px) translateY(8px) rotate(40deg);
  width: 110%;
}

.l-header-sp__btn-name {
  color: #fff;
  display: block;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  position: absolute;
  text-align: center;
  top: 40px;
  width: 100%;
}

.l-header-sp__slide-menu {
  background-color: #fff;
  height: 100vh;
  position: fixed;
  right: -120%;
  top: 0;
  transition: all 0.5s;
  width: 100%;
  z-index: 999;
}
body.slide-open .l-header-sp__slide-menu {
  right: 0;
  /* ナビゲーションの縦スクロール */
}
body.slide-open .l-header-sp__slide-menu #g-nav {
  height: 100vh; /* 表示する高さ */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* ナビの数が増えた場合縦スクロール */
  position: fixed;
  width: 100%;
  z-index: 999;
}

.l-header-sp__gnav-list {
  margin: 70px auto 0;
  width: 86%;
  max-width: 480px;
}
.l-header-sp__gnav-list > li {
  border-bottom: 1px solid var(--color-border-gray);
}
.l-header-sp__gnav-list > li > a {
  color: var(--color-primary);
  display: block;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: var(--font-base);
  font-weight: 700;
  padding: 0.75rem 0;
  text-decoration: none;
}
.l-header-sp__gnav-list > li > a small {
  color: var(--color-text-main);
  font-size: 11px;
  margin-left: 0.5rem;
}
.l-header-sp__gnav-list > li.has-submenu > a.noscroll {
  display: block;
  position: relative;
}
.l-header-sp__gnav-list > li.has-submenu > a.noscroll > span.icon {
  display: block;
  height: 20px;
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
  width: 20px;
}
.l-header-sp__gnav-list > li.has-submenu > a.noscroll > span.icon::before, .l-header-sp__gnav-list > li.has-submenu > a.noscroll > span.icon::after {
  background-color: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}
.l-header-sp__gnav-list > li.has-submenu > a.noscroll > span.icon::before {
  height: 2px;
  right: 0;
  top: calc(50% - 1px);
  width: 20px;
}
.l-header-sp__gnav-list > li.has-submenu > a.noscroll > span.icon::after {
  height: 20px;
  right: calc(50% - 1px);
  top: 0;
  width: 2px;
}
.l-header-sp__gnav-list > li.has-submenu > a.noscroll.open > span.icon::after {
  transform: rotate(90deg);
}
.l-header-sp__gnav-list > li.has-submenu .sub-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 1rem;
}
.l-header-sp__gnav-list > li.has-submenu .sub-menu > li {
  width: 49%;
}
.l-header-sp__gnav-list > li.has-submenu .sub-menu > li > a {
  background-color: var(--color-bg-blue);
  border-radius: 25px;
  display: block;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: var(--font-sm);
  font-weight: 700;
  text-decoration: none;
  padding: 0.75em 1rem;
}

.l-header-sp__contact {
  margin: 35px auto 0;
  width: 70%;
  max-width: 300px;
}

.l-header-sp__phone {
  margin: 20px auto 0;
  width: 70%;
  max-width: 300px;
}
.l-header-sp__phone a {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
  letter-spacing: 0;
}
.l-header-sp__phone a span {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 900;
}
.l-header-sp__phone a small {
  font-size: 11px;
  font-weight: 700;
  margin-top: 0.5rem;
}

.l-header-sp__profile {
  margin-top: 40px;
  text-align: center;
}
.l-header-sp__profile figure {
  margin: 0 auto;
  width: 90px;
}

.l-header-sp__profile-name {
  color: var(--color-primary);
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: var(--font-lg);
  font-weight: 900;
  margin-top: 10px;
}

.l-header-sp__profile-address {
  font-size: var(--font-md);
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .l-header-sp__profile-address {
    font-size: var(--font-sm);
  }
}

.l-header-sp__close {
  color: var(--color-primary);
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: var(--font-md);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 15px;
  text-align: center;
}
.l-header-sp__close i {
  margin-right: 0.25em;
}

.l-overlay {
  background: rgba(0, 0, 0, 0);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 10;
}
body.slide-open .l-overlay {
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  visibility: visible;
}

/* breadcrumb
========================================================= */
.breadcrumbs {
  margin: 0 auto;
  min-width: auto;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding: 0 0 0.75em;
    width: 92.8%;
  }
}
@media screen and (min-width: 1025px) {
  .breadcrumbs {
    width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin: 0 auto;
    padding: 0 0 0.75em 10px;
  }
}

@media screen and (max-width: 767px) {
  .aioseo-breadcrumbs {
    overflow-x: scroll;
    padding-bottom: 2.6vw;
    white-space: nowrap;
  }
}
.aioseo-breadcrumbs span {
  color: var(--color-text-sub);
  font-size: clamp(0.625rem, 1.2vw, 0.75rem);
}
.aioseo-breadcrumbs span.aioseo-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}
.aioseo-breadcrumbs span.aioseo-breadcrumb-separator {
  color: var(--color-text-off);
  margin: 0 0.5em;
}

/* content
========================================================= */
.l-content {
  padding: 90px 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-content {
    padding: 0 0 4rem;
  }
}
body.home .l-content {
  padding: 0;
  margin: 0;
  width: auto;
}

/* footer
========================================================= */
.l-footer {
  padding: 60px 0 30px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0 20px;
  }
}

.l-footer__inner {
  background-color: var(--color-bg-blue);
  text-align: center;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-bottom: 3rem;
  }
}

.l-footer__logo {
  background-image: url("./assets/images/footer_logo_bg.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 290px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 174px;
    height: 60px;
  }
}
.l-footer__logo img {
  width: 120px;
  position: absolute;
  top: -60px;
  left: calc(50% - 60px);
}
@media screen and (max-width: 767px) {
  .l-footer__logo img {
    width: 80px;
    top: -50px;
    left: calc(50% - 40px);
  }
}

.l-footer__site-name {
  color: var(--color-primary);
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 900;
  font-size: var(--font-lg);
  margin-top: 1.5rem;
}

.l-footer__list {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.l-footer__list li {
  text-align: center;
  margin: 0 1em;
  font-size: var(--font-sm);
}
.l-footer__list li a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}
.l-footer__list li a::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f138";
  margin-left: 0.25em;
}

.l-footer__copy {
  color: #888;
  font-size: clamp(9px, 2.821vw, 0.75rem);
  font-weight: 300;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: clamp(0.625rem, 1.271vw, 0.6875rem);
    margin-top: 1.5rem;
  }
}

.l-pagetop {
  bottom: 15px;
  position: fixed;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-pagetop {
    bottom: 60px;
    right: 0;
  }
}
.l-pagetop a {
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 50% 0 0 50%;
  color: #fff;
  display: flex;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .l-pagetop a {
    height: 60px;
    width: 60px;
  }
}
.l-pagetop a i {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .l-pagetop a i {
    font-size: 20px;
  }
}
.l-pagetop a::before {
  background-color: rgba(44, 54, 66, 0.5);
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  border-radius: 50% 0 0 50%;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  mix-blend-mode: overlay;
  transition: all 0.3s ease;
}
.l-pagetop a:hover::before {
  opacity: 1;
}

/*
======================================================
  pnav
--------------------------------------------------- */
.pnav {
  border-bottom: 1px solid var(--color-border-gray);
  border-top: 1px solid var(--color-border-gray);
  margin: 50px auto 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pnav {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 768px) {
  ul.pnav__list {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  ul.pnav__list li {
    width: 49.9%;
  }
}
ul.pnav__list li a {
  display: block;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  text-decoration: none;
  color: var(--color-primary);
  font-size: var(--font-sm);
}
ul.pnav__list li a::before {
  display: inline-block;
  font: var(--fa-font-solid);
  position: absolute;
  top: calc(50% - 7px);
  font-size: var(--font-base);
}
@media screen and (max-width: 767px) {
  ul.pnav__list li.pnav__list-previous.no {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  ul.pnav__list li.pnav__list-previous.no + li.pnav__list-next {
    border-top: none;
  }
}
ul.pnav__list li.pnav__list-previous a {
  padding: 1em 1em 1em 1.75em;
}
ul.pnav__list li.pnav__list-previous a::before {
  content: "\f137";
  left: 0;
}
ul.pnav__list li.pnav__list-next {
  text-align: right;
}
@media screen and (min-width: 768px) {
  ul.pnav__list li.pnav__list-next {
    border-left: 1px solid var(--color-border-gray);
  }
}
@media screen and (max-width: 767px) {
  ul.pnav__list li.pnav__list-next {
    border-top: 1px solid var(--color-border-gray);
  }
  ul.pnav__list li.pnav__list-next.no {
    border-top: none;
  }
}
ul.pnav__list li.pnav__list-next a {
  padding: 1em 1.75em 1em 1em;
}
ul.pnav__list li.pnav__list-next a::before {
  content: "\f138";
  right: 0;
}
@media screen and (min-width: 768px) {
  body.single-forums ul.pnav__list li.pnav__list-next {
    border-left: 1px solid rgb(var(--color-text-main), 0.2);
  }
}
@media screen and (max-width: 767px) {
  body.single-forums ul.pnav__list li.pnav__list-next {
    border-top: 1px solid rgb(var(--color-text-main), 0.2);
  }
  body.single-forums ul.pnav__list li.pnav__list-next.no {
    border-top: none;
  }
}

:root {
  --ww: calc(var(--vw) * 100);
  --wh: calc(var(--vh) * 100);
  --vw: calc(100vw / 100);
  --vh: calc(100vh / 100);
  --scrollbar-width: 0px;
}

.sp-br {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
    height: 1px;
    width: 100%;
  }
}

/* front
========================================================= */
.l-fv {
  position: relative;
  top: 90px;
  width: calc(100% - 40px);
  margin: 0 auto 5rem;
}
@media screen and (max-width: 1024px) {
  .l-fv {
    aspect-ratio: 1000/700;
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-fv {
    aspect-ratio: 370/550;
    width: calc(100% - 24px);
    top: 12px;
    margin: 0 auto 3rem;
  }
}

.l-fv__site-name {
  background-color: #fff;
  border-radius: 0 0 20px;
  height: 130px;
  text-align: center;
  width: 145px;
  position: absolute;
  z-index: 4;
  top: -70px;
  left: 0;
}
.l-fv__site-name img {
  margin: 0 auto;
  width: 100px;
}
@media screen and (max-width: 1024px) {
  .l-fv__site-name {
    height: 12vw;
    width: 14%;
  }
  .l-fv__site-name img {
    margin: 0 auto;
    width: 66%;
  }
}
@media screen and (max-width: 767px) {
  .l-fv__site-name {
    height: 74px;
    width: 70px;
    top: 0;
    border-radius: 0 0 10px;
  }
  .l-fv__site-name img {
    margin: 0 auto 0 0;
    width: 86%;
  }
}

.l-fv__inner {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.l-fv__inner.is-ready {
  visibility: visible;
}
@media screen and (min-width: 1025px) {
  .l-fv__inner {
    width: 1000px;
    left: calc(50% - 500px);
    height: 700px;
  }
}
.l-fv__inner > * {
  position: absolute;
}

.l-fv__bg {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-fv__bg {
    background-image: url("./assets/images/bg_fv_pc@2x.png");
  }
}
@media screen and (max-width: 767px) {
  .l-fv__bg {
    background-image: url("./assets/images/bg_fv_sp@2x.png");
  }
}

.p-ufo__mask {
  left: calc(50% - 104px);
  top: 133px;
  position: relative;
  aspect-ratio: 208/324;
  width: 208px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-ufo__mask {
    width: 150px;
    left: calc(50% - 75px);
    top: 30%;
  }
}

.p-ufo {
  position: absolute;
  height: 100%;
  width: 100%;
}

.p-machine {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
}

.p-catcher__mask {
  position: relative;
  width: 54px;
  left: calc(50% - 27px);
  z-index: 1;
  height: 129px;
  overflow: hidden;
  top: 37px;
}
@media screen and (max-width: 767px) {
  .p-catcher__mask {
    width: 39px;
    height: 94px;
    left: calc(50% - 19.5px);
    top: 26px;
  }
}

.p-catcher__move {
  position: absolute;
  top: -30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-catcher__move {
    top: -60%;
  }
}

.p-catcher__move-inner {
  position: relative;
}

.p-catcher__pole {
  width: 28px;
  position: absolute;
  aspect-ratio: 28/111;
  left: calc(50% - 14px);
  top: -30px;
}
@media screen and (max-width: 767px) {
  .p-catcher__pole {
    width: 20px;
    top: -37%;
    left: calc(50% - 10px);
  }
}

.p-catcher__arm-left {
  position: absolute;
  left: 0;
  top: 72px;
  aspect-ratio: 29/26;
  width: 29px;
}
@media screen and (max-width: 767px) {
  .p-catcher__arm-left {
    width: 22px;
    top: 72px;
  }
}

.p-catcher__arm-right {
  position: absolute;
  aspect-ratio: 29/26;
  right: 0;
  width: 29px;
  top: 72px;
}
@media screen and (max-width: 767px) {
  .p-catcher__arm-right {
    width: 22px;
    top: 72px;
  }
}

.p-catcher__capsule {
  position: absolute;
  top: 100px;
  width: 40px;
  left: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .p-catcher__capsule {
    width: 29px;
    left: calc(50% - 14.5px);
    top: 72px;
  }
}

.p-capsule {
  left: calc(50% - 71px);
  position: absolute;
  top: 40.14%;
  width: 142px;
}
@media screen and (max-width: 767px) {
  .p-capsule {
    top: 50%;
  }
}

.p-capsule__inner {
  position: relative;
}

.p-capsule__top {
  left: calc(50% - 68px);
  position: absolute;
  top: 0;
  width: 136px;
  transform-origin: left bottom;
}

.p-capsule__bottom {
  left: calc(50% - 71px);
  position: absolute;
  top: 65px;
  width: 142px;
}

.p-capsule__text-1,
.p-capsule__text-2,
.p-machine__text-1,
.p-machine__text-2 {
  color: var(--color-primary);
  font-weight: 900;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 36px;
  position: absolute;
  letter-spacing: 0.1em;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .p-capsule__text-1,
  .p-capsule__text-2,
  .p-machine__text-1,
  .p-machine__text-2 {
    font-size: 4.39vw;
    font-size: clamp(28px, 3.902vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .p-capsule__text-1,
  .p-capsule__text-2,
  .p-machine__text-1,
  .p-machine__text-2 {
    font-size: 7.179vw;
    width: 70%;
    left: 15%;
    transform: translateX(0%);
    top: 20%;
  }
}
.p-capsule__text-1 span,
.p-capsule__text-2 span,
.p-machine__text-1 span,
.p-machine__text-2 span {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .p-capsule__text-1 {
    width: 68%;
    left: 16%;
  }
}

@media screen and (max-width: 767px) {
  .p-capsule__text-2 {
    width: 52%;
    left: 24%;
  }
}

.p-capsule__text-2,
.p-machine__text-2 {
  top: 23%;
}
@media screen and (max-width: 767px) {
  .p-capsule__text-2,
  .p-machine__text-2 {
    top: 28%;
  }
}

@media screen and (max-width: 767px) {
  .p-machine__text-1 {
    width: 34%;
    left: 33%;
  }
}

@media screen and (max-width: 767px) {
  .p-machine__text-2 {
    width: 59%;
    left: 20.5%;
  }
}

.p-scroll__machine-wrap {
  overflow: hidden visible;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  margin-top: -24px;
  padding-top: 24px;
  top: -70px;
}
@media screen and (max-width: 1024px) {
  .p-scroll__machine-wrap {
    top: -120px;
  }
}
@media screen and (max-width: 767px) {
  .p-scroll__machine-wrap {
    top: -10px;
  }
}

.p-scroll__machine-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.p-scroll__machine-set {
  display: flex;
  gap: clamp(16px, 5vw, 48px);
  width: max-content;
  margin-right: clamp(16px, 5vw, 48px);
}

.p-scroll__machine-item {
  flex: 0 0 auto;
  width: clamp(104px, 16vw, 10vw);
  will-change: transform, opacity;
}
@media screen and (min-width: 1280px) {
  .p-scroll__machine-item {
    width: clamp(104px, 16vw, 170px);
  }
}
.p-scroll__machine-item img {
  display: block;
  width: 100%;
  height: auto;
}

.p-fv__under-text {
  color: var(--color-primary);
  font-weight: 900;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 79%;
}

/* front
========================================================= */
.p-possible {
  margin: 0 auto;
  width: 100%;
  padding-top: 5rem;
}
@media screen and (min-width: 1025px) {
  .p-possible {
    width: 1024px;
  }
}
@media screen and (max-width: 1024px) {
  .p-possible {
    padding: 4rem var(--space-xs) 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-possible {
    padding-top: 2rem;
  }
}

.p-possible__inner {
  border: 1px solid var(--color-border-gray);
  padding: 0 0 2rem;
}
@media screen and (max-width: 1024px) {
  .p-possible__inner {
    padding: 0;
  }
}

.p-possible__ttl {
  text-align: center;
  background-color: #fff;
  width: 240px;
  margin: -1.5rem auto 2rem;
}
@media screen and (max-width: 767px) {
  .p-possible__ttl {
    margin: -1.2rem auto 1rem;
    width: 48%;
  }
}
.p-possible__ttl img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-possible__ttl img {
    width: 84%;
  }
}

.p-possible__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-possible__list {
    width: 92%;
    margin: 0 auto 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-possible__list {
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-possible__list > li {
    width: 25%;
  }
  .p-possible__list > li:not(:first-child) {
    border-left: 1px solid var(--color-border-gray);
  }
}
@media screen and (max-width: 1024px) {
  .p-possible__list > li {
    width: 50%;
    padding: 2rem 0;
  }
  .p-possible__list > li:nth-child(even) {
    border-left: 1px solid var(--color-border-gray);
  }
  .p-possible__list > li:nth-of-type(3), .p-possible__list > li:nth-of-type(4) {
    border-top: 1px solid var(--color-border-gray);
  }
}

dl.p-possible__item {
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  dl.p-possible__item {
    padding: 0 0.5rem;
  }
}
dl.p-possible__item > dt {
  height: 90px;
  width: 100%;
  text-align: center;
}
dl.p-possible__item > dt img {
  margin: 0 auto;
}
dl.p-possible__item > dd {
  text-align: center;
}
dl.p-possible__item > dd .p-possible__item-name {
  color: var(--color-primary);
  font-size: var(--text-xl);
  font-weight: 900;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  dl.p-possible__item > dd .p-possible__item-name {
    font-size: var(--text-base);
  }
}
dl.p-possible__item > dd p {
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}
@media screen and (max-width: 767px) {
  dl.p-possible__item > dd p {
    font-size: 3.02vw;
  }
}
dl.p-possible__item > dd .p-possible__item-btn {
  margin-top: var(--space-sm);
}
@media screen and (max-width: 767px) {
  dl.p-possible__item > dd .p-possible__item-btn {
    margin-top: var(--space-xs);
  }
}
dl.p-possible__item > dd .p-possible__item-btn a {
  width: 180px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  dl.p-possible__item > dd .p-possible__item-btn a {
    max-width: 140px;
    width: 90%;
  }
}

.p-news {
  margin-top: 5rem;
  background: var(--gradient-blue);
}

.p-news__inner {
  width: 100%;
  padding: 52px 0 3.4rem;
  position: relative;
}

.p-news__ttl {
  text-align: center;
  position: absolute;
  top: -24px;
  left: calc(50% - 121px);
}
@media screen and (max-width: 767px) {
  .p-news__ttl {
    width: 230px;
    top: -19px;
  }
}

.p-news__inbox {
  background-color: #fff;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .p-news__inbox {
    width: 1024px;
  }
}
@media screen and (max-width: 1024px) {
  .p-news__inbox {
    width: 94%;
  }
}

.p-news__list {
  padding: 2rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    padding: 0.5rem 1.25rem;
  }
}
.p-news__list > li {
  padding: 0.45em 0;
}
@media screen and (max-width: 767px) {
  .p-news__list > li {
    padding: 0.75em 0;
  }
}
.p-news__list > li:not(:last-child) {
  border-bottom: 2px dotted var(--color-border-gray);
}
.p-news__list > li a {
  color: var(--color-primary);
  text-decoration: underline;
}

.p-news__item {
  display: flex;
  flex-wrap: wrap;
}
.p-news__item > dt {
  font-size: var(--text-sm);
  width: 110px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-news__item > dt {
    width: 100%;
    line-height: 1.6;
  }
}
.p-news__item > dd {
  line-height: 1.6;
  font-weight: 700;
  flex: 1;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-news__item > dd {
    width: 100%;
  }
}
.p-news__item > dd .p-news__new {
  font-size: var(--space-xs);
  font-weight: 700;
  color: #e60012;
  margin-left: 0.2em;
}

.is-blinking {
  animation: blink 0.8s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-recruit__ttl {
  text-align: center;
}
.p-recruit__ttl img {
  width: 518px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__ttl img {
    width: 51.28%;
  }
}

.p-recruit__img {
  text-align: center;
}
.p-recruit__img img {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__img img {
    width: 89.74%;
  }
}

.p-recruit {
  padding: 5rem 0;
}
@media screen and (max-width: 1024px) {
  .p-recruit {
    padding: 4rem 0 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding: 4rem 0 5rem;
  }
}

.p-recruit__inner {
  background-image: url("./assets/images/front_recruit_bg@2x.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-recruit__ttl {
  margin-bottom: 2rem;
}

.p-recruit__btn {
  width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__btn {
    margin: 1rem auto 0;
  }
}

/* products
========================================================= */
.c-products__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-products__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.88vw;
    padding-top: 1.25rem;
  }
}
.c-products__list li a {
  text-decoration: none;
}

a dl.c-products__item dt figure img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
}
a dl.c-products__item dd {
  margin-top: 0.75rem;
}
a dl.c-products__item dd .c-products__item-ttl {
  font-weight: 700;
  font-size: var(--font-sm);
  color: var(--color-text-main);
}

.c-products {
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 1025px) {
  .c-products {
    width: 1000px;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .c-products {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-products {
    padding: 0 1.5rem;
  }
}

.c-products__main {
  padding-bottom: 2rem;
}
@media screen and (min-width: 1025px) {
  .c-products__main {
    width: 680px;
  }
}

.c-product__side {
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .c-product__side {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .c-product__side {
    width: 100%;
    margin-top: 3rem;
  }
}

.c-products-header {
  position: relative;
  padding: 0 0 0 1.5rem;
}
.c-products-header::before {
  content: "";
  display: block;
  width: 6px;
  border-radius: 3px;
  position: absolute;
  left: 0;
  height: 100%;
  background: var(--gradient-green-p);
}
.c-products-header > p {
  font-weight: 700;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  border-bottom: 1px solid var(--color-border-gray);
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .c-products-header > p {
    font-size: var(--font-sm);
  }
}
.c-products-header .c-products-header__ttl {
  font-weight: 900;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  padding: 0.5em 0 0;
}
@media screen and (max-width: 767px) {
  .c-products-header .c-products-header__ttl {
    font-size: var(--font-xl);
  }
}

.c-products__poster {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-products__poster {
    margin-top: 2.5rem;
  }
}

.c-products__content {
  padding-top: 1.8em;
}
.c-products__content p {
  line-height: 1.8;
}
.c-products__content p + p {
  padding-top: 0.1 0.6em;
}

.c-products__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 2rem;
  border: 1px solid var(--color-border-gray);
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .c-products__gallery {
    gap: 3.88vw;
    margin-top: 5vw;
    padding: 1rem;
  }
}
.c-products__gallery a.glightbox figure {
  position: relative;
  aspect-ratio: 1/1;
  margin: 0;
}
.c-products__gallery a.glightbox figure img {
  position: absolute;
  top: 0;
  z-index: 1;
}
.c-products__gallery a.glightbox figure i {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  color: var(--color-text-main);
  font-size: 18px;
}

.c-product__post-name {
  text-align: center;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
}
.c-product__post-name::before {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  left: calc(50% - 60px);
  bottom: -0.5em;
  background: var(--gradient-green);
}

.c-product__archive-list {
  margin-top: 2rem;
}
.c-product__archive-list li {
  border-bottom: 1px solid var(--color-border-gray);
}
.c-product__archive-list li a {
  text-decoration: none;
  display: block;
  padding: 0.75em 0;
  font-weight: 700;
  font-size: var(--font-sm);
  line-height: 1.5;
}

/* heading
========================================================= */
.wp-block-heading {
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 900;
}

.wp-block-heading.is-style-c-heading-h2__mds-blue, .wp-block-heading.is-style-c-heading-h2__mds-purple, .wp-block-heading.is-style-c-heading-h2__mds-yellow, .wp-block-heading.is-style-c-heading-h2__mds-pink, .wp-block-heading.is-style-c-heading-h2__mds-green {
  text-align: center;
  position: relative;
  font-size: 36px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .wp-block-heading.is-style-c-heading-h2__mds-blue, .wp-block-heading.is-style-c-heading-h2__mds-purple, .wp-block-heading.is-style-c-heading-h2__mds-yellow, .wp-block-heading.is-style-c-heading-h2__mds-pink, .wp-block-heading.is-style-c-heading-h2__mds-green {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-heading.is-style-c-heading-h2__mds-blue, .wp-block-heading.is-style-c-heading-h2__mds-purple, .wp-block-heading.is-style-c-heading-h2__mds-yellow, .wp-block-heading.is-style-c-heading-h2__mds-pink, .wp-block-heading.is-style-c-heading-h2__mds-green {
    font-size: 28px;
  }
}
.wp-block-heading.is-style-c-heading-h2__mds-blue:not(:first-child), .wp-block-heading.is-style-c-heading-h2__mds-purple:not(:first-child), .wp-block-heading.is-style-c-heading-h2__mds-yellow:not(:first-child), .wp-block-heading.is-style-c-heading-h2__mds-pink:not(:first-child), .wp-block-heading.is-style-c-heading-h2__mds-green:not(:first-child) {
  margin-top: 6rem;
}
.wp-block-heading.is-style-c-heading-h2__mds-blue::before, .wp-block-heading.is-style-c-heading-h2__mds-purple::before, .wp-block-heading.is-style-c-heading-h2__mds-yellow::before, .wp-block-heading.is-style-c-heading-h2__mds-pink::before, .wp-block-heading.is-style-c-heading-h2__mds-green::before {
  content: "";
  display: block;
  width: 120px;
  height: 6px;
  border-radius: 3px;
  position: absolute;
  left: calc(50% - 60px);
  bottom: -0.5em;
}
.wp-block-heading.is-style-c-heading-h2__mds-blue + *, .wp-block-heading.is-style-c-heading-h2__mds-purple + *, .wp-block-heading.is-style-c-heading-h2__mds-yellow + *, .wp-block-heading.is-style-c-heading-h2__mds-pink + *, .wp-block-heading.is-style-c-heading-h2__mds-green + * {
  margin-top: 4rem;
}
.wp-block-heading.is-style-c-heading-h2__mds-blue::before {
  background: var(--gradient-blue);
}
.wp-block-heading.is-style-c-heading-h2__mds-purple::before {
  background: var(--gradient-purple);
}
.wp-block-heading.is-style-c-heading-h2__mds-yellow::before {
  background: var(--gradient-yellow);
}
.wp-block-heading.is-style-c-heading-h2__mds-pink::before {
  background: var(--gradient-pink);
}
.wp-block-heading.is-style-c-heading-h2__mds-green::before {
  background: var(--gradient-green);
}

.wp-block-heading.is-style-c-heading-h3__mds-blue, .wp-block-heading.is-style-c-heading-h3__mds-purple, .wp-block-heading.is-style-c-heading-h3__mds-yellow, .wp-block-heading.is-style-c-heading-h3__mds-pink, .wp-block-heading.is-style-c-heading-h3__mds-green {
  position: relative;
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-top: 4rem;
  padding-left: 1.2em;
}
@media screen and (max-width: 767px) {
  .wp-block-heading.is-style-c-heading-h3__mds-blue, .wp-block-heading.is-style-c-heading-h3__mds-purple, .wp-block-heading.is-style-c-heading-h3__mds-yellow, .wp-block-heading.is-style-c-heading-h3__mds-pink, .wp-block-heading.is-style-c-heading-h3__mds-green {
    font-size: 22px;
  }
}
.wp-block-heading.is-style-c-heading-h3__mds-blue::before, .wp-block-heading.is-style-c-heading-h3__mds-purple::before, .wp-block-heading.is-style-c-heading-h3__mds-yellow::before, .wp-block-heading.is-style-c-heading-h3__mds-pink::before, .wp-block-heading.is-style-c-heading-h3__mds-green::before {
  content: "";
  display: block;
  width: 6px;
  border-radius: 3px;
  position: absolute;
  left: 0;
  height: 100%;
}
.wp-block-heading.is-style-c-heading-h3__mds-blue::before {
  background: var(--gradient-blue-p);
}
.wp-block-heading.is-style-c-heading-h3__mds-purple::before {
  background: var(--gradient-purple-p);
}
.wp-block-heading.is-style-c-heading-h3__mds-yellow::before {
  background: var(--gradient-yellow-p);
}
.wp-block-heading.is-style-c-heading-h3__mds-pink::before {
  background: var(--gradient-pink-p);
}
.wp-block-heading.is-style-c-heading-h3__mds-green::before {
  background: var(--gradient-green-p);
}

.wp-block-heading.is-style-c-heading-h3__mds-yellow-power, .wp-block-heading.is-style-c-heading-h3__mds-pink-power {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .wp-block-heading.is-style-c-heading-h3__mds-yellow-power, .wp-block-heading.is-style-c-heading-h3__mds-pink-power {
    font-size: 22px;
  }
}
.wp-block-heading.is-style-c-heading-h3__mds-yellow-power::before, .wp-block-heading.is-style-c-heading-h3__mds-yellow-power::after, .wp-block-heading.is-style-c-heading-h3__mds-pink-power::before, .wp-block-heading.is-style-c-heading-h3__mds-pink-power::after {
  content: "";
  width: 36px;
  height: 2px;
}
.wp-block-heading.is-style-c-heading-h3__mds-yellow-power::before, .wp-block-heading.is-style-c-heading-h3__mds-pink-power::before {
  transform: rotate(60deg);
}
.wp-block-heading.is-style-c-heading-h3__mds-yellow-power::after, .wp-block-heading.is-style-c-heading-h3__mds-pink-power::after {
  transform: rotate(-60deg);
}
.wp-block-heading.is-style-c-heading-h3__mds-yellow-power {
  color: var(--color-orange);
}
.wp-block-heading.is-style-c-heading-h3__mds-yellow-power::before, .wp-block-heading.is-style-c-heading-h3__mds-yellow-power::after {
  background-color: var(--color-orange);
}
.wp-block-heading.is-style-c-heading-h3__mds-pink-power {
  color: var(--color-pink);
}
.wp-block-heading.is-style-c-heading-h3__mds-pink-power::before, .wp-block-heading.is-style-c-heading-h3__mds-pink-power::after {
  background-color: var(--color-pink);
}

.wp-block-heading.is-style-c-heading__mds-h-line {
  display: flex;
  align-items: center;
  gap: 10px; /* テキストと線の間 */
  font-weight: 700;
  font-size: var(--font-lg);
}
.wp-block-heading.is-style-c-heading__mds-h-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #999;
}
.wp-block-heading.is-style-c-heading__mds-h-line .number-circle__blue,
.wp-block-heading.is-style-c-heading__mds-h-line .number-circle__pink {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  font-size: 0.9em;
}
.wp-block-heading.is-style-c-heading__mds-h-line .number-circle__blue {
  background: var(--gradient-blue-p);
}
.wp-block-heading.is-style-c-heading__mds-h-line .number-circle__pink {
  background: var(--gradient-pink-p);
}

/* group
========================================================= */
.wp-block-group.c-simple-table {
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--color-border-gray);
}
.wp-block-group.c-simple-table.is-layout-constrained > * {
  margin-block-start: 0;
}
.wp-block-group.c-simple-table__row {
  display: grid;
  gap: 0;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3.5fr);
  border-bottom: 1px solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .wp-block-group.c-simple-table__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.8fr);
  }
}
.wp-block-group.c-simple-table__cell {
  font-size: 15px;
  line-height: 1.6;
  padding: 1.2em 1em;
}
@media screen and (max-width: 767px) {
  .wp-block-group.c-simple-table__cell {
    padding: 0.8em 0;
  }
}
.wp-block-group.c-simple-table__cell.c-simple-table__head {
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .wp-block-group.c-simple-table__cell.c-simple-table__head {
    padding: 0.8em 0.5em 0.8em 0;
  }
}
.wp-block-group.c-simple-table__cell > * {
  margin-block-start: 12px;
}

.wp-block-group.c-googlemap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.wp-block-group.c-googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-group.c-grid-example {
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .wp-block-group.c-grid-example {
    gap: 3.36vw;
  }
}

.wp-block-group.c-grid-example__item {
  max-width: 480px;
}
.wp-block-group.c-grid-example__item .wp-block-heading {
  font-weight: 700;
  margin: 0.2em 0 0;
  line-height: 1.5;
  font-size: var(--font-base);
}
.wp-block-group.c-grid-example__item p {
  margin: 0.2em 0 0;
  line-height: 1.5;
  font-size: var(--font-sm);
}

.wp-block-group.is-style-c-group__radius {
  border-radius: 20px;
  padding: 2rem 4rem;
}
@media screen and (max-width: 767px) {
  .wp-block-group.is-style-c-group__radius {
    padding: 1.8rem 1.5rem;
  }
}
.wp-block-group.is-style-c-group__radius > p {
  line-height: 1.8;
}
.wp-block-group.is-style-c-group__radius > * {
  margin-block-start: 0;
}
.wp-block-group.is-style-c-group__radius a {
  color: var(--color-primary);
}

.wp-block-group.c-intro-txt {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .wp-block-group.c-intro-txt {
    text-align: left;
  }
}

/* list
========================================================= */
.editor-styles-wrapper .wp-block-list.is-style-c-list__dot,
.editor-styles-wrapper .wp-block-list.is-style-c-list__dot ul,
.editor-styles-wrapper .wp-block-list.is-style-c-list__kome,
.editor-styles-wrapper .wp-block-list.is-style-c-list__kome ul {
  list-style: none;
}

.editor-styles-wrapper .wp-block-list.is-style-c-list__dot li,
.editor-styles-wrapper .wp-block-list.is-style-c-list__kome li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
}

.editor-styles-wrapper .wp-block-list.is-style-c-list__dot li::marker,
.editor-styles-wrapper .wp-block-list.is-style-c-list__kome li::marker {
  content: "";
}

.wp-block-list.is-style-c-list__dot {
  list-style-type: none;
}
.wp-block-list.is-style-c-list__dot > li {
  line-height: 1.6;
  list-style-type: none;
  padding: 0.15em 0 0.15em 1em;
  position: relative;
}
.wp-block-list.is-style-c-list__dot > li::before {
  background-color: var(--color-text-main);
  border-radius: 50%;
  content: "";
  display: block;
  height: 5px;
  left: 0.15em;
  position: absolute;
  top: 0.75em;
  width: 5px;
}

.wp-block-list.is-style-c-list__kome {
  list-style-type: none;
}
.wp-block-list.is-style-c-list__kome > li {
  line-height: 1.6;
  list-style-type: none;
  padding: 0.15em 0 0.15em 1.15em;
  position: relative;
}
.wp-block-list.is-style-c-list__kome > li::before {
  content: "※";
  display: block;
  left: 0;
  position: absolute;
  top: 0.15em;
}
.wp-block-group.c-simple-table__cell .wp-block-list.is-style-c-list__kome > li {
  padding: 0.1em 0 0.1em 1.15em;
}
.wp-block-group.c-simple-table__cell .wp-block-list.is-style-c-list__kome > li::before {
  top: 0.1em;
}

.wp-block-list.has-background {
  border-radius: 20px;
}

/* columns
========================================================= */
.wp-block-columns.c-column-example {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .wp-block-columns.c-column-example {
    gap: 0;
  }
}
.wp-block-columns.c-column-example .wp-block-list li {
  font-weight: 700;
  line-height: 1.6;
  padding: 0.1em 0 0.1em 1em;
  position: relative;
}
.wp-block-columns.c-column-example .wp-block-list li::before {
  background-color: var(--color-purple);
  border-radius: 50%;
  content: "";
  display: block;
  height: 5px;
  left: 0.15em;
  position: absolute;
  top: 0.75em;
  width: 5px;
}

/* details
========================================================= */
.wp-block-details.c-details-faq summary {
  font-weight: 700;
}

.wp-block-details.c-details-faq.is-layout-flow {
  background-color: #fff;
  border: 1px solid var(--color-border-gray);
  border-radius: 4px;
  margin-bottom: 12px;
  margin-top: 1rem;
  overflow: hidden;
}
.wp-block-details.c-details-faq.is-layout-flow > summary {
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: 1.6;
  list-style: none; /* デフォルトの▼マークを消す（ブラウザによる） */
  padding: 0.8em 3em;
  position: relative;
  transition: all 0.3s ease;
}
.wp-block-details.c-details-faq.is-layout-flow > summary::-webkit-details-marker {
  display: none;
}
.wp-block-details.c-details-faq.is-layout-flow > summary:hover {
  background-color: #f7f7f7;
}
.wp-block-details.c-details-faq.is-layout-flow > summary::before {
  background: var(--gradient-purple-p);
  border-radius: 50%;
  color: #fff;
  content: "Q";
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 900;
  font-size: 14px;
  height: 24px;
  left: 1em;
  line-height: 22px;
  position: absolute;
  text-align: center;
  top: 1em;
  width: 24px;
}
.wp-block-details.c-details-faq.is-layout-flow > summary::after {
  display: inline-block;
  font: var(--fa-font-solid);
  color: var(--color-purple);
  content: "+";
  font-size: 1.1em;
  font-weight: 700;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.wp-block-details.c-details-faq.is-layout-flow > .wp-block-group.is-layout-constrained {
  margin-block-start: 0;
}
.wp-block-details.c-details-faq.is-layout-flow > .wp-block-group.is-layout-constrained p + p {
  margin-top: 1.6em;
}
.wp-block-details > *:not(summary) {
  padding: 1.25rem 1.5rem 1.5rem;
}
.wp-block-details.c-details-faq[open] summary::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f068";
}

/* btn
========================================================= */
.wp-block-button.is-style-c-button__arrow-right .wp-block-button__link {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: var(--font-base);
  font-weight: 900;
  justify-content: center;
  line-height: 1.2;
  text-decoration: none;
  padding-right: calc(2em + 2px);
  padding-left: calc(1.6em + 2px);
  position: relative;
  overflow: hidden;
}
.wp-block-button.is-style-c-button__arrow-right .wp-block-button__link::before {
  background-color: rgba(44, 54, 66, 0.5);
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  mix-blend-mode: overlay;
  transition: all 0.3s ease;
}
.wp-block-button.is-style-c-button__arrow-right .wp-block-button__link::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f138";
  display: block;
  position: absolute;
  right: 10px;
}
.wp-block-button.is-style-c-button__arrow-right .wp-block-button__link:hover::before {
  opacity: 1;
}

/* form
========================================================= */
.editor-styles-wrapper .smf-item:not(:first-child) {
  margin-top: 0 !important;
}

.smf-form,
.c-page-content .smf-form {
  margin-top: 3rem;
}

.smf-form .smf-text-control__control,
.c-page-content .smf-form .smf-text-control__control {
  padding: 0.5rem 1rem;
  width: 60%;
}
.smf-form .smf-text-control__control.input-addr,
.c-page-content .smf-form .smf-text-control__control.input-addr {
  width: 100%;
}
.smf-form .smf-text-control__control.input-postcode,
.c-page-content .smf-form .smf-text-control__control.input-postcode {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-text-control__control,
  .c-page-content .smf-form .smf-text-control__control {
    width: 100%;
    max-width: 100%;
  }
  .smf-form .smf-text-control__control.input-postcode,
  .c-page-content .smf-form .smf-text-control__control.input-postcode {
    width: 50%;
  }
}

.smf-form .smf-select-control__control,
.c-page-content .smf-form .smf-select-control__control {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-select-control__control,
  .c-page-content .smf-form .smf-select-control__control {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .smf-item__controls,
  .smf-text-control__control {
    max-width: 100%;
  }
}

input[type=date].smf-text-control__control {
  display: block;
  inline-size: 100%;
  appearance: none;
}

.wp-block-snow-monkey-forms-item {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
  border-top: 1px solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .wp-block-snow-monkey-forms-item {
    display: block;
  }
}

.smf-item__col {
  padding: 0.75rem 1rem;
}
@media screen and (max-width: 767px) {
  .smf-item__col {
    padding: 0.75rem 0 1.5rem;
  }
}
.smf-item__col.smf-item__col--label {
  background-color: var(--color-bg-gray);
}
@media screen and (max-width: 767px) {
  .smf-item__col.smf-item__col--label {
    padding: 0.5rem 1rem;
  }
}
.smf-item__col.smf-item__col--label .smf-item__label {
  display: inline-block;
  font-weight: 700;
}
.smf-item__col.smf-item__col--label .smf-item__description {
  display: inline-block;
  background-color: var(--color-orange);
  color: #fff;
  font-size: var(--font-xs);
  padding: 0.2em 0.5em 0.25em;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.3rem;
  position: relative;
  top: -0.15em;
}

.smf-action {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.smf-action button.smf-button-control__control {
  align-items: center;
  flex-wrap: wrap;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  background: var(--gradient-blue);
  color: #fff;
  border: none;
  padding-right: 3em;
  padding-left: 3em;
  height: 60px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .smf-action button.smf-button-control__control {
    padding-right: 1em;
    padding-left: 1em;
  }
}

.wp-block-group.smf-privacypolicy {
  padding-top: 3rem;
  text-align: center;
  border-top: 1px solid var(--color-border-gray);
}
.wp-block-group.smf-privacypolicy p {
  margin-top: 0.75em;
}

.smf-form .wp-block-group.p-contact__intro {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .smf-form .wp-block-group.p-contact__intro {
    display: block;
  }
}
.smf-form .wp-block-group.p-contact__intro .p-contact__intro-txt {
  line-height: 1.8;
}
.smf-form .wp-block-group.p-contact__intro .p-contact__intro-tel {
  margin-top: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .smf-form .wp-block-group.p-contact__intro .p-contact__intro-tel {
    margin-top: 1.5rem;
  }
}
.smf-form .wp-block-group.p-contact__intro .p-contact__intro-tel small {
  display: block;
  color: var(--color-primary);
  font-size: var(--font-sm);
  font-weight: 700;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  letter-spacing: 0;
}
.smf-form .wp-block-group.p-contact__intro .p-contact__intro-tel strong {
  color: var(--color-primary);
  font-weight: 900;
  font-family: "GenJyuuGothicX", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 24px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .smf-form .wp-block-group.p-contact__intro .p-contact__intro-tel strong {
    font-size: 28px;
  }
}
.smf-form .wp-block-group.p-contact__intro .p-contact__intro-tel strong::before {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f095";
  margin-right: 0.3em;
}

.smf-progress-tracker {
  margin-top: 4rem;
}

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