/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  -ms-touch-action: none;
      touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: -ms-grid;
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  -webkit-transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10;
  /* always overlap slide content */
  pointer-events: none;
  /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  -webkit-transition: none;
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-animation: pswp-clockwise 600ms linear infinite;
          animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@-webkit-keyframes pswp-clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes pswp-clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}
@charset "UTF-8";
/*
 * :root
 */
:root {
  --header-logo-height: 18px;
  --post-thumbnail-ratio: 16 / 9;
  --product-thumbnail-ratio: 1 / 1;
  --header-bg: rgba(255,255,255, 0);
  --header-color: #000000;
  --footer-bg: rgba(255,255,255, 1);
  --footer-color: #000000;
  --drawer-bg: rgba(255,255,255, 1);
  --drawer-bg-blur: rgba(255,255,255, .5);
  --drawer-color: #000000;
  --body-bg: #ffffff;
  --body-color: #000000;
  --size-golden: 61.805;
  --size-silver: 70.721;
  --fz-base: 1rem;
  /* = 14px (SP) / 12px (PC) */
  --fz-small: 0.857rem;
  /* ≈ 12px (SP) / 10.3px (PC) */
  --fz-h1: 2.25rem;
  /* = 31.5px (SP) / 27px (PC) */
  --fz-h2: 2rem;
  /* = 28px (SP) / 24px (PC) */
  --fz-h3: 1.75rem;
  /* = 24.5px (SP) / 21px (PC) */
  --fz-h4: 1.5rem;
  /* = 21px (SP) / 18px (PC) */
  --fz-h5: 1.25rem;
  /* = 17.5px (SP) / 15px (PC) */
  --fz-h6: 1rem;
  /* = 14px (SP) / 12px (PC) */
}

/*
 * Color
 */
/*
 * Font
 */
/*
 * Layout
 */
/*
 * Style
 */
/*
 * Usual
 */
@-webkit-keyframes example {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes example {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > * {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }

  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }

  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }

  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }

  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }

  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
:root,
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm,
.row {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 60px;
}
@media (max-width: 575.98px) {
  :root,
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm,
.row {
    --bs-gutter-x: calc( 60px * .5 );
    --bs-gutter-y: calc( 60px * .5 );
  }
}

.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  padding-left: var(--bs-gutter-x);
  padding-right: var(--bs-gutter-x);
}

/* html5doctor.com Reset Stylesheet v1.6.1 + custom */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-font-feature-settings: "halt";
          font-feature-settings: "halt";
}

body {
  line-height: 1.5;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

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

html {
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

#wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  position: relative;
}
#wrapper footer {
  margin-top: auto;
}

section {
  padding: var(--bs-gutter-x) 0;
}
section .section-head {
  margin-bottom: calc( var(--bs-gutter-x) / 2 );
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
section .section-head div + div {
  margin-left: auto;
}
section .section-foot {
  margin-top: var(--bs-gutter-x);
}

.col-xs-golden-1 {
  width: calc(100% - var(--size-golden) * 1%);
  width: calc( 100% - var(--size-golden) * 1% - calc(var(--bs-gutter-x) / 2) );
}

.col-xs-golden-2 {
  width: calc(var(--size-golden) * 1%);
  width: calc( var(--size-golden) * 1% + calc(var(--bs-gutter-x) / 2) );
}

@media (min-width: 576px) {
  .col-sm-golden-1 {
    width: calc(100% - var(--size-golden) * 1%);
    width: calc( 100% - var(--size-golden) * 1% - calc(var(--bs-gutter-x) / 2) );
  }

  .col-sm-golden-2 {
    width: calc(var(--size-golden) * 1%);
    width: calc( var(--size-golden) * 1% + calc(var(--bs-gutter-x) / 2) );
  }
}
@media (min-width: 768px) {
  .col-md-golden-1 {
    width: calc(100% - var(--size-golden) * 1%);
    width: calc( 100% - var(--size-golden) * 1% - calc(var(--bs-gutter-x) / 2) );
  }

  .col-md-golden-2 {
    width: calc(var(--size-golden) * 1%);
    width: calc( var(--size-golden) * 1% + calc(var(--bs-gutter-x) / 2) );
  }
}
@media (min-width: 992px) {
  .col-lg-golden-1 {
    width: calc(100% - var(--size-golden) * 1%);
    width: calc( 100% - var(--size-golden) * 1% - calc(var(--bs-gutter-x) / 2) );
  }

  .col-lg-golden-2 {
    width: calc(var(--size-golden) * 1%);
    width: calc( var(--size-golden) * 1% + calc(var(--bs-gutter-x) / 2) );
  }
}
@media (min-width: 1200px) {
  .col-xl-golden-1 {
    width: calc(100% - var(--size-golden) * 1%);
    width: calc( 100% - var(--size-golden) * 1% - calc(var(--bs-gutter-x) / 2) );
  }

  .col-xl-golden-2 {
    width: calc(var(--size-golden) * 1%);
    width: calc( var(--size-golden) * 1% + calc(var(--bs-gutter-x) / 2) );
  }
}
@media (min-width: 1400px) {
  .col-xxl-golden-1 {
    width: calc(100% - var(--size-golden) * 1%);
    width: calc( 100% - var(--size-golden) * 1% - calc(var(--bs-gutter-x) / 2) );
  }

  .col-xxl-golden-2 {
    width: calc(var(--size-golden) * 1%);
    width: calc( var(--size-golden) * 1% + calc(var(--bs-gutter-x) / 2) );
  }
}
.col-golden-1 {
  width: calc( 100% - var(--size-golden) * 1% - calc(var(--bs-gutter-x) / 2) );
}

.col-golden-2 {
  width: calc( var(--size-golden) * 1% + calc(var(--bs-gutter-x) / 2) );
}

/*
 * Typo
 */
h1 {
  font-size: var(--fz-h1);
  line-height: 1;
}

h2 {
  font-size: var(--fz-h2);
  line-height: 1;
}

h3 {
  font-size: var(--fz-h3);
  line-height: 1;
}

h4 {
  font-size: var(--fz-h4);
  line-height: 1;
}

h5 {
  font-size: var(--fz-h5);
  line-height: 1;
}

h6 {
  font-size: var(--fz-h6);
  line-height: 1;
}

.wrap_jp {
  font-size: 94%;
}

/*
$form-control-button: "submit", "button";
$form-control-check: "checkbox";
$form-control-radio: "radio";
// OTHER: "file", "image", "reset", "range", "color", "hidden"
*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: #151515;
}

textarea {
  resize: vertical;
}

/*
input[type='checkbox'],
input[type='radio'] {
  display: none;
}
*/
input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* style */
select {
  background-position: center right 12px;
  background-repeat: no-repeat;
  background-size: auto 12px;
  background-image: url(../img/icon-select.svg);
  background-blend-mode: lighten;
  padding-right: 42px;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  position: relative;
  line-height: 1;
}
input[type=checkbox] + span::before {
  content: "";
  display: block;
  /*
  position: absolute;
  top: 0;
  left: 0;
  */
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  border-radius: 4px;
  margin-right: 0.5em;
}
input[type=checkbox]:checked + span {
  color: #000;
}
input[type=checkbox]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
}

