.modal {
  --modal-frame-viewport-gap: clamp(0.75rem, 3vw, 2.25rem);
  --modal-frame-max-inline-size: min(84rem, calc(100vw - var(--modal-frame-viewport-gap) - var(--modal-frame-viewport-gap)));
  --modal-frame-max-block-size: calc(100svh - var(--modal-frame-viewport-gap) - var(--modal-frame-viewport-gap));
  --modal-frame-surface-bg: transparent;
  --modal-frame-surface-padding-block: clamp(1rem, 3svh, 2rem);
  --modal-frame-surface-padding-inline: clamp(1rem, 3vw, 2rem);
  --modal-frame-surface-radius: 1rem;
  --modal-frame-surface-shadow: 0 1.25rem 4rem rgb(0 0 0 / 0.24);
  --modal-main-view-max-inline-size: 100%;
  --modal-main-view-max-block-size: min(76svh, var(--modal-frame-max-block-size));
  --modal-content-nav-visibility-breakpoint: 768px;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  pointer-events: none;
}
.modal[data-modal-choose-effective-mode=chooser-viewer] {
  --modal-main-view-max-block-size: min(72svh, var(--modal-frame-max-block-size));
}
.modal.is_active {
  display: grid;
  place-items: center;
  pointer-events: auto;
}
.modal :where(.window) {
  inline-size: fit-content;
  max-inline-size: var(--modal-frame-max-inline-size);
  max-block-size: var(--modal-frame-max-block-size);
  justify-self: center;
  align-self: center;
  margin-inline: auto;
}
.modal[data-modal-frame-surface=true] :where(.window) {
  padding-block: var(--modal-frame-surface-padding-block);
  padding-inline: var(--modal-frame-surface-padding-inline);
  border-radius: var(--modal-frame-surface-radius);
  background: var(--modal-frame-surface-bg);
  box-shadow: var(--modal-frame-surface-shadow);
}
.modal :where([data-modal-content-display]) {
  display: grid;
  place-items: center;
  inline-size: fit-content;
  max-inline-size: var(--modal-main-view-max-inline-size);
  max-block-size: var(--modal-main-view-max-block-size);
  margin-inline: auto;
  overflow: hidden;
}
.modal :where([data-modal-content-display] > *) {
  justify-self: center;
  align-self: center;
  max-inline-size: 100%;
  max-block-size: var(--modal-main-view-max-block-size);
  margin-block: auto;
  margin-inline: auto;
}
.modal :where([data-modal-content-display] img,
[data-modal-content-display] video,
[data-modal-content-display] canvas,
[data-modal-content-display] iframe) {
  display: block;
  inline-size: auto;
  block-size: auto;
  max-inline-size: 100%;
  max-block-size: var(--modal-main-view-max-block-size);
  object-fit: contain;
  object-position: center center;
}

:where(#modalOverlay) {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: none;
  z-index: 100;
  inline-size: 100%;
  block-size: 100vh;
  background-color: rgba(0, 0, 0, 0.72);
}

.no_scroll {
  overflow: hidden;
}

.modal {
  --modal-effect-duration: 0.4s;
  --modal-effect-easing: ease-out;
  --modal-effect-scale-from: 0.92;
  --modal-effect-scale-pop-from: 0;
  --modal-effect-scale-pop-duration: 200ms;
  --modal-effect-blur-from: 12px;
  --modal-content-switch-duration: var(--modal-effect-duration);
  --modal-content-switch-easing: var(--modal-effect-easing);
  --modal-content-switch-blur-from: var(--modal-effect-blur-from);
  --modal-ui-motion-duration: 180ms;
  --modal-ui-motion-easing: var(--modal-content-switch-easing);
  --modal-ui-motion-move-x: 0;
  --modal-ui-motion-move-y: 0;
  --modal-content-switch-block-size: auto;
}
.modal[data-modal-effect-fade=true] {
  opacity: 0;
  transition-property: opacity;
  transition-duration: var(--modal-effect-duration, 0.4s);
  transition-timing-function: var(--modal-effect-easing, ease-out);
  will-change: opacity;
}
.modal[data-modal-effect-fade=true].is_active.is_effect_ready {
  opacity: 1;
}
.modal[data-modal-effect-fade=true].is_active.is_effect_closing {
  opacity: 0;
  pointer-events: none;
}
.modal[data-modal-effect-fade=true][data-motion-reduced=true] {
  transition-duration: 1ms;
  will-change: auto;
}
.modal[data-modal-effect-fade=true][data-motion-reduced=true].is_active {
  opacity: 1;
}
.modal[data-modal-effect=scale-soft] {
  transform: scale(var(--modal-effect-scale-from, 0.92));
  transform-origin: center center;
  transition-property: transform;
  transition-duration: var(--modal-effect-duration, 0.4s);
  transition-timing-function: var(--modal-effect-easing, ease-out);
  will-change: transform;
}
.modal[data-modal-effect=scale-soft].is_active.is_effect_ready {
  transform: scale(1);
}
.modal[data-modal-effect=scale-soft].is_active.is_effect_closing {
  transform: scale(var(--modal-effect-scale-from, 0.92));
  pointer-events: none;
}
.modal[data-modal-effect=scale-soft][data-motion-reduced=true] {
  transition-duration: 1ms;
  will-change: auto;
}
.modal[data-modal-effect=scale-soft][data-motion-reduced=true].is_active {
  transform: scale(1);
}
.modal[data-modal-effect=scale-pop] {
  transform: scale(var(--modal-effect-scale-pop-from, 0));
  transform-origin: center center;
  transition-property: transform;
  transition-duration: var(--modal-effect-scale-pop-duration, 220ms);
  transition-timing-function: var(--modal-effect-easing, ease-out);
  will-change: transform;
}
.modal[data-modal-effect=scale-pop].is_active.is_effect_ready {
  transform: scale(1);
}
.modal[data-modal-effect=scale-pop].is_active.is_effect_closing {
  transform: scale(var(--modal-effect-scale-pop-from, 0));
  pointer-events: none;
}
.modal[data-modal-effect=scale-pop][data-motion-reduced=true] {
  transition-duration: 1ms;
  will-change: auto;
}
.modal[data-modal-effect=scale-pop][data-motion-reduced=true].is_active {
  transform: scale(1);
}
.modal[data-modal-effect=blur] {
  filter: blur(var(--modal-effect-blur-from, 12px));
  transition-property: filter;
  transition-duration: var(--modal-effect-duration, 0.4s);
  transition-timing-function: var(--modal-effect-easing, ease-out);
  will-change: filter;
}
.modal[data-modal-effect=blur].is_active.is_effect_ready {
  filter: blur(0);
}
.modal[data-modal-effect=blur].is_active.is_effect_closing {
  filter: blur(var(--modal-effect-blur-from, 12px));
  pointer-events: none;
}
.modal[data-modal-effect=blur][data-motion-reduced=true] {
  transition-duration: 1ms;
  will-change: auto;
}
.modal[data-modal-effect=blur][data-motion-reduced=true].is_active {
  filter: blur(0);
}
.modal[data-modal-effect=scale-soft][data-modal-effect-fade=true], .modal[data-modal-effect=scale-pop][data-modal-effect-fade=true], .modal[data-modal-effect=blur][data-modal-effect-fade=true] {
  opacity: 0;
  transition-property: opacity, transform, filter;
  will-change: opacity, transform, filter;
}
.modal[data-modal-effect=scale-soft][data-modal-effect-fade=true].is_active.is_effect_ready, .modal[data-modal-effect=scale-pop][data-modal-effect-fade=true].is_active.is_effect_ready, .modal[data-modal-effect=blur][data-modal-effect-fade=true].is_active.is_effect_ready {
  opacity: 1;
}
.modal[data-modal-effect=scale-soft][data-modal-effect-fade=true].is_active.is_effect_closing, .modal[data-modal-effect=scale-pop][data-modal-effect-fade=true].is_active.is_effect_closing, .modal[data-modal-effect=blur][data-modal-effect-fade=true].is_active.is_effect_closing {
  opacity: 0;
}
.modal[data-modal-effect=scale-soft][data-modal-effect-fade=true][data-motion-reduced=true], .modal[data-modal-effect=scale-pop][data-modal-effect-fade=true][data-motion-reduced=true], .modal[data-modal-effect=blur][data-modal-effect-fade=true][data-motion-reduced=true] {
  will-change: auto;
}
.modal[data-modal-effect=scale-soft][data-modal-effect-fade=true][data-motion-reduced=true].is_active, .modal[data-modal-effect=scale-pop][data-modal-effect-fade=true][data-motion-reduced=true].is_active, .modal[data-modal-effect=blur][data-modal-effect-fade=true][data-motion-reduced=true].is_active {
  opacity: 1;
}