.horizontal-item label {
  display: inline-block;
}
.horizontal-item label span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*
 * Button
 */
.button,
.wp-element-button {
  border-width: 2px !important;
  padding: 1em 2em !important;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  min-width: 9ch;
  background-color: var(--body-color, currentColor);
  color: var(--body-bg, #fff);
  font-weight: 500;
  border-radius: 2px;
  border-style: solid;
  border-color: transparent;
}
.button.button-outline, .button.is-style-outline,
.wp-element-button.button-outline,
.wp-element-button.is-style-outline {
  background: transparent none;
  border-color: currentColor;
  color: currentColor;
}
.button:hover,
.wp-element-button:hover {
  opacity: 0.5;
}
.button:active,
.wp-element-button:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.button.disabled, .button.is-disabled, .button.is-busy, .button[disabled], .button[aria-disabled=true],
.wp-element-button.disabled,
.wp-element-button.is-disabled,
.wp-element-button.is-busy,
.wp-element-button[disabled],
.wp-element-button[aria-disabled=true] {
  pointer-events: none;
  opacity: 0.5;
}

.button-primary {
  background-color: #800080;
  border-color: #800080;
}

.button-outline-primary {
  background: transparent none;
  border-color: #800080;
  color: #800080;
}

.button-secondary {
  background-color: #808080;
  border-color: #808080;
}

.button-outline-secondary {
  background: transparent none;
  border-color: #808080;
  color: #808080;
}

.button-success {
  background-color: #198754;
  border-color: #198754;
}

.button-outline-success {
  background: transparent none;
  border-color: #198754;
  color: #198754;
}

.button-info {
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.button-outline-info {
  background: transparent none;
  border-color: #0dcaf0;
  color: #0dcaf0;
}

.button-warning {
  background-color: #ffc107;
  border-color: #ffc107;
}

.button-outline-warning {
  background: transparent none;
  border-color: #ffc107;
  color: #ffc107;
}

.button-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.button-outline-danger {
  background: transparent none;
  border-color: #dc3545;
  color: #dc3545;
}

.button-light {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.button-outline-light {
  background: transparent none;
  border-color: #f8f9fa;
  color: #f8f9fa;
}

.button-dark {
  background-color: #212529;
  border-color: #212529;
}

.button-outline-dark {
  background: transparent none;
  border-color: #212529;
  color: #212529;
}

.button-neutral {
  background-color: #151515;
  border-color: #151515;
}

.button-outline-neutral {
  background: transparent none;
  border-color: #151515;
  color: #151515;
}

/*
 * Link
 */
.link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  font-weight: 500;
  color: var(--body-color, currentColor);
  position: relative;
  padding-bottom: 0.2em;
}
.link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--body-color, currentColor);
}

/*
 * Card
 */
.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.card img.card-image,
.card .card-image img {
  display: block;
  width: 100%;
  height: auto;
}
.card:not(.--horizontal) .card-body .post-title,
.card:not(.--horizontal) .card-body-inside .post-title {
  margin-top: 1em;
}
.card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: var(--bs-gutter-x);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.card .card-background {
  width: 100%;
  height: 100%;
}
.card .card-background * {
  display: block;
}
.card.--horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.card.--horizontal .card-image {
  width: 84px;
}
.card.--horizontal .card-body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.card.--horizontal .card-image + .card-body {
  padding: 0 0 0 calc( var(--bs-gutter-x) / 4 );
}

/*
 * List
 */
ul.list-flush {
  margin: calc( var(--bs-gutter-x) / -2 ) 0;
}
ul.list-flush > li {
  padding: calc( var(--bs-gutter-x) / 2 ) 0;
  border-bottom: 1px solid #e6e6e6;
}

ul.tag-list {
  margin: -3px;
}
ul.tag-list li {
  padding: 3px;
  display: inline-block;
}
ul.tag-list li a {
  display: block;
  color: #000;
  font-size: 14px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
  padding: 0.75em 1.5em;
  background-color: #e8e8e8;
  border: 1px solid #e8e8e8;
  border-radius: 1.25em;
}
ul.tag-list li a sup {
  position: relative;
  line-height: 0;
  top: -0.5em;
  font-size: 0.5em;
  margin-left: 0.5em;
}

/*
 * Instagram: part-instagram
 */
.instagram-posts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -1px;
}
.instagram-posts .instagram-post {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 1px;
  width: 16.6666666667%;
}
@media (max-width: 767.98px) {
  .instagram-posts .instagram-post {
    width: 25%;
  }
}
.instagram-posts .instagram-post a {
  display: block;
}

/*
 * header
 */
#header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: var(--header-bg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: var(--bs-gutter-x) 0;
  z-index: 999;
}
#header #navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header #navi .left,
#header #navi .right {
  min-width: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#header #navi .left {
  margin-right: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#header #navi .right {
  margin-left: auto;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#header #navi .center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 991.98px) {
  #header #navi .center {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#header #navi .center > ul.navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header #navi .home h1 {
  display: inline-block;
  line-height: 1;
}
#header #navi .home h1 a {
  color: var(--header-color);
  display: block;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header #navi .home h1 a svg,
#header #navi .home h1 a img {
  display: block;
  width: auto;
  height: var(--header-logo-height);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header #navi .home h1 a:hover {
  opacity: 0.5;
}
#header #navi .home h1 a:hover svg,
#header #navi .home h1 a:hover img {
  opacity: 1;
}
#header #navi ul.navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  margin: -1em;
}
#header #navi ul.navi > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#header #navi ul.navi > li > a,
#header #navi ul.navi > li > button {
  padding: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: var(--header-color);
  font-size: 12px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  text-transform: uppercase;
}
#header #navi ul.navi > li.space {
  padding: 1em;
}
#header #navi ul.navi > li > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -0.25em;
}
#header #navi ul.navi > li > ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#header #navi ul.navi > li > ul > li > a,
#header #navi ul.navi > li > ul > li > button {
  color: var(--header-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.25em;
}
#header #navi ul.navi > li svg.icon {
  display: block;
  width: auto;
  height: 16px;
  opacity: 1;
}
#header #navi ul.navi > li svg.icon:hover {
  opacity: 0.5;
}
#header #navi ul.navi > li svg#youtube {
  height: 20px;
}
#header #navi ul.navi > li svg#twitter {
  height: 15px;
}
@media (max-width: 991.98px) {
  #header #navi > div:not(.has-mobile):not(.home) {
    display: none;
  }
  #header #navi .has-mobile > :not(.mobile) {
    display: none;
  }
}

/*
 * footer
 */
#footer {
  position: relative;
  background-color: var(--footer-bg);
  padding: var(--bs-gutter-x) 0;
  color: var(--footer-color);
  width: 100%;
}
#footer * {
  color: var(--footer-color);
}
#footer .container-fluid, #footer .container-sm, #footer .container-md, #footer .container-lg, #footer .container-xl, #footer .container-xxl,
#footer .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#footer .container-fluid .left, #footer .container-sm .left, #footer .container-md .left, #footer .container-lg .left, #footer .container-xl .left, #footer .container-xxl .left,
#footer .container-fluid .right,
#footer .container-sm .right,
#footer .container-md .right,
#footer .container-lg .right,
#footer .container-xl .right,
#footer .container-xxl .right,
#footer .container .left,
#footer .container .right {
  min-width: 35.3605%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  #footer .container-fluid .left, #footer .container-sm .left, #footer .container-md .left, #footer .container-lg .left, #footer .container-xl .left, #footer .container-xxl .left,
#footer .container-fluid .right,
#footer .container-sm .right,
#footer .container-md .right,
#footer .container-lg .right,
#footer .container-xl .right,
#footer .container-xxl .right,
#footer .container .left,
#footer .container .right {
    min-width: 20%;
  }
}
#footer .container-fluid .left, #footer .container-sm .left, #footer .container-md .left, #footer .container-lg .left, #footer .container-xl .left, #footer .container-xxl .left,
#footer .container .left {
  margin-right: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#footer .container-fluid .right, #footer .container-sm .right, #footer .container-md .right, #footer .container-lg .right, #footer .container-xl .right, #footer .container-xxl .right,
#footer .container .right {
  margin-left: auto;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#footer .container-fluid .center, #footer .container-sm .center, #footer .container-md .center, #footer .container-lg .center, #footer .container-xl .center, #footer .container-xxl .center,
#footer .container .center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#footer .container-fluid .center > ul.navi, #footer .container-sm .center > ul.navi, #footer .container-md .center > ul.navi, #footer .container-lg .center > ul.navi, #footer .container-xl .center > ul.navi, #footer .container-xxl .center > ul.navi,
#footer .container .center > ul.navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 991.98px) {
  #footer .container-fluid > div:not(.has-mobile):not(.home), #footer .container-sm > div:not(.has-mobile):not(.home), #footer .container-md > div:not(.has-mobile):not(.home), #footer .container-lg > div:not(.has-mobile):not(.home), #footer .container-xl > div:not(.has-mobile):not(.home), #footer .container-xxl > div:not(.has-mobile):not(.home),
#footer .container > div:not(.has-mobile):not(.home) {
    display: none;
  }
  #footer .container-fluid .has-mobile, #footer .container-sm .has-mobile, #footer .container-md .has-mobile, #footer .container-lg .has-mobile, #footer .container-xl .has-mobile, #footer .container-xxl .has-mobile,
#footer .container .has-mobile {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer .container-fluid .has-mobile > :not(.mobile), #footer .container-sm .has-mobile > :not(.mobile), #footer .container-md .has-mobile > :not(.mobile), #footer .container-lg .has-mobile > :not(.mobile), #footer .container-xl .has-mobile > :not(.mobile), #footer .container-xxl .has-mobile > :not(.mobile),
#footer .container .has-mobile > :not(.mobile) {
    display: none;
  }
}
#footer .container-fluid ul.navi, #footer .container-sm ul.navi, #footer .container-md ul.navi, #footer .container-lg ul.navi, #footer .container-xl ul.navi, #footer .container-xxl ul.navi,
#footer .container ul.navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  margin: -1em;
}
#footer .container-fluid ul.navi > li, #footer .container-sm ul.navi > li, #footer .container-md ul.navi > li, #footer .container-lg ul.navi > li, #footer .container-xl ul.navi > li, #footer .container-xxl ul.navi > li,
#footer .container ul.navi > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#footer .container-fluid ul.navi > li > a, #footer .container-sm ul.navi > li > a, #footer .container-md ul.navi > li > a, #footer .container-lg ul.navi > li > a, #footer .container-xl ul.navi > li > a, #footer .container-xxl ul.navi > li > a,
#footer .container-fluid ul.navi > li > button,
#footer .container-sm ul.navi > li > button,
#footer .container-md ul.navi > li > button,
#footer .container-lg ul.navi > li > button,
#footer .container-xl ul.navi > li > button,
#footer .container-xxl ul.navi > li > button,
#footer .container ul.navi > li > a,
#footer .container ul.navi > li > button {
  padding: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: var(--header-color);
  font-size: 12px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  text-transform: uppercase;
}
#footer .container-fluid ul.navi > li.space, #footer .container-sm ul.navi > li.space, #footer .container-md ul.navi > li.space, #footer .container-lg ul.navi > li.space, #footer .container-xl ul.navi > li.space, #footer .container-xxl ul.navi > li.space,
#footer .container ul.navi > li.space {
  padding: 1em;
}
#footer .container-fluid ul.navi > li > ul, #footer .container-sm ul.navi > li > ul, #footer .container-md ul.navi > li > ul, #footer .container-lg ul.navi > li > ul, #footer .container-xl ul.navi > li > ul, #footer .container-xxl ul.navi > li > ul,
#footer .container ul.navi > li > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  margin: -0.25em;
}
#footer .container-fluid ul.navi > li > ul > li, #footer .container-sm ul.navi > li > ul > li, #footer .container-md ul.navi > li > ul > li, #footer .container-lg ul.navi > li > ul > li, #footer .container-xl ul.navi > li > ul > li, #footer .container-xxl ul.navi > li > ul > li,
#footer .container ul.navi > li > ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#footer .container-fluid ul.navi > li > ul > li > a, #footer .container-sm ul.navi > li > ul > li > a, #footer .container-md ul.navi > li > ul > li > a, #footer .container-lg ul.navi > li > ul > li > a, #footer .container-xl ul.navi > li > ul > li > a, #footer .container-xxl ul.navi > li > ul > li > a,
#footer .container-fluid ul.navi > li > ul > li > button,
#footer .container-sm ul.navi > li > ul > li > button,
#footer .container-md ul.navi > li > ul > li > button,
#footer .container-lg ul.navi > li > ul > li > button,
#footer .container-xl ul.navi > li > ul > li > button,
#footer .container-xxl ul.navi > li > ul > li > button,
#footer .container ul.navi > li > ul > li > a,
#footer .container ul.navi > li > ul > li > button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.25em;
}
#footer .container-fluid p, #footer .container-sm p, #footer .container-md p, #footer .container-lg p, #footer .container-xl p, #footer .container-xxl p,
#footer .container p {
  font-size: 12px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
}