:where(.modal) :where([data-modal-content-display], [data-modal-choose-list]) {
  opacity: 1;
  filter: blur(0);
  transition-property: opacity, filter;
  transition-duration: var(--modal-content-switch-duration, 0.4s);
  transition-timing-function: var(--modal-content-switch-easing, ease-out);
  will-change: opacity, filter;
}
:where(.modal) :where([data-modal-content-display], [data-modal-choose-list]):where(.is_content_switching) {
  opacity: 0;
}
:where(.modal) :where([data-modal-content-display], [data-modal-choose-list]):where(.is_content_switching_blur) {
  filter: blur(var(--modal-content-switch-blur-from, 12px));
}
:where(.modal) :where([data-modal-content-display].is_content_size_animating) {
  block-size: var(--modal-content-switch-block-size);
  overflow: hidden;
  transition-property: opacity, filter, block-size;
}
:where(.modal) :where([data-modal-content-display].is_content_switching video.is-modal-video-preparing) {
  visibility: hidden;
}
:where(.modal) :where([data-modal-content-display] video.is-modal-video-preparing)::-webkit-media-controls,
:where(.modal) :where([data-modal-content-display] video.is-modal-video-preparing)::-webkit-media-controls-enclosure,
:where(.modal) :where([data-modal-content-display] video.is-modal-video-preparing)::-webkit-media-controls-panel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
:where(.modal):where([data-modal-ui-motion]) :where(.window > .control, [data-modal-indicator], [data-modal-indicator-group]) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-property: opacity, transform;
  transition-duration: var(--modal-ui-motion-duration, 180ms);
  transition-timing-function: var(--modal-ui-motion-easing, ease-out);
  will-change: opacity, transform;
}
:where(.modal):where([data-modal-ui-motion]):where(.is_ui_switching) :where(.window > .control, [data-modal-indicator], [data-modal-indicator-group]) {
  opacity: 0;
  transform: translate3d(var(--modal-ui-motion-move-x, 0), var(--modal-ui-motion-move-y, 0), 0);
}
:where(.modal):where([data-modal-ui-motion]):where(.is_ui_switching) :where(.window > .control button, .window > .control [data-modal-content-nav]) {
  pointer-events: none;
}
:where(.modal):where([data-motion-reduced=true]) :where([data-modal-content-display],
[data-modal-choose-list],
.window > .control,
[data-modal-indicator],
[data-modal-indicator-group]) {
  transition-duration: 1ms;
  will-change: auto;
}

:where(.modal .window .control) {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
:where(.modal .window .control) :where([data-modal-close]) {
  line-height: 1;
  appearance: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  position: absolute;
  inset-block-start: 0;
  inline-size: 100%;
  border-block-width: 0;
  border-inline-width: 0;
  background-color: transparent;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-close]) {
    inset-inline-end: -4vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-close]) {
    inset-inline-end: 4vw;
  }
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-close]) {
    max-inline-size: 3.75vw;
    block-size: 3.75vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-close]) {
    max-inline-size: 12vw;
    block-size: 12vw;
  }
}
:where(.modal .window .control) :where([data-modal-close]) {
  pointer-events: auto;
}
:where(.modal .window .control) :where([data-modal-close]) > :where(.mark) {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: inline-block;
  inline-size: 100%;
  background-color: white;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  translate: -50% -50%;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-close]) > :where(.mark) {
    max-inline-size: 1.75vw;
    block-size: 0.10417vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-close]) > :where(.mark) {
    max-inline-size: 8.4vw;
    block-size: 0.5vw;
  }
}
:where(.modal .window .control) :where([data-modal-close]) > :where(.mark):nth-of-type(1) {
  rotate: 45deg;
}
:where(.modal .window .control) :where([data-modal-close]) > :where(.mark):nth-of-type(2) {
  rotate: -45deg;
}
:where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item],
[data-modal-content-nav=next],
[data-modal-content-nav=next-item],
[data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) {
  line-height: 1;
  appearance: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  position: absolute;
  inline-size: 100%;
  background-color: transparent;
  border-block-width: 0;
  border-inline-width: 0;
  pointer-events: auto;
}
:where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item],
[data-modal-content-nav=next],
[data-modal-content-nav=next-item],
[data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) > :where(.mark) {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: inline-block;
  inline-size: 100%;
  block-size: 100%;
  background-color: transparent;
  border-block-start-color: #fff;
  border-block-start-style: solid;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark) {
    border-block-start-width: 0.10417vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark) {
    border-block-start-width: 0.5vw;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item],
[data-modal-content-nav=next],
[data-modal-content-nav=next-item],
[data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) > :where(.mark) {
  border-inline-start-color: #fff;
  border-inline-start-style: solid;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark) {
    border-inline-start-width: 0.10417vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark) {
    border-inline-start-width: 0.5vw;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item],
[data-modal-content-nav=next],
[data-modal-content-nav=next-item],
[data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(1)::before, :where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item],
[data-modal-content-nav=next],
[data-modal-content-nav=next-item],
[data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(2)::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inline-size: 100%;
  block-size: 100%;
  filter: opacity(0.5) blur(2px);
  border-block-start-color: rgba(0, 0, 0, 0.5);
  border-block-start-style: solid;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(1)::before, :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(2)::before {
    border-block-start-width: 0.10417vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(1)::before, :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(2)::before {
    border-block-start-width: 0.5vw;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item],
[data-modal-content-nav=next],
[data-modal-content-nav=next-item],
[data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(1)::before, :where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item],
[data-modal-content-nav=next],
[data-modal-content-nav=next-item],
[data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(2)::before {
  border-inline-start-color: rgba(0, 0, 0, 0.5);
  border-inline-start-style: solid;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(1)::before, :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(2)::before {
    border-inline-start-width: 0.10417vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(1)::before, :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item],
  [data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) > :where(.mark):nth-of-type(2)::before {
    border-inline-start-width: 0.5vw;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item],
[data-modal-content-nav=next],
[data-modal-content-nav=next-item]) {
  inset-block-start: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item]) {
    max-inline-size: 2.5vw;
    block-size: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item],
  [data-modal-content-nav=next],
  [data-modal-content-nav=next-item]) {
    max-inline-size: 6vw;
    block-size: 6vw;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item]) {
  rotate: -45deg;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item]) {
    inset-inline-start: -4vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev],
  [data-modal-content-nav=prev-item]) {
    inset-inline-start: 4vw;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=prev],
[data-modal-content-nav=prev-item]) :where(.mark):nth-of-type(1)::before {
  inset-inline-start: 2px;
}
:where(.modal .window .control) :where([data-modal-content-nav=next],
[data-modal-content-nav=next-item]) {
  rotate: 135deg;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=next],
  [data-modal-content-nav=next-item]) {
    inset-inline-end: -4vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=next],
  [data-modal-content-nav=next-item]) {
    inset-inline-end: 4vw;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=next],
[data-modal-content-nav=next-item]) :where(.mark)::before {
  inset-inline-end: -2px;
}
:where(.modal .window .control) :where([data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) {
  inset-inline-start: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) {
    max-inline-size: 3.75vw;
    block-size: 3.75vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) {
    max-inline-size: 12vw;
    block-size: 12vw;
  }
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) :where(.mark):nth-of-type(2) {
    inset-block-start: 0.625vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) :where(.mark):nth-of-type(2) {
    inset-block-start: 2vw;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=prev-group],