#drawer .drawer-content {
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#drawer .drawer-content[data-active] {
  display: block;
}

/*
 * drawer
 */
.drawer {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: var(--drawer-bg-blur);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  overflow-y: scroll;
}
.drawer .inbox {
  padding-top: var(--header-height);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: var(--drawer-bg);
  padding-bottom: var(--bs-gutter-x);
  border-radius: 0 0 calc(var(--bs-gutter-x)/2) calc(var(--bs-gutter-x)/2);
}
.drawer .inbox hr {
  margin: calc(var(--bs-gutter-x)/2) var(--bs-gutter-x);
}
.drawer .inbox .blank {
  padding: calc(var(--bs-gutter-x)/2) var(--bs-gutter-x);
}
.drawer .inbox .blank-x {
  padding: 0 var(--bs-gutter-x);
}
.drawer ul {
  width: 100%;
  text-align: left;
}
.drawer ul > li {
  display: block;
  font-size: 18px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
}
.drawer ul > li > ul {
  margin: 0.5em 0;
}
.drawer ul > li > ul > li {
  display: block;
}
.drawer ul > li > ul > li a,
.drawer ul > li > ul > li button,
.drawer ul > li > ul > li label {
  padding-left: calc(var(--bs-gutter-x)*1.5);
}
.drawer ul > li a,
.drawer ul > li button,
.drawer ul > li label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--drawer-color);
  font-size: 18px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  position: relative;
  padding: 0.25em var(--bs-gutter-x);
}
.drawer ul.small > li {
  font-size: 12px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
}
.drawer ul.small > li a,
.drawer ul.small > li button,
.drawer ul.small > li label {
  font-size: 12px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
}
.drawer .count {
  vertical-align: super;
  margin-left: 0.5em;
  font-size: 50%;
  font-weight: normal;
}
.drawer .badge {
  margin-left: auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  font-size: 11px;
  font-style: normal;
  border-radius: 0.75em;
  line-height: 1;
  color: #fff;
  background-color: #000;
  padding: 0.25em 0.5em;
}
.drawer .has-submenu .submenu-button {
  cursor: pointer;
}
.drawer .has-submenu .submenu-button .submenu-icon {
  margin-right: 4px;
  width: 12px;
  height: 12px;
  margin-left: auto;
  position: relative;
}
.drawer .has-submenu .submenu-button .submenu-icon::before, .drawer .has-submenu .submenu-button .submenu-icon::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--drawer-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer .has-submenu .submenu-button .submenu-icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.drawer .has-submenu .submenu-checkbox:checked + .submenu-button .submenu-icon::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.drawer .has-submenu .submenu-checkbox:checked + .submenu-button .submenu-icon::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.drawer .has-submenu .submenu {
  display: none;
}
.drawer .has-submenu .submenu-checkbox {
  display: none;
}
.drawer .has-submenu .submenu-checkbox:checked ~ .submenu {
  display: block;
}
.drawer .social > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: calc(var(--bs-gutter-x)/-3);
}
.drawer .social > ul > li {
  padding: calc(var(--bs-gutter-x)/3);
}
.drawer .social > ul > li a {
  display: block;
  padding: 0 0;
}
.drawer .social svg.icon {
  display: block;
  width: auto;
  height: 18px;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer .social svg.icon:hover {
  opacity: 0.5;
}
.drawer .social svg#youtube {
  height: 24px;
}
.drawer .social svg#twitter {
  height: 17px;
}
.drawer .searchform form.woocommerce-product-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.drawer .searchform form.woocommerce-product-search input[type=search] {
  border-bottom: 1px solid var(--drawer-color);
  font-size: 16px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
  padding: 1em 0;
  width: 360px;
}
.drawer .searchform form.woocommerce-product-search button {
  width: 52px;
  height: 52px;
  font-size: 0;
  border-bottom: 1px solid var(--drawer-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 18px;
  background-image: url(../img/icon-search.svg);
  background-blend-mode: lighten;
}
.drawer .heading {
  color: #808080;
  font-size: 12px;
  font-weight: bold;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
  margin-top: calc(var(--bs-gutter-x)/2);
  margin-bottom: 0.5em;
}

.drawer-handle {
  padding: 0 0;
  margin: 0 0;
}
.drawer-handle.hamburger {
  /* button reset */
  border: 0;
  background: none;
  outline: none;
  margin: 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8.5px 1px;
  color: var(--header-color);
}
.drawer-handle.hamburger .meat {
  display: block;
  position: relative;
  width: 16px;
  height: 1px;
  background-color: var(--header-color);
}
.drawer-handle.hamburger .meat::before, .drawer-handle.hamburger .meat::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--header-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-handle.hamburger .meat::before {
  top: -5px;
}
.drawer-handle.hamburger .meat::after {
  top: 5px;
}
.drawer-handle.hamburger:hover {
  opacity: 0.5;
}
.drawer-handle.active.hamburger .meat {
  background-color: transparent !important;
}
.drawer-handle.active.hamburger .meat::before, .drawer-handle.active.hamburger .meat::after {
  top: 0;
}
.drawer-handle.active.hamburger .meat::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-handle.active.hamburger .meat::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-handle.search {
  padding: 0 0;
  margin: 0 0;
}
.drawer-handle.search svg.icon {
  display: block;
  width: auto;
  height: 16px;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-handle.search svg.icon:hover {
  opacity: 0.5;
}

#header * + .handle {
  margin-left: calc(var(--bs-gutter-x)/3);
}
#header .handle {
  margin-left: calc(var(--bs-gutter-x)/3);
}
#header .handle ul {
  margin: calc(var(--bs-gutter-x)/-6) !important;
  margin: -10px !important;
}
#header .handle ul > li > a,
#header .handle ul > li > button {
  padding: calc(var(--bs-gutter-x)/6) !important;
  padding: 10px !important;
}