[data-modal-content-nav=next-group]) :where(.string) {
  display: inline-block;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) :where(.string) {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev-group],
  [data-modal-content-nav=next-group]) :where(.string) {
    font-size: 2vw;
  }
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev-group]) {
    inset-block-start: 2dvh;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=prev-group]) {
    inset-block-start: 2dvh;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=prev-group]) :where(.mark) {
  rotate: 45deg;
  transform: skew(-10deg, -10deg);
}
:where(.modal .window .control) :where([data-modal-content-nav=prev-group]) :where(.mark)::before {
  inset-inline-end: -2px;
}
@media screen and (min-width: 769px) {
  :where(.modal .window .control) :where([data-modal-content-nav=next-group]) {
    inset-block-end: -6dvh;
  }
}
@media screen and (max-width: 768px) {
  :where(.modal .window .control) :where([data-modal-content-nav=next-group]) {
    inset-block-end: -3dvh;
  }
}
:where(.modal .window .control) :where([data-modal-content-nav=next-group]) :where(.mark) {
  rotate: -135deg;
  transform: skew(-10deg, -10deg);
}
:where(.modal .window .control) :where([data-modal-content-nav=next-group]) :where(.mark)::before {
  inset-inline-end: -2px;
}

:where(.modal.is_content_close_visibility_managed .window .control) :where([data-modal-close]) {
  filter: opacity(0);
  visibility: hidden;
  pointer-events: auto;
  transition-property: filter, visibility;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

:where(.modal.is_content_close_visibility_managed.is_content_close_visible .window .control) :where([data-modal-close]) {
  filter: opacity(1);
  visibility: visible;
  pointer-events: auto;
  transition-property: filter, visibility;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

:where(.modal .window .control) :where([data-modal-content-nav]) {
  filter: opacity(0);
  visibility: hidden;
  pointer-events: auto;
  transition-property: filter, visibility;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

:where(.modal.is_content_nav_visible .window .control) :where([data-modal-content-nav]) {
  filter: opacity(1);
  visibility: visible;
  pointer-events: auto;
  transition-property: filter, visibility;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

.modal {
  --modal-indicator-offset: 0.83333vw;
  --modal-indicator-padding-block: 0.36458vw;
  --modal-indicator-padding-inline: 0.83333vw;
  --modal-indicator-gap: 0.3125vw;
  --modal-indicator-font-size: 0.72917vw;
  --modal-indicator-shadow: 0 0.20833vw 0.83333vw rgb(0 0 0 / 0.24);
  --modal-indicator-radius: 999px;
  --modal-indicator-bg: rgb(0 0 0 / 0.5);
  --modal-indicator-color: #fff;
  --modal-indicator-z-index: 2;
}

@media screen and (max-width: 768px) {
  .modal {
    --modal-indicator-offset: 3vw;
    --modal-indicator-padding-block: 1.25vw;
    --modal-indicator-padding-inline: 3vw;
    --modal-indicator-gap: 1vw;
    --modal-indicator-font-size: 3vw;
    --modal-indicator-shadow: 0 0.75vw 3vw rgb(0 0 0 / 0.24);
  }
}
:where(.modal) :where([data-modal-content-display]) {
  position: relative;
}
:where(.modal) :where(.window) {
  position: relative;
}
:where(.modal) :where([data-modal-indicator],
[data-modal-indicator-group]) {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: var(--modal-indicator-z-index);
  gap: var(--modal-indicator-gap);
  padding-block: var(--modal-indicator-padding-block);
  padding-inline: var(--modal-indicator-padding-inline);
  border-radius: var(--modal-indicator-radius);
  background: var(--modal-indicator-bg);
  font-size: var(--modal-indicator-font-size);
  color: var(--modal-indicator-color);
  line-height: 1;
  white-space: nowrap;
  box-shadow: var(--modal-indicator-shadow);
  pointer-events: none;
  user-select: none;
}
:where(.modal) :where([data-modal-indicator],
[data-modal-indicator-group]):where([hidden]) {
  display: none !important;
}
:where(.modal) :where([data-modal-indicator],
[data-modal-indicator-group]):where([data-modal-indicator-placement=top-end],
[data-modal-indicator-placement=outside]) {
  inset-block-start: var(--modal-indicator-offset);
  inset-inline-end: var(--modal-indicator-offset);
}
:where(.modal) :where([data-modal-indicator],
[data-modal-indicator-group]):where([data-modal-indicator-placement=top-center]) {
  inset-block-start: var(--modal-indicator-offset);
  inset-inline-start: 50%;
  translate: -50% 0;
}
:where(.modal) :where([data-modal-indicator],
[data-modal-indicator-group]):where([data-modal-indicator-placement=top-start]) {
  inset-block-start: var(--modal-indicator-offset);
  inset-inline-start: var(--modal-indicator-offset);
}
:where(.modal) :where([data-modal-indicator],
[data-modal-indicator-group]):where([data-modal-indicator-placement=bottom-end]) {
  inset-block-end: var(--modal-indicator-offset);
  inset-inline-end: var(--modal-indicator-offset);
}
:where(.modal) :where([data-modal-indicator],
[data-modal-indicator-group]):where([data-modal-indicator-placement=bottom-center]) {
  inset-block-end: var(--modal-indicator-offset);
  inset-inline-start: 50%;
  translate: -50% 0;
}
:where(.modal) :where([data-modal-indicator],
[data-modal-indicator-group]):where([data-modal-indicator-placement=bottom-start]) {
  inset-block-end: var(--modal-indicator-offset);
  inset-inline-start: var(--modal-indicator-offset);
}

.modal {
  --modal-choose-list-items-per-view: 6;
  --modal-choose-list-gap: 0.41667vw;
  --modal-choose-list-margin-block-start: 0.625vw;
  --modal-choose-list-padding-block-end: 0.20833vw;
  --modal-choose-item-radius: 0.3125vw;
  --modal-choose-scroll-hint-inline-size: 4.16667vw;
  --modal-choose-item-inline-size: calc((100% - var(--modal-choose-list-gap) - var(--modal-choose-list-gap) - var(--modal-choose-list-gap) - var(--modal-choose-list-gap) - var(--modal-choose-list-gap)) / 6);
  --modal-choose-item-aspect-ratio: 4 / 3;
  --modal-choose-item-border-color: rgb(255 255 255 / 0.35);
  --modal-choose-item-current-border-color: #fff;
  --modal-choose-item-bg: rgb(0 0 0 / 0.24);
  --modal-choose-item-opacity: 0.7;
  --modal-choose-item-current-opacity: 1;
  --modal-choose-scroll-hint-color: rgb(255 255 255 / 0.72);
  --modal-choose-scroll-hint-transition-duration: 180ms;
}
.modal[data-modal-choose-effective-mode=single-viewer] :where(.choose) {
  display: none !important;
}
.modal :where(.choose) {
  position: relative;
  inline-size: 100%;
  min-inline-size: 0;
}
.modal :where(.choose[data-modal-choose-scroll-state=overflow] [data-modal-choose-list]) {
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--modal-choose-scroll-hint-inline-size)), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--modal-choose-scroll-hint-inline-size)), transparent 100%);
}
.modal :where(.choose[data-modal-choose-scroll-state=overflow][data-modal-choose-scroll-position=middle] [data-modal-choose-list]) {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--modal-choose-scroll-hint-inline-size), #000 calc(100% - var(--modal-choose-scroll-hint-inline-size)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 var(--modal-choose-scroll-hint-inline-size), #000 calc(100% - var(--modal-choose-scroll-hint-inline-size)), transparent 100%);
}
.modal :where(.choose[data-modal-choose-scroll-state=overflow][data-modal-choose-scroll-position=end] [data-modal-choose-list]) {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--modal-choose-scroll-hint-inline-size), #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 var(--modal-choose-scroll-hint-inline-size), #000 100%);
}
.modal :where([data-modal-choose-list]) {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--modal-choose-list-gap);
  inline-size: 100%;
  max-inline-size: 100%;
  margin-block: var(--modal-choose-list-margin-block-start) 0;
  margin-inline: auto;
  padding: 0 0 var(--modal-choose-list-padding-block-end);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  list-style: none;
  scrollbar-width: thin;
}
.modal :where([data-modal-choose-list][data-modal-choose-scroll-state=fit]) {
  justify-content: center;
  overflow-x: hidden;
}
.modal :where([data-modal-choose-list][hidden]) {
  display: none !important;
}
.modal :where([data-modal-choose-list] > .item) {
  flex: 0 0 var(--modal-choose-item-inline-size);
  min-inline-size: 0;
}
.modal :where(.btn-modal-choose, [data-modal-choose-item]) {
  line-height: 1;
  appearance: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  display: block;
  inline-size: 100%;
  aspect-ratio: var(--modal-choose-item-aspect-ratio);
  overflow: hidden;
  border: 1px solid var(--modal-choose-item-border-color);
  border-radius: var(--modal-choose-item-radius);
  background: var(--modal-choose-item-bg);
  opacity: var(--modal-choose-item-opacity);
}
.modal :where(.btn-modal-choose > *) {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  overflow: hidden;
}
.modal :where(.btn-modal-choose.is_current, .item.is_current > .btn-modal-choose) {
  border-color: var(--modal-choose-item-current-border-color);
  opacity: var(--modal-choose-item-current-opacity);
}
.modal :where(.btn-modal-choose picture, .btn-modal-choose figure) {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  margin: 0;
  overflow: hidden;
}
.modal :where(.btn-modal-choose img, .btn-modal-choose video) {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  min-inline-size: 100%;
  min-block-size: 100%;
  object-fit: cover;
  object-position: center center;
}