body.--draweropen #drawer {
  visibility: visible;
  opacity: 1;
}
body.--draweropen .drawer-handle svg {
  color: var(--drawer-color);
}
body.--draweropen .drawer-handle.hamburger .meat {
  background-color: var(--drawer-color);
}
body.--draweropen .drawer-handle.hamburger .meat::before, body.--draweropen .drawer-handle.hamburger .meat::after {
  background-color: var(--drawer-color);
}
body.--draweropen #header {
  position: fixed;
  background-color: transparent;
}
body.--draweropen #header #navi .home svg {
  color: var(--drawer-color);
}
body.--draweropen #header #navi > div:not(.has-mobile):not(.home) {
  visibility: hidden;
}
body.--draweropen #header #navi .has-mobile > :not(.mobile) {
  visibility: hidden;
}

/*
 * CMS
*/
.cms {
  --wp-fz-small: var(--fz-small);
  --wp-fz-base: var(--fz-base);
  --wp-fz-lg: 1.125rem;
  /* ≒18px */
  --wp-fz-xl: 1.25rem;
  /* ≒20px */
  --wp--preset--font-size--small: var(--fz-small);
  --wp--preset--font-size--medium: 1.125rem;
  --wp--preset--font-size--large: 1.25rem;
  --wp--preset--font-size--x-large: 1.5rem;
  /*
   * Layout
  */
  --wp--style--block-gap: 30px;
  /*
   * Style
  */
}
.cms h1 {
  line-height: 1.25;
  margin: 1.5em 0 0.75em;
}
.cms h2 {
  line-height: 1.25;
  margin: 1.5em 0 0.75em;
}
.cms h3 {
  line-height: 1.25;
  margin: 1.5em 0 0.75em;
}
.cms h4 {
  line-height: 1.25;
  margin: 1.5em 0 0.75em;
}
.cms h5 {
  line-height: 1.25;
  margin: 1.5em 0 0.75em;
}
.cms p {
  font-size: var(--fz-base);
  margin: 1em 0;
}
.cms a:not([class]) {
  text-decoration: underline;
}
.cms *:first-child {
  margin-top: 0;
}
@media (max-width: 575.98px) {
  .cms {
    --wp--style--block-gap: 15px;
  }
}
.cms .is-layout-flex,
.cms .is-layout-grid {
  gap: 30px;
}
@media (max-width: 575.98px) {
  .cms .is-layout-flex,
.cms .is-layout-grid {
    gap: 15px;
  }
}
.cms figure,
.cms .wp-block-columns {
  margin-bottom: calc( var(--bs-gutter-x) * .5 );
}
.cms .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
  content: none;
}
.cms .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  position: inherit;
  text-shadow: none;
  background: none;
  color: currentColor;
  padding: 0 0;
  margin-top: 0.5em;
}
.cms figcaption {
  font-size: var(--fz-small) !important;
  color: currentColor !important;
  color: color-mix(in srgb, currentColor 50%, white) !important;
}
.cms ol,
.cms ul {
  margin: -0.25em 0;
}
.cms ol li,
.cms ul li {
  padding: 0.25em 0;
  position: relative;
}
.cms ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.cms ol li {
  padding-left: 1.5em;
  text-indent: -1em;
}
.cms ul li {
  padding-left: 1.5em;
}
.cms ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0.5em;
  width: 0.5em;
  height: 1px;
  border-radius: 50%;
  background-color: currentColor;
}
.cms table {
  border-collapse: collapse;
}
.cms table th,
.cms table td {
  border: 1px solid;
  border-left: 0;
  border-right: 0;
}
/*
 * Page navigation
*/
.woocommerce-pagination,
.pagination {
  margin-top: var(--bs-gutter-x);
}
.woocommerce-pagination .screen-reader-text,
.pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.woocommerce-pagination ul.page-numbers,
.pagination ul.page-numbers {
  width: 100%;
  border-top: 1px solid currentColor;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-pagination ul.page-numbers li,
.pagination ul.page-numbers li {
  margin-top: -1px;
}
.woocommerce-pagination ul.page-numbers li:has(> a.prev),
.pagination ul.page-numbers li:has(> a.prev) {
  margin-right: auto;
}
.woocommerce-pagination ul.page-numbers li:has(> a.next),
.pagination ul.page-numbers li:has(> a.next) {
  margin-left: auto;
}
.woocommerce-pagination ul.page-numbers li .page-numbers,
.pagination ul.page-numbers li .page-numbers {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  min-width: 33px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
  background-color: transparent;
  border: 0;
  color: currentColor;
  /*
  &.dots {
    font-size: 0;
    font-weight: normal;
    &::before {
      content: '—';
      font-size: 16px;
      font-family: fontfamily(primary);
      line-height: 1;
    }
  }
  */
}
.woocommerce-pagination ul.page-numbers li .page-numbers.current, .woocommerce-pagination ul.page-numbers li .page-numbers.next, .woocommerce-pagination ul.page-numbers li .page-numbers.prev,
.pagination ul.page-numbers li .page-numbers.current,
.pagination ul.page-numbers li .page-numbers.next,
.pagination ul.page-numbers li .page-numbers.prev {
  color: #800080;
  border-top: 2px solid #800080;
}

/*
 * Scroll: IntersectionObserver
 */
.obs {
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.obs.--in {
  opacity: 1;
}
.obs.--blur {
  -webkit-transition-duration: 2.4s;
          transition-duration: 2.4s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.obs.--blur.--in {
  -webkit-filter: blur(0);
          filter: blur(0);
}

/*
 * Ratio
 */
[class*=ratio-] {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}

.ratio-1x1 {
  aspect-ratio: 1 / 1;
}

.ratio-2x1 {
  aspect-ratio: 2 / 1;
}

.ratio-1x2 {
  aspect-ratio: 1 / 2;
}

.ratio-3x2 {
  aspect-ratio: 3 / 2;
}

.ratio-2x3 {
  aspect-ratio: 2 / 3;
}

.ratio-4x3 {
  aspect-ratio: 4 / 3;
}

.ratio-3x4 {
  aspect-ratio: 3 / 4;
}

.ratio-4x5 {
  aspect-ratio: 4 / 5;
}

.ratio-5x4 {
  aspect-ratio: 5 / 4;
}

.ratio-16x9 {
  aspect-ratio: 16 / 9;
}

.ratio-9x16 {
  aspect-ratio: 9 / 16;
}

.ratio-golden {
  aspect-ratio: 1.618 / 1;
}

.ratio-silver {
  aspect-ratio: 1.414 / 1;
}

/*
 * Hero
 */
[class*=height-] {
  position: relative;
  width: 100%;
  height: var(--hero-height, 100vh);
  padding: 0 0;
}

.height-100 {
  --hero-height: 100vh;
}

.height-100s {
  --hero-height: 100svh;
}

.height-100-header {
  --hero-height: calc(100vh - var(--header-height));
}

.height-golden {
  --hero-height: calc(var(--size-golden) * 1vh);
}

.height-silver {
  --hero-height: calc(var(--size-silver) * 1vh);
}

/*
 * Color
 */
.text-white {
  color: #fff;
}

.text-primary {
  color: #800080;
}

.text-secondary {
  color: #808080;
}

.text-success {
  color: #198754;
}

.text-info {
  color: #0dcaf0;
}

.text-warning {
  color: #ffc107;
}

.text-danger {
  color: #dc3545;
}

.text-light {
  color: #f8f9fa;
}

.text-dark {
  color: #212529;
}

.text-neutral {
  color: #151515;
}

/*
 * Text
 */
.text-start {
  text-align: left;
}

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

.text-end {
  text-align: right;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-content-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*
 * Object Fit
 */
.objectfit {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.objectfit._contain {
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * Scrollbar
 */
.scrollbar-x-hide {
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-x-hide::-webkit-scrollbar {
  display: none;
}

/**
* Project : simply-countdown
* File : simplyCountdown.theme.default
* Author : Vincent Loy <vincent.loy1@gmail.com>
* Theme : Light Modern
*/
.simply-countdown {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.simply-countdown > .simply-section {
  width: 65px;
  height: 65px;
  padding: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.02);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.simply-countdown > .simply-section > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.simply-countdown > .simply-section .simply-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.simply-countdown > .simply-section .simply-word {
  font-size: 0.6rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 640px) {
  .simply-countdown > .simply-section {
    width: 75px;
    height: 75px;
    padding: 1.75rem;
  }

  .simply-countdown > .simply-section .simply-amount {
    font-size: 1.75rem;
  }

  .simply-countdown > .simply-section .simply-word {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .simply-countdown > .simply-section {
    width: 90px;
    height: 90px;
    padding: 2rem;
  }

  .simply-countdown > .simply-section .simply-amount {
    font-size: 2rem;
  }

  .simply-countdown > .simply-section .simply-word {
    font-size: 0.8rem;
  }
}
#page-form {
  --form-color: #000;
  --form-focus-color: #808080;
  --form-submit-color: #808080;
  --form-error-color: #dc3545;
}

/*
 * mw wp form
 */
.mw_wp_form {
  /* 入力画面 */
  /* 確認画面 */
  /* 完了画面 */
  /* form */
  /*
  input[type='checkbox'],
  input[type='radio'] {
    display: inline-block;
    width: auto;
    margin-right: 5px;
  }
  */
}
.mw_wp_form h3 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
.mw_wp_form h4 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
.mw_wp_form h5 {
  font-size: 14px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
.mw_wp_form p {
  font-size: 14px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  margin-bottom: 1em;
}
.mw_wp_form .form-table {
  margin: -30px;
}
.mw_wp_form .form-table table tr th,
.mw_wp_form .form-table table tr td {
  padding: 30px;
  position: relative;
  border: 0;
}
.mw_wp_form .form-table table tr th .error,
.mw_wp_form .form-table table tr td .error {
  font-size: 0;
  position: absolute;
  top: 30px;
  right: 30px;
}
.mw_wp_form .form-table table tr th .error:after,
.mw_wp_form .form-table table tr td .error:after {
  display: block;
  content: "入力してください";
  color: var(--form-error-color);
  font-size: 11px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.25;
  padding: 0 0;
}
@media (max-width: 575.98px) {
  .mw_wp_form .form-table table tr th,
.mw_wp_form .form-table table tr td {
    display: block;
  }
}
.mw_wp_form label {
  color: var(--form-color);
  font-size: 11px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
}
.mw_wp_form label .required {
  color: var(--form-error-color);
}
.mw_wp_form .input-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.mw_wp_form .input-content:focus-within {
  color: var(--form-focus-color);
}
.mw_wp_form .input-content:focus-within label {
  color: var(--form-focus-color);
}
.mw_wp_form .input-content input,
.mw_wp_form .input-content select {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.mw_wp_form .input-content input:focus,
.mw_wp_form .input-content select:focus {
  color: var(--form-focus-color);
}
.mw_wp_form .input-content label {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.mw_wp_form .input-content .error {
  top: 0;
  right: 0;
}
.mw_wp_form input[type=text] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=text]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=search] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=search]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=tel] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=tel]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=url] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=url]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=email] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=email]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=password] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=password]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=datetime] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=datetime]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=date] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=date]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=month] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=month]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=week] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=week]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=time] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=time]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=datetime-local] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=datetime-local]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=number] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=number]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form input[type=file] {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form input[type=file]:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form select,
.mw_wp_form textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--form-color);
  font-size: 20px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
  border-bottom: 1px solid var(--form-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mw_wp_form select:focus,
.mw_wp_form textarea:focus {
  border-bottom: 1px solid var(--form-focus-color);
}
.mw_wp_form textarea {
  min-height: 20rem;
}
.mw_wp_form .horizontal-item {
  padding-right: 10px;
}
.mw_wp_form input[type=submit],
.mw_wp_form input[type=button] {
  display: block;
  width: 100%;
  background-color: var(--form-submit-color);
  color: #fff;
  padding: 1em 2em;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
}

/*
 * PhotoSwipe
 */
.pswp--custom {
  --pswp-bg: #fff;
  --pswp-icon-color: #000;
  --pswp-icon-color-secondary: #000;
  --pswp-root-z-index: 9000;
}

.pswp__counter {
  font-size: 12px;
  text-shadow: none;
}

.pswp__img {
  cursor: default;
}

.pswp__button.pswp__button--arrow--next:after, .pswp__button.pswp__button--arrow--prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
}
.pswp__button.pswp__button--arrow--next:after {
  content: "next";
}
.pswp__button.pswp__button--arrow--prev:after {
  content: "prev";
}
.pswp__button.pswp__button--close {
  width: auto;
  height: auto;
  margin: 0;
  padding: 20px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.pswp__button.pswp__button--close:after {
  content: "Close";
  text-transform: uppercase;
  font: normal normal 12px/1 "Helvetica Neue", "Helvetica", sans-serif;
}

.pswp__counter {
  width: auto;
  height: auto;
  margin: 0;
  padding: 20px;
  font: normal normal 12px/1 "Helvetica Neue", "Helvetica", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*
.pswp__zoom-wrap {
  transform: translate3d(0, 0, 0) !important;
  width: 100% !important;
  height: 100% !important;
  .pswp__img {
    width: 100% !important;
    height: 100% !important;
    // position: static;
    object-fit: contain;
    object-position: center;
  }
}
*/
/*
 * Swiper
 */
:root,
.swiper {
  --swiper-theme-color: #800080 !important;
  --swiper-pagination-color: #800080 !important;
  --swiper-navigation-color: #800080 !important;
  --swiper-navigation-size: 18px !important;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
      -ms-scroll-snap-type: none;
          scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
      -ms-flex-order: 9999;
          order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fullscreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-fullscreen .swiper,
.swiper-fullscreen .swiper-container {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@media (max-width: 575.98px) {
  .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2.5px;
  }
}
/*
 * Variable
 */
:root {
  --header-logo-height: 18px;
}
@media (max-width: 575.98px) {
  :root {
    --header-logo-height: 16px;
  }
}

html,
body {
  background: var(--body-bg);
  color: var(--body-color);
  -webkit-transition: background 0.8s, color 0.8s;
  transition: background 0.8s, color 0.8s;
}

html {
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 75%;
}
@media (max-width: 575.98px) {
  html {
    font-size: 87.5%;
  }
}

/*
 * Style
 */
* {
  cursor: url("../img/cursor.png"), auto;
}

::-moz-selection {
  background: #800080;
  background-color: rgba(128, 0, 128, 0.5);
}

::selection,
::-moz-selection {
  background: #800080;
  background-color: rgba(128, 0, 128, 0.5);
}

/*
 * Layout
 */
.container {
  max-width: 100%;
}

/*
 * Post
 */
.page-title {
  font-size: 36px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.25;
}
@media (max-width: 575.98px) {
  .page-title {
    font-size: 24px;
  }
}

.page-description {
  margin-top: 1em;
  font-size: 12px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
}
.page-description p {
  font-size: 12px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1.5;
}

.post-title {
  font-size: 18px;
}

.post-excerpt {
  margin-top: 0.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.post-date {
  margin-top: 0.5em;
  color: #808080;
  font-size: 10px;
}

.post-category {
  margin-top: 0.5em;
  display: inline-block;
}
.post-category ul {
  margin: 0 -0.25em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.post-category ul li {
  display: inline-block;
  padding: 0 0.25em;
  color: #800080;
  font-size: 10px;
}
.post-category ul li a {
  display: block;
  line-height: 1;
}
.post-category ul li .icon {
  display: block;
  padding: 0.5em 1.5em;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #800080;
  border-radius: 1.5em;
}

.post-tag {
  margin-top: 0.5em;
  display: inline-block;
}
.post-tag ul {
  margin: 0 -0.5em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.post-tag ul li {
  padding: 0 0.5em;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
}
.post-tag ul li::before {
  content: "#";
  font-size: 10px;
}
.post-tag ul li a {
  display: inline-block;
  line-height: 1;
}

/*
 * Common
 */
.post .card-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: var(--post-thumbnail-ratio, 16/9);
}

.product .attachment-woocommerce_thumbnail {
  width: 100%;
  overflow: hidden;
  aspect-ratio: var(--product-thumbnail-ratio, 1/1);
}

body.home #header {
  --header-bg: rgba(#fff, 0);
  --header-color: #fff;
  position: absolute;
}
body.home #contents {
  margin-top: 0;
}

#home #hero {
  background-color: #151515;
}
#home #hero .title {
  margin-top: 60px;
  max-height: 38svh;
}
#home #hero .simply-countdown {
  margin-top: 90px;
  gap: calc(var(--bs-gutter-x) / 2);
}
#home #hero .description {
  margin-top: calc(var(--bs-gutter-x) / 1);
}
#home #hero .description .h {
  font-size: 14px;
  margin-bottom: 0.5em;
}
#home #hero .simply-countdown > .simply-section {
  background-color: #151515;
  border-color: #333333;
}
#home #hero .simply-countdown > .simply-section .simply-amount {
  color: #fff;
}