@media screen and (max-width: 768px) {
  .modal {
    --modal-choose-list-gap: 1.5vw;
    --modal-choose-list-margin-block-start: 2vw;
    --modal-choose-list-padding-block-end: 0.75vw;
    --modal-choose-item-radius: 1vw;
    --modal-choose-scroll-hint-inline-size: 10vw;
  }
}
@media screen and (min-width: 769px) {
  body::after {
    background-color: white;
  }
}

@scope (.area-prmy-loading) to (.area-scdy-loading) {
  :scope {
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 6666;
    display: flex;
    justify-content: center;
    align-items: center;
    inline-size: 100%;
    block-size: 100dvh;
    background-color: white;
    animation: disappear 3s ease-in-out 1 forwards;
    visibility: visible;
  }
  @keyframes disappear {
    0% {
      filter: opacity(1);
      visibility: visible;
    }
    72% {
      filter: opacity(1);
    }
    100% {
      filter: opacity(0);
      visibility: hidden;
      display: none;
    }
  }
  :scope .body .visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  @keyframes fadeIn {
    0% {
      filter: opacity(0);
    }
    100% {
      filter: opacity(1);
    }
  }
  @keyframes slideDoor {
    0% {
      scale: 1 1;
    }
    100% {
      scale: 0 1;
    }
  }
  :scope .body .visual .disp {
    position: relative;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp {
      padding-block-end: 0.41667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp {
      padding-block-end: 1vw;
    }
  }
  :scope .body .visual .disp {
    animation: fadeIn 0.8s ease-in-out 1 forwards;
  }
  :scope .body .visual .disp::after {
    content: "";
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 2;
    display: inline-block;
    inline-size: 100%;
    block-size: 100%;
    background-color: white;
    transform-origin: right;
    animation: slideDoor 0.8s ease-in-out 1 forwards;
  }
  :scope .body .visual .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
  }
  :scope .body .visual .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp .media {
      max-inline-size: 5.41666vw;
      block-size: 5.41666vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp .media {
      max-inline-size: 16vw;
      block-size: 16vw;
    }
  }
  :scope .body .visual .text {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
  }
  :scope .body .visual .text .string {
    display: inline-flex;
    color: #dddddd;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    letter-spacing: 0.08em;
  }
  :scope .body .visual .text .string.main {
    line-height: 1;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .text .string.main {
      font-size: 1.875vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .text .string.main {
      font-size: 6vw;
    }
  }
  :scope .body .visual .text .string.sub {
    position: relative;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .text .string.sub {
      font-size: 1.25vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .text .string.sub {
      font-size: 4.5vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .text .string.sub {
      margin-block-end: 0.20833vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .text .string.sub {
      margin-block-end: 1.5vw;
    }
  }
  :scope .body .visual .text .string .char {
    position: relative;
    display: inline-block;
    transform-origin: right;
    opacity: 0;
    animation: fadeInSlideDoor 0.8s ease-in-out 1 forwards;
    animation: fadeInOpacity 0.8s ease-in-out 1 forwards;
  }
  :scope .body .visual .text .string .char:nth-of-type(1) {
    animation-delay: 0.0833333333s;
  }
  :scope .body .visual .text .string .char:nth-of-type(2) {
    animation-delay: 0.1666666667s;
  }
  :scope .body .visual .text .string .char:nth-of-type(3) {
    animation-delay: 0.25s;
  }
  :scope .body .visual .text .string .char:nth-of-type(4) {
    animation-delay: 0.3333333333s;
  }
  :scope .body .visual .text .string .char:nth-of-type(5) {
    animation-delay: 0.4166666667s;
  }
  :scope .body .visual .text .string .char:nth-of-type(6) {
    animation-delay: 0.5s;
  }
  :scope .body .visual .text .string .char:nth-of-type(7) {
    animation-delay: 0.5833333333s;
  }
  :scope .body .visual .text .string .char:nth-of-type(8) {
    animation-delay: 0.6666666667s;
  }
  :scope .body .visual .text .string .char:nth-of-type(9) {
    animation-delay: 0.75s;
  }
}
@scope (.area-prmy-hero-view) to (.area-scdy-hero-view) {
  :scope {
    position: relative;
  }
  :scope::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    z-index: -2;
    inline-size: 100%;
    block-size: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: repeat-y;
  }
  @media screen and (min-width: 769px) {
    :scope::before {
      inset-block-start: 23.95833vw;
      inset-block-end: 23.95833vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope::before {
      inset-block-start: 50%;
      inset-block-end: 50%;
    }
  }
  :scope::before {
    background-image: url("../images/site-bg01.jpg");
  }
  @media screen and (min-width: 769px) {
    :scope .ly-inner-area-btm {
      padding-block-start: 4.16667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .ly-inner-area-btm {
      padding-block-start: 12vw;
    }
  }
  :scope .body .visual {
    position: relative;
  }
  :scope .body .visual .slider,
  :scope .body .visual .item-sp {
    animation-delay: 2.4s;
  }
  :scope .body .visual .slider {
    position: relative;
    margin-inline-start: auto;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .slider {
      max-inline-size: 79.16667vw;
      block-size: 50vw;
    }
  }
  :scope .body .visual .slider .item {
    inline-size: 100%;
  }
  :scope .body .visual .slider .item .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 19 / 12;
  }
  :scope .body .visual .slider .item .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 19 / 12;
    object-fit: cover;
  }
  :scope .body .visual .slider .item.slide {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 3;
    filter: opacity(0);
    transition: filter 3s ease-in-out;
  }
  :scope .body .visual .slider .item.slide.is_active {
    z-index: 2;
    filter: opacity(1);
  }
  :scope .body .visual .text {
    position: absolute;
    z-index: 2;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .text {
      inset-block-start: 5.20833vw;
      inset-inline-start: 25vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .text {
      inset-block-end: 0vw;
      inset-inline-end: 4vw;
    }
  }
  :scope .body .visual .text .caption {
    z-index: 3;
    display: flex;
    color: #fff;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .text .caption {
      font-size: 2.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .text .caption {
      font-size: 3.25vw;
    }
  }
  :scope .body .visual .text .caption .string:nth-of-type(1)::first-letter {
    text-transform: uppercase;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .text .caption {
      flex-direction: column;
      font-family: "Mistral-Graff", "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    }
    :scope .body .visual .text .caption .string:nth-of-type(1) {
      padding-inline-end: 3.75vw;
    }
    :scope .body .visual .text .caption .string:nth-of-type(2) {
      align-self: flex-end;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .text .caption {
      padding-block-end: 6vw;
      font-family: "Condiment-Regular", "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .item-sp {
      display: none;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .slider {
      display: none;
    }
    :scope .body .visual .item-sp .disp {
      padding-inline-start: calc(9vw + 6vw);
    }
    :scope .body .visual .item-sp .disp .media {
      display: inline-block;
      inline-size: 100%;
      block-size: 100%;
      aspect-ratio: 9 / 16;
    }
    :scope .body .visual .item-sp .disp .media video {
      inline-size: 100%;
      block-size: 100%;
      aspect-ratio: 9 / 16;
      object-fit: cover;
    }
  }
}
@scope (.area-prmy-about-us) to (.area-scdy-about-us) {
  :scope.lazy_bg_image::before {
    content: "";
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
    display: inline-block;
    max-inline-size: 100%;
    inline-size: 100%;
    block-size: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  :scope.lazy_bg_image.is_loaded::before {
    background-image: url("../images/site-bg01.jpg");
  }
  :scope .body {
    display: flex;
  }
  @media screen and (min-width: 769px) {
    :scope .body {
      padding-inline-start: 12.5vw;
      padding-inline-end: 7.29167vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body {
      padding-inline-start: 13.5vw;
      padding-inline-end: 7.5vw;
    }
  }
  :scope .body .visual {
    inline-size: 100%;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual {
      max-inline-size: 33.33333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual {
      max-inline-size: 50vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp {
      padding-block-start: 2.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp {
      padding-block-start: 6vw;
      padding-block-end: 12vw;
    }
  }
  :scope .body .visual .disp .media {
    position: relative;
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 4 / 3;
  }
  :scope .body .visual .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  :scope .body .visual .disp .media .caption {
    position: absolute;
    display: flex;
    flex-direction: column;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp .media .caption {
      inset-block-end: 2.5vw;
      inset-inline-end: 3.33333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp .media .caption {
      inset-block-end: 2vw;
      inset-inline-end: 6vw;
    }
  }
  :scope .body .visual .disp .media .caption .string {
    color: #fff;
    letter-spacing: 0.04em;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp .media .caption .string {
      font-size: 2.08333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp .media .caption .string {
      font-size: 3.5vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp .media .caption .string:nth-of-type(1) {
      padding-inline-end: 1.875vw;
    }
  }
  :scope .body .visual .disp .media .caption .string:nth-of-type(1)::first-letter {
    text-transform: capitalize;
  }
  :scope .body .visual .disp .media .caption .string:nth-of-type(2) {
    align-self: flex-end;
  }
  :scope .body .specifics {
    inline-size: 100%;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics {
      max-inline-size: 37.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics {
      max-inline-size: 80vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics {
      padding-inline-start: 3.75vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .title {
      padding-block-end: 2.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .title {
      padding-block-end: 8vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .catch {
      padding-block-end: 2.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .catch {
      padding-block-end: 8vw;
    }
  }
  :scope .body .specifics .catch .heading .string {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .catch .heading .string {
      row-gap: 0.83333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .catch .heading .string {
      row-gap: 3vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .catch .heading .string {
      font-size: 1.66667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .catch .heading .string {
      font-size: 5vw;
    }
  }
  :scope .body .specifics .catch .sentence {
    content: attr(data-text);
    position: static;
    letter-spacing: 0.04em;
    font-weight: normal;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .catch .sentence {
      font-size: 1.04167vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .catch .sentence {
      font-size: 3.5vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .text {
      padding-block-end: 3.75vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .text {
      padding-block-end: 9vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .g-btn-primary {
      padding-inline-start: 12.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body {
      flex-direction: column;
    }
    :scope .body .specifics .g-btn-primary .link {
      margin-inline-start: auto;
    }
  }
}
@scope (.area-prmy-news) to (.area-scdy-news) {
  :scope .ly-inner-area {
    padding-block-end: 0;
  }
  :scope .head .overview .title {
    display: grid;
    justify-items: space-between;
  }
  @media screen and (min-width: 769px) {
    :scope .head .overview .title {
      grid-template-areas: "empty heading";
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media screen and (max-width: 768px) {
    :scope .head .overview .title {
      grid-template-areas: "heading";
      grid-template-columns: 1fr;
    }
  }
  :scope .head .overview .title .g-heading-area-primary {
    grid-area: heading;
  }
  :scope .body {
    display: grid;
    justify-items: space-between;
  }
  :scope .body .visual {
    grid-area: visual;
  }
  :scope .body .list-post {
    grid-area: list-post;
  }
  @media screen and (min-width: 769px) {
    :scope .body {
      grid-template-areas: "visual list-post";
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body {
      grid-template-areas: "list-post" "visual";
      grid-template-columns: 1fr;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body {
      padding-block-end: 3.75vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body {
      padding-block-end: 9vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body {
      padding-inline-end: 7.5vw;
    }
  }
  :scope .body .visual .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 10 / 11;
  }
  :scope .body .visual .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 10 / 11;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp .media {
      max-inline-size: 20.83333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp .media {
      max-inline-size: 50vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp .media {
      margin-inline-start: auto;
      margin-inline-end: 6.25vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp .media {
      margin-inline-start: -6vw;
    }
  }
  :scope .body .list-post.des-row {
    position: relative;
    inline-size: 100%;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post.des-row > .item {
      padding-block-end: 1.875vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-post.des-row > .item {
      padding-block-end: 6vw;
    }
  }
  :scope .body .list-post.des-row > .item .entry {
    border-block-end-color: #4c4b4b;
    border-block-end-style: solid;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post.des-row > .item .entry {
      border-block-end-width: 0.05208vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-post.des-row > .item .entry {
      border-block-end-width: 0.25vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post.des-row > .item .entry {
      padding-block-end: 1.875vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-post.des-row > .item .entry {
      padding-block-end: 6vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post {
      max-inline-size: 33.33333vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post {
      padding-block-start: 3.75vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-post {
      padding-block-start: 9vw;
      padding-block-end: 12vw;
    }
  }
  :scope .body .list-post > .item .entry {
    display: grid;
    align-items: center;
  }
  :scope .body .list-post > .item .entry .intro .ga-title {
    grid-area: title;
  }
  :scope .body .list-post > .item .entry .intro .ga-label {
    grid-area: label;
  }
  :scope .body .list-post > .item .entry .intro .ga-date {
    grid-area: date;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post > .item .entry {
      grid-template-areas: "date label title";
      grid-template-columns: max-content minmax(6.25vw, max-content) 1fr;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-post > .item .entry {
      grid-template-areas: "date label title";
      grid-template-columns: max-content minmax(12vw, max-content) 1fr;
    }
  }
  :scope .body .list-post > .item .entry .intro {
    display: contents;
  }
  :scope .body .list-post > .item .entry .intro .title {
    transition: filter 0.4s ease-in-out;
  }
  :scope .body .list-post > .item .entry .intro .title .heading .link {
    display: inline-block;
    color: currentColor;
    text-decoration: none;
    inline-size: 100%;
  }
  :scope .body .list-post > .item .entry .intro .title .heading .link .string {
    font-weight: normal;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post > .item .entry .intro .title .heading .link .string {
      font-size: 0.9375vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-post > .item .entry .intro .title .heading .link .string {
      font-size: 3.5vw;
    }
  }
  :scope .body .list-post > .item .entry .intro .title:hover {
    filter: opacity(0.5);
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post > .item .entry .intro .date .time .string {
      font-size: 0.83333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-post > .item .entry .intro .date .time .string {
      font-size: 2.75vw;
    }
  }
  :scope .body .list-post > .item .entry .intro .new-label {
    text-align: center;
  }
  :scope .body .list-post > .item .entry .intro .new-label .name .string {
    text-transform: uppercase;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-post > .item .entry .intro .new-label .name .string {
      font-size: 0.83333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-post > .item .entry .intro .new-label .name .string {
      font-size: 2.75vw;
    }
  }
  :scope .foot .visual .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
  }
  :scope .foot .visual .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .foot .visual .disp .media {
      max-inline-size: 16.66667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .foot .visual .disp .media {
      max-inline-size: 30vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .foot .visual .disp .media {
      margin-inline-start: auto;
      margin-inline-end: 16.66667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .foot .visual .disp .media {
      margin-inline-start: auto;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .ly-inner-area {
      padding-block-end: 20vw;
      padding-inline-start: 9vw;
    }
    :scope .body .list-post {
      padding-inline-start: 3vw;
    }
    :scope .body .list-post .item .entry {
      letter-spacing: 0.04em;
    }
    :scope .body .visual {
      position: relative;
      z-index: 2;
    }
    :scope .foot .visual .disp .media {
      margin-block-start: -30vw;
    }
  }
}
@scope (.area-prmy-cool-dog-good) to (.area-scdy-cool-dog-good) {
  :scope .inner-cool-dog-good {
    display: flex;
    flex-direction: column-reverse;
  }
  @media screen and (max-width: 768px) {
    :scope .inner-cool-dog-good {
      margin-block-end: 16vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .head .overview .title {
      padding-inline-start: 15.625vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .head .overview .title {
      padding-inline-start: 12vw;
    }
  }
  :scope .head .overview .title .g-heading-area-primary {
    display: flex;
    flex-direction: column;
  }
  :scope .head .overview .title .g-heading-area-primary .string {
    color: #ccc;
    font-family: "Lusitana", "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    text-transform: uppercase;
  }
  @media screen and (min-width: 769px) {
    :scope .head .overview .title .g-heading-area-primary .string {
      font-size: 3.33333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .head .overview .title .g-heading-area-primary .string {
      font-size: 8vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .head .overview .title .g-heading-area-primary .string:nth-of-type(1) {
      padding-block-end: 0.625vw;
    }
  }
  :scope .body.lazy_bg_image::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    display: inline-block;
    background-size: contain;
    background-position: center center;
    background-repeat: repeat-y;
  }
  @media screen and (min-width: 769px) {
    :scope .body.lazy_bg_image::before {
      inset-block-start: 26.04167vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body.lazy_bg_image::before {
      inset-block-start: 3vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body.lazy_bg_image::before {
      block-size: 137.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body.lazy_bg_image::before {
      block-size: 263vw;
    }
  }
  :scope .body.lazy_bg_image.is_loaded::before {
    background-image: url("../images/site-bg01.jpg");
  }
  :scope .body .list > .item .entry {
    display: flex;
  }
  :scope .body .list > .item .entry .title .m-heading .string {
    border-color: #4c4b4b;
    border-style: solid;
    border-block-width: 1px;
    border-inline-width: 1px;
    color: #807d7d;
    font-weight: normal;
    letter-spacing: 0.04em;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item .entry .title .m-heading .string {
      padding-block-start: 2.5vw;
      padding-block-end: 2.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item .entry .title .m-heading .string {
      padding-block-start: 3vw;
      padding-block-end: 3vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item .entry .title .m-heading .string {
      padding-inline-start: 5vw;
      padding-inline-end: 5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item .entry .title .m-heading .string {
      padding-inline-start: 8vw;
      padding-inline-end: 8vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item .entry .title .m-heading .string {
      font-size: 1.66667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item .entry .title .m-heading .string {
      font-size: 4vw;
    }
  }
  :scope .body .list > .item .entry .disp {
    position: relative;
    z-index: 2;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part1 .entry .title {
      padding-inline-start: 12.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part1 .entry .title {
      padding-inline-end: 6vw;
    }
  }
  :scope .body .list > .item.part1 .entry .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 30 / 37;
  }
  :scope .body .list > .item.part1 .entry .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 30 / 37;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part1 .entry .disp .media {
      inline-size: 44.79167vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part1 .entry .disp .media {
      inline-size: 58vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part1 .entry {
      align-items: center;
    }
    :scope .body .list > .item.part1 .entry .title {
      order: 2;
    }
    :scope .body .list > .item.part1 .entry .disp {
      order: 1;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part1 .entry {
      flex-direction: column;
    }
    :scope .body .list > .item.part1 .entry .title {
      align-self: flex-end;
    }
    :scope .body .list > .item.part1 .entry .title .m-heading {
      padding-block-end: 12vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part2 {
      padding-block-end: 6.25vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part2 {
      padding-block-end: 16vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part2 .entry {
      margin-block-start: -2.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part2 .entry {
      margin-block-start: -9vw;
    }
  }
  :scope .body .list > .item.part2 .entry .disp {
    margin-inline-start: auto;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part2 .entry .disp {
      padding-inline-end: 9.375vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part2 .entry .disp {
      padding-inline-end: 6vw;
    }
  }
  :scope .body .list > .item.part2 .entry .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 12 / 11;
  }
  :scope .body .list > .item.part2 .entry .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 12 / 11;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part2 .entry .disp .media {
      inline-size: 29.16667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part2 .entry .disp .media {
      inline-size: 25vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part3 {
      padding-block-end: 10vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part3 {
      padding-block-end: 18vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part3 .entry {
      margin-inline-start: 12.5vw;
    }
  }
  :scope .body .list > .item.part3 .entry .title {
    position: relative;
    z-index: 3;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part3 .entry .disp {
      margin-inline-start: -10.41667vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part3 .entry .disp {
      padding-block-start: 3.75vw;
    }
  }
  :scope .body .list > .item.part3 .entry .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 15 / 7;
  }
  :scope .body .list > .item.part3 .entry .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 15 / 7;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part3 .entry .disp .media {
      inline-size: 38.54167vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part3 .entry .disp .media {
      inline-size: 70vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part3 .entry {
      flex-direction: column;
    }
    :scope .body .list > .item.part3 .entry .title {
      padding-inline-start: 9vw;
    }
    :scope .body .list > .item.part3 .entry .disp {
      margin-block-start: -4vw;
    }
    :scope .body .list > .item.part3 .entry .disp .media {
      margin-inline-start: auto;
    }
  }
  :scope .body .list > .item.part4 .entry {
    justify-content: flex-end;
  }
  :scope .body .list > .item.part4 .entry .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 32 / 17;
  }
  :scope .body .list > .item.part4 .entry .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 32 / 17;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part4 .entry .disp .media {
      inline-size: 44.79167vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part4 .entry .disp .media {
      inline-size: 100%;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part4 .entry .disp {
      padding-block-end: 12vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part5 {
      padding-block-end: 14.58333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part5 {
      padding-block-end: 16vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part5 .entry {
      margin-block-start: -5vw;
    }
  }
  :scope .body .list > .item.part5 .entry .title {
    order: 2;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part5 .entry .title {
      padding-inline-start: 10.41667vw;
    }
  }
  :scope .body .list > .item.part5 .entry .disp {
    order: 1;
  }
  :scope .body .list > .item.part5 .entry .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 7 / 9;
  }
  :scope .body .list > .item.part5 .entry .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 7 / 9;
    object-fit: fill;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part5 .entry .disp .media {
      inline-size: 40.10417vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part5 .entry .disp .media {
      inline-size: 40vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list > .item.part5 .entry {
      align-items: center;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list > .item.part5 .entry {
      justify-content: space-around;
    }
    :scope .body .list > .item.part5 .entry .title {
      padding-block-start: 9vw;
    }
  }
}
@scope (.area-prmy-service) to (.area-scdy-service) {
  :scope.lazy_bg_image::before {
    content: "";
    position: absolute;
    inset-block-end: 0;
    inset-inline-end: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: repeat-y;
  }
  @media screen and (min-width: 769px) {
    :scope.lazy_bg_image::before {
      block-size: 72.91667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope.lazy_bg_image::before {
      block-size: 100%;
    }
  }
  :scope.lazy_bg_image.is_loaded::before {
    background-image: url("../images/site-bg02.jpg");
  }
  :scope .body .list .item {
    display: flex;
  }
  :scope .body .list .item .entry {
    display: inline-block;
    color: currentColor;
    text-decoration: none;
  }
  :scope .body .list .item .entry .intro {
    position: relative;
    z-index: 2;
    display: inline-grid;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item .entry .intro {
      grid-template-areas: "title term" "line line" "text btn";
      grid-template-columns: 16.66667vw 1fr;
      grid-template-rows: repeat(3, max-content);
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list .item .entry .intro {
      grid-template-areas: "title" "text" "btn";
      grid-template-columns: 1fr;
      grid-template-rows: max-content 1fr max-content;
    }
  }
  :scope .body .list .item .entry .intro .ga-title {
    grid-area: title;
  }
  :scope .body .list .item .entry .intro .ga-term {
    grid-area: term;
  }
  :scope .body .list .item .entry .intro .ga-line {
    grid-area: line;
  }
  :scope .body .list .item .entry .intro .ga-text {
    grid-area: text;
  }
  :scope .body .list .item .entry .intro .ga-btn {
    grid-area: btn;
  }
  :scope .body .list .item .entry .intro .title .m-heading .string {
    text-transform: capitalize;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item .entry .intro .title .m-heading .string {
      font-size: 1.66667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list .item .entry .intro .title .m-heading .string {
      font-size: 6vw;
    }
  }
  :scope .body .list .item .entry .intro .term .name .string {
    font-weight: bold;
  }
  :scope .body .list .item .entry .intro .under-line {
    inline-size: 100%;
    background-color: black;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item .entry .intro .under-line {
      block-size: 0.10417vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list .item .entry .intro .under-line {
      block-size: 0.5vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item .entry .intro .text {
      padding-block-start: 0.41667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list .item .entry .intro .text {
      padding-block-start: 2vw;
    }
  }
  :scope .body .list .item .entry .intro .text .sentence {
    display: flex;
    letter-spacing: 0.08em;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(1) {
      padding-inline-end: 9.375vw;
    }
  }
  :scope .body .list .item:nth-of-type(1) .entry {
    margin-inline-start: auto;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(1) .entry .intro {
      margin-inline-end: -9.375vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(1) .entry .intro {
      padding-block-start: 5vw;
    }
  }
  :scope .body .list .item:nth-of-type(1) .entry .intro .term .name .string {
    text-transform: capitalize;
  }
  :scope .body .list .item:nth-of-type(1) .entry .thumb .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 15 / 16;
  }
  :scope .body .list .item:nth-of-type(1) .entry .thumb .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 15 / 16;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(1) .entry .thumb .disp .media {
      inline-size: 29.16667vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(2) {
      padding-inline-start: 9.375vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(2) .entry .intro {
      margin-inline-end: -7.29167vw;
    }
  }
  :scope .body .list .item:nth-of-type(2) .entry .intro .text .sentence {
    flex-direction: column;
  }
  :scope .body .list .item:nth-of-type(2) .entry .thumb .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
  }
  :scope .body .list .item:nth-of-type(2) .entry .thumb .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(2) .entry .thumb .disp .media {
      inline-size: 22.91667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list .item:nth-of-type(2) .entry .thumb .disp .media {
      inline-size: 100%;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(3) {
      padding-inline-end: 11.45833vw;
    }
  }
  :scope .body .list .item:nth-of-type(3) .entry {
    margin-inline-start: auto;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(3) .entry .intro {
      margin-inline-end: -6.66667vw;
    }
  }
  :scope .body .list .item:nth-of-type(3) .entry .intro .text .sentence {
    flex-direction: column;
  }
  :scope .body .list .item:nth-of-type(3) .entry .thumb .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 3 / 4;
  }
  :scope .body .list .item:nth-of-type(3) .entry .thumb .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item:nth-of-type(3) .entry .thumb .disp .media {
      inline-size: 23.95833vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list .item:nth-of-type(3) .entry .thumb .disp .media {
      inline-size: 100%;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item .entry {
      display: inline-flex;
    }
    :scope .body .list .item .entry .intro {
      align-items: center;
      text-align: center;
    }
    :scope .body .list .item .entry .intro .text .sentence .string:nth-of-type(1) {
      padding-inline-start: 1.875vw;
    }
  }
  @media screen and (min-width: 769px) and (min-width: 769px) {
    :scope .body .list .item .entry .intro .m-btn {
      padding-block-start: 0.41667vw;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 768px) {
    :scope .body .list .item .entry .intro .m-btn {
      padding-block-start: 2vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .list .item .entry .intro .m-btn .link {
      display: inline-block;
      color: currentColor;
      text-decoration: none;
    }
    :scope .body .list .item .entry .intro .m-btn .link .string {
      padding-block-start: 0.20833vw;
      padding-block-end: 0.41667vw;
      padding-inline-start: 1.25vw;
      padding-inline-end: 1.25vw;
      border-radius: 2.5vw;
      background-color: rgba(0, 0, 0, 0.5);
      font-size: 0.78125vw;
      color: #fff;
    }
    :scope .body .list .item .entry .intro .g-btn-primary.is-sp {
      display: none;
    }
    :scope .body .list .item:nth-of-type(2) {
      margin-block-start: -9.375vw;
    }
    :scope .body .list .item:nth-of-type(2) .entry .intro {
      align-self: center;
      grid-template-columns: 18.75vw 1fr;
    }
    :scope .body .list .item:nth-of-type(2) .entry .intro .text .sentence .string:nth-of-type(1) {
      align-self: flex-start;
    }
    :scope .body .list .item:nth-of-type(2) .entry .intro .text .sentence .string:nth-of-type(2) {
      align-self: flex-end;
      padding-inline-end: 1.875vw;
    }
    :scope .body .list .item:nth-of-type(3) .entry .intro {
      align-self: flex-end;
      padding-block-end: 1.25vw;
    }
    :scope .body .list .item:nth-of-type(3) .entry .intro .text .sentence .string:nth-of-type(1) {
      align-self: flex-start;
    }
    :scope .body .list .item:nth-of-type(3) .entry .intro .text .sentence .string:nth-of-type(2) {
      align-self: flex-end;
      padding-inline-end: 1.875vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list .item {
      margin-inline-start: auto;
    }
    :scope .body .list .item .entry {
      display: grid;
      grid-template-areas: "box";
      grid-template-columns: 1fr;
    }
    :scope .body .list .item .entry .intro {
      grid-area: box;
    }
    :scope .body .list .item .entry .thumb {
      grid-area: box;
    }
    :scope .body .list .item .entry .intro {
      padding-block-start: 4vw;
      padding-inline-start: 4vw;
      padding-inline-end: 4vw;
      color: #fff;
    }
    :scope .body .list .item .entry .intro .title .m-heading .string {
      font-weight: normal;
    }
    :scope .body .list .item .entry .intro .term,
    :scope .body .list .item .entry .intro .under-line {
      display: none;
    }
    :scope .body .list .item .entry .intro .text .sentence {
      letter-spacing: 0.02em;
    }
    :scope .body .list .item .entry .intro .m-btn.is-pc {
      display: none;
    }
    :scope .body .list .item .entry .intro .g-btn-primary .link {
      margin-left: auto;
    }
    :scope .body .list .item .entry .intro .g-btn-primary .link .string.main {
      color: #fff;
    }
    :scope .body .list .item .entry .intro .g-btn-primary .link .mark.arrow {
      background-color: white;
    }
    :scope .body .list .item .entry .intro .g-btn-primary .link .mark.arrow::after {
      background-color: white;
    }
    :scope .body .list .item .entry .intro .g-btn-primary .link .mark.circle {
      border-color: #fff;
      border-style: solid;
    }
    :scope .body .list .item .entry .intro .g-btn-primary .link .mark.circle::before {
      background-color: rgba(255, 255, 255, 0.25);
    }
    :scope .body .list .item .entry .thumb .disp .media {
      position: relative;
    }
    :scope .body .list .item .entry .thumb .disp .media::after {
      content: "";
      position: absolute;
      inset-block-start: 0;
      inset-inline-start: 0;
      inline-size: 100%;
      block-size: 100%;
      background-color: rgba(0, 0, 0, 0.25);
    }
    :scope .body .list .item:nth-of-type(1) {
      max-inline-size: 50vw;
      inline-size: 100%;
      margin-inline-end: 12vw;
    }
    :scope .body .list .item:nth-of-type(2) {
      max-inline-size: 62vw;
      inline-size: 100%;
      margin-inline-start: 9vw;
    }
    :scope .body .list .item:nth-of-type(3) {
      max-inline-size: 56vw;
      inline-size: 100%;
      margin-inline-end: 9vw;
    }
    :scope .body .list .item:nth-of-type(2) .entry .intro .text .sentence .string:nth-of-type(1), :scope .body .list .item:nth-of-type(3) .entry .intro .text .sentence .string:nth-of-type(1) {
      padding-block-end: 2vw;
    }
    :scope .body .list .item:nth-of-type(2) .entry .intro .text .sentence .string:nth-of-type(2), :scope .body .list .item:nth-of-type(3) .entry .intro .text .sentence .string:nth-of-type(2) {
      padding-inline-start: 3vw;
    }
    :scope .body .list .item:not(:last-of-type) {
      padding-block-end: 9vw;
    }
  }
}
@scope (.area-prmy-media-gallery) to (.area-scdy-media-gallery) {
  :scope .head .overview .title .g-heading-area-primary {
    text-align: right;
  }
  :scope .body .list-gallery .list-thumb {
    display: flex;
    flex-wrap: wrap;
  }
  :scope .body .list-gallery .list-thumb > .item {
    position: relative;
    inline-size: 100%;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-gallery .list-thumb > .item {
      max-inline-size: 14.2857142857%;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-gallery .list-thumb > .item {
      max-inline-size: 25%;
    }
  }
  :scope .body .list-gallery .list-thumb > .item > .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
  }
  :scope .body .list-gallery .list-thumb > .item > .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  :scope .body .list-gallery .list-thumb > .item > .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
  }
  :scope .body .list-gallery .list-thumb > .item > .disp .media .video {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  :scope .body .list-gallery .list-thumb > .item .btn-modal-open {
    line-height: 1;
    appearance: none;
    cursor: pointer;
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 2;
    inline-size: 100%;
    block-size: 100%;
    border-block-width: 0;
    border-inline-width: 0;
    background-color: transparent;
  }
  :scope .body .list-gallery .list-thumb > .item .list-media {
    display: none;
  }
  @media screen and (min-width: 769px) {
    :scope .body .list-gallery .list-thumb > .item:nth-of-type(n + 15) {
      display: none;
    }
  }
  :scope .body .list-gallery .list-thumb .btn-modal-open {
    line-height: 1;
    appearance: none;
    cursor: pointer;
    inline-size: 100px;
    block-size: 100px;
  }
  :scope .foot .operation .g-btn-primary .link {
    margin-inline-start: auto;
  }
  @media screen and (max-width: 768px) {
    :scope .body .list-gallery {
      padding-inline-start: 6vw;
      padding-inline-end: 6vw;
    }
  }
}
[data-modal-window] [data-modal-open] {
  line-height: 1;
  appearance: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
}

@scope (.area-prmy-salon-info) to (.area-scdy-salon-info) {
  @media screen and (max-width: 768px) {
    :scope .head {
      padding-block-end: 12vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .head {
      padding-inline-end: 18.75vw;
    }
  }
  :scope .head .overview .title {
    text-align: right;
  }
  @media screen and (min-width: 769px) {
    :scope .head .overview .title .g-heading-area-primary {
      padding-block-end: 1.25vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .head .overview .title .g-heading-area-primary {
      padding-block-end: 1vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .head .overview .title .g-heading-area-primary {
      padding-inline-end: 10.41667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .head .overview .title .g-heading-area-primary {
      padding-inline-end: 18vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .head .overview .title .g-heading-area-primary .string.main {
      font-size: 1.14583vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .head .overview .title .g-heading-area-primary .string.main {
      font-size: 3.5vw;
    }
  }
  :scope .head .overview .disp .media {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 8 / 7;
  }
  :scope .head .overview .disp .media .image {
    inline-size: 100%;
    block-size: 100%;
    aspect-ratio: 8 / 7;
    object-fit: cover;
  }
  :scope .head .overview .disp .media {
    margin-inline-start: auto;
  }
  @media screen and (min-width: 769px) {
    :scope .head .overview .disp .media {
      inline-size: 12.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .head .overview .disp .media {
      inline-size: 24vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body {
      padding-inline-end: 18.75vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .ly-inner-area {
      padding-inline-end: 7.5vw;
    }
  }
}
@scope (.area-scdy-salon-info) to (.area-tery-salon-info) {
  :scope .body {
    display: flex;
    justify-content: space-between;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual {
      margin-block-start: -14.58333vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual {
      padding-inline-start: 4.16667vw;
      padding-inline-end: 9vw;
    }
  }
  :scope .body .visual {
    inline-size: 100%;
    max-inline-size: 60%;
  }
  :scope .body .visual .disp {
    inline-size: 100%;
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp {
      max-inline-size: 29.6875vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp {
      max-inline-size: 40vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .visual .disp .media {
      inline-size: 100%;
      block-size: 100%;
      aspect-ratio: 19 / 32;
    }
    :scope .body .visual .disp .media .image {
      inline-size: 100%;
      block-size: 100%;
      aspect-ratio: 19 / 32;
      object-fit: cover;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .visual .disp .media {
      inline-size: 100%;
      block-size: 100%;
      aspect-ratio: 1 / 2;
    }
    :scope .body .visual .disp .media .image {
      inline-size: 100%;
      block-size: 100%;
      aspect-ratio: 1 / 2;
      object-fit: cover;
    }
  }
  :scope .body .specifics {
    letter-spacing: 0.08em;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics {
      padding-block-start: 8.33333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics {
      padding-block-start: 4.16667vw;
    }
  }
  :scope .body .specifics .title .m-heading {
    display: flex;
    flex-direction: column;
    text-align: right;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .title .m-heading {
      padding-block-end: 3.75vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .title .m-heading {
      padding-block-end: 8vw;
    }
  }
  :scope .body .specifics .title .m-heading .string:nth-child(1) {
    font-weight: normal;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .title .m-heading .string:nth-child(1) {
      font-size: 0.83333vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .title .m-heading .string:nth-child(1) {
      font-size: 3.25vw;
    }
  }
  :scope .body .specifics .title .m-heading .string:nth-child(2) {
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .title .m-heading .string:nth-child(2) {
      font-size: 1.875vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .title .m-heading .string:nth-child(2) {
      font-size: 6vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .list .item {
      font-size: 0.78125vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .list .item {
      font-size: 3vw;
    }
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .list .item:not(:last-of-type) {
      padding-block-end: 0.41667vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .list .item:not(:last-of-type) {
      padding-block-end: 1vw;
    }
  }
  :scope .body .specifics .list .item .string:nth-of-type(2) {
    text-transform: capitalize;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .list .item .string:nth-of-type(2) {
      padding-inline-start: 1.25vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .list .item .string:nth-of-type(2) {
      padding-inline-start: 3vw;
    }
  }
  :scope .body .specifics .list .item.place .location {
    font-style: normal;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .list .item.map {
      padding-block-end: 2.5vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .list .item.map {
      padding-block-end: 8vw;
    }
  }
  :scope .body .specifics .list .item.map .link, :scope .body .specifics .list .item.privacy-policy .link {
    display: inline-block;
    color: currentColor;
    text-decoration: none;
  }
  :scope .body .specifics .list .item.map .link .string, :scope .body .specifics .list .item.privacy-policy .link .string {
    border-bottom-color: #000;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    text-transform: capitalize;
    transition: filter 0.4s ease-in-out;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .list .item.map .link .string, :scope .body .specifics .list .item.privacy-policy .link .string {
      padding-block-end: 0.10417vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .list .item.map .link .string, :scope .body .specifics .list .item.privacy-policy .link .string {
      padding-block-end: 0.5vw;
    }
  }
  :scope .body .specifics .list .item.map .link:hover .string, :scope .body .specifics .list .item.privacy-policy .link:hover .string {
    filter: opacity(0.25);
  }
  :scope .body .specifics .list .item.tel .string {
    text-transform: capitalize;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .list .item.tel {
      padding-block-end: 3.75vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .list .item.tel {
      padding-block-end: 9vw;
    }
  }
  :scope .body .specifics .list .item.reg-number .string {
    letter-spacing: 0.04em;
  }
  @media screen and (min-width: 769px) {
    :scope .body .specifics .list .item.reg-number .string {
      font-size: 0.67708vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics .list .item.reg-number .string {
      font-size: 2.75vw;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body .specifics {
      text-align: right;
    }
    :scope .body .specifics .title .m-heading .string:nth-childe(2) {
      letter-spacing: 0.08em;
    }
  }
  @media screen and (max-width: 768px) {
    :scope .body {
      align-items: flex-end;
    }
    :scope .body .visual,
    :scope .body .specifics {
      max-inline-size: 50%;
      inline-size: 100%;
    }
  }
}
/*# sourceMappingURL=front-page.css.map */