/*
 * Template: Hero image
 */
body.page-template-page-template-hero #header {
  --header-bg: rgba(#fff, 0);
  --header-color: #fff;
  position: absolute;
}
body.page-template-page-template-hero #contents {
  margin-top: 0;
}
body.page-template-page-template-hero #hero-header {
  padding-top: 0;
  padding-bottom: 0;
}

#single-default #single-default-body {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x);
  padding-right: var(--bs-gutter-x);
  padding-top: 0;
}
#single-default #single-default-body .head {
  margin-bottom: calc(var(--bs-gutter-x) * 1.5);
}
#single-default #single-default-body .head .page-title {
  margin-top: 0.5em;
}
#page-privacy .page-title,
#aco-privacy .page-title {
  margin-bottom: 1em;
}
#page-privacy *,
#aco-privacy * {
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
}
#page-privacy div + div,
#aco-privacy div + div {
  margin-top: 60px;
}
#page-privacy h3,
#aco-privacy h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1em;
}
#page-privacy p,
#aco-privacy p {
  font-size: 12px;
  margin-bottom: 1em;
}
#page-privacy ul,
#page-privacy ol,
#aco-privacy ul,
#aco-privacy ol {
  padding-left: 3em;
  font-size: 12px;
}
#page-privacy ul > li + li,
#page-privacy ol > li + li,
#aco-privacy ul > li + li,
#aco-privacy ol > li + li {
  margin-top: 1em;
}
#page-privacy ul > li > ul,
#page-privacy ul > li > ol,
#page-privacy ul > li > table,
#page-privacy ol > li > ul,
#page-privacy ol > li > ol,
#page-privacy ol > li > table,
#aco-privacy ul > li > ul,
#aco-privacy ul > li > ol,
#aco-privacy ul > li > table,
#aco-privacy ol > li > ul,
#aco-privacy ol > li > ol,
#aco-privacy ol > li > table {
  margin-top: 1em;
}
#page-privacy table,
#aco-privacy table {
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}
#page-privacy table tr th,
#page-privacy table tr td,
#aco-privacy table tr th,
#aco-privacy table tr td {
  border-top: 1px solid #000;
  border-bottom: 0;
  padding: 0.5em 0.5em 0.5em 0;
}
@media (max-width: 767.98px) {
  #page-privacy table tr th,
#page-privacy table tr td,
#aco-privacy table tr th,
#aco-privacy table tr td {
    display: block;
  }
}
#page-privacy table tr th,
#aco-privacy table tr th {
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #page-privacy table tr td,
#aco-privacy table tr td {
    border-top: 0;
    padding-top: 0;
  }
}
#page-privacy span.hide,
#aco-privacy span.hide {
  display: none !important;
}

body.error404 #header {
  position: absolute;
}
body.error404 #contents {
  margin-top: 0;
}

#notfound #sorry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
#notfound #sorry > div {
  text-align: center;
}
#notfound #sorry > div h2 {
  color: #800080;
  font-size: 72px;
  font-weight: bold;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
}
#notfound #sorry > div p {
  margin-top: 9px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
}
#notfound #sorry > div ul {
  margin-top: 36px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: -14px;
  margin-right: -14px;
}
#notfound #sorry > div ul li {
  padding-left: 14px;
  padding-right: 14px;
}
#notfound #sorry > div ul li a {
  display: block;
  color: #808080;
  font-size: 14px;
  font-weight: bold;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
}

/* WooCommerce */
/*
 * WooCommerce
 */
/* ## Common */
.in-stock {
  color: var(--wc-green) !important;
}

.price {
  font-size: 12px;
}
.price .woocommerce-price-suffix {
  font-size: 50%;
}

/* ## Index: 商品一覧 */
ul.products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[var(--cols, 3)];
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: var(--bs-gutter-y) var(--bs-gutter-x);
}
@media (max-width: 767.98px) {
  ul.products {
    --cols: 2;
  }
}
ul.products.columns-1 {
  --cols: 1;
}
ul.products > li.product {
  position: relative;
}
ul.products > li.product .onsale {
  position: absolute;
  top: calc(var(--bs-gutter-x) * .25);
  left: calc(var(--bs-gutter-x) * .25);
  font-size: 10px;
}
ul.products > li.product img.attachment-woocommerce_thumbnail {
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
ul.products > li.product .woocommerce-loop-product__title {
  margin-top: 1em;
  font-size: 18px;
}
ul.products > li.product .price {
  display: inline-block;
  margin-top: 0.25em;
}

body.post-type-archive-product .woocommerce-products-header {
  margin-bottom: calc(var(--bs-gutter-x) * .25);
}
body.post-type-archive-product .woocommerce-result-count {
  display: inline-block;
  font-size: 12px;
  margin-right: calc(var(--bs-gutter-x) * .5);
}
body.post-type-archive-product form.woocommerce-ordering {
  display: inline-block;
}
body.post-type-archive-product form.woocommerce-ordering select {
  font-size: 12px;
}
body.post-type-archive-product ul.products {
  margin-top: var(--bs-gutter-y);
}

/* ## Single: 商品詳細 */
@media (max-width: 575.98px) {
  body.woocommerce.single-product main#contents {
    margin-top: 0;
  }
}
body.woocommerce.single-product .single-product-container .product {
  position: relative;
}
body.woocommerce.single-product .single-product-container .product .onsale {
  display: none;
  z-index: 10;
  position: absolute;
  top: var(--bs-gutter-x);
  left: 0;
}
body.woocommerce.single-product .product-summary-wrapper {
  /* ### Layout */
  --left: 5.83333333333fr;
  --right: 4.16666666667fr;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, var(--left)) minmax(0, var(--right));
  grid-template-columns: minmax(0, var(--left)) minmax(0, var(--right));
  gap: var(--bs-gutter-y) var(--bs-gutter-x);
  padding-top: 0;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  /* ### Element */
}
@media (max-width: 575.98px) {
  body.woocommerce.single-product .product-summary-wrapper {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 575.98px) {
  body.woocommerce.single-product .product-summary-wrapper .woocommerce-product-gallery__wrapper {
    margin-left: calc(var(--bs-gutter-x) * -1) !important;
    margin-right: calc(var(--bs-gutter-x) * -1) !important;
  }
  body.woocommerce.single-product .product-summary-wrapper .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    display: none;
  }
}
@media (min-width: 576px) {
  body.woocommerce.single-product .product-summary-wrapper .woocommerce-product-gallery__wrapper .product-gallery-swiper .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  body.woocommerce.single-product .product-summary-wrapper .woocommerce-product-gallery__wrapper .product-gallery-swiper .swiper-wrapper .swiper-slide {
    width: auto;
  }
}
body.woocommerce.single-product .product-summary-wrapper .woocommerce-product-gallery__wrapper img {
  display: block;
}
body.woocommerce.single-product .product-summary-wrapper .summary {
  position: -webkit-sticky;
  position: sticky;
  top: var(--bs-gutter-y);
}
body.woocommerce.single-product .product-summary-wrapper .product_title {
  font-size: 32px;
}
@media (max-width: 575.98px) {
  body.woocommerce.single-product .product-summary-wrapper .product_title {
    font-size: 24px;
  }
}
body.woocommerce.single-product .product-summary-wrapper .price {
  margin-top: 0.5em;
  margin-bottom: calc(var(--bs-gutter-x) * .5);
}
body.woocommerce.single-product .product-summary-wrapper .woocommerce-product-details__short-description {
  margin-bottom: calc(var(--bs-gutter-x) * .5);
}
body.woocommerce.single-product .product-summary-wrapper .woocommerce-product-details__short-description p + p {
  margin-top: 1em;
}
body.woocommerce.single-product .product-summary-wrapper .woocommerce-product-details__short-description p a {
  text-decoration: underline;
}
body.woocommerce.single-product .product-summary-wrapper form.cart {
  margin-bottom: calc(var(--bs-gutter-x) * .5);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
body.woocommerce.single-product .product-summary-wrapper form.cart * + * {
  margin-top: 10px;
}
body.woocommerce.single-product .product-summary-wrapper form.cart .stock {
  margin-bottom: 0.5em;
  font-size: 12px;
}
body.woocommerce.single-product .product-summary-wrapper form.cart table.variations tr th, body.woocommerce.single-product .product-summary-wrapper form.cart table.variations tr td {
  vertical-align: middle;
  text-align: left;
}
body.woocommerce.single-product .product-summary-wrapper form.cart table.variations .reset_variations {
  display: none !important;
  visibility: hidden !important;
}
body.woocommerce.single-product .product-summary-wrapper form.cart .quantity {
  margin: 0 0;
}
body.woocommerce.single-product .product-summary-wrapper form.cart .quantity::before {
  content: "数量";
  font-size: 12px;
  margin-right: 0.5em;
}
body.woocommerce.single-product .product-summary-wrapper form.cart .quantity .input-text {
  width: 4em;
  text-align: center;
}
@media (max-width: 575.98px) {
  body.woocommerce.single-product .product-summary-wrapper form.cart .quantity .input-text {
    display: block;
    width: 100%;
  }
}
body.woocommerce.single-product .product-summary-wrapper form.cart .variations select,
body.woocommerce.single-product .product-summary-wrapper form.cart .quantity input {
  height: 36px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 575.98px) {
  body.woocommerce.single-product .product-summary-wrapper form.cart .variations select,
body.woocommerce.single-product .product-summary-wrapper form.cart .quantity input {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  body.woocommerce.single-product .product-summary-wrapper form.cart .button {
    margin-top: calc(var(--bs-gutter-x) * .5);
    display: block;
    width: 100%;
  }
}
body.woocommerce.single-product .product-summary-wrapper + .related h2:not([class]) {
  margin-bottom: 1em;
}

/* ## Page: マイページ */

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